# ************************************************************ # Sequel Pro SQL dump # Version 4541 # # http://www.sequelpro.com/ # https://github.com/sequelpro/sequelpro # # Host: 127.0.0.1 (MySQL 5.5.5-10.1.22-MariaDB-1~trusty) # Database: wordpressorg_dev # Generation Time: 2017-04-17 17:19:12 +0000 # ************************************************************ /*!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 utf8 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; # Dump of table ratings # ------------------------------------------------------------ DROP TABLE IF EXISTS `ratings`; CREATE TABLE `ratings` ( `review_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `object_type` varchar(255) NOT NULL DEFAULT '', `object_slug` varchar(255) NOT NULL DEFAULT '', `post_id` int(10) unsigned NOT NULL, `rating` int(11) NOT NULL, PRIMARY KEY (`review_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; LOCK TABLES `ratings` WRITE; /*!40000 ALTER TABLE `ratings` DISABLE KEYS */; INSERT INTO `ratings` (`review_id`, `object_type`, `object_slug`, `post_id`, `rating`) VALUES (1,'plugin','akismet',1,5), (2,'plugin','akismet',2,4), (3,'plugin','akismet',3,1); /*!40000 ALTER TABLE `ratings` ENABLE KEYS */; UNLOCK TABLES; # Dump of table translate_api_keys # ------------------------------------------------------------ DROP TABLE IF EXISTS `translate_api_keys`; CREATE TABLE `translate_api_keys` ( `id` int(10) NOT NULL AUTO_INCREMENT, `user_id` int(10) NOT NULL DEFAULT '0', `api_key` varchar(16) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `user_id` (`user_id`), UNIQUE KEY `api_key` (`api_key`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; # Dump of table translate_dotorg_warnings # ------------------------------------------------------------ DROP TABLE IF EXISTS `translate_dotorg_warnings`; CREATE TABLE `translate_dotorg_warnings` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `project_id` bigint(20) unsigned NOT NULL DEFAULT '0', `translation_set` bigint(20) unsigned NOT NULL DEFAULT '0', `translation` bigint(20) unsigned NOT NULL DEFAULT '0', `warning` varchar(20) NOT NULL DEFAULT '', `user` bigint(20) unsigned NOT NULL DEFAULT '0', `status` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`ID`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; # Dump of table translate_glossaries # ------------------------------------------------------------ DROP TABLE IF EXISTS `translate_glossaries`; CREATE TABLE `translate_glossaries` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `translation_set_id` int(10) NOT NULL, `description` text, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; # Dump of table translate_glossary_entries # ------------------------------------------------------------ DROP TABLE IF EXISTS `translate_glossary_entries`; CREATE TABLE `translate_glossary_entries` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `glossary_id` int(10) unsigned NOT NULL, `term` varchar(255) NOT NULL, `part_of_speech` varchar(255) DEFAULT NULL, `comment` text, `translation` varchar(255) DEFAULT NULL, `date_modified` datetime NOT NULL, `last_edited_by` bigint(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; # Dump of table translate_meta # ------------------------------------------------------------ DROP TABLE IF EXISTS `translate_meta`; CREATE TABLE `translate_meta` ( `meta_id` bigint(20) NOT NULL AUTO_INCREMENT, `object_type` varchar(32) NOT NULL DEFAULT 'gp_option', `object_id` bigint(20) NOT NULL DEFAULT '0', `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `object_type__meta_key` (`object_type`,`meta_key`), KEY `object_type__object_id__meta_key` (`object_type`,`object_id`,`meta_key`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; LOCK TABLES `translate_meta` WRITE; /*!40000 ALTER TABLE `translate_meta` DISABLE KEYS */; INSERT INTO `translate_meta` (`meta_id`, `object_type`, `object_id`, `meta_key`, `meta_value`) VALUES (1,'gp_option',0,'gp_db_version','940'), (2,'gp_option',0,'uri','http://translate.wordpressorg.dev/translate/glotpress/'); /*!40000 ALTER TABLE `translate_meta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table translate_originals # ------------------------------------------------------------ DROP TABLE IF EXISTS `translate_originals`; CREATE TABLE `translate_originals` ( `id` int(10) NOT NULL AUTO_INCREMENT, `project_id` int(10) DEFAULT NULL, `context` varchar(255) DEFAULT NULL, `singular` text NOT NULL, `plural` text, `references` text, `comment` text, `status` varchar(255) NOT NULL DEFAULT '+active', `priority` tinyint(4) NOT NULL DEFAULT '0', `date_added` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `project_id_status` (`project_id`,`status`), KEY `singular_plural_context` (`singular`(83),`plural`(83),`context`(83)) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; # Dump of table translate_permissions # ------------------------------------------------------------ DROP TABLE IF EXISTS `translate_permissions`; CREATE TABLE `translate_permissions` ( `id` int(10) NOT NULL AUTO_INCREMENT, `user_id` int(10) DEFAULT NULL, `action` varchar(255) DEFAULT NULL, `object_type` varchar(255) DEFAULT NULL, `object_id` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_id_action` (`user_id`,`action`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; # Dump of table translate_project_translation_status # ------------------------------------------------------------ DROP TABLE IF EXISTS `translate_project_translation_status`; CREATE TABLE `translate_project_translation_status` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `project_id` int(10) unsigned NOT NULL, `translation_set_id` int(10) unsigned NOT NULL, `all` int(10) unsigned NOT NULL DEFAULT '0', `current` int(10) unsigned NOT NULL DEFAULT '0', `waiting` int(10) unsigned NOT NULL DEFAULT '0', `fuzzy` int(10) unsigned NOT NULL DEFAULT '0', `warnings` int(10) unsigned NOT NULL DEFAULT '0', `untranslated` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `project_translation_set` (`project_id`,`translation_set_id`), KEY `all` (`all`), KEY `current` (`current`), KEY `waiting` (`waiting`), KEY `fuzzy` (`fuzzy`), KEY `warnings` (`warnings`), KEY `untranslated` (`untranslated`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; # Dump of table translate_projects # ------------------------------------------------------------ DROP TABLE IF EXISTS `translate_projects`; CREATE TABLE `translate_projects` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `path` varchar(255) NOT NULL, `description` text NOT NULL, `parent_project_id` int(10) DEFAULT NULL, `source_url_template` varchar(255) DEFAULT '', `active` tinyint(4) DEFAULT '0', PRIMARY KEY (`id`), KEY `path` (`path`), KEY `parent_project_id` (`parent_project_id`), KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; LOCK TABLES `translate_projects` WRITE; /*!40000 ALTER TABLE `translate_projects` DISABLE KEYS */; INSERT INTO `translate_projects` (`id`, `name`, `slug`, `path`, `description`, `parent_project_id`, `source_url_template`, `active`) VALUES (1,'WordPress','wp','wp','',NULL,'https://core.trac.wordpress.org/browser/trunk/%file%#L%line%',1), (2,'Development','dev','wp/dev','Translation of the 4.3.x version of WordPress.\r\n

\r\n',1,'https://core.trac.wordpress.org/browser/trunk/src/%file%#L%line%',1), (3,'WordPress for BlackBerry','blackberry','apps/blackberry','The all new WordPress for BlackBerry app allows you to write posts, upload photos and videos, edit pages, and manage comments. Both WordPress.com and self-hosted WordPress (2.7 or higher) sites are supported. App\'s home page is at http://blackberry.wordpress.org/',281,'',NULL), (5,'Development','dev','apps/blackberry/dev','The development version of the WordPress for Blackberry application.',3,'',0), (6,'WordPress for Android','android','apps/android','Inspiration strikes anytime, anywhere. WordPress: at your fingertips. https://apps.wordpress.org/',281,'',1), (7,'Development','dev','apps/android/dev','The development version of the WordPress for Android application. ',6,'',1), (13,'BuddyPress','buddypress','buddypress','BuddyPress helps you run any kind of social network on your WordPress, with member profiles, activity streams, user groups, messaging, and more.\r\n
\r\nDevelopment and Stable projects are moved to a new path: /projects/wp-plugins/buddypress',NULL,'',NULL), (14,'Development (trunk)','dev','wp-plugins/buddypress/dev','Development version of the BuddyPress plugin.',2739,'https://plugins.trac.wordpress.org/browser/buddypress/trunk/%file%#L%line%',1), (15,'Twenty Ten','twentyten','wp/dev/twentyten','Translations of the 2010 default theme for WordPress',2,'https://core.trac.wordpress.org/browser/trunk/src/wp-content/themes/twentyten/%file%#L%line%',0), (17,'Plugins','wp-plugins','wp-plugins','A place to translate WordPress plugins. The project currently contains only a couple of experimental plugins for translation.',NULL,'',1), (18,'Categories to Tags Converter','wpcat2tag-importer','wp-plugins/wpcat2tag-importer','Convert existing categories to tags or tags to categories, selectively.

WordPress.org Plugin Page',17,'',1), (19,'Development (trunk)','dev','wp-plugins/wpcat2tag-importer/dev','Development version of the Categories to Tags Converter plugin.',18,'https://plugins.trac.wordpress.org/browser/wpcat2tag-importer/trunk/%file%#L%line%',1), (20,'WordPress Importer','wordpress-importer','wp-plugins/wordpress-importer','Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.

WordPress.org Plugin Page',17,'',1), (21,'Development (trunk)','dev','wp-plugins/wordpress-importer/dev','Development version of the WordPress Importer plugin.',20,'https://plugins.trac.wordpress.org/browser/wordpress-importer/trunk/%file%#L%line%',1), (22,'Ultimate Tag Warrior Importer','utw-importer','wp-plugins/utw-importer','Import Ultimate Tag Warrior tags into WordPress tags.

WordPress.org Plugin Page',17,'',1), (23,'Development (trunk)','dev','wp-plugins/utw-importer/dev','Development version of the Ultimate Tag Warrior Importer plugin.',22,'https://plugins.trac.wordpress.org/browser/utw-importer/trunk/%file%#L%line%',1), (24,'TextPattern Importer','textpattern-importer','wp-plugins/textpattern-importer','Import categories, users, posts, comments, and links from a TextPattern blog.

WordPress.org Plugin Page',17,'',1), (25,'Development (trunk)','dev','wp-plugins/textpattern-importer/dev','Development version of the TextPattern Importer plugin.',24,'https://plugins.trac.wordpress.org/browser/textpattern-importer/trunk/%file%#L%line%',1), (26,'Simple Tags Importer','stp-importer','wp-plugins/stp-importer','Import Simple Tagging tags into WordPress tags.

WordPress.org Plugin Page',17,'',1), (27,'Development (trunk)','dev','wp-plugins/stp-importer/dev','Development version of the Simple Tags Importer plugin.',26,'https://plugins.trac.wordpress.org/browser/stp-importer/trunk/%file%#L%line%',1), (28,'RSS Importer','rss-importer','wp-plugins/rss-importer','Import posts from an RSS feed.

WordPress.org Plugin Page',17,'',1), (29,'Development (trunk)','dev','wp-plugins/rss-importer/dev','Development version of the RSS Importer plugin.',28,'https://plugins.trac.wordpress.org/browser/rss-importer/trunk/%file%#L%line%',1), (30,'OPML Importer','opml-importer','wp-plugins/opml-importer','Import links in OPML format.

WordPress.org Plugin Page',17,'',1), (31,'Development (trunk)','dev','wp-plugins/opml-importer/dev','Development version of the OPML Importer plugin.',30,'https://plugins.trac.wordpress.org/browser/opml-importer/trunk/%file%#L%line%',1), (32,'Movable Type and TypePad Importer','movabletype-importer','wp-plugins/movabletype-importer','Import posts and comments from a Movable Type or TypePad blog.

WordPress.org Plugin Page',17,'',1), (33,'Development (trunk)','dev','wp-plugins/movabletype-importer/dev','Development version of the Movable Type and TypePad Importer plugin.',32,'https://plugins.trac.wordpress.org/browser/movabletype-importer/trunk/%file%#L%line%',1), (34,'LiveJournal Importer','livejournal-importer','wp-plugins/livejournal-importer','Import posts and comments from LiveJournal.

WordPress.org Plugin Page',17,'',1), (35,'Development (trunk)','dev','wp-plugins/livejournal-importer/dev','Development version of the LiveJournal Importer plugin.',34,'https://plugins.trac.wordpress.org/browser/livejournal-importer/trunk/%file%#L%line%',1), (36,'GreyMatter Importer','greymatter-importer','wp-plugins/greymatter-importer','Import users, posts, and comments from a Greymatter blog.

WordPress.org Plugin Page',17,'',1), (37,'Development (trunk)','dev','wp-plugins/greymatter-importer/dev','Development version of the GreyMatter Importer plugin.',36,'https://plugins.trac.wordpress.org/browser/greymatter-importer/trunk/%file%#L%line%',1), (38,'DotClear Importer','dotclear-importer','wp-plugins/dotclear-importer','Import categories, users, posts, comments, and links from a DotClear blog.

WordPress.org Plugin Page',17,'',1), (39,'Development (trunk)','dev','wp-plugins/dotclear-importer/dev','Development version of the DotClear Importer plugin.',38,'https://plugins.trac.wordpress.org/browser/dotclear-importer/trunk/%file%#L%line%',1), (40,'Blogware Importer','blogware-importer','wp-plugins/blogware-importer','Import posts from Blogware.

WordPress.org Plugin Page',17,'',1), (41,'Development (trunk)','dev','wp-plugins/blogware-importer/dev','Development version of the Blogware Importer plugin.',40,'https://plugins.trac.wordpress.org/browser/blogware-importer/trunk/%file%#L%line%',1), (42,'Blogger Importer','blogger-importer','wp-plugins/blogger-importer','Imports posts, images, comments, and categories (blogger tags) from a Blogger blog then migrates authors to WordPress users.

WordPress.org Plugin Page',17,'',1), (43,'Development (trunk)','dev','wp-plugins/blogger-importer/dev','Development version of the Blogger Importer plugin.',42,'https://plugins.trac.wordpress.org/browser/blogger-importer/trunk/%file%#L%line%',1), (44,'3.0.x','3.0.x','wp/3.0.x','Translation of 3.0 and all 3.0.x versions of WordPress.\r\n\r\nStrings are taken from the code in branches/3.0 in the WordPress repository.',1,'https://core.trac.wordpress.org/browser/branches/3.0/%file%#L%line%',0), (45,'Multisite','ms','wp/3.0.x/ms','Multiste strings for WordPress 3.0 and 3.0.x',44,'https://core.trac.wordpress.org/browser/branches/3.0/%file%#L%line%',0), (46,'Twenty Ten','twentyten','wp/3.0.x/twentyten','Translations of the 2010 default theme for WordPress 3.0 and 3.0.x',44,'https://core.trac.wordpress.org/browser/branches/3.0/wp-content/themes/twentyten/%file%#L%line%',0), (49,'WordPress for Windows Phone','windows-phone','apps/windows-phone','',281,'',NULL), (50,'Development','development','apps/windows-phone/development','',49,'',0), (51,'1.2.x','1.2.x','buddypress/1.2.x','Translation of 1.2 and all 1.2.x versions of BuddYpress.\r\n\r\nStrings are taken from the code in branches/1.2 in the WordPress repository.',13,'https://trac.buddypress.org/browser/branches/1.2/%file%#L%line%',0), (52,'3.1.x','3.1.x','wp/3.1.x','Translation of 3.1 and all 3.1.x versions of WordPress.\r\n\r\nStrings are taken from the code in branches/3.1 in the WordPress repository.',1,'https://core.trac.wordpress.org/browser/branches/3.1/%file%#L%line%',0), (53,'Multisite','ms','wp/3.1.x/ms','Multiste strings for WordPress 3.1 and 3.1.x',52,'https://core.trac.wordpress.org/browser/branches/3.1/%file%#L%line%',0), (54,'Twenty Ten','twentyten','wp/3.1.x/twentyten','Translations of the 2010 default theme for WordPress 3.1 and 3.1.x',52,'https://core.trac.wordpress.org/browser/branches/3.0/wp-content/themes/twentyten/%file%#L%line%',0), (55,'Twenty Eleven','twentyeleven','wp/dev/twentyeleven','Translations of the 2011 default theme for WordPress',2,'https://core.trac.wordpress.org/browser/trunk/src/wp-content/themes/twentyeleven/%file%#L%line%',0), (56,'WordPress for iOS','ios','apps/ios','Inspiration strikes anytime, anywhere. WordPress: at your fingertips. https://apps.wordpress.org/',281,'',1), (57,'Development','dev','apps/ios/dev','The development version of the WordPress for iOS application.',56,'',1), (58,'bbPress','bbpress','bbpress','bbPress is forum software, made the WordPress way.\r\n
\r\nDevelopment and Stable projects are moved to a new path: /projects/wp-plugins/bbpress',NULL,'',NULL), (59,'Development (trunk)','dev','wp-plugins/bbpress/dev','Development version of the bbPress plugin.',426,'https://plugins.trac.wordpress.org/browser/bbpress/trunk/%file%#L%line%',1), (60,'3.2.x','3.2.x','wp/3.2.x','Translation of 3.2 and all 3.2.x versions of WordPress. Strings are taken from the code in branches/3.2 in the WordPress repository.',1,'https://core.trac.wordpress.org/browser/branches/3.2/%file%#L%line%',0), (61,'Multisite','ms','wp/3.2.x/ms','Multiste strings for WordPress 3.2 and 3.2.x',60,'https://core.trac.wordpress.org/browser/branches/3.2/%file%#L%line%',0), (62,'Twenty Ten','twentyten','wp/3.2.x/twentyten','Translations of the 2010 theme for WordPress 3.2 and 3.2.x',60,'https://core.trac.wordpress.org/browser/branches/3.2/wp-content/themes/twentyten/%file%#L%line%',0), (63,'Twenty Eleven','twentyeleven','wp/3.2.x/twentyeleven','Translations of the 2011 default theme for WordPress 3.2',60,'https://core.trac.wordpress.org/browser/branches/3.2/wp-content/themes/twentyeleven/%file%#L%line%',0), (64,'Continents & Cities','cc','wp/dev/cc','Contains strings of Continents & Cities.',2,'https://core.trac.wordpress.org/browser/trunk/src/%file%#L%line%',1), (66,'Rosetta','rosetta','meta/rosetta','Strings used in international WordPress.org sites (like es.wordpress.org). For more information, see: https://codex.wordpress.org/International_WordPress_Sites',487,'https://meta.trac.wordpress.org/browser/sites/trunk/global.wordpress.org/public_html/wp-content/%file%#L%line%',1), (67,'WordCamp Base Theme','wordcamp-theme','meta/wordcamp-theme','',487,'https://meta.trac.wordpress.org/browser/sites/trunk/wordcamp.org/public_html/wp-content/themes/%file%#L%line%',1), (71,'3.3.x','3.3.x','wp/3.3.x','Translation of 3.3 and all 3.3.x versions of WordPress. Strings are taken from the code in branches/3.3 in the WordPress repository.',1,'https://core.trac.wordpress.org/browser/branches/3.3/%file%#L%line%',0), (72,'Multisite','ms','wp/3.3.x/ms','Multiste strings for WordPress 3.3 and 3.3.x',71,'https://core.trac.wordpress.org/browser/branches/3.3/%file%#L%line%',0), (73,'Twenty Eleven','twentyeleven','wp/3.3.x/twentyeleven','Translations of the 2011 default theme for WordPress 3.3 and 3.3.x',71,'https://core.trac.wordpress.org/browser/branches/3.3/wp-content/themes/twentyeleven/%file%#L%line%',0), (74,'Twenty Ten','twentyten','wp/3.3.x/twentyten','Translations of the 2010 theme for WordPress 3.3 and 3.3.x',71,'https://core.trac.wordpress.org/browser/branches/3.3/wp-content/themes/twentyten/%file%#L%line%',0), (75,'Continents & Cities','cc','wp/3.3.x/cc','',71,'',0), (76,'Tumblr Importer','tumblr-importer','wp-plugins/tumblr-importer','Import posts from a Tumblr blog.

WordPress.org Plugin Page',17,'',1), (77,'Development (trunk)','dev','wp-plugins/tumblr-importer/dev','Development version of the Tumblr Importer plugin.',76,'https://plugins.trac.wordpress.org/browser/tumblr-importer/trunk/%file%#L%line%',1), (78,'Administration','admin','wp/dev/admin','Contains strings for the WordPress admin.',2,'https://core.trac.wordpress.org/browser/trunk/src/%file%#L%line%',1), (79,'Network Admin','network','wp/dev/admin/network','Contains strings for the WordPress Network Admin.',78,'https://core.trac.wordpress.org/browser/trunk/src/%file%#L%line%',1), (80,'Twenty Twelve','twentytwelve','wp/dev/twentytwelve','Translations of the 2012 default theme for WordPress',2,'https://core.trac.wordpress.org/browser/trunk/src/wp-content/themes/twentytwelve/%file%#L%line%',0), (81,'Forums (Deprecated)','forums-old','meta/forums-old','The WordPress.org international forums, such as xx.forums.wordpress.org.',487,'',NULL), (82,'Browse Happy','browsehappy','meta/browsehappy','Using an outdated browser makes your computer unsafe. Browse Happy is a way for you to find out what are the latest versions of the major browsers around. You can also learn about alternative browsers that may fit you even better than the one you are currently using.',487,'https://meta.trac.wordpress.org/browser/sites/trunk/browsehappy.com/public_html/%file%#L%line%',1), (83,'1.6.x','1.6.x','buddypress/1.6.x','Translation of 1.6 and all 1.6.x versions of BuddYpress.\r\n\r\nStrings are taken from the code in branches/1.6 in the WordPress repository.',13,'https://trac.buddypress.org/browser/branches/1.6/%file%#L%line%',0), (84,'3.4.x','3.4.x','wp/3.4.x','Translation of the 3.4.x versions of WordPress.\r\n\r\nStrings are taken from the code in branches/3.4 in the WordPress repository.',1,'https://core.trac.wordpress.org/browser/branches/3.4/%file%#L%line%',0), (85,'Administration','admin','wp/3.4.x/admin','Contains strings for the WordPress admin.',84,'https://core.trac.wordpress.org/browser/branches/3.4/%file%#L%line%',0), (86,'Network Admin','network','wp/3.4.x/admin/network','Contains strings for the WordPress Network Admin.',85,'https://core.trac.wordpress.org/browser/branches/3.4/%file%#L%line%',0), (87,'Twenty Ten','twentyten','wp/3.4.x/twentyten','Translations of the 2010 default theme for WordPress',84,'https://core.trac.wordpress.org/browser/trunk/wp-content/themes/twentyten/%file%#L%line%',0), (88,'Twenty Eleven','twentyeleven','wp/3.4.x/twentyeleven','Translations of the 2011 default theme for WordPress',84,'https://core.trac.wordpress.org/browser/trunk/wp-content/themes/twentyeleven/%file%#L%line%',0), (90,'Continents & Cities','cc','wp/3.4.x/cc','',84,'',0), (91,'GlotPress','glotpress','glotpress','',NULL,'https://glotpress.trac.wordpress.org/browser/trunk/%file%#L%line%',NULL), (92,'Development','dev','glotpress/dev','Translation of the development version of GlotPress.\r\n\r\nStrings are taken from the code in trunk in the GlotPress repository.\r\n\r\nTo recurse is divine.',91,'https://glotpress.trac.wordpress.org/browser/trunk/%file%#L%line%',NULL), (93,'2.2.x','2.2.x','bbpress/2.2.x','Translation of the 2.2.x versions of bbPress.\r\n\r\nStrings are taken from the code in branches/2.2 in the bbPress repository.',58,'https://bbpress.trac.wordpress.org/browser/branches/2.2/%file%#L%line%',0), (94,'3.5.x','3.5.x','wp/3.5.x','Translation of the 3.5.x versions of WordPress.\r\n\r\nStrings are taken from the code in branches/3.5 in the WordPress repository.',1,'https://core.trac.wordpress.org/browser/branches/3.5/%file%#L%line%',0), (95,'Administration','admin','wp/3.5.x/admin','Contains strings for the WordPress admin.',94,'https://core.trac.wordpress.org/browser/branches/3.5/%file%#L%line%',0), (96,'Network Admin','network','wp/3.5.x/admin/network','Contains strings for the WordPress Network Admin.',95,'https://core.trac.wordpress.org/browser/branches/3.5/%file%#L%line%',0), (97,'Continents & Cities','cc','wp/3.5.x/cc','',94,'',0), (98,'Twenty Twelve','twentytwelve','wp/3.5.x/twentytwelve','Translations of the 2012 default theme for WordPress',94,'https://core.trac.wordpress.org/browser/branches/3.5/wp-content/themes/twentytwelve/%file%#L%line%',0), (99,'Twenty Eleven','twentyeleven','wp/3.5.x/twentyeleven','Translations of the 2011 default theme for WordPress',94,'https://core.trac.wordpress.org/browser/branches/3.5/wp-content/themes/twentyeleven/%file%#L%line%',0), (100,'Twenty Ten','twentyten','wp/3.5.x/twentyten','Translations of the 2010 default theme for WordPress',94,'https://core.trac.wordpress.org/browser/branches/3.5/wp-content/themes/twentyten/%file%#L%line%',0), (101,'Twenty Thirteen','twentythirteen','wp/dev/twentythirteen','Translations of the 2013 default theme for WordPress',2,'https://core.trac.wordpress.org/browser/trunk/src/wp-content/themes/twentythirteen/%file%#L%line%',1), (102,'1.7.x','1.7.x','buddypress/1.7.x','Translation of 1.7 and all 1.7.x versions of BuddYpress.\r\n\r\nStrings are taken from the code in branches/1.7 in the WordPress repository.',13,'https://trac.buddypress.org/browser/branches/1.7/%file%#L%line%',0), (103,'2.3.x','2.3.x','bbpress/2.3.x','Translation of the 2.3.x versions of bbPress.\r\n\r\nStrings are taken from the code in branches/2.3 in the bbPress repository.',58,'https://bbpress.trac.wordpress.org/browser/branches/2.3/%file%#L%line%',0), (113,'2.4.x','2.4.x','bbpress/2.4.x','Translation of the 2.4.x versions of bbPress.\r\n\r\nStrings are taken from the code in branches/2.4 in the bbPress repository.',58,'https://bbpress.trac.wordpress.org/browser/branches/2.4/%file%#L%line%',0), (114,'3.6.x','3.6.x','wp/3.6.x','Translation of the 3.6.x versions of WordPress.\r\n\r\nStrings are taken from the code in branches/3.6 in the WordPress repository.',1,'https://core.trac.wordpress.org/browser/branches/3.6/%file%#L%line%',0), (115,'Administration','admin','wp/3.6.x/admin','Contains strings for the WordPress admin.',114,'https://core.trac.wordpress.org/browser/branches/3.6/%file%#L%line%',0), (116,'Network Admin','network','wp/3.6.x/admin/network','Contains strings for the WordPress Network Admin.',115,'https://core.trac.wordpress.org/browser/branches/3.6/%file%#L%line%',0), (117,'Continents & Cities','cc','wp/3.6.x/cc','',114,'',0), (118,'Twenty Ten','twentyten','wp/3.6.x/twentyten','Translations of the 2010 default theme for WordPress',114,'https://core.trac.wordpress.org/browser/branches/3.6/wp-content/themes/twentyten/%file%#L%line%',0), (119,'Twenty Eleven','twentyeleven','wp/3.6.x/twentyeleven','Translations of the 2011 default theme for WordPress',114,'https://core.trac.wordpress.org/browser/branches/3.6/wp-content/themes/twentyeleven/%file%#L%line%',0), (120,'Twenty Twelve','twentytwelve','wp/3.6.x/twentytwelve','Translations of the 2012 default theme for WordPress',114,'https://core.trac.wordpress.org/browser/branches/3.6/wp-content/themes/twentytwelve/%file%#L%line%',0), (121,'Twenty Thirteen','twentythirteen','wp/3.6.x/twentythirteen','Translations of the 2013 default theme for WordPress',114,'https://core.trac.wordpress.org/browser/branches/3.6/wp-content/themes/twentythirteen/%file%#L%line%',0), (122,'3.7.x','3.7.x','wp/3.7.x','Translation of the 3.7.x versions of WordPress.\r\n\r\nStrings are taken from the code in branches/3.7 in the WordPress repository.',1,'https://core.trac.wordpress.org/browser/branches/3.7/%file%#L%line%',0), (123,'Administration','admin','wp/3.7.x/admin','Contains strings for the WordPress admin.',122,'https://core.trac.wordpress.org/browser/branches/3.7/%file%#L%line%',0), (124,'Continents & Cities','cc','wp/3.7.x/cc','',122,'',0), (125,'Network Admin','network','wp/3.7.x/admin/network','Contains strings for the WordPress Network Admin.',123,'https://core.trac.wordpress.org/browser/branches/3.7/%file%#L%line%',0), (126,'Twenty Ten','twentyten','wp/3.7.x/twentyten','Translations of the 2010 default theme for WordPress',122,'https://core.trac.wordpress.org/browser/branches/3.7/wp-content/themes/twentyten/%file%#L%line%',0), (127,'Twenty Eleven','twentyeleven','wp/3.7.x/twentyeleven','Translations of the 2011 default theme for WordPress',122,'https://core.trac.wordpress.org/browser/branches/3.7/wp-content/themes/twentyeleven/%file%#L%line%',0), (128,'Twenty Twelve','twentytwelve','wp/3.7.x/twentytwelve','Translations of the 2012 default theme for WordPress',122,'https://core.trac.wordpress.org/browser/branches/3.7/wp-content/themes/twentytwelve/%file%#L%line%',0), (129,'Twenty Thirteen','twentythirteen','wp/3.7.x/twentythirteen','Translations of the 2013 default theme for WordPress',122,'https://core.trac.wordpress.org/browser/branches/3.7/wp-content/themes/twentythirteen/%file%#L%line%',0), (130,'Twenty Fourteen','twentyfourteen','wp/dev/twentyfourteen','Translations of the 2014 default theme for WordPress',2,'https://core.trac.wordpress.org/browser/trunk/src/wp-content/themes/twentyfourteen/%file%#L%line%',1), (131,'1.9.x','1.9.x','buddypress/1.9.x','Translation of 1.9 and all 1.9.x versions of BuddyPress.\r\n\r\nStrings are taken from the code in branches/1.9 in the WordPress repository.',13,'https://trac.buddypress.org/browser/branches/1.9/%file%#L%line%',0), (206,'3.8.x','3.8.x','wp/3.8.x','Translation of the 3.8.x version of WordPress.\r\n\r\nStrings are taken from the code in branches/3.8/src in the WordPress repository.',1,'https://core.trac.wordpress.org/browser/branches/3.8/src/%file%#L%line%',0), (207,'Administration','admin','wp/3.8.x/admin','Contains strings for the WordPress admin.',206,'https://core.trac.wordpress.org/browser/branches/3.8/%file%#L%line%',0), (208,'Network Admin','network','wp/3.8.x/admin/network','Contains strings for the WordPress Network Admin.',207,'https://core.trac.wordpress.org/browser/branches/3.8/%file%#L%line%',0), (209,'Twenty Twelve','twentytwelve','wp/3.8.x/twentytwelve','Translations of the 2012 default theme for WordPress',206,'https://core.trac.wordpress.org/browser/branches/3.8/wp-content/themes/twentytwelve/%file%#L%line%',0), (210,'Twenty Thirteen','twentythirteen','wp/3.8.x/twentythirteen','Translations of the 2013 default theme for WordPress',206,'https://core.trac.wordpress.org/browser/branches/3.8/wp-content/themes/twentythirteen/%file%#L%line%',0), (211,'Twenty Fourteen','twentyfourteen','wp/3.8.x/twentyfourteen','Translations of the 2014 default theme for WordPress',206,'https://core.trac.wordpress.org/browser/branches/3.8/wp-content/themes/twentyfourteen/%file%#L%line%',0), (212,'Twenty Ten','twentyten','wp/3.8.x/twentyten','Translations of the 2010 default theme for WordPress',206,'https://core.trac.wordpress.org/browser/branches/3.8/wp-content/themes/twentyten/%file%#L%line%',0), (213,'Twenty Eleven','twentyeleven','wp/3.8.x/twentyeleven','Translations of the 2011 default theme for WordPress',206,'https://core.trac.wordpress.org/browser/branches/3.8/wp-content/themes/twentyeleven/%file%#L%line%',0), (214,'Continents & Cities','cc','wp/3.8.x/cc','',206,'',0), (215,'Stable (latest release)','stable','wp-plugins/bbpress/stable','Stable version of the bbPress plugin.',426,'https://plugins.trac.wordpress.org/browser/bbpress/tags/2.5.8/%file%#L%line%',1), (216,'Akismet','akismet','wp-plugins/akismet','Akismet checks your comments against the Akismet Web service to see if they look like spam or not.

WordPress.org Plugin Page',17,'https://plugins.trac.wordpress.org/browser/akismet/trunk/%file%#L%line%',1), (217,'Development (trunk)','dev','wp-plugins/akismet/dev','Development version of the Akismet plugin.',216,'https://plugins.trac.wordpress.org/browser/akismet/trunk/%file%#L%line%',1), (263,'Release Notes & Play Store Descriptions','release-notes','apps/android/release-notes','',6,'',1), (264,'Release Notes & Apple Store Description','release-notes','apps/ios/release-notes','',56,'',1), (270,'3.9.x','3.9.x','wp/3.9.x','Translation of the 3.9.x version of WordPress.\r\n\r\nStrings are taken from the code in branches/3.9/src in the WordPress repository.',1,'https://core.trac.wordpress.org/browser/branches/3.9/src/%file%#L%line%',0), (271,'Administration','admin','wp/3.9.x/admin','Contains strings for the WordPress admin.',270,'https://core.trac.wordpress.org/browser/branches/3.9/%file%#L%line%',0), (272,'Network Admin','network','wp/3.9.x/admin/network','Contains strings for the WordPress Network Admin.',271,'https://core.trac.wordpress.org/browser/branches/3.9/src/%file%#L%line%',0), (273,'Continents & Cities','cc','wp/3.9.x/cc','',270,'',0), (274,'Twenty Ten','twentyten','wp/3.9.x/twentyten','Translations of the 2010 default theme for WordPress',270,'https://core.trac.wordpress.org/browser/branches/3.9/wp-content/themes/twentyten/%file%#L%line%',0), (275,'Twenty Eleven','twentyeleven','wp/3.9.x/twentyeleven','Translations of the 2011 default theme for WordPress',270,'https://core.trac.wordpress.org/browser/branches/3.9/wp-content/themes/twentyeleven/%file%#L%line%',0), (276,'Twenty Twelve','twentytwelve','wp/3.9.x/twentytwelve','Translations of the 2012 default theme for WordPress',270,'https://core.trac.wordpress.org/browser/branches/3.9/wp-content/themes/twentytwelve/%file%#L%line%',0), (277,'Twenty Thirteen','twentythirteen','wp/3.9.x/twentythirteen','Translations of the 2013 default theme for WordPress',270,'https://core.trac.wordpress.org/browser/branches/3.9/wp-content/themes/twentythirteen/%file%#L%line%',0), (278,'Twenty Fourteen','twentyfourteen','wp/3.9.x/twentyfourteen','Translations of the 2014 default theme for WordPress',270,'https://core.trac.wordpress.org/browser/branches/3.9/wp-content/themes/twentyfourteen/%file%#L%line%',0), (279,'2.0.x','2.0.x','buddypress/2.0.x','Translation of 2.0 and all 2.0.x versions of BuddyPress.',13,'https://trac.buddypress.org/browser/branches/2.0/%file%#L%line%',0), (281,'Apps','apps','apps','WordPress.org mobile apps site.',NULL,'https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-apps/%file%#L%line%',1), (363,'Development Readme (trunk)','dev-readme','wp-plugins/blogware-importer/dev-readme','Development version of the Blogware Importer plugin\'s readme.txt file.',40,'https://plugins.trac.wordpress.org/browser/blogware-importer/trunk/readme.txt#L%line%',1), (394,'4.0.x','4.0.x','wp/4.0.x','Translation of the 4.0.x version of WordPress.\r\n\r\nStrings are taken from the code in branches/4.0/src in the WordPress repository.',1,'https://core.trac.wordpress.org/browser/branches/4.0/src/%file%#L%line%',0), (395,'Administration','admin','wp/4.0.x/admin','Contains strings for the WordPress admin.',394,'https://core.trac.wordpress.org/browser/branches/4.0/src/%file%#L%line%',0), (396,'Network Admin','network','wp/4.0.x/admin/network','Contains strings for the WordPress Network Admin.',395,'https://core.trac.wordpress.org/browser/branches/4.0/src/%file%#L%line%',0), (397,'Continents & Cities','cc','wp/4.0.x/cc','Contains strings of Continents & Cities.',394,'https://core.trac.wordpress.org/browser/branches/4.0/src/%file%#L%line%',0), (398,'Twenty Ten','twentyten','wp/4.0.x/twentyten','Translations of the 2010 default theme for WordPress',394,'https://core.trac.wordpress.org/browser/branches/4.0/src/wp-content/themes/twentyten/%file%#L%line%',0), (399,'Twenty Eleven','twentyeleven','wp/4.0.x/twentyeleven','Translations of the 2011 default theme for WordPress',394,'https://core.trac.wordpress.org/browser/branches/4.0/src/wp-content/themes/twentyeleven/%file%#L%line%',0), (400,'Twenty Twelve','twentytwelve','wp/4.0.x/twentytwelve','Translations of the 2012 default theme for WordPress',394,'https://core.trac.wordpress.org/browser/branches/4.0/src/wp-content/themes/twentytwelve/%file%#L%line%',0), (401,'Twenty Thirteen','twentythirteen','wp/4.0.x/twentythirteen','Translations of the 2013 default theme for WordPress',394,'https://core.trac.wordpress.org/browser/branches/4.0/src/wp-content/themes/twentythirteen/%file%#L%line%',0), (402,'Twenty Fourteen','twentyfourteen','wp/4.0.x/twentyfourteen','Translations of the 2014 default theme for WordPress',394,'https://core.trac.wordpress.org/browser/branches/4.0/src/wp-content/themes/twentyfourteen/%file%#L%line%',0), (421,'Twenty Fifteen','twentyfifteen','wp/dev/twentyfifteen','Translations of the 2015 default theme for WordPress',2,'https://core.trac.wordpress.org/browser/trunk/src/wp-content/themes/twentyfifteen/%file%#L%line%',1), (422,'2.1.x','2.1.x','buddypress/2.1.x','Translation of 2.1 and all 2.1.x versions of BuddyPress.',13,'https://buddypress.trac.wordpress.org/browser/branches/2.1/src/%file%#L%line%',0), (423,'Development Readme (trunk)','dev-readme','wp-plugins/livejournal-importer/dev-readme','Development version of the LiveJournal Importer plugin\'s readme.txt file.',34,'https://plugins.trac.wordpress.org/browser/livejournal-importer/trunk/readme.txt#L%line%',1), (424,'Stable (latest release)','stable','wp-plugins/livejournal-importer/stable','Stable version of the LiveJournal Importer plugin.',34,'https://plugins.trac.wordpress.org/browser/livejournal-importer/tags/0.5/%file%#L%line%',1), (425,'Stable Readme (latest release)','stable-readme','wp-plugins/livejournal-importer/stable-readme','Stable version of the LiveJournal Importer plugin\'s readme.txt file.',34,'https://plugins.trac.wordpress.org/browser/livejournal-importer/0.5/readme.txt#L%line%',1), (426,'bbPress','bbpress','wp-plugins/bbpress','bbPress is forum software, made the WordPress way.

WordPress.org Plugin Page',17,'',1), (428,'Development Readme (trunk)','dev-readme','wp-plugins/bbpress/dev-readme','Development version of the bbPress plugin\'s readme.txt file.',426,NULL,1), (430,'Stable Readme (latest release)','stable-readme','wp-plugins/bbpress/stable-readme','Stable version of the bbPress plugin\'s readme.txt file.',426,'',1), (431,'Development Readme (trunk)','dev-readme','wp-plugins/dotclear-importer/dev-readme','Development version of the DotClear Importer plugin\'s readme.txt file.',38,NULL,1), (432,'Development Readme (trunk)','dev-readme','wp-plugins/akismet/dev-readme','Development version of the Akismet plugin\'s readme.txt file.',216,NULL,1), (433,'Stable (latest release)','stable','wp-plugins/akismet/stable','Stable version of the Akismet plugin.',216,'https://plugins.trac.wordpress.org/browser/akismet/tags/3.1.3/%file%#L%line%',1), (434,'Stable Readme (latest release)','stable-readme','wp-plugins/akismet/stable-readme','Stable version of the Akismet plugin\'s readme.txt file.',216,'',1), (435,'Development Readme (trunk)','dev-readme','wp-plugins/wpcat2tag-importer/dev-readme','Development version of the Categories to Tags Converter plugin\'s readme.txt file.',18,NULL,1), (436,'Stable (latest release)','stable','wp-plugins/wpcat2tag-importer/stable','Stable version of the Categories to Tags Converter plugin.',18,'https://plugins.trac.wordpress.org/browser/wpcat2tag-importer/tags/0.5/%file%#L%line%',1), (437,'Stable Readme (latest release)','stable-readme','wp-plugins/wpcat2tag-importer/stable-readme','Stable version of the Categories to Tags Converter plugin\'s readme.txt file.',18,'',1), (438,'Development Readme (trunk)','dev-readme','wp-plugins/wordpress-importer/dev-readme','Development version of the WordPress Importer plugin\'s readme.txt file.',20,NULL,1), (439,'Stable (latest release)','stable','wp-plugins/wordpress-importer/stable','Stable version of the WordPress Importer plugin.',20,'https://plugins.trac.wordpress.org/browser/wordpress-importer/tags/0.6.1/%file%#L%line%',1), (440,'Stable Readme (latest release)','stable-readme','wp-plugins/wordpress-importer/stable-readme','Stable version of the WordPress Importer plugin\'s readme.txt file.',20,'',1), (441,'Development Readme (trunk)','dev-readme','wp-plugins/utw-importer/dev-readme','Development version of the Ultimate Tag Warrior Importer plugin\'s readme.txt file.',22,NULL,1), (442,'Development Readme (trunk)','dev-readme','wp-plugins/textpattern-importer/dev-readme','Development version of the TextPattern Importer plugin\'s readme.txt file.',24,NULL,1), (443,'Development Readme (trunk)','dev-readme','wp-plugins/stp-importer/dev-readme','Development version of the Simple Tags Importer plugin\'s readme.txt file.',26,NULL,1), (444,'Development Readme (trunk)','dev-readme','wp-plugins/rss-importer/dev-readme','Development version of the RSS Importer plugin\'s readme.txt file.',28,NULL,1), (445,'Development Readme (trunk)','dev-readme','wp-plugins/opml-importer/dev-readme','Development version of the OPML Importer plugin\'s readme.txt file.',30,NULL,1), (446,'Development Readme (trunk)','dev-readme','wp-plugins/movabletype-importer/dev-readme','Development version of the Movable Type and TypePad Importer plugin\'s readme.txt file.',32,NULL,1), (447,'Stable (latest release)','stable','wp-plugins/movabletype-importer/stable','Stable version of the Movable Type and TypePad Importer plugin.',32,'https://plugins.trac.wordpress.org/browser/movabletype-importer/tags/0.4/%file%#L%line%',1), (448,'Stable Readme (latest release)','stable-readme','wp-plugins/movabletype-importer/stable-readme','Stable version of the Movable Type and TypePad Importer plugin\'s readme.txt file.',32,'',1), (449,'Development Readme (trunk)','dev-readme','wp-plugins/greymatter-importer/dev-readme','Development version of the GreyMatter Importer plugin\'s readme.txt file.',36,NULL,1), (450,'Development Readme (trunk)','dev-readme','wp-plugins/blogger-importer/dev-readme','Development version of the Blogger Importer plugin\'s readme.txt file.',42,NULL,1), (451,'Stable (latest release)','stable','wp-plugins/blogger-importer/stable','Stable version of the Blogger Importer plugin.',42,'https://plugins.trac.wordpress.org/browser/blogger-importer/tags/0.9/%file%#L%line%',1), (452,'Stable Readme (latest release)','stable-readme','wp-plugins/blogger-importer/stable-readme','Stable version of the Blogger Importer plugin\'s readme.txt file.',42,'',1), (453,'Development Readme (trunk)','dev-readme','wp-plugins/tumblr-importer/dev-readme','Development version of the Tumblr Importer plugin\'s readme.txt file.',76,NULL,1), (454,'Stable (latest release)','stable','wp-plugins/tumblr-importer/stable','Stable version of the Tumblr Importer plugin.',76,'https://plugins.trac.wordpress.org/browser/tumblr-importer/tags/0.8/%file%#L%line%',1), (455,'Stable Readme (latest release)','stable-readme','wp-plugins/tumblr-importer/stable-readme','Stable version of the Tumblr Importer plugin\'s readme.txt file.',76,'',1), (456,'Theme Check','theme-check','wp-plugins/theme-check','A simple and easy way to test your theme for all the latest WordPress standards and practices. A great theme development tool!

WordPress.org Plugin Page',17,NULL,1), (457,'Development (trunk)','dev','wp-plugins/theme-check/dev','Development version of the Theme Check plugin.',456,'https://plugins.trac.wordpress.org/browser/theme-check/trunk/%file%#L%line%',1), (458,'Development Readme (trunk)','dev-readme','wp-plugins/theme-check/dev-readme','Development version of the Theme Check plugin\'s readme.txt file.',456,NULL,1), (459,'Stable (latest release)','stable','wp-plugins/theme-check/stable','Stable version of the Theme Check plugin.',456,'https://plugins.trac.wordpress.org/browser/theme-check/tags/20141222.1/%file%#L%line%',1), (460,'Stable Readme (latest release)','stable-readme','wp-plugins/theme-check/stable-readme','Stable version of the Theme Check plugin\'s readme.txt file.',456,NULL,1), (461,'User Switching','user-switching','wp-plugins/user-switching','Instant switching between user accounts in WordPress.

WordPress.org Plugin Page',17,NULL,1), (462,'Development (trunk)','dev','wp-plugins/user-switching/dev','Development version of the User Switching plugin.',461,'https://plugins.trac.wordpress.org/browser/user-switching/trunk/%file%#L%line%',1), (463,'Development Readme (trunk)','dev-readme','wp-plugins/user-switching/dev-readme','Development version of the User Switching plugin\'s readme.txt file.',461,NULL,1), (464,'Stable (latest release)','stable','wp-plugins/user-switching/stable','Stable version of the User Switching plugin.',461,'https://plugins.trac.wordpress.org/browser/user-switching/tags/1.0.7/%file%#L%line%',1), (465,'Stable Readme (latest release)','stable-readme','wp-plugins/user-switching/stable-readme','Stable version of the User Switching plugin\'s readme.txt file.',461,NULL,1), (466,'Debug Bar','debug-bar','wp-plugins/debug-bar','Adds a debug menu to the admin bar that shows query, cache, and other helpful debugging information.',17,NULL,1), (467,'Development Readme (trunk)','dev-readme','wp-plugins/debug-bar/dev-readme','Development version of the Debug Bar plugin\'s readme.txt file.',466,NULL,1), (468,'Stable Readme (latest release)','stable-readme','wp-plugins/debug-bar/stable-readme','Stable version of the Debug Bar plugin\'s readme.txt file.',466,NULL,1), (469,'2.2.x','2.2.x','buddypress/2.2.x','Translation of 2.2 and all 2.2.x versions of BuddyPress.',13,'https://buddypress.trac.wordpress.org/browser/branches/2.2/%file%#L%line%',NULL), (470,'WordPress.org Theme Directory','themes','meta/themes','WordPress.org theme directory.',487,'https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/%file%#L%line%',1), (471,'4.1.x','4.1.x','wp/4.1.x','Translation of the 4.1.x version of WordPress.\r\n
\r\nStrings are taken from the code in branches/4.1/src in the WordPress repository.',1,'https://core.trac.wordpress.org/browser/branches/4.1/%file%#L%line%',NULL), (472,'Administration','admin','wp/4.1.x/admin','Contains strings for the WordPress admin.',471,'https://core.trac.wordpress.org/browser/branches/4.1/src/%file%#L%line%',0), (473,'Network Admin','network','wp/4.1.x/admin/network','Contains strings for the WordPress Network Admin.',472,'https://core.trac.wordpress.org/browser/branches/4.1/src/%file%#L%line%',0), (474,'Twenty Thirteen','twentythirteen','wp/4.1.x/twentythirteen','Translations of the 2013 default theme for WordPress',471,'https://core.trac.wordpress.org/browser/branches/4.1/src/wp-content/themes/twentythirteen/%file%#L%line%',0), (475,'Twenty Fourteen','twentyfourteen','wp/4.1.x/twentyfourteen','Translations of the 2014 default theme for WordPress',471,'https://core.trac.wordpress.org/browser/branches/4.1/src/wp-content/themes/twentyfourteen/%file%#L%line%',0), (476,'Twenty Fifteen','twentyfifteen','wp/4.1.x/twentyfifteen','Translations of the 2015 default theme for WordPress',471,'https://core.trac.wordpress.org/browser/branches/4.1/src/wp-content/themes/twentyfifteen/%file%#L%line%',0), (477,'Twenty Ten','twentyten','wp/4.1.x/twentyten','Translations of the 2010 default theme for WordPress',471,'https://core.trac.wordpress.org/browser/branches/4.1/src/wp-content/themes/twentyten/%file%#L%line%',NULL), (478,'Twenty Eleven','twentyeleven','wp/4.1.x/twentyeleven','Translations of the 2011 default theme for WordPress',471,'https://core.trac.wordpress.org/browser/branches/4.1/src/wp-content/themes/twentyeleven/%file%#L%line%',NULL), (479,'Continents & Cities','cc','wp/4.1.x/cc','Contains strings of Continents & Cities.',471,'https://core.trac.wordpress.org/browser/branches/4.1/src/%file%#L%line%',0), (480,'Twenty Twelve','twentytwelve','wp/4.1.x/twentytwelve','Translations of the 2012 default theme for WordPress',471,'https://core.trac.wordpress.org/browser/branches/4.1/src/wp-content/themes/twentytwelve/%file%#L%line%',NULL), (481,'WordPress.org Plugin Directory','plugins','meta/plugins','WordPress.org plugin directory.',487,'',1), (487,'Meta','meta','meta','WordPress.org, Rosetta, and theme/plugin directories.',NULL,'',1), (488,'Forums','forums','meta/forums','The WordPress.org international forums.',487,'https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/%file%#L%line%',1), (490,'1.1.x','1.1.x','bbpress/1.1.x','Translation of the 1.1.x versions of bbPress.\r\n\r\nStrings are taken from the code in branches/1.1 in the bbPress repository.',58,'https://bbpress.trac.wordpress.org/browser/branches/1.1/%file%#L%line%',NULL), (491,'WordCamp for Android','wordcamp-android','apps/wordcamp-android','',281,'',1), (492,'Development','dev','apps/wordcamp-android/dev','The development version of the WordCamp for Android application. ',491,'',1), (493,'Stable (latest release)','stable','wp-plugins/buddypress/stable','Stable version of the BuddyPress plugin.',2739,'https://plugins.trac.wordpress.org/browser/buddypress/tags/2.3.2/%file%#L%line%',1), (494,'Release Notes & Play Store Descriptions','release-notes','apps/wordcamp-android/release-notes','',491,'',1), (495,'4.2.x','4.2.x','wp/4.2.x','Translation of the 4.2.x version of WordPress.\r\n
\r\nStrings are taken from the code in branches/4.2/src in the WordPress repository.',1,'https://core.trac.wordpress.org/browser/branches/4.2/src/%file%#L%line%',1), (496,'Continents & Cities','cc','wp/4.2.x/cc','Contains strings of Continents & Cities.',495,'https://core.trac.wordpress.org/browser/branches/4.2/src/%file%#L%line%',1), (497,'Administration','admin','wp/4.2.x/admin','Contains strings for the WordPress admin.',495,'https://core.trac.wordpress.org/browser/branches/4.2/src/%file%#L%line%',1), (498,'Network Admin','network','wp/4.2.x/admin/network','Contains strings for the WordPress Network Admin.',497,'https://core.trac.wordpress.org/browser/branches/4.2/src/%file%#L%line%',1), (499,'Twenty Thirteen','twentythirteen','wp/4.2.x/twentythirteen','Translations of the 2013 default theme for WordPress',495,'https://core.trac.wordpress.org/browser/branches/4.2/src/wp-content/themes/twentythirteen/%file%#L%line%',1), (500,'Twenty Fourteen','twentyfourteen','wp/4.2.x/twentyfourteen','Translations of the 2014 default theme for WordPress',495,'https://core.trac.wordpress.org/browser/branches/4.2/src/wp-content/themes/twentyfourteen/%file%#L%line%',1); /*!40000 ALTER TABLE `translate_projects` ENABLE KEYS */; UNLOCK TABLES; # Dump of table translate_translation_sets # ------------------------------------------------------------ DROP TABLE IF EXISTS `translate_translation_sets`; CREATE TABLE `translate_translation_sets` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `project_id` int(10) DEFAULT NULL, `locale` varchar(10) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `project_id_slug_locale` (`project_id`,`slug`,`locale`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; LOCK TABLES `translate_translation_sets` WRITE; /*!40000 ALTER TABLE `translate_translation_sets` DISABLE KEYS */; INSERT INTO `translate_translation_sets` (`id`, `name`, `slug`, `project_id`, `locale`) VALUES (2,'Arabic','default',2,'ar'), (3,'Azerbaijani','default',2,'az'), (4,'Bulgarian','default',2,'bg'), (5,'Bengali','default',2,'bn'), (6,'Bosnian','default',2,'bs'), (7,'Catalan','default',2,'ca'), (8,'Kurdish','default',2,'ckb'), (9,'Czech','default',2,'cs'), (10,'Danish','default',2,'da'), (11,'German','default',2,'de'), (12,'Greek','default',2,'el'), (13,'Esperanto','default',2,'eo'), (14,'Chilean Spanish','default',2,'es-cl'), (15,'Spanish','default',2,'es'), (16,'Peruvian Spanish','default',2,'es-pe'), (17,'Venezuelan Spanish','default',2,'es-ve'), (18,'Estonian','default',2,'et'), (19,'Basque','default',2,'eu'), (20,'Persian','default',2,'fa'), (21,'Finnish','default',2,'fi'), (22,'Faroese','default',2,'fo'), (23,'French','default',2,'fr'), (24,'Galician','default',2,'gl'), (25,'Hebrew','default',2,'he'), (26,'Hindi','default',2,'hi'), (27,'Hungarian','default',2,'hu'), (28,'Indonesian','default',2,'id'), (29,'Italian','default',2,'it'), (30,'Japanese','default',2,'ja'), (31,'Javanese','default',2,'jv'), (32,'Georgian','default',2,'ka'), (33,'Kannada','default',2,'kn'), (34,'Korean','default',2,'ko'), (35,'Kirghiz','default',2,'ky'), (36,'Latvian','default',2,'lv'), (37,'Malay','default',2,'ms'), (39,'Dutch','default',2,'nl'), (40,'Polish','default',2,'pl'), (41,'Brazilian Portuguese','default',2,'pt-br'), (42,'Portuguese','default',2,'pt'), (43,'Romanian','default',2,'ro'), (44,'Russian','default',2,'ru'), (45,'Sinhala','default',2,'si'), (46,'Slovak','default',2,'sk'), (47,'Albanian','default',2,'sq'), (48,'Serbian','default',2,'sr'), (49,'Sundanese','default',2,'su'), (50,'Swedish','default',2,'sv'), (51,'Swahili','default',2,'sw'), (52,'Thai','default',2,'th'), (53,'Turkish','default',2,'tr'), (54,'Uighur','default',2,'ug'), (55,'Ukrainian','default',2,'uk'), (56,'Vietnamese','default',2,'vi'), (57,'Chinese (China)','default',2,'zh-cn'), (58,'Chinese (Taiwan)','default',2,'zh-tw'), (59,'Nepali','default',2,'ne'), (60,'French','default',5,'fr'), (61,'Indonesian','default',5,'id'), (62,'German','default',5,'de'), (63,'Italian','default',5,'it'), (64,'Portuguese (Portugal)','default',5,'pt'), (65,'Japanese','default',5,'ja'), (68,'Finnish','default',5,'fi'), (69,'Polish','default',5,'pl'), (70,'Spanish (Spain)','default',5,'es'), (71,'Korean','default',5,'ko'), (87,'Russian','default',5,'ru'), (88,'Bulgarian','default',7,'bg'), (89,'Russian','default',7,'ru'), (90,'Slovak','default',7,'sk'), (91,'Italian','default',7,'it'), (92,'Indonesian','default',7,'id'), (93,'Czech','default',7,'cs'), (94,'French (France)','default',7,'fr'), (95,'Portuguese (Brazil)','default',7,'pt-br'), (96,'Korean','default',7,'ko'), (97,'Polish','default',7,'pl'), (98,'Spanish (Spain)','default',7,'es'), (99,'Finnish','default',7,'fi'), (100,'German','default',7,'de'), (101,'Swedish','default',7,'sv'), (102,'Portuguese (Portugal)','default',7,'pt'), (103,'Portuguese (Portugal)','default',14,'pt'), (104,'Spanish (Spain)','default',14,'es'), (105,'Portuguese (Brazil)','default',14,'pt-br'), (106,'Japanese','default',7,'ja'), (107,'Albanian','default',7,'sq'), (109,'Catalan','default',14,'ca'), (110,'Czech','default',14,'cs'), (111,'Danish','default',14,'da'), (112,'German','default',14,'de'), (113,'Basque','default',14,'eu'), (114,'Finnish','default',14,'fi'), (115,'French (France)','default',14,'fr'), (116,'Indonesian','default',14,'id'), (117,'Icelandic','default',14,'is'), (118,'Italian','default',14,'it'), (119,'Japanese','default',14,'ja'), (120,'Latvian','default',14,'lv'), (121,'Polish','default',14,'pl'), (122,'Romanian','default',14,'ro'), (123,'Russian','default',14,'ru'), (124,'Swedish','default',14,'sv'), (125,'Thai','default',14,'th'), (126,'Ukrainian','default',14,'uk'), (127,'Chinese (China)','default',14,'zh-cn'), (128,'Chinese (Taiwan)','default',14,'zh-tw'), (129,'Slovak','default',5,'sk'), (130,'Dutch','default',14,'nl'), (131,'Frisian','default',2,'fy'), (132,'Frisian','default',14,'fy'), (133,'Spanish (Chile)','default',7,'es-cl'), (134,'Spanish (Peru)','default',7,'es-pe'), (135,'Spanish (Venezuela)','default',7,'es-ve'), (136,'Spanish (Colombia)','default',5,'es-co'), (137,'Spanish (Colombia)','default',7,'es-co'), (138,'Mongolian','default',2,'mn'), (139,'Hebrew','default',14,'he'), (141,'Hungarian','default',7,'hu'), (142,'Welsh','default',2,'cy'), (268,'Albanian','default',15,'sq'), (269,'Arabic','default',15,'ar'), (270,'Azerbaijani','default',15,'az'), (271,'Basque','default',15,'eu'), (272,'Bengali','default',15,'bn'), (273,'Bosnian','default',15,'bs'), (274,'Brazilian Portuguese','default',15,'pt-br'), (275,'Bulgarian','default',15,'bg'), (277,'Catalan','default',15,'ca'), (278,'Chilean Spanish','default',15,'es-cl'), (279,'Chinese (China)','default',15,'zh-cn'), (280,'Chinese (Taiwan)','default',15,'zh-tw'), (281,'Czech','default',15,'cs'), (282,'Danish','default',15,'da'), (283,'Dutch','default',15,'nl'), (284,'Esperanto','default',15,'eo'), (285,'Estonian','default',15,'et'), (286,'Faroese','default',15,'fo'), (287,'Finnish','default',15,'fi'), (288,'French','default',15,'fr'), (289,'Galician','default',15,'gl'), (290,'Georgian','default',15,'ka'), (291,'German','default',15,'de'), (292,'Greek','default',15,'el'), (293,'Hebrew','default',15,'he'), (294,'Hindi','default',15,'hi'), (295,'Hungarian','default',15,'hu'), (296,'Indonesian','default',15,'id'), (297,'Italian','default',15,'it'), (298,'Japanese','default',15,'ja'), (299,'Javanese','default',15,'jv'), (300,'Kannada','default',15,'kn'), (301,'Kirghiz','default',15,'ky'), (302,'Korean','default',15,'ko'), (303,'Kurdish','default',15,'ckb'), (304,'Latvian','default',15,'lv'), (305,'Malay','default',15,'ms'), (306,'Mongolian','default',15,'mn'), (307,'Nepali','default',15,'ne'), (308,'Persian','default',15,'fa'), (309,'Peruvian Spanish','default',15,'es-pe'), (310,'Polish','default',15,'pl'), (311,'Portuguese','default',15,'pt'), (312,'Romanian','default',15,'ro'), (313,'Russian','default',15,'ru'), (314,'Serbian','default',15,'sr'), (315,'Sinhala','default',15,'si'), (316,'Slovak','default',15,'sk'), (317,'Spanish','default',15,'es'), (318,'Sundanese','default',15,'su'), (319,'Swahili','default',15,'sw'), (320,'Swedish','default',15,'sv'), (321,'Thai','default',15,'th'), (322,'Turkish','default',15,'tr'), (323,'Uighur','default',15,'ug'), (324,'Ukrainian','default',15,'uk'), (325,'Venezuelan Spanish','default',15,'es-ve'), (326,'Vietnamese','default',15,'vi'), (327,'Welsh','default',15,'cy'), (328,'Frisian','default',15,'fy'), (329,'Norwegian (BokmÃ¥l)','default',7,'nb'), (330,'Malayalam','default',2,'ml'), (331,'Malayalam','default',15,'ml'), (332,'Turkish','default',7,'tr'), (333,'Turkish','default',5,'tr'), (334,'Uzbek','default',2,'uz'), (335,'Uzbek','default',15,'uz'), (336,'Tamil','default',7,'ta'), (337,'Norwegian (Nynorsk)','default',15,'nn'), (338,'Norwegian (BokmÃ¥l)','default',15,'nb'), (339,'Chinese','default',7,'zh'), (340,'Persian','default',14,'fa'), (341,'Catalan','default',7,'ca'), (342,'Catalan','default',5,'ca'), (343,'Macedonian','default',2,'mk'), (344,'Macedonian','default',15,'mk'), (410,'Norwegian (BokmÃ¥l)','default',2,'nb'), (411,'Norwegian (Nynorsk)','default',2,'nn'), (414,'Punjabi','default',2,'pa'), (416,'Punjabi','default',15,'pa'), (417,'Macedonian','default',14,'mk'), (418,'Macedonian','default',7,'mk'), (419,'Macedonian','default',5,'mk'), (421,'Albanian','default',43,'sq'), (422,'Arabic','default',43,'ar'), (423,'Azerbaijani','default',43,'az'), (424,'Basque','default',43,'eu'), (425,'Bengali','default',43,'bn'), (426,'Bosnian','default',43,'bs'), (427,'Brazilian Portuguese','default',43,'pt-br'), (428,'Bulgarian','default',43,'bg'), (430,'Catalan','default',43,'ca'), (431,'Chilean Spanish','default',43,'es-cl'), (432,'Chinese (China)','default',43,'zh-cn'), (433,'Chinese (Taiwan)','default',43,'zh-tw'), (434,'Czech','default',43,'cs'), (435,'Danish','default',43,'da'), (436,'Dutch','default',43,'nl'), (437,'Esperanto','default',43,'eo'), (438,'Estonian','default',43,'et'), (439,'Faroese','default',43,'fo'), (440,'Finnish','default',43,'fi'), (441,'French','default',43,'fr'), (442,'Frisian','default',43,'fy'), (443,'Galician','default',43,'gl'), (444,'Georgian','default',43,'ka'), (445,'German','default',43,'de'), (446,'Greek','default',43,'el'), (447,'Hebrew','default',43,'he'), (448,'Hindi','default',43,'hi'), (449,'Hungarian','default',43,'hu'), (450,'Indonesian','default',43,'id'), (451,'Italian','default',43,'it'), (452,'Japanese','default',43,'ja'), (453,'Javanese','default',43,'jv'), (454,'Kannada','default',43,'kn'), (455,'Kirghiz','default',43,'ky'), (456,'Korean','default',43,'ko'), (457,'Kurdish','default',43,'ckb'), (458,'Latvian','default',43,'lv'), (459,'Macedonian','default',43,'mk'), (460,'Malay','default',43,'ms'), (461,'Malayalam','default',43,'ml'), (462,'Mongolian','default',43,'mn'), (463,'Nepali','default',43,'ne'), (464,'Norwegian (BokmÃ¥l)','default',43,'nb'), (465,'Norwegian (Nynorsk)','default',43,'nn'), (466,'Persian','default',43,'fa'), (467,'Peruvian Spanish','default',43,'es-pe'), (468,'Polish','default',43,'pl'), (469,'Portuguese','default',43,'pt'), (470,'Punjabi','default',43,'pa'), (471,'Romanian','default',43,'ro'), (472,'Russian','default',43,'ru'), (473,'Serbian','default',43,'sr'), (474,'Sinhala','default',43,'si'), (475,'Slovak','default',43,'sk'), (476,'Spanish','default',43,'es'), (477,'Sundanese','default',43,'su'), (478,'Swahili','default',43,'sw'), (479,'Swedish','default',43,'sv'), (480,'Thai','default',43,'th'), (481,'Turkish','default',43,'tr'), (482,'Uighur','default',43,'ug'), (483,'Ukrainian','default',43,'uk'), (484,'Uzbek','default',43,'uz'), (485,'Venezuelan Spanish','default',43,'es-ve'), (486,'Vietnamese','default',43,'vi'), (487,'Welsh','default',43,'cy'), (489,'Albanian','default',41,'sq'), (490,'Arabic','default',41,'ar'), (491,'Azerbaijani','default',41,'az'), (492,'Basque','default',41,'eu'), (493,'Bengali','default',41,'bn'), (494,'Bosnian','default',41,'bs'), (495,'Brazilian Portuguese','default',41,'pt-br'), (496,'Bulgarian','default',41,'bg'), (498,'Catalan','default',41,'ca'), (499,'Chilean Spanish','default',41,'es-cl'), (500,'Chinese (China)','default',41,'zh-cn'), (501,'Chinese (Taiwan)','default',41,'zh-tw'), (502,'Czech','default',41,'cs'), (503,'Danish','default',41,'da'), (504,'Dutch','default',41,'nl'), (505,'Esperanto','default',41,'eo'), (506,'Estonian','default',41,'et'), (507,'Faroese','default',41,'fo'), (508,'Finnish','default',41,'fi'), (509,'French','default',41,'fr'), (510,'Frisian','default',41,'fy'), (511,'Galician','default',41,'gl'), (512,'Georgian','default',41,'ka'), (513,'German','default',41,'de'), (514,'Greek','default',41,'el'), (515,'Hebrew','default',41,'he'), (516,'Hindi','default',41,'hi'), (517,'Hungarian','default',41,'hu'), (518,'Indonesian','default',41,'id'), (519,'Italian','default',41,'it'), (520,'Japanese','default',41,'ja'), (521,'Javanese','default',41,'jv'), (522,'Kannada','default',41,'kn'), (523,'Kirghiz','default',41,'ky'), (524,'Korean','default',41,'ko'), (525,'Kurdish','default',41,'ckb'), (526,'Latvian','default',41,'lv'), (527,'Macedonian','default',41,'mk'), (528,'Malay','default',41,'ms'), (529,'Malayalam','default',41,'ml'), (530,'Mongolian','default',41,'mn'), (531,'Nepali','default',41,'ne'), (532,'Norwegian (BokmÃ¥l)','default',41,'nb'), (533,'Norwegian (Nynorsk)','default',41,'nn'), (534,'Persian','default',41,'fa'), (535,'Peruvian Spanish','default',41,'es-pe'), (536,'Polish','default',41,'pl'), (537,'Portuguese','default',41,'pt'), (538,'Punjabi','default',41,'pa'), (539,'Romanian','default',41,'ro'), (540,'Russian','default',41,'ru'), (541,'Serbian','default',41,'sr'), (542,'Sinhala','default',41,'si'), (543,'Slovak','default',41,'sk'), (544,'Spanish','default',41,'es'), (545,'Sundanese','default',41,'su'), (546,'Swahili','default',41,'sw'), (547,'Swedish','default',41,'sv'), (548,'Thai','default',41,'th'), (549,'Turkish','default',41,'tr'), (550,'Uighur','default',41,'ug'), (551,'Ukrainian','default',41,'uk'), (552,'Uzbek','default',41,'uz'), (553,'Venezuelan Spanish','default',41,'es-ve'), (554,'Vietnamese','default',41,'vi'), (555,'Welsh','default',41,'cy'), (557,'Albanian','default',19,'sq'), (558,'Arabic','default',19,'ar'), (559,'Azerbaijani','default',19,'az'), (560,'Basque','default',19,'eu'), (561,'Bengali','default',19,'bn'), (562,'Bosnian','default',19,'bs'), (563,'Brazilian Portuguese','default',19,'pt-br'), (564,'Bulgarian','default',19,'bg'), (566,'Catalan','default',19,'ca'), (567,'Chilean Spanish','default',19,'es-cl'), (568,'Chinese (China)','default',19,'zh-cn'), (569,'Chinese (Taiwan)','default',19,'zh-tw'), (570,'Czech','default',19,'cs'), (571,'Danish','default',19,'da'), (572,'Dutch','default',19,'nl'), (573,'Esperanto','default',19,'eo'), (574,'Estonian','default',19,'et'), (575,'Faroese','default',19,'fo'), (576,'Finnish','default',19,'fi'), (577,'French','default',19,'fr'), (578,'Frisian','default',19,'fy'), (579,'Galician','default',19,'gl'), (580,'Georgian','default',19,'ka'), (581,'German','default',19,'de'), (582,'Greek','default',19,'el'), (583,'Hebrew','default',19,'he'), (584,'Hindi','default',19,'hi'), (585,'Hungarian','default',19,'hu'), (586,'Indonesian','default',19,'id'), (587,'Italian','default',19,'it'), (588,'Japanese','default',19,'ja'), (589,'Javanese','default',19,'jv'), (590,'Kannada','default',19,'kn'), (591,'Kirghiz','default',19,'ky'), (592,'Korean','default',19,'ko'), (593,'Kurdish','default',19,'ckb'), (594,'Latvian','default',19,'lv'), (595,'Macedonian','default',19,'mk'), (596,'Malay','default',19,'ms'), (597,'Malayalam','default',19,'ml'), (598,'Mongolian','default',19,'mn'), (599,'Nepali','default',19,'ne'), (600,'Norwegian (BokmÃ¥l)','default',19,'nb'), (601,'Norwegian (Nynorsk)','default',19,'nn'), (602,'Persian','default',19,'fa'), (603,'Peruvian Spanish','default',19,'es-pe'), (604,'Polish','default',19,'pl'), (605,'Portuguese','default',19,'pt'), (606,'Punjabi','default',19,'pa'), (607,'Romanian','default',19,'ro'), (608,'Russian','default',19,'ru'), (609,'Serbian','default',19,'sr'), (610,'Sinhala','default',19,'si'), (611,'Slovak','default',19,'sk'), (612,'Spanish','default',19,'es'), (613,'Sundanese','default',19,'su'), (614,'Swahili','default',19,'sw'), (615,'Swedish','default',19,'sv'), (616,'Thai','default',19,'th'), (617,'Turkish','default',19,'tr'), (618,'Uighur','default',19,'ug'), (619,'Ukrainian','default',19,'uk'), (620,'Uzbek','default',19,'uz'), (621,'Venezuelan Spanish','default',19,'es-ve'), (622,'Vietnamese','default',19,'vi'), (623,'Welsh','default',19,'cy'), (625,'Albanian','default',39,'sq'), (626,'Arabic','default',39,'ar'), (627,'Azerbaijani','default',39,'az'), (628,'Basque','default',39,'eu'), (629,'Bengali','default',39,'bn'), (630,'Bosnian','default',39,'bs'), (631,'Brazilian Portuguese','default',39,'pt-br'), (632,'Bulgarian','default',39,'bg'), (634,'Catalan','default',39,'ca'), (635,'Chilean Spanish','default',39,'es-cl'), (636,'Chinese (China)','default',39,'zh-cn'), (637,'Chinese (Taiwan)','default',39,'zh-tw'), (638,'Czech','default',39,'cs'), (639,'Danish','default',39,'da'), (640,'Dutch','default',39,'nl'), (641,'Esperanto','default',39,'eo'), (642,'Estonian','default',39,'et'), (643,'Faroese','default',39,'fo'), (644,'Finnish','default',39,'fi'), (645,'French','default',39,'fr'), (646,'Frisian','default',39,'fy'), (647,'Galician','default',39,'gl'), (648,'Georgian','default',39,'ka'), (649,'German','default',39,'de'), (650,'Greek','default',39,'el'), (651,'Hebrew','default',39,'he'), (652,'Hindi','default',39,'hi'), (653,'Hungarian','default',39,'hu'), (654,'Indonesian','default',39,'id'), (655,'Italian','default',39,'it'), (656,'Japanese','default',39,'ja'), (657,'Javanese','default',39,'jv'), (658,'Kannada','default',39,'kn'), (659,'Kirghiz','default',39,'ky'), (660,'Korean','default',39,'ko'), (661,'Kurdish','default',39,'ckb'), (662,'Latvian','default',39,'lv'), (663,'Macedonian','default',39,'mk'), (664,'Malay','default',39,'ms'), (665,'Malayalam','default',39,'ml'), (666,'Mongolian','default',39,'mn'), (667,'Nepali','default',39,'ne'), (668,'Norwegian (BokmÃ¥l)','default',39,'nb'), (669,'Norwegian (Nynorsk)','default',39,'nn'), (670,'Persian','default',39,'fa'), (671,'Peruvian Spanish','default',39,'es-pe'), (672,'Polish','default',39,'pl'), (673,'Portuguese','default',39,'pt'), (674,'Punjabi','default',39,'pa'), (675,'Romanian','default',39,'ro'), (676,'Russian','default',39,'ru'), (677,'Serbian','default',39,'sr'), (678,'Sinhala','default',39,'si'), (679,'Slovak','default',39,'sk'), (680,'Spanish','default',39,'es'), (681,'Sundanese','default',39,'su'), (682,'Swahili','default',39,'sw'), (683,'Swedish','default',39,'sv'), (684,'Thai','default',39,'th'), (685,'Turkish','default',39,'tr'), (686,'Uighur','default',39,'ug'), (687,'Ukrainian','default',39,'uk'), (688,'Uzbek','default',39,'uz'), (689,'Venezuelan Spanish','default',39,'es-ve'), (690,'Vietnamese','default',39,'vi'), (691,'Welsh','default',39,'cy'), (693,'Albanian','default',37,'sq'), (694,'Arabic','default',37,'ar'), (695,'Azerbaijani','default',37,'az'), (696,'Basque','default',37,'eu'), (697,'Bengali','default',37,'bn'), (698,'Bosnian','default',37,'bs'), (699,'Brazilian Portuguese','default',37,'pt-br'), (700,'Bulgarian','default',37,'bg'), (702,'Catalan','default',37,'ca'), (703,'Chilean Spanish','default',37,'es-cl'), (704,'Chinese (China)','default',37,'zh-cn'), (705,'Chinese (Taiwan)','default',37,'zh-tw'), (706,'Czech','default',37,'cs'), (707,'Danish','default',37,'da'), (708,'Dutch','default',37,'nl'), (709,'Esperanto','default',37,'eo'), (710,'Estonian','default',37,'et'), (711,'Faroese','default',37,'fo'), (712,'Finnish','default',37,'fi'), (713,'French','default',37,'fr'), (714,'Frisian','default',37,'fy'), (715,'Galician','default',37,'gl'), (716,'Georgian','default',37,'ka'), (717,'German','default',37,'de'), (718,'Greek','default',37,'el'), (719,'Hebrew','default',37,'he'), (720,'Hindi','default',37,'hi'), (721,'Hungarian','default',37,'hu'), (722,'Indonesian','default',37,'id'), (723,'Italian','default',37,'it'), (724,'Japanese','default',37,'ja'), (725,'Javanese','default',37,'jv'), (726,'Kannada','default',37,'kn'), (727,'Kirghiz','default',37,'ky'), (728,'Korean','default',37,'ko'), (729,'Kurdish','default',37,'ckb'), (730,'Latvian','default',37,'lv'), (731,'Macedonian','default',37,'mk'), (732,'Malay','default',37,'ms'), (733,'Malayalam','default',37,'ml'), (734,'Mongolian','default',37,'mn'), (735,'Nepali','default',37,'ne'), (736,'Norwegian (BokmÃ¥l)','default',37,'nb'), (737,'Norwegian (Nynorsk)','default',37,'nn'), (738,'Persian','default',37,'fa'), (739,'Peruvian Spanish','default',37,'es-pe'), (740,'Polish','default',37,'pl'), (741,'Portuguese','default',37,'pt'), (742,'Punjabi','default',37,'pa'), (743,'Romanian','default',37,'ro'), (744,'Russian','default',37,'ru'), (745,'Serbian','default',37,'sr'), (746,'Sinhala','default',37,'si'), (747,'Slovak','default',37,'sk'), (748,'Spanish','default',37,'es'), (749,'Sundanese','default',37,'su'), (750,'Swahili','default',37,'sw'), (751,'Swedish','default',37,'sv'), (752,'Thai','default',37,'th'), (753,'Turkish','default',37,'tr'), (754,'Uighur','default',37,'ug'), (755,'Ukrainian','default',37,'uk'), (756,'Uzbek','default',37,'uz'), (757,'Venezuelan Spanish','default',37,'es-ve'), (758,'Vietnamese','default',37,'vi'), (759,'Welsh','default',37,'cy'), (761,'Albanian','default',35,'sq'), (762,'Arabic','default',35,'ar'), (763,'Azerbaijani','default',35,'az'), (764,'Basque','default',35,'eu'), (765,'Bengali','default',35,'bn'), (766,'Bosnian','default',35,'bs'), (767,'Brazilian Portuguese','default',35,'pt-br'), (768,'Bulgarian','default',35,'bg'), (770,'Catalan','default',35,'ca'), (771,'Chilean Spanish','default',35,'es-cl'), (772,'Chinese (China)','default',35,'zh-cn'), (773,'Chinese (Taiwan)','default',35,'zh-tw'), (774,'Czech','default',35,'cs'), (775,'Danish','default',35,'da'), (776,'Dutch','default',35,'nl'), (777,'Esperanto','default',35,'eo'), (778,'Estonian','default',35,'et'), (779,'Faroese','default',35,'fo'), (780,'Finnish','default',35,'fi'), (781,'French','default',35,'fr'), (782,'Frisian','default',35,'fy'), (783,'Galician','default',35,'gl'), (784,'Georgian','default',35,'ka'), (785,'German','default',35,'de'), (786,'Greek','default',35,'el'), (787,'Hebrew','default',35,'he'), (788,'Hindi','default',35,'hi'), (789,'Hungarian','default',35,'hu'), (790,'Indonesian','default',35,'id'), (791,'Italian','default',35,'it'), (792,'Japanese','default',35,'ja'), (793,'Javanese','default',35,'jv'), (794,'Kannada','default',35,'kn'), (795,'Kirghiz','default',35,'ky'), (796,'Korean','default',35,'ko'), (797,'Kurdish','default',35,'ckb'), (798,'Latvian','default',35,'lv'), (799,'Macedonian','default',35,'mk'), (800,'Malay','default',35,'ms'), (801,'Malayalam','default',35,'ml'), (802,'Mongolian','default',35,'mn'), (803,'Nepali','default',35,'ne'), (804,'Norwegian (BokmÃ¥l)','default',35,'nb'), (805,'Norwegian (Nynorsk)','default',35,'nn'), (806,'Persian','default',35,'fa'), (807,'Peruvian Spanish','default',35,'es-pe'), (808,'Polish','default',35,'pl'), (809,'Portuguese','default',35,'pt'), (810,'Punjabi','default',35,'pa'), (811,'Romanian','default',35,'ro'), (812,'Russian','default',35,'ru'), (813,'Serbian','default',35,'sr'), (814,'Sinhala','default',35,'si'), (815,'Slovak','default',35,'sk'), (816,'Spanish','default',35,'es'), (817,'Sundanese','default',35,'su'), (818,'Swahili','default',35,'sw'), (819,'Swedish','default',35,'sv'), (820,'Thai','default',35,'th'), (821,'Turkish','default',35,'tr'), (822,'Uighur','default',35,'ug'), (823,'Ukrainian','default',35,'uk'), (824,'Uzbek','default',35,'uz'), (825,'Venezuelan Spanish','default',35,'es-ve'), (826,'Vietnamese','default',35,'vi'), (827,'Welsh','default',35,'cy'), (829,'Albanian','default',33,'sq'), (830,'Arabic','default',33,'ar'), (831,'Azerbaijani','default',33,'az'), (832,'Basque','default',33,'eu'), (833,'Bengali','default',33,'bn'), (834,'Bosnian','default',33,'bs'), (835,'Brazilian Portuguese','default',33,'pt-br'), (836,'Bulgarian','default',33,'bg'), (838,'Catalan','default',33,'ca'), (839,'Chilean Spanish','default',33,'es-cl'), (840,'Chinese (China)','default',33,'zh-cn'), (841,'Chinese (Taiwan)','default',33,'zh-tw'), (842,'Czech','default',33,'cs'), (843,'Danish','default',33,'da'), (844,'Dutch','default',33,'nl'), (845,'Esperanto','default',33,'eo'), (846,'Estonian','default',33,'et'), (847,'Faroese','default',33,'fo'), (848,'Finnish','default',33,'fi'), (849,'French','default',33,'fr'), (850,'Frisian','default',33,'fy'), (851,'Galician','default',33,'gl'), (852,'Georgian','default',33,'ka'), (853,'German','default',33,'de'), (854,'Greek','default',33,'el'), (855,'Hebrew','default',33,'he'), (856,'Hindi','default',33,'hi'), (857,'Hungarian','default',33,'hu'), (858,'Indonesian','default',33,'id'), (859,'Italian','default',33,'it'), (860,'Japanese','default',33,'ja'), (861,'Javanese','default',33,'jv'), (862,'Kannada','default',33,'kn'), (863,'Kirghiz','default',33,'ky'), (864,'Korean','default',33,'ko'), (865,'Kurdish','default',33,'ckb'), (866,'Latvian','default',33,'lv'), (867,'Macedonian','default',33,'mk'), (868,'Malay','default',33,'ms'), (869,'Malayalam','default',33,'ml'), (870,'Mongolian','default',33,'mn'), (871,'Nepali','default',33,'ne'), (872,'Norwegian (BokmÃ¥l)','default',33,'nb'), (873,'Norwegian (Nynorsk)','default',33,'nn'), (874,'Persian','default',33,'fa'), (875,'Peruvian Spanish','default',33,'es-pe'), (876,'Polish','default',33,'pl'), (877,'Portuguese','default',33,'pt'), (878,'Punjabi','default',33,'pa'), (879,'Romanian','default',33,'ro'), (880,'Russian','default',33,'ru'), (881,'Serbian','default',33,'sr'), (882,'Sinhala','default',33,'si'), (883,'Slovak','default',33,'sk'), (884,'Spanish','default',33,'es'), (885,'Sundanese','default',33,'su'), (886,'Swahili','default',33,'sw'), (887,'Swedish','default',33,'sv'), (888,'Thai','default',33,'th'), (889,'Turkish','default',33,'tr'), (890,'Uighur','default',33,'ug'), (891,'Ukrainian','default',33,'uk'), (892,'Uzbek','default',33,'uz'), (893,'Venezuelan Spanish','default',33,'es-ve'), (894,'Vietnamese','default',33,'vi'), (895,'Welsh','default',33,'cy'), (897,'Albanian','default',31,'sq'), (898,'Arabic','default',31,'ar'), (899,'Azerbaijani','default',31,'az'), (900,'Basque','default',31,'eu'), (901,'Bengali','default',31,'bn'), (902,'Bosnian','default',31,'bs'), (903,'Brazilian Portuguese','default',31,'pt-br'), (904,'Bulgarian','default',31,'bg'), (906,'Catalan','default',31,'ca'), (907,'Chilean Spanish','default',31,'es-cl'), (908,'Chinese (China)','default',31,'zh-cn'), (909,'Chinese (Taiwan)','default',31,'zh-tw'), (910,'Czech','default',31,'cs'), (911,'Danish','default',31,'da'), (912,'Dutch','default',31,'nl'), (913,'Esperanto','default',31,'eo'), (914,'Estonian','default',31,'et'), (915,'Faroese','default',31,'fo'), (916,'Finnish','default',31,'fi'), (917,'French','default',31,'fr'), (918,'Frisian','default',31,'fy'), (919,'Galician','default',31,'gl'), (920,'Georgian','default',31,'ka'), (921,'German','default',31,'de'), (922,'Greek','default',31,'el'), (923,'Hebrew','default',31,'he'), (924,'Hindi','default',31,'hi'), (925,'Hungarian','default',31,'hu'), (926,'Indonesian','default',31,'id'), (927,'Italian','default',31,'it'), (928,'Japanese','default',31,'ja'), (929,'Javanese','default',31,'jv'), (930,'Kannada','default',31,'kn'), (931,'Kirghiz','default',31,'ky'), (932,'Korean','default',31,'ko'), (933,'Kurdish','default',31,'ckb'), (934,'Latvian','default',31,'lv'), (935,'Macedonian','default',31,'mk'), (936,'Malay','default',31,'ms'), (937,'Malayalam','default',31,'ml'), (938,'Mongolian','default',31,'mn'), (939,'Nepali','default',31,'ne'), (940,'Norwegian (BokmÃ¥l)','default',31,'nb'), (941,'Norwegian (Nynorsk)','default',31,'nn'), (942,'Persian','default',31,'fa'), (943,'Peruvian Spanish','default',31,'es-pe'), (944,'Polish','default',31,'pl'), (945,'Portuguese','default',31,'pt'), (946,'Punjabi','default',31,'pa'), (947,'Romanian','default',31,'ro'), (948,'Russian','default',31,'ru'), (949,'Serbian','default',31,'sr'), (950,'Sinhala','default',31,'si'), (951,'Slovak','default',31,'sk'), (952,'Spanish','default',31,'es'), (953,'Sundanese','default',31,'su'), (954,'Swahili','default',31,'sw'), (955,'Swedish','default',31,'sv'), (956,'Thai','default',31,'th'), (957,'Turkish','default',31,'tr'), (958,'Uighur','default',31,'ug'), (959,'Ukrainian','default',31,'uk'), (960,'Uzbek','default',31,'uz'), (961,'Venezuelan Spanish','default',31,'es-ve'), (962,'Vietnamese','default',31,'vi'), (963,'Welsh','default',31,'cy'), (965,'Albanian','default',29,'sq'), (966,'Arabic','default',29,'ar'), (967,'Azerbaijani','default',29,'az'), (968,'Basque','default',29,'eu'), (969,'Bengali','default',29,'bn'), (970,'Bosnian','default',29,'bs'), (971,'Brazilian Portuguese','default',29,'pt-br'), (972,'Bulgarian','default',29,'bg'), (974,'Catalan','default',29,'ca'), (975,'Chilean Spanish','default',29,'es-cl'), (976,'Chinese (China)','default',29,'zh-cn'), (977,'Chinese (Taiwan)','default',29,'zh-tw'), (978,'Czech','default',29,'cs'), (979,'Danish','default',29,'da'), (980,'Dutch','default',29,'nl'), (981,'Esperanto','default',29,'eo'), (982,'Estonian','default',29,'et'), (983,'Faroese','default',29,'fo'), (984,'Finnish','default',29,'fi'), (985,'French','default',29,'fr'), (986,'Frisian','default',29,'fy'), (987,'Galician','default',29,'gl'), (988,'Georgian','default',29,'ka'), (989,'German','default',29,'de'), (990,'Greek','default',29,'el'), (991,'Hebrew','default',29,'he'), (992,'Hindi','default',29,'hi'), (993,'Hungarian','default',29,'hu'), (994,'Indonesian','default',29,'id'), (995,'Italian','default',29,'it'), (996,'Japanese','default',29,'ja'), (997,'Javanese','default',29,'jv'), (998,'Kannada','default',29,'kn'), (999,'Kirghiz','default',29,'ky'), (1000,'Korean','default',29,'ko'), (1001,'Kurdish','default',29,'ckb'), (1002,'Latvian','default',29,'lv'), (1003,'Macedonian','default',29,'mk'), (1004,'Malay','default',29,'ms'), (1005,'Malayalam','default',29,'ml'), (1006,'Mongolian','default',29,'mn'), (1007,'Nepali','default',29,'ne'), (1008,'Norwegian (BokmÃ¥l)','default',29,'nb'), (1009,'Norwegian (Nynorsk)','default',29,'nn'), (1010,'Persian','default',29,'fa'), (1011,'Peruvian Spanish','default',29,'es-pe'), (1012,'Polish','default',29,'pl'), (1013,'Portuguese','default',29,'pt'), (1014,'Punjabi','default',29,'pa'), (1015,'Romanian','default',29,'ro'), (1016,'Russian','default',29,'ru'), (1017,'Serbian','default',29,'sr'), (1018,'Sinhala','default',29,'si'), (1019,'Slovak','default',29,'sk'), (1020,'Spanish','default',29,'es'), (1021,'Sundanese','default',29,'su'), (1022,'Swahili','default',29,'sw'), (1023,'Swedish','default',29,'sv'), (1024,'Thai','default',29,'th'), (1025,'Turkish','default',29,'tr'), (1026,'Uighur','default',29,'ug'), (1027,'Ukrainian','default',29,'uk'), (1028,'Uzbek','default',29,'uz'), (1029,'Venezuelan Spanish','default',29,'es-ve'), (1030,'Vietnamese','default',29,'vi'), (1031,'Welsh','default',29,'cy'), (1033,'Albanian','default',27,'sq'), (1034,'Arabic','default',27,'ar'), (1035,'Azerbaijani','default',27,'az'), (1036,'Basque','default',27,'eu'), (1037,'Bengali','default',27,'bn'), (1038,'Bosnian','default',27,'bs'), (1039,'Brazilian Portuguese','default',27,'pt-br'), (1040,'Bulgarian','default',27,'bg'), (1042,'Catalan','default',27,'ca'), (1043,'Chilean Spanish','default',27,'es-cl'), (1044,'Chinese (China)','default',27,'zh-cn'), (1045,'Chinese (Taiwan)','default',27,'zh-tw'), (1046,'Czech','default',27,'cs'), (1047,'Danish','default',27,'da'), (1048,'Dutch','default',27,'nl'), (1049,'Esperanto','default',27,'eo'), (1050,'Estonian','default',27,'et'), (1051,'Faroese','default',27,'fo'), (1052,'Finnish','default',27,'fi'), (1053,'French','default',27,'fr'), (1054,'Frisian','default',27,'fy'), (1055,'Galician','default',27,'gl'), (1056,'Georgian','default',27,'ka'), (1057,'German','default',27,'de'), (1058,'Greek','default',27,'el'), (1059,'Hebrew','default',27,'he'), (1060,'Hindi','default',27,'hi'), (1061,'Hungarian','default',27,'hu'), (1062,'Indonesian','default',27,'id'), (1063,'Italian','default',27,'it'), (1064,'Japanese','default',27,'ja'), (1065,'Javanese','default',27,'jv'), (1066,'Kannada','default',27,'kn'), (1067,'Kirghiz','default',27,'ky'), (1068,'Korean','default',27,'ko'), (1069,'Kurdish','default',27,'ckb'), (1070,'Latvian','default',27,'lv'), (1071,'Macedonian','default',27,'mk'), (1072,'Malay','default',27,'ms'), (1073,'Malayalam','default',27,'ml'), (1074,'Mongolian','default',27,'mn'), (1075,'Nepali','default',27,'ne'), (1076,'Norwegian (BokmÃ¥l)','default',27,'nb'), (1077,'Norwegian (Nynorsk)','default',27,'nn'), (1078,'Persian','default',27,'fa'), (1079,'Peruvian Spanish','default',27,'es-pe'), (1080,'Polish','default',27,'pl'), (1081,'Portuguese','default',27,'pt'), (1082,'Punjabi','default',27,'pa'), (1083,'Romanian','default',27,'ro'), (1084,'Russian','default',27,'ru'), (1085,'Serbian','default',27,'sr'), (1086,'Sinhala','default',27,'si'), (1087,'Slovak','default',27,'sk'), (1088,'Spanish','default',27,'es'), (1089,'Sundanese','default',27,'su'), (1090,'Swahili','default',27,'sw'), (1091,'Swedish','default',27,'sv'), (1092,'Thai','default',27,'th'), (1093,'Turkish','default',27,'tr'), (1094,'Uighur','default',27,'ug'), (1095,'Ukrainian','default',27,'uk'), (1096,'Uzbek','default',27,'uz'), (1097,'Venezuelan Spanish','default',27,'es-ve'), (1098,'Vietnamese','default',27,'vi'), (1099,'Welsh','default',27,'cy'), (1101,'Albanian','default',25,'sq'), (1102,'Arabic','default',25,'ar'), (1103,'Azerbaijani','default',25,'az'), (1104,'Basque','default',25,'eu'), (1105,'Bengali','default',25,'bn'), (1106,'Bosnian','default',25,'bs'), (1107,'Brazilian Portuguese','default',25,'pt-br'), (1108,'Bulgarian','default',25,'bg'), (1110,'Catalan','default',25,'ca'), (1111,'Chilean Spanish','default',25,'es-cl'), (1112,'Chinese (China)','default',25,'zh-cn'), (1113,'Chinese (Taiwan)','default',25,'zh-tw'), (1114,'Czech','default',25,'cs'), (1115,'Danish','default',25,'da'), (1116,'Dutch','default',25,'nl'), (1117,'Esperanto','default',25,'eo'), (1118,'Estonian','default',25,'et'), (1119,'Faroese','default',25,'fo'), (1120,'Finnish','default',25,'fi'), (1121,'French','default',25,'fr'), (1122,'Frisian','default',25,'fy'), (1123,'Galician','default',25,'gl'), (1124,'Georgian','default',25,'ka'), (1125,'German','default',25,'de'), (1126,'Greek','default',25,'el'), (1127,'Hebrew','default',25,'he'), (1128,'Hindi','default',25,'hi'), (1129,'Hungarian','default',25,'hu'), (1130,'Indonesian','default',25,'id'), (1131,'Italian','default',25,'it'), (1132,'Japanese','default',25,'ja'), (1133,'Javanese','default',25,'jv'), (1134,'Kannada','default',25,'kn'), (1135,'Kirghiz','default',25,'ky'), (1136,'Korean','default',25,'ko'), (1137,'Kurdish','default',25,'ckb'), (1138,'Latvian','default',25,'lv'), (1139,'Macedonian','default',25,'mk'), (1140,'Malay','default',25,'ms'), (1141,'Malayalam','default',25,'ml'), (1142,'Mongolian','default',25,'mn'), (1143,'Nepali','default',25,'ne'), (1144,'Norwegian (BokmÃ¥l)','default',25,'nb'), (1145,'Norwegian (Nynorsk)','default',25,'nn'), (1146,'Persian','default',25,'fa'), (1147,'Peruvian Spanish','default',25,'es-pe'), (1148,'Polish','default',25,'pl'), (1149,'Portuguese','default',25,'pt'), (1150,'Punjabi','default',25,'pa'), (1151,'Romanian','default',25,'ro'), (1152,'Russian','default',25,'ru'), (1153,'Serbian','default',25,'sr'), (1154,'Sinhala','default',25,'si'), (1155,'Slovak','default',25,'sk'), (1156,'Spanish','default',25,'es'), (1157,'Sundanese','default',25,'su'), (1158,'Swahili','default',25,'sw'), (1159,'Swedish','default',25,'sv'), (1160,'Thai','default',25,'th'), (1161,'Turkish','default',25,'tr'), (1162,'Uighur','default',25,'ug'), (1163,'Ukrainian','default',25,'uk'), (1164,'Uzbek','default',25,'uz'), (1165,'Venezuelan Spanish','default',25,'es-ve'), (1166,'Vietnamese','default',25,'vi'), (1167,'Welsh','default',25,'cy'), (1169,'Albanian','default',23,'sq'), (1170,'Arabic','default',23,'ar'), (1171,'Azerbaijani','default',23,'az'), (1172,'Basque','default',23,'eu'), (1173,'Bengali','default',23,'bn'), (1174,'Bosnian','default',23,'bs'), (1175,'Brazilian Portuguese','default',23,'pt-br'), (1176,'Bulgarian','default',23,'bg'), (1178,'Catalan','default',23,'ca'), (1179,'Chilean Spanish','default',23,'es-cl'), (1180,'Chinese (China)','default',23,'zh-cn'), (1181,'Chinese (Taiwan)','default',23,'zh-tw'), (1182,'Czech','default',23,'cs'), (1183,'Danish','default',23,'da'), (1184,'Dutch','default',23,'nl'), (1185,'Esperanto','default',23,'eo'), (1186,'Estonian','default',23,'et'), (1187,'Faroese','default',23,'fo'), (1188,'Finnish','default',23,'fi'), (1189,'French','default',23,'fr'), (1190,'Frisian','default',23,'fy'), (1191,'Galician','default',23,'gl'), (1192,'Georgian','default',23,'ka'), (1193,'German','default',23,'de'), (1194,'Greek','default',23,'el'), (1195,'Hebrew','default',23,'he'), (1196,'Hindi','default',23,'hi'), (1197,'Hungarian','default',23,'hu'), (1198,'Indonesian','default',23,'id'), (1199,'Italian','default',23,'it'), (1200,'Japanese','default',23,'ja'), (1201,'Javanese','default',23,'jv'), (1202,'Kannada','default',23,'kn'), (1203,'Kirghiz','default',23,'ky'), (1204,'Korean','default',23,'ko'), (1205,'Kurdish','default',23,'ckb'), (1206,'Latvian','default',23,'lv'), (1207,'Macedonian','default',23,'mk'), (1208,'Malay','default',23,'ms'), (1209,'Malayalam','default',23,'ml'), (1210,'Mongolian','default',23,'mn'), (1211,'Nepali','default',23,'ne'), (1212,'Norwegian (BokmÃ¥l)','default',23,'nb'), (1213,'Norwegian (Nynorsk)','default',23,'nn'), (1214,'Persian','default',23,'fa'), (1215,'Peruvian Spanish','default',23,'es-pe'), (1216,'Polish','default',23,'pl'), (1217,'Portuguese','default',23,'pt'), (1218,'Punjabi','default',23,'pa'), (1219,'Romanian','default',23,'ro'), (1220,'Russian','default',23,'ru'), (1221,'Serbian','default',23,'sr'), (1222,'Sinhala','default',23,'si'), (1223,'Slovak','default',23,'sk'), (1224,'Spanish','default',23,'es'), (1225,'Sundanese','default',23,'su'), (1226,'Swahili','default',23,'sw'), (1227,'Swedish','default',23,'sv'), (1228,'Thai','default',23,'th'), (1229,'Turkish','default',23,'tr'), (1230,'Uighur','default',23,'ug'), (1231,'Ukrainian','default',23,'uk'), (1232,'Uzbek','default',23,'uz'), (1233,'Venezuelan Spanish','default',23,'es-ve'), (1234,'Vietnamese','default',23,'vi'), (1235,'Welsh','default',23,'cy'), (1237,'Albanian','default',21,'sq'), (1238,'Arabic','default',21,'ar'), (1239,'Azerbaijani','default',21,'az'), (1240,'Basque','default',21,'eu'), (1241,'Bengali','default',21,'bn'), (1242,'Bosnian','default',21,'bs'), (1243,'Brazilian Portuguese','default',21,'pt-br'), (1244,'Bulgarian','default',21,'bg'), (1246,'Catalan','default',21,'ca'), (1247,'Chilean Spanish','default',21,'es-cl'), (1248,'Chinese (China)','default',21,'zh-cn'), (1249,'Chinese (Taiwan)','default',21,'zh-tw'), (1250,'Czech','default',21,'cs'), (1251,'Danish','default',21,'da'), (1252,'Dutch','default',21,'nl'), (1253,'Esperanto','default',21,'eo'), (1254,'Estonian','default',21,'et'), (1255,'Faroese','default',21,'fo'), (1256,'Finnish','default',21,'fi'), (1257,'French','default',21,'fr'), (1258,'Frisian','default',21,'fy'), (1259,'Galician','default',21,'gl'), (1260,'Georgian','default',21,'ka'), (1261,'German','default',21,'de'), (1262,'Greek','default',21,'el'), (1263,'Hebrew','default',21,'he'), (1264,'Hindi','default',21,'hi'), (1265,'Hungarian','default',21,'hu'), (1266,'Indonesian','default',21,'id'), (1267,'Italian','default',21,'it'), (1268,'Japanese','default',21,'ja'), (1269,'Javanese','default',21,'jv'), (1270,'Kannada','default',21,'kn'), (1271,'Kirghiz','default',21,'ky'), (1272,'Korean','default',21,'ko'), (1273,'Kurdish','default',21,'ckb'), (1274,'Latvian','default',21,'lv'), (1275,'Macedonian','default',21,'mk'), (1276,'Malay','default',21,'ms'), (1277,'Malayalam','default',21,'ml'), (1278,'Mongolian','default',21,'mn'), (1279,'Nepali','default',21,'ne'), (1280,'Norwegian (BokmÃ¥l)','default',21,'nb'), (1281,'Norwegian (Nynorsk)','default',21,'nn'), (1282,'Persian','default',21,'fa'), (1283,'Peruvian Spanish','default',21,'es-pe'), (1284,'Polish','default',21,'pl'), (1285,'Portuguese','default',21,'pt'), (1286,'Punjabi','default',21,'pa'), (1287,'Romanian','default',21,'ro'), (1288,'Russian','default',21,'ru'), (1289,'Serbian','default',21,'sr'), (1290,'Sinhala','default',21,'si'), (1291,'Slovak','default',21,'sk'), (1292,'Spanish','default',21,'es'), (1293,'Sundanese','default',21,'su'), (1294,'Swahili','default',21,'sw'), (1295,'Swedish','default',21,'sv'), (1296,'Thai','default',21,'th'), (1297,'Turkish','default',21,'tr'), (1298,'Uighur','default',21,'ug'), (1299,'Ukrainian','default',21,'uk'), (1300,'Uzbek','default',21,'uz'), (1301,'Venezuelan Spanish','default',21,'es-ve'), (1302,'Vietnamese','default',21,'vi'), (1303,'Welsh','default',21,'cy'), (1304,'Danish','default',7,'da'), (1305,'Turkish','default',14,'tr'), (1306,'Bosnian','default',14,'bs'), (1307,'Bosnian','default',7,'bs'), (1308,'Bosnian','default',5,'bs'), (1310,'Albanian','default',44,'sq'), (1311,'Arabic','default',44,'ar'), (1312,'Azerbaijani','default',44,'az'), (1313,'Basque','default',44,'eu'), (1314,'Bengali','default',44,'bn'), (1315,'Bosnian','default',44,'bs'), (1316,'Brazilian Portuguese','default',44,'pt-br'), (1317,'Bulgarian','default',44,'bg'), (1319,'Catalan','default',44,'ca'), (1320,'Chilean Spanish','default',44,'es-cl'), (1321,'Chinese (China)','default',44,'zh-cn'), (1322,'Chinese (Taiwan)','default',44,'zh-tw'), (1323,'Czech','default',44,'cs'), (1324,'Danish','default',44,'da'), (1325,'Dutch','default',44,'nl'), (1326,'Esperanto','default',44,'eo'), (1327,'Estonian','default',44,'et'), (1328,'Faroese','default',44,'fo'), (1329,'Finnish','default',44,'fi'), (1330,'French','default',44,'fr'), (1331,'Frisian','default',44,'fy'), (1332,'Galician','default',44,'gl'), (1333,'Georgian','default',44,'ka'), (1334,'German','default',44,'de'), (1335,'Greek','default',44,'el'), (1336,'Hebrew','default',44,'he'), (1337,'Hindi','default',44,'hi'), (1338,'Hungarian','default',44,'hu'), (1339,'Indonesian','default',44,'id'), (1340,'Italian','default',44,'it'), (1341,'Japanese','default',44,'ja'), (1342,'Javanese','default',44,'jv'), (1343,'Kannada','default',44,'kn'), (1344,'Kirghiz','default',44,'ky'), (1345,'Korean','default',44,'ko'), (1346,'Kurdish','default',44,'ckb'), (1347,'Latvian','default',44,'lv'), (1348,'Macedonian','default',44,'mk'), (1349,'Malay','default',44,'ms'), (1350,'Malayalam','default',44,'ml'), (1351,'Mongolian','default',44,'mn'), (1352,'Nepali','default',44,'ne'), (1353,'Norwegian (BokmÃ¥l)','default',44,'nb'), (1354,'Norwegian (Nynorsk)','default',44,'nn'), (1355,'Persian','default',44,'fa'), (1356,'Peruvian Spanish','default',44,'es-pe'), (1357,'Polish','default',44,'pl'), (1358,'Portuguese','default',44,'pt'), (1359,'Punjabi','default',44,'pa'), (1360,'Romanian','default',44,'ro'), (1361,'Russian','default',44,'ru'), (1362,'Serbian','default',44,'sr'), (1363,'Sinhala','default',44,'si'), (1364,'Slovak','default',44,'sk'), (1365,'Spanish','default',44,'es'), (1366,'Sundanese','default',44,'su'), (1367,'Swahili','default',44,'sw'), (1368,'Swedish','default',44,'sv'), (1369,'Thai','default',44,'th'), (1370,'Turkish','default',44,'tr'), (1371,'Uighur','default',44,'ug'), (1372,'Ukrainian','default',44,'uk'), (1373,'Uzbek','default',44,'uz'), (1374,'Venezuelan Spanish','default',44,'es-ve'), (1375,'Vietnamese','default',44,'vi'), (1376,'Welsh','default',44,'cy'), (1378,'Albanian','default',46,'sq'), (1379,'Arabic','default',46,'ar'), (1380,'Azerbaijani','default',46,'az'), (1381,'Basque','default',46,'eu'), (1382,'Bengali','default',46,'bn'), (1383,'Bosnian','default',46,'bs'), (1384,'Brazilian Portuguese','default',46,'pt-br'), (1385,'Bulgarian','default',46,'bg'), (1387,'Catalan','default',46,'ca'), (1388,'Chilean Spanish','default',46,'es-cl'), (1389,'Chinese (China)','default',46,'zh-cn'), (1390,'Chinese (Taiwan)','default',46,'zh-tw'), (1391,'Czech','default',46,'cs'), (1392,'Danish','default',46,'da'), (1393,'Dutch','default',46,'nl'), (1394,'Esperanto','default',46,'eo'), (1395,'Estonian','default',46,'et'), (1396,'Faroese','default',46,'fo'), (1397,'Finnish','default',46,'fi'), (1398,'French','default',46,'fr'), (1399,'Frisian','default',46,'fy'), (1400,'Galician','default',46,'gl'), (1401,'Georgian','default',46,'ka'), (1402,'German','default',46,'de'), (1403,'Greek','default',46,'el'), (1404,'Hebrew','default',46,'he'), (1405,'Hindi','default',46,'hi'), (1406,'Hungarian','default',46,'hu'), (1407,'Indonesian','default',46,'id'), (1408,'Italian','default',46,'it'), (1409,'Japanese','default',46,'ja'), (1410,'Javanese','default',46,'jv'), (1411,'Kannada','default',46,'kn'), (1412,'Kirghiz','default',46,'ky'), (1413,'Korean','default',46,'ko'), (1414,'Kurdish','default',46,'ckb'), (1415,'Latvian','default',46,'lv'), (1416,'Macedonian','default',46,'mk'), (1417,'Malay','default',46,'ms'), (1418,'Malayalam','default',46,'ml'), (1419,'Mongolian','default',46,'mn'), (1420,'Nepali','default',46,'ne'), (1421,'Norwegian (BokmÃ¥l)','default',46,'nb'), (1422,'Norwegian (Nynorsk)','default',46,'nn'), (1423,'Persian','default',46,'fa'), (1424,'Peruvian Spanish','default',46,'es-pe'), (1425,'Polish','default',46,'pl'), (1426,'Portuguese','default',46,'pt'), (1427,'Punjabi','default',46,'pa'), (1428,'Romanian','default',46,'ro'), (1429,'Russian','default',46,'ru'), (1430,'Serbian','default',46,'sr'), (1431,'Sinhala','default',46,'si'), (1432,'Slovak','default',46,'sk'), (1433,'Spanish','default',46,'es'), (1434,'Sundanese','default',46,'su'), (1435,'Swahili','default',46,'sw'), (1436,'Swedish','default',46,'sv'), (1437,'Thai','default',46,'th'), (1438,'Turkish','default',46,'tr'), (1439,'Uighur','default',46,'ug'), (1440,'Ukrainian','default',46,'uk'), (1441,'Uzbek','default',46,'uz'), (1442,'Venezuelan Spanish','default',46,'es-ve'), (1443,'Vietnamese','default',46,'vi'), (1444,'Welsh','default',46,'cy'), (1446,'Albanian','default',45,'sq'), (1447,'Arabic','default',45,'ar'), (1448,'Azerbaijani','default',45,'az'), (1449,'Basque','default',45,'eu'), (1450,'Bengali','default',45,'bn'), (1451,'Bosnian','default',45,'bs'), (1452,'Brazilian Portuguese','default',45,'pt-br'), (1453,'Bulgarian','default',45,'bg'), (1455,'Catalan','default',45,'ca'), (1456,'Chilean Spanish','default',45,'es-cl'), (1457,'Chinese (China)','default',45,'zh-cn'), (1458,'Chinese (Taiwan)','default',45,'zh-tw'), (1459,'Czech','default',45,'cs'), (1460,'Danish','default',45,'da'), (1461,'Dutch','default',45,'nl'), (1462,'Esperanto','default',45,'eo'), (1463,'Estonian','default',45,'et'), (1464,'Faroese','default',45,'fo'), (1465,'Finnish','default',45,'fi'), (1466,'French','default',45,'fr'), (1467,'Frisian','default',45,'fy'), (1468,'Galician','default',45,'gl'), (1469,'Georgian','default',45,'ka'), (1470,'German','default',45,'de'), (1471,'Greek','default',45,'el'), (1472,'Hebrew','default',45,'he'), (1473,'Hindi','default',45,'hi'), (1474,'Hungarian','default',45,'hu'), (1475,'Indonesian','default',45,'id'), (1476,'Italian','default',45,'it'), (1477,'Japanese','default',45,'ja'), (1478,'Javanese','default',45,'jv'), (1479,'Kannada','default',45,'kn'), (1480,'Kirghiz','default',45,'ky'), (1481,'Korean','default',45,'ko'), (1482,'Kurdish','default',45,'ckb'), (1483,'Latvian','default',45,'lv'), (1484,'Macedonian','default',45,'mk'), (1485,'Malay','default',45,'ms'), (1486,'Malayalam','default',45,'ml'), (1487,'Mongolian','default',45,'mn'), (1488,'Nepali','default',45,'ne'), (1489,'Norwegian (BokmÃ¥l)','default',45,'nb'), (1490,'Norwegian (Nynorsk)','default',45,'nn'), (1491,'Persian','default',45,'fa'), (1492,'Peruvian Spanish','default',45,'es-pe'), (1493,'Polish','default',45,'pl'), (1494,'Portuguese','default',45,'pt'), (1495,'Punjabi','default',45,'pa'), (1496,'Romanian','default',45,'ro'), (1497,'Russian','default',45,'ru'), (1498,'Serbian','default',45,'sr'), (1499,'Sinhala','default',45,'si'), (1500,'Slovak','default',45,'sk'), (1501,'Spanish','default',45,'es'), (1502,'Sundanese','default',45,'su'), (1503,'Swahili','default',45,'sw'), (1504,'Swedish','default',45,'sv'), (1505,'Thai','default',45,'th'), (1506,'Turkish','default',45,'tr'), (1507,'Uighur','default',45,'ug'), (1508,'Ukrainian','default',45,'uk'), (1509,'Uzbek','default',45,'uz'), (1510,'Venezuelan Spanish','default',45,'es-ve'), (1511,'Vietnamese','default',45,'vi'), (1512,'Welsh','default',45,'cy'), (1513,'Lithuanian','default',15,'lt'), (1514,'Vietnamese','default',7,'vi'), (1515,'Vietnamese','default',5,'vi'), (1516,'Vietnamese','default',14,'vi'), (1517,'Lithuanian','default',2,'lt'), (1518,'Lithuanian','default',44,'lt'), (1519,'Lithuanian','default',45,'lt'), (1520,'Lithuanian','default',46,'lt'), (1522,'Hebrew','default',7,'he'), (1559,'Sardinian','default',2,'srd'), (1560,'Sardinian','default',44,'srd'), (1561,'Sardinian','default',45,'srd'), (1562,'Sardinian','default',46,'srd'), (1564,'Sardinian','default',15,'srd'), (1565,'Croatian','default',2,'hr'), (1567,'Croatian','default',15,'hr'), (1568,'Croatian','default',44,'hr'), (1569,'Croatian','default',46,'hr'), (1570,'Croatian','default',45,'hr'), (1571,'Croatian','default',43,'hr'), (1572,'Croatian','default',41,'hr'), (1573,'Croatian','default',39,'hr'), (1574,'Croatian','default',37,'hr'), (1575,'Croatian','default',35,'hr'), (1576,'Croatian','default',33,'hr'), (1577,'Croatian','default',31,'hr'), (1578,'Croatian','default',29,'hr'), (1579,'Croatian','default',27,'hr'), (1580,'Croatian','default',25,'hr'), (1581,'Croatian','default',23,'hr'), (1582,'Croatian','default',21,'hr'), (1583,'Croatian','default',19,'hr'), (1584,'Croatian','default',7,'hr'), (1585,'Croatian','default',5,'hr'), (1586,'Portuguese (Brazil)','default',5,'pt-br'), (1587,'Luxembourgish','default',2,'lb'), (1588,'Luxembourgish','default',44,'lb'), (1589,'Kurdish (Kurmanji)','default',2,'ku'), (1590,'Slovenian','default',2,'sl'), (1591,'Slovenian','default',15,'sl'), (1594,'Arabic','default',14,'ar'), (1595,'Urdu','default',2,'ur'), (1596,'Persian','default',7,'fa'), (1597,'Catalan (Balear)','default',2,'bal'), (1598,'German','default',50,'de'), (1599,'Japanese','default',50,'ja'), (1600,'Spanish (Spain)','default',50,'es'), (1601,'Portuguese (Brazil)','default',50,'pt-br'), (1602,'Italian','default',50,'it'), (1603,'Chinese','default',50,'zh'), (1604,'Hawaiian','default',2,'haw'), (1605,'Arabic','default',50,'ar'), (1606,'Malagasy','default',2,'mg'), (1607,'Tamil','default',2,'ta'), (1608,'Tamil (Sri Lanka)','default',2,'ta-lk'), (1609,'Bulgarian','default',51,'bg'), (1610,'Tamil (Sri Lanka)','default',15,'ta-lk'), (1612,'Slovak','default',51,'sk'), (1613,'Slovak','default',14,'sk'), (1614,'Slovak','default',50,'sk'), (1615,'Portuguese (Portugal)','default',50,'pt'), (1616,'French (France)','default',50,'fr'), (1617,'Swedish','default',51,'sv'), (1618,'Turkish','default',50,'tr'), (1619,'Norwegian (BokmÃ¥l)','default',14,'nb'), (1620,'Norwegian (BokmÃ¥l)','default',51,'nb'), (1621,'Indonesian','default',51,'id'), (1622,'English (UK)','default',2,'en-gb'), (1624,'Albanian','default',52,'sq'), (1625,'Arabic','default',52,'ar'), (1626,'Azerbaijani','default',52,'az'), (1627,'Basque','default',52,'eu'), (1628,'Bengali','default',52,'bn'), (1629,'Bosnian','default',52,'bs'), (1630,'Brazilian Portuguese','default',52,'pt-br'), (1631,'Bulgarian','default',52,'bg'), (1633,'Catalan','default',52,'ca'), (1634,'Catalan (Balear)','default',52,'bal'), (1635,'Chilean Spanish','default',52,'es-cl'), (1636,'Chinese (China)','default',52,'zh-cn'), (1637,'Chinese (Taiwan)','default',52,'zh-tw'), (1638,'Croatian','default',52,'hr'), (1639,'Czech','default',52,'cs'), (1640,'Danish','default',52,'da'), (1641,'Dutch','default',52,'nl'), (1642,'English (UK)','default',52,'en-gb'), (1643,'Esperanto','default',52,'eo'), (1644,'Estonian','default',52,'et'), (1645,'Faroese','default',52,'fo'), (1646,'Finnish','default',52,'fi'), (1647,'French','default',52,'fr'), (1648,'Frisian','default',52,'fy'), (1649,'Galician','default',52,'gl'), (1650,'Georgian','default',52,'ka'), (1651,'German','default',52,'de'), (1652,'Greek','default',52,'el'), (1653,'Hawaiian','default',52,'haw'), (1654,'Hebrew','default',52,'he'), (1655,'Hindi','default',52,'hi'), (1656,'Hungarian','default',52,'hu'), (1657,'Indonesian','default',52,'id'), (1658,'Italian','default',52,'it'), (1659,'Japanese','default',52,'ja'), (1660,'Javanese','default',52,'jv'), (1661,'Kannada','default',52,'kn'), (1662,'Kirghiz','default',52,'ky'), (1663,'Korean','default',52,'ko'), (1664,'Kurdish','default',52,'ckb'), (1665,'Kurdish (Kurmanji)','default',52,'ku'), (1666,'Latvian','default',52,'lv'), (1667,'Lithuanian','default',52,'lt'), (1668,'Luxembourgish','default',52,'lb'), (1669,'Macedonian','default',52,'mk'), (1670,'Malagasy','default',52,'mg'), (1671,'Malay','default',52,'ms'), (1672,'Malayalam','default',52,'ml'), (1673,'Mongolian','default',52,'mn'), (1674,'Nepali','default',52,'ne'), (1675,'Norwegian (BokmÃ¥l)','default',52,'nb'), (1676,'Norwegian (Nynorsk)','default',52,'nn'), (1677,'Persian','default',52,'fa'), (1678,'Peruvian Spanish','default',52,'es-pe'), (1679,'Polish','default',52,'pl'), (1680,'Portuguese','default',52,'pt'), (1681,'Punjabi','default',52,'pa'), (1682,'Romanian','default',52,'ro'), (1683,'Russian','default',52,'ru'), (1684,'Sardinian','default',52,'srd'), (1685,'Serbian','default',52,'sr'), (1686,'Sinhala','default',52,'si'), (1687,'Slovak','default',52,'sk'), (1688,'Slovenian','default',52,'sl'), (1689,'Spanish','default',52,'es'), (1690,'Sundanese','default',52,'su'), (1691,'Swahili','default',52,'sw'), (1692,'Swedish','default',52,'sv'), (1693,'Tamil','default',52,'ta'), (1694,'Tamil (Sri Lanka)','default',52,'ta-lk'), (1695,'Thai','default',52,'th'), (1696,'Turkish','default',52,'tr'), (1697,'Uighur','default',52,'ug'), (1698,'Ukrainian','default',52,'uk'), (1699,'Urdu','default',52,'ur'), (1700,'Uzbek','default',52,'uz'), (1701,'Venezuelan Spanish','default',52,'es-ve'), (1702,'Vietnamese','default',52,'vi'), (1703,'Welsh','default',52,'cy'), (1705,'Albanian','default',53,'sq'), (1706,'Arabic','default',53,'ar'), (1707,'Azerbaijani','default',53,'az'), (1708,'Basque','default',53,'eu'), (1709,'Bengali','default',53,'bn'), (1710,'Bosnian','default',53,'bs'), (1711,'Brazilian Portuguese','default',53,'pt-br'), (1712,'Bulgarian','default',53,'bg'), (1714,'Catalan','default',53,'ca'), (1715,'Chilean Spanish','default',53,'es-cl'), (1716,'Chinese (China)','default',53,'zh-cn'), (1717,'Chinese (Taiwan)','default',53,'zh-tw'), (1718,'Croatian','default',53,'hr'), (1719,'Czech','default',53,'cs'), (1720,'Danish','default',53,'da'), (1721,'Dutch','default',53,'nl'), (1722,'Esperanto','default',53,'eo'), (1723,'Estonian','default',53,'et'), (1724,'Faroese','default',53,'fo'), (1725,'Finnish','default',53,'fi'), (1726,'French','default',53,'fr'), (1727,'Frisian','default',53,'fy'), (1728,'Galician','default',53,'gl'), (1729,'Georgian','default',53,'ka'), (1730,'German','default',53,'de'), (1731,'Greek','default',53,'el'), (1732,'Hebrew','default',53,'he'), (1733,'Hindi','default',53,'hi'), (1734,'Hungarian','default',53,'hu'), (1735,'Indonesian','default',53,'id'), (1736,'Italian','default',53,'it'), (1737,'Japanese','default',53,'ja'), (1738,'Javanese','default',53,'jv'), (1739,'Kannada','default',53,'kn'), (1740,'Kirghiz','default',53,'ky'), (1741,'Korean','default',53,'ko'), (1742,'Kurdish','default',53,'ckb'), (1743,'Latvian','default',53,'lv'), (1744,'Lithuanian','default',53,'lt'), (1745,'Macedonian','default',53,'mk'), (1746,'Malay','default',53,'ms'), (1747,'Malayalam','default',53,'ml'), (1748,'Mongolian','default',53,'mn'), (1749,'Nepali','default',53,'ne'), (1750,'Norwegian (BokmÃ¥l)','default',53,'nb'), (1751,'Norwegian (Nynorsk)','default',53,'nn'), (1752,'Persian','default',53,'fa'), (1753,'Peruvian Spanish','default',53,'es-pe'), (1754,'Polish','default',53,'pl'), (1755,'Portuguese','default',53,'pt'), (1756,'Punjabi','default',53,'pa'), (1757,'Romanian','default',53,'ro'), (1758,'Russian','default',53,'ru'), (1759,'Sardinian','default',53,'srd'), (1760,'Serbian','default',53,'sr'), (1761,'Sinhala','default',53,'si'), (1762,'Slovak','default',53,'sk'), (1763,'Slovenian','default',53,'sl'), (1764,'Spanish','default',53,'es'), (1765,'Sundanese','default',53,'su'), (1766,'Swahili','default',53,'sw'), (1767,'Swedish','default',53,'sv'), (1768,'Tamil (Sri Lanka)','default',53,'ta-lk'), (1769,'Thai','default',53,'th'), (1770,'Turkish','default',53,'tr'), (1771,'Uighur','default',53,'ug'), (1772,'Ukrainian','default',53,'uk'), (1773,'Uzbek','default',53,'uz'), (1774,'Venezuelan Spanish','default',53,'es-ve'), (1775,'Vietnamese','default',53,'vi'), (1776,'Welsh','default',53,'cy'), (1778,'Albanian','default',54,'sq'), (1779,'Arabic','default',54,'ar'), (1780,'Azerbaijani','default',54,'az'), (1781,'Basque','default',54,'eu'), (1782,'Bengali','default',54,'bn'), (1783,'Bosnian','default',54,'bs'), (1784,'Brazilian Portuguese','default',54,'pt-br'), (1785,'Bulgarian','default',54,'bg'), (1787,'Catalan','default',54,'ca'), (1788,'Chilean Spanish','default',54,'es-cl'), (1789,'Chinese (China)','default',54,'zh-cn'), (1790,'Chinese (Taiwan)','default',54,'zh-tw'), (1791,'Croatian','default',54,'hr'), (1792,'Czech','default',54,'cs'), (1793,'Danish','default',54,'da'), (1794,'Dutch','default',54,'nl'), (1795,'Esperanto','default',54,'eo'), (1796,'Estonian','default',54,'et'), (1797,'Faroese','default',54,'fo'), (1798,'Finnish','default',54,'fi'), (1799,'French','default',54,'fr'), (1800,'Frisian','default',54,'fy'), (1801,'Galician','default',54,'gl'), (1802,'Georgian','default',54,'ka'), (1803,'German','default',54,'de'), (1804,'Greek','default',54,'el'), (1805,'Hebrew','default',54,'he'), (1806,'Hindi','default',54,'hi'), (1807,'Hungarian','default',54,'hu'), (1808,'Indonesian','default',54,'id'), (1809,'Italian','default',54,'it'), (1810,'Japanese','default',54,'ja'), (1811,'Javanese','default',54,'jv'), (1812,'Kannada','default',54,'kn'), (1813,'Kirghiz','default',54,'ky'), (1814,'Korean','default',54,'ko'), (1815,'Kurdish','default',54,'ckb'), (1816,'Latvian','default',54,'lv'), (1817,'Lithuanian','default',54,'lt'), (1818,'Macedonian','default',54,'mk'), (1819,'Malay','default',54,'ms'), (1820,'Malayalam','default',54,'ml'), (1821,'Mongolian','default',54,'mn'), (1822,'Nepali','default',54,'ne'), (1823,'Norwegian (BokmÃ¥l)','default',54,'nb'), (1824,'Norwegian (Nynorsk)','default',54,'nn'), (1825,'Persian','default',54,'fa'), (1826,'Peruvian Spanish','default',54,'es-pe'), (1827,'Polish','default',54,'pl'), (1828,'Portuguese','default',54,'pt'), (1829,'Punjabi','default',54,'pa'), (1830,'Romanian','default',54,'ro'), (1831,'Russian','default',54,'ru'), (1832,'Sardinian','default',54,'srd'), (1833,'Serbian','default',54,'sr'), (1834,'Sinhala','default',54,'si'), (1835,'Slovak','default',54,'sk'), (1836,'Slovenian','default',54,'sl'), (1837,'Spanish','default',54,'es'), (1838,'Sundanese','default',54,'su'), (1839,'Swahili','default',54,'sw'), (1840,'Swedish','default',54,'sv'), (1841,'Tamil (Sri Lanka)','default',54,'ta-lk'), (1842,'Thai','default',54,'th'), (1843,'Turkish','default',54,'tr'), (1844,'Uighur','default',54,'ug'), (1845,'Ukrainian','default',54,'uk'), (1846,'Uzbek','default',54,'uz'), (1847,'Venezuelan Spanish','default',54,'es-ve'), (1848,'Vietnamese','default',54,'vi'), (1849,'Welsh','default',54,'cy'), (1850,'Swedish','default',50,'sv'), (1851,'Galician','default',14,'gl'), (1852,'Galician','default',51,'gl'), (1853,'Galician','default',7,'gl'), (1854,'Galician','default',5,'gl'), (1855,'Galician','default',50,'gl'), (1856,'Burmese','default',19,'mya'), (1857,'Burmese','default',21,'mya'), (1858,'Burmese','default',23,'mya'), (1859,'Burmese','default',25,'mya'), (1860,'Burmese','default',27,'mya'), (1861,'Burmese','default',29,'mya'), (1862,'Burmese','default',31,'mya'), (1863,'Burmese','default',33,'mya'), (1864,'Burmese','default',35,'mya'), (1865,'Burmese','default',37,'mya'), (1866,'Burmese','default',39,'mya'), (1867,'Burmese','default',41,'mya'), (1868,'Burmese','default',43,'mya'), (1870,'Burmese','default',5,'mya'), (1871,'Burmese','default',7,'mya'), (1872,'Burmese','default',14,'mya'), (1873,'Burmese','default',51,'mya'), (1874,'Burmese','default',15,'mya'), (1876,'Burmese','default',45,'mya'), (1877,'Burmese','default',46,'mya'), (1878,'Burmese','default',2,'mya'), (1879,'Burmese','default',44,'mya'), (1880,'Burmese','default',53,'mya'), (1881,'Burmese','default',54,'mya'), (1882,'Burmese','default',52,'mya'), (1883,'Khmer','default',2,'km'), (1884,'Khmer','default',44,'km'), (1885,'Khmer','default',52,'km'), (1886,'Khmer','default',54,'km'), (1887,'Khmer','default',53,'km'), (1888,'Khmer','default',46,'km'), (1889,'Khmer','default',45,'km'), (1891,'Khmer','default',15,'km'), (1892,'Breton','default',2,'br'), (1894,'Breton','default',15,'br'), (1895,'Breton','default',44,'br'), (1896,'Breton','default',46,'br'), (1897,'Breton','default',45,'br'), (1898,'Breton','default',52,'br'), (1899,'Breton','default',54,'br'), (1900,'Breton','default',53,'br'), (1901,'Persian (Afghanistan)','default',52,'fa-af'), (1902,'Persian (Afghanistan)','default',54,'fa-af'), (1903,'Persian (Afghanistan)','default',53,'fa-af'), (1904,'Persian (Afghanistan)','default',2,'fa-af'), (1906,'Persian (Afghanistan)','default',15,'fa-af'), (1907,'Scottish Gaelic','default',15,'gd'), (1909,'Scottish Gaelic','default',2,'gd'), (1910,'Scottish Gaelic','default',52,'gd'), (1911,'Scottish Gaelic','default',54,'gd'), (1912,'Scottish Gaelic','default',53,'gd'), (1913,'Croatian','default',51,'hr'), (1914,'Croatian','default',14,'hr'), (1915,'Somali','default',51,'so'), (1916,'Somali','default',14,'so'), (1917,'Somali','default',7,'so'), (1918,'Somali','default',5,'so'), (1919,'Somali','default',50,'so'), (1920,'Somali','default',52,'so'), (1921,'Somali','default',54,'so'), (1922,'Somali','default',53,'so'), (1923,'Somali','default',44,'so'), (1924,'Somali','default',46,'so'), (1925,'Somali','default',45,'so'), (1926,'Somali','default',2,'so'), (1928,'Somali','default',15,'so'), (1929,'Limburgish','default',51,'li'), (1930,'Limburgish','default',14,'li'), (1931,'Limburgish','default',52,'li'), (1932,'Limburgish','default',54,'li'), (1933,'Limburgish','default',53,'li'), (1934,'Limburgish','default',44,'li'), (1935,'Limburgish','default',46,'li'), (1936,'Limburgish','default',45,'li'), (1937,'Limburgish','default',2,'li'), (1939,'Limburgish','default',15,'li'), (1940,'Limburgish','default',7,'li'), (1941,'Limburgish','default',5,'li'), (1942,'Limburgish','default',50,'li'), (1943,'Armenian','default',52,'hy'), (1944,'Armenian','default',54,'hy'), (1945,'Armenian','default',53,'hy'), (1946,'Armenian','default',2,'hy'), (1948,'Armenian','default',15,'hy'), (1949,'Japanese','default',51,'ja'), (1951,'Albanian','default',55,'sq'), (1952,'Arabic','default',55,'ar'), (1953,'Armenian','default',55,'hy'), (1954,'Azerbaijani','default',55,'az'), (1955,'Basque','default',55,'eu'), (1956,'Bengali','default',55,'bn'), (1957,'Bosnian','default',55,'bs'), (1958,'Brazilian Portuguese','default',55,'pt-br'), (1959,'Breton','default',55,'br'), (1960,'Bulgarian','default',55,'bg'), (1961,'Burmese','default',55,'mya'), (1963,'Catalan','default',55,'ca'), (1964,'Chilean Spanish','default',55,'es-cl'), (1965,'Chinese (China)','default',55,'zh-cn'), (1966,'Chinese (Taiwan)','default',55,'zh-tw'), (1967,'Croatian','default',55,'hr'), (1968,'Czech','default',55,'cs'), (1969,'Danish','default',55,'da'), (1970,'Dutch','default',55,'nl'), (1971,'Esperanto','default',55,'eo'), (1972,'Estonian','default',55,'et'), (1973,'Faroese','default',55,'fo'), (1974,'Finnish','default',55,'fi'), (1975,'French','default',55,'fr'), (1976,'Frisian','default',55,'fy'), (1977,'Galician','default',55,'gl'), (1978,'Georgian','default',55,'ka'), (1979,'German','default',55,'de'), (1980,'Greek','default',55,'el'), (1981,'Hebrew','default',55,'he'), (1982,'Hindi','default',55,'hi'), (1983,'Hungarian','default',55,'hu'), (1984,'Indonesian','default',55,'id'), (1985,'Italian','default',55,'it'), (1986,'Japanese','default',55,'ja'), (1987,'Javanese','default',55,'jv'), (1988,'Kannada','default',55,'kn'), (1989,'Khmer','default',55,'km'), (1990,'Kirghiz','default',55,'ky'), (1991,'Korean','default',55,'ko'), (1992,'Kurdish','default',55,'ckb'), (1993,'Latvian','default',55,'lv'), (1994,'Limburgish','default',55,'li'), (1995,'Lithuanian','default',55,'lt'), (1996,'Macedonian','default',55,'mk'), (1997,'Malay','default',55,'ms'), (1998,'Malayalam','default',55,'ml'), (1999,'Mongolian','default',55,'mn'), (2000,'Nepali','default',55,'ne'), (2001,'Norwegian (BokmÃ¥l)','default',55,'nb'), (2002,'Norwegian (Nynorsk)','default',55,'nn'), (2003,'Persian','default',55,'fa'), (2004,'Scottish Gaelic','default',55,'gd'), (2005,'Persian (Afghanistan)','default',55,'fa-af'), (2006,'Peruvian Spanish','default',55,'es-pe'), (2007,'Polish','default',55,'pl'), (2008,'Portuguese','default',55,'pt'), (2009,'Punjabi','default',55,'pa'), (2010,'Romanian','default',55,'ro'), (2011,'Russian','default',55,'ru'), (2012,'Sardinian','default',55,'srd'), (2013,'Serbian','default',55,'sr'), (2014,'Sinhala','default',55,'si'), (2015,'Slovak','default',55,'sk'), (2016,'Slovenian','default',55,'sl'), (2017,'Somali','default',55,'so'), (2018,'Spanish','default',55,'es'), (2019,'Sundanese','default',55,'su'), (2020,'Swahili','default',55,'sw'), (2021,'Swedish','default',55,'sv'), (2022,'Tamil (Sri Lanka)','default',55,'ta-lk'), (2023,'Thai','default',55,'th'), (2024,'Turkish','default',55,'tr'), (2025,'Uighur','default',55,'ug'), (2026,'Ukrainian','default',55,'uk'), (2027,'Uzbek','default',55,'uz'), (2028,'Venezuelan Spanish','default',55,'es-ve'), (2029,'Vietnamese','default',55,'vi'), (2030,'Welsh','default',55,'cy'), (2031,'Spanish (Spain)','default',57,'es'), (2032,'Italian','default',57,'it'), (2033,'Swedish','default',57,'sv'), (2034,'Portuguese (Portugal)','default',57,'pt'), (2035,'Japanese','default',57,'ja'), (2036,'French (France)','default',57,'fr'), (2037,'Norwegian (BokmÃ¥l)','default',57,'nb'), (2038,'Hebrew','default',57,'he'), (2039,'Dutch','default',57,'nl'), (2040,'Bosnian','default',57,'bs'), (2041,'German','default',57,'de'), (2042,'Portuguese (Brazil)','default',57,'pt-br'), (2043,'Finnish','default',57,'fi'), (2044,'Croatian','default',57,'hr'), (2045,'Chinese (Simplified)','default',57,'zh-cn'), (2046,'Chinese (China)','default',5,'zh-cn'), (2047,'Persian','default',57,'fa'), (2048,'Finnish','default',50,'fi'), (2049,'Thai','default',7,'th'), (2050,'Portuguese (Portugal)','default',59,'pt'), (2051,'French (France)','default',59,'fr'), (2052,'Spanish (Spain)','default',59,'es'), (2053,'Italian','default',59,'it'), (2054,'Japanese','default',59,'ja'), (2055,'Hebrew','default',59,'he'), (2056,'German','default',59,'de'), (2057,'Dutch','default',59,'nl'), (2058,'Bosnian','default',59,'bs'), (2059,'Danish','default',59,'da'), (2060,'Finnish','default',59,'fi'), (2061,'Hebrew','default',50,'he'), (2062,'Hebrew','default',5,'he'), (2063,'Chinese (China)','default',59,'zh-cn'), (2064,'Dutch','default',7,'nl'), (2065,'Indonesian','default',59,'id'), (2066,'Portuguese (Brazil)','default',59,'pt-br'), (2067,'Romanian','default',59,'ro'), (2068,'Arabic','default',57,'ar'), (2069,'Croatian','default',59,'hr'), (2070,'Macedonian','default',59,'mk'), (2071,'Hungarian','default',59,'hu'), (2072,'Icelandic','default',52,'is'), (2073,'Icelandic','default',54,'is'), (2074,'Icelandic','default',53,'is'), (2075,'Icelandic','default',2,'is'), (2076,'Icelandic','default',55,'is'), (2078,'Icelandic','default',15,'is'), (2079,'Georgian','default',7,'ka'), (2080,'Kazakh','default',2,'kk'), (2081,'Kazakh','default',55,'kk'), (2083,'Kazakh','default',15,'kk'), (2084,'Kazakh','default',52,'kk'), (2085,'Kazakh','default',54,'kk'), (2086,'Kazakh','default',53,'kk'), (2087,'Georgian','default',51,'ka'), (2088,'Georgian','default',14,'ka'), (2089,'Montenegrin','default',2,'me'), (2090,'Montenegrin','default',55,'me'), (2092,'Montenegrin','default',15,'me'), (2093,'Montenegrin','default',52,'me'), (2094,'Montenegrin','default',54,'me'), (2095,'Montenegrin','default',53,'me'), (2096,'Indonesian','default',57,'id'), (2097,'Indonesian','default',50,'id'), (2098,'Burmese','default',59,'mya'), (2099,'Turkish','default',59,'tr'), (2100,'Hungarian','default',14,'hu'), (2101,'Greek','default',50,'el'), (2102,'Turkish','default',57,'tr'), (2103,'Swedish','default',59,'sv'), (2104,'Serbian','default',59,'sr'), (2105,'Serbian','default',51,'sr'), (2106,'Serbian','default',14,'sr'), (2107,'Slovak','default',59,'sk'), (2108,'Dzongkha','default',2,'dzo'), (2109,'Dzongkha','default',55,'dzo'), (2111,'Dzongkha','default',15,'dzo'), (2112,'Thai','default',59,'th'), (2113,'Norwegian (BokmÃ¥l)','default',59,'nb'), (2114,'Amharic','default',2,'am'), (2115,'Amharic','default',55,'am'), (2117,'Amharic','default',15,'am'), (2118,'Arabic','default',59,'ar'), (2119,'Macedonian','default',57,'mk'), (2120,'Macedonian','default',50,'mk'), (2121,'Tamil','default',57,'ta'), (2122,'Tamil','default',59,'ta'), (2123,'Tamil (Sri Lanka)','default',59,'ta-lk'), (2124,'Tamil (Sri Lanka)','default',57,'ta-lk'), (2125,'Russian','default',57,'ru'), (2127,'Albanian','default',60,'sq'), (2128,'Amharic','default',60,'am'), (2129,'Arabic','default',60,'ar'), (2130,'Armenian','default',60,'hy'), (2131,'Azerbaijani','default',60,'az'), (2132,'Basque','default',60,'eu'), (2133,'Bengali','default',60,'bn'), (2134,'Bosnian','default',60,'bs'), (2135,'Brazilian Portuguese','default',60,'pt-br'), (2136,'Breton','default',60,'br'), (2137,'Bulgarian','default',60,'bg'), (2139,'Burmese','default',60,'mya'), (2140,'Catalan','default',60,'ca'), (2141,'Catalan (Balear)','default',60,'bal'), (2142,'Chilean Spanish','default',60,'es-cl'), (2143,'Chinese (China)','default',60,'zh-cn'), (2144,'Chinese (Taiwan)','default',60,'zh-tw'), (2145,'Croatian','default',60,'hr'), (2146,'Czech','default',60,'cs'), (2147,'Danish','default',60,'da'), (2148,'Dutch','default',60,'nl'), (2149,'Dzongkha','default',60,'dzo'), (2150,'English (UK)','default',60,'en-gb'), (2151,'Esperanto','default',60,'eo'), (2152,'Estonian','default',60,'et'), (2153,'Faroese','default',60,'fo'), (2154,'Finnish','default',60,'fi'), (2155,'French','default',60,'fr'), (2156,'Frisian','default',60,'fy'), (2157,'Galician','default',60,'gl'), (2158,'Georgian','default',60,'ka'), (2159,'German','default',60,'de'), (2160,'Greek','default',60,'el'), (2161,'Hawaiian','default',60,'haw'), (2162,'Hebrew','default',60,'he'), (2163,'Hindi','default',60,'hi'), (2164,'Hungarian','default',60,'hu'), (2165,'Icelandic','default',60,'is'), (2166,'Indonesian','default',60,'id'), (2167,'Italian','default',60,'it'), (2168,'Japanese','default',60,'ja'), (2169,'Javanese','default',60,'jv'), (2170,'Kannada','default',60,'kn'), (2171,'Kazakh','default',60,'kk'), (2172,'Khmer','default',60,'km'), (2173,'Kirghiz','default',60,'ky'), (2174,'Korean','default',60,'ko'), (2175,'Kurdish','default',60,'ckb'), (2176,'Kurdish (Kurmanji)','default',60,'ku'), (2177,'Latvian','default',60,'lv'), (2178,'Limburgish','default',60,'li'), (2179,'Lithuanian','default',60,'lt'), (2180,'Luxembourgish','default',60,'lb'), (2181,'Macedonian','default',60,'mk'), (2182,'Malagasy','default',60,'mg'), (2183,'Malay','default',60,'ms'), (2184,'Malayalam','default',60,'ml'), (2185,'Mongolian','default',60,'mn'), (2186,'Montenegrin','default',60,'me'), (2187,'Nepali','default',60,'ne'), (2188,'Norwegian (BokmÃ¥l)','default',60,'nb'), (2189,'Norwegian (Nynorsk)','default',60,'nn'), (2190,'Persian','default',60,'fa'), (2191,'Persian (Afghanistan)','default',60,'fa-af'), (2192,'Peruvian Spanish','default',60,'es-pe'), (2193,'Polish','default',60,'pl'), (2194,'Portuguese','default',60,'pt'), (2195,'Punjabi','default',60,'pa'), (2196,'Romanian','default',60,'ro'), (2197,'Russian','default',60,'ru'), (2198,'Sardinian','default',60,'srd'), (2199,'Scottish Gaelic','default',60,'gd'), (2200,'Serbian','default',60,'sr'), (2201,'Sinhala','default',60,'si'), (2202,'Slovak','default',60,'sk'), (2203,'Slovenian','default',60,'sl'), (2204,'Somali','default',60,'so'), (2205,'Spanish','default',60,'es'), (2206,'Sundanese','default',60,'su'), (2207,'Swahili','default',60,'sw'), (2208,'Swedish','default',60,'sv'), (2209,'Tamil','default',60,'ta'), (2210,'Tamil (Sri Lanka)','default',60,'ta-lk'), (2211,'Thai','default',60,'th'), (2212,'Turkish','default',60,'tr'), (2213,'Uighur','default',60,'ug'), (2214,'Ukrainian','default',60,'uk'), (2215,'Urdu','default',60,'ur'), (2216,'Uzbek','default',60,'uz'), (2217,'Venezuelan Spanish','default',60,'es-ve'), (2218,'Vietnamese','default',60,'vi'), (2219,'Welsh','default',60,'cy'), (2221,'Albanian','default',61,'sq'), (2222,'Amharic','default',61,'am'), (2223,'Arabic','default',61,'ar'), (2224,'Armenian','default',61,'hy'), (2225,'Azerbaijani','default',61,'az'), (2226,'Basque','default',61,'eu'), (2227,'Bengali','default',61,'bn'), (2228,'Bosnian','default',61,'bs'), (2229,'Brazilian Portuguese','default',61,'pt-br'), (2230,'Breton','default',61,'br'), (2231,'Bulgarian','default',61,'bg'), (2233,'Burmese','default',61,'mya'), (2234,'Catalan','default',61,'ca'), (2235,'Chilean Spanish','default',61,'es-cl'), (2236,'Chinese (China)','default',61,'zh-cn'), (2237,'Chinese (Taiwan)','default',61,'zh-tw'), (2238,'Croatian','default',61,'hr'), (2239,'Czech','default',61,'cs'), (2240,'Danish','default',61,'da'), (2241,'Dutch','default',61,'nl'), (2242,'Dzongkha','default',61,'dzo'), (2243,'Esperanto','default',61,'eo'), (2244,'Estonian','default',61,'et'), (2245,'Faroese','default',61,'fo'), (2246,'Finnish','default',61,'fi'), (2247,'French','default',61,'fr'), (2248,'Frisian','default',61,'fy'), (2249,'Galician','default',61,'gl'), (2250,'Georgian','default',61,'ka'), (2251,'German','default',61,'de'), (2252,'Greek','default',61,'el'), (2253,'Hebrew','default',61,'he'), (2254,'Hindi','default',61,'hi'), (2255,'Hungarian','default',61,'hu'), (2256,'Icelandic','default',61,'is'), (2257,'Indonesian','default',61,'id'), (2258,'Italian','default',61,'it'), (2259,'Japanese','default',61,'ja'), (2260,'Javanese','default',61,'jv'), (2261,'Kannada','default',61,'kn'), (2262,'Kazakh','default',61,'kk'), (2263,'Khmer','default',61,'km'), (2264,'Kirghiz','default',61,'ky'), (2265,'Korean','default',61,'ko'), (2266,'Kurdish','default',61,'ckb'), (2267,'Latvian','default',61,'lv'), (2268,'Limburgish','default',61,'li'), (2269,'Lithuanian','default',61,'lt'), (2270,'Macedonian','default',61,'mk'), (2271,'Malay','default',61,'ms'), (2272,'Malayalam','default',61,'ml'), (2273,'Mongolian','default',61,'mn'), (2274,'Montenegrin','default',61,'me'), (2275,'Nepali','default',61,'ne'), (2276,'Norwegian (BokmÃ¥l)','default',61,'nb'), (2277,'Norwegian (Nynorsk)','default',61,'nn'), (2278,'Persian','default',61,'fa'), (2279,'Persian (Afghanistan)','default',61,'fa-af'), (2280,'Persian (Afghanistan)','default',61,'gd'), (2281,'Peruvian Spanish','default',61,'es-pe'), (2282,'Polish','default',61,'pl'), (2283,'Portuguese','default',61,'pt'), (2284,'Punjabi','default',61,'pa'), (2285,'Romanian','default',61,'ro'), (2286,'Russian','default',61,'ru'), (2287,'Sardinian','default',61,'srd'), (2288,'Serbian','default',61,'sr'), (2289,'Sinhala','default',61,'si'), (2290,'Slovak','default',61,'sk'), (2291,'Slovenian','default',61,'sl'), (2292,'Somali','default',61,'so'), (2293,'Spanish','default',61,'es'), (2294,'Sundanese','default',61,'su'), (2295,'Swahili','default',61,'sw'), (2296,'Swedish','default',61,'sv'), (2297,'Tamil (Sri Lanka)','default',61,'ta-lk'), (2298,'Thai','default',61,'th'), (2299,'Turkish','default',61,'tr'), (2300,'Uighur','default',61,'ug'), (2301,'Ukrainian','default',61,'uk'), (2302,'Uzbek','default',61,'uz'), (2303,'Venezuelan Spanish','default',61,'es-ve'), (2304,'Vietnamese','default',61,'vi'), (2305,'Welsh','default',61,'cy'), (2307,'Albanian','default',62,'sq'), (2308,'Amharic','default',62,'am'), (2309,'Arabic','default',62,'ar'), (2310,'Armenian','default',62,'hy'), (2311,'Azerbaijani','default',62,'az'), (2312,'Basque','default',62,'eu'), (2313,'Bengali','default',62,'bn'), (2314,'Bosnian','default',62,'bs'), (2315,'Brazilian Portuguese','default',62,'pt-br'), (2316,'Breton','default',62,'br'), (2317,'Bulgarian','default',62,'bg'), (2319,'Burmese','default',62,'mya'), (2320,'Catalan','default',62,'ca'), (2321,'Chilean Spanish','default',62,'es-cl'), (2322,'Chinese (China)','default',62,'zh-cn'), (2323,'Chinese (Taiwan)','default',62,'zh-tw'), (2324,'Croatian','default',62,'hr'), (2325,'Czech','default',62,'cs'), (2326,'Danish','default',62,'da'), (2327,'Dutch','default',62,'nl'), (2328,'Dzongkha','default',62,'dzo'), (2329,'Esperanto','default',62,'eo'), (2330,'Estonian','default',62,'et'), (2331,'Faroese','default',62,'fo'), (2332,'Finnish','default',62,'fi'), (2333,'French','default',62,'fr'), (2334,'Frisian','default',62,'fy'), (2335,'Galician','default',62,'gl'), (2336,'Georgian','default',62,'ka'), (2337,'German','default',62,'de'), (2338,'Greek','default',62,'el'), (2339,'Hebrew','default',62,'he'), (2340,'Hindi','default',62,'hi'), (2341,'Hungarian','default',62,'hu'), (2342,'Icelandic','default',62,'is'), (2343,'Indonesian','default',62,'id'), (2344,'Italian','default',62,'it'), (2345,'Japanese','default',62,'ja'), (2346,'Javanese','default',62,'jv'), (2347,'Kannada','default',62,'kn'), (2348,'Kazakh','default',62,'kk'), (2349,'Khmer','default',62,'km'), (2350,'Kirghiz','default',62,'ky'), (2351,'Korean','default',62,'ko'), (2352,'Kurdish','default',62,'ckb'), (2353,'Latvian','default',62,'lv'), (2354,'Limburgish','default',62,'li'), (2355,'Lithuanian','default',62,'lt'), (2356,'Macedonian','default',62,'mk'), (2357,'Malay','default',62,'ms'), (2358,'Malayalam','default',62,'ml'), (2359,'Mongolian','default',62,'mn'), (2360,'Montenegrin','default',62,'me'), (2361,'Nepali','default',62,'ne'), (2362,'Norwegian (BokmÃ¥l)','default',62,'nb'), (2363,'Norwegian (Nynorsk)','default',62,'nn'), (2364,'Persian','default',62,'fa'), (2365,'Persian (Afghanistan)','default',62,'fa-af'), (2366,'Persian (Afghanistan)','default',62,'gd'), (2367,'Peruvian Spanish','default',62,'es-pe'), (2368,'Polish','default',62,'pl'), (2369,'Portuguese','default',62,'pt'), (2370,'Punjabi','default',62,'pa'), (2371,'Romanian','default',62,'ro'), (2372,'Russian','default',62,'ru'), (2373,'Sardinian','default',62,'srd'), (2374,'Serbian','default',62,'sr'), (2375,'Sinhala','default',62,'si'), (2376,'Slovak','default',62,'sk'), (2377,'Slovenian','default',62,'sl'), (2378,'Somali','default',62,'so'), (2379,'Spanish','default',62,'es'), (2380,'Sundanese','default',62,'su'), (2381,'Swahili','default',62,'sw'), (2382,'Swedish','default',62,'sv'), (2383,'Tamil (Sri Lanka)','default',62,'ta-lk'), (2384,'Thai','default',62,'th'), (2385,'Turkish','default',62,'tr'), (2386,'Uighur','default',62,'ug'), (2387,'Ukrainian','default',62,'uk'), (2388,'Uzbek','default',62,'uz'), (2389,'Venezuelan Spanish','default',62,'es-ve'), (2390,'Vietnamese','default',62,'vi'), (2391,'Welsh','default',62,'cy'), (2393,'Albanian','default',63,'sq'), (2394,'Amharic','default',63,'am'), (2395,'Arabic','default',63,'ar'), (2396,'Armenian','default',63,'hy'), (2397,'Azerbaijani','default',63,'az'), (2398,'Basque','default',63,'eu'), (2399,'Bengali','default',63,'bn'), (2400,'Bosnian','default',63,'bs'), (2401,'Brazilian Portuguese','default',63,'pt-br'), (2402,'Breton','default',63,'br'), (2403,'Bulgarian','default',63,'bg'), (2405,'Burmese','default',63,'mya'), (2406,'Catalan','default',63,'ca'), (2407,'Chilean Spanish','default',63,'es-cl'), (2408,'Chinese (China)','default',63,'zh-cn'), (2409,'Chinese (Taiwan)','default',63,'zh-tw'), (2410,'Croatian','default',63,'hr'), (2411,'Czech','default',63,'cs'), (2412,'Danish','default',63,'da'), (2413,'Dutch','default',63,'nl'), (2414,'Dzongkha','default',63,'dzo'), (2415,'Esperanto','default',63,'eo'), (2416,'Estonian','default',63,'et'), (2417,'Faroese','default',63,'fo'), (2418,'Finnish','default',63,'fi'), (2419,'French','default',63,'fr'), (2420,'Frisian','default',63,'fy'), (2421,'Galician','default',63,'gl'), (2422,'Georgian','default',63,'ka'), (2423,'German','default',63,'de'), (2424,'Greek','default',63,'el'), (2425,'Hebrew','default',63,'he'), (2426,'Hindi','default',63,'hi'), (2427,'Hungarian','default',63,'hu'), (2428,'Icelandic','default',63,'is'), (2429,'Indonesian','default',63,'id'), (2430,'Italian','default',63,'it'), (2431,'Japanese','default',63,'ja'), (2432,'Javanese','default',63,'jv'), (2433,'Kannada','default',63,'kn'), (2434,'Kazakh','default',63,'kk'), (2435,'Khmer','default',63,'km'), (2436,'Kirghiz','default',63,'ky'), (2437,'Korean','default',63,'ko'), (2438,'Kurdish','default',63,'ckb'), (2439,'Latvian','default',63,'lv'), (2440,'Limburgish','default',63,'li'), (2441,'Lithuanian','default',63,'lt'), (2442,'Macedonian','default',63,'mk'), (2443,'Malay','default',63,'ms'), (2444,'Malayalam','default',63,'ml'), (2445,'Mongolian','default',63,'mn'), (2446,'Montenegrin','default',63,'me'), (2447,'Nepali','default',63,'ne'), (2448,'Norwegian (BokmÃ¥l)','default',63,'nb'), (2449,'Norwegian (Nynorsk)','default',63,'nn'), (2450,'Persian','default',63,'fa'), (2451,'Persian (Afghanistan)','default',63,'fa-af'), (2452,'Persian (Afghanistan)','default',63,'gd'), (2453,'Peruvian Spanish','default',63,'es-pe'), (2454,'Polish','default',63,'pl'), (2455,'Portuguese','default',63,'pt'), (2456,'Punjabi','default',63,'pa'), (2457,'Romanian','default',63,'ro'), (2458,'Russian','default',63,'ru'), (2459,'Sardinian','default',63,'srd'), (2460,'Serbian','default',63,'sr'), (2461,'Sinhala','default',63,'si'), (2462,'Slovak','default',63,'sk'), (2463,'Slovenian','default',63,'sl'), (2464,'Somali','default',63,'so'), (2465,'Spanish','default',63,'es'), (2466,'Sundanese','default',63,'su'), (2467,'Swahili','default',63,'sw'), (2468,'Swedish','default',63,'sv'), (2469,'Tamil (Sri Lanka)','default',63,'ta-lk'), (2470,'Thai','default',63,'th'), (2471,'Turkish','default',63,'tr'), (2472,'Uighur','default',63,'ug'), (2473,'Ukrainian','default',63,'uk'), (2474,'Uzbek','default',63,'uz'), (2475,'Venezuelan Spanish','default',63,'es-ve'), (2476,'Vietnamese','default',63,'vi'), (2477,'Welsh','default',63,'cy'), (2573,'Albanian','default',64,'sq'), (2574,'Amharic','default',64,'am'), (2575,'Arabic','default',64,'ar'), (2576,'Armenian','default',64,'hy'), (2577,'Azerbaijani','default',64,'az'), (2578,'Basque','default',64,'eu'), (2579,'Bengali','default',64,'bn'), (2580,'Bosnian','default',64,'bs'), (2581,'Brazilian Portuguese','default',64,'pt-br'), (2582,'Breton','default',64,'br'), (2583,'Bulgarian','default',64,'bg'), (2585,'Burmese','default',64,'mya'), (2586,'Catalan','default',64,'ca'), (2587,'Catalan (Balear)','default',64,'bal'), (2588,'Chilean Spanish','default',64,'es-cl'), (2589,'Chinese (China)','default',64,'zh-cn'), (2590,'Chinese (Taiwan)','default',64,'zh-tw'), (2591,'Croatian','default',64,'hr'), (2592,'Czech','default',64,'cs'), (2593,'Danish','default',64,'da'), (2594,'Dutch','default',64,'nl'), (2595,'Dzongkha','default',64,'dzo'), (2597,'Esperanto','default',64,'eo'), (2598,'Estonian','default',64,'et'), (2599,'Faroese','default',64,'fo'), (2600,'Finnish','default',64,'fi'), (2601,'French','default',64,'fr'), (2602,'Frisian','default',64,'fy'), (2603,'Galician','default',64,'gl'), (2604,'Georgian','default',64,'ka'), (2605,'German','default',64,'de'), (2606,'Greek','default',64,'el'), (2607,'Hawaiian','default',64,'haw'), (2608,'Hebrew','default',64,'he'), (2609,'Hindi','default',64,'hi'), (2610,'Hungarian','default',64,'hu'), (2611,'Icelandic','default',64,'is'), (2612,'Indonesian','default',64,'id'), (2613,'Italian','default',64,'it'), (2614,'Japanese','default',64,'ja'), (2615,'Javanese','default',64,'jv'), (2616,'Kannada','default',64,'kn'), (2617,'Kazakh','default',64,'kk'), (2618,'Khmer','default',64,'km'), (2619,'Kirghiz','default',64,'ky'), (2620,'Korean','default',64,'ko'), (2621,'Kurdish','default',64,'ckb'), (2622,'Kurdish (Kurmanji)','default',64,'ku'), (2623,'Latvian','default',64,'lv'), (2624,'Limburgish','default',64,'li'), (2625,'Lithuanian','default',64,'lt'), (2626,'Luxembourgish','default',64,'lb'), (2627,'Macedonian','default',64,'mk'), (2628,'Malagasy','default',64,'mg'), (2629,'Malay','default',64,'ms'), (2630,'Malayalam','default',64,'ml'), (2631,'Mongolian','default',64,'mn'), (2632,'Montenegrin','default',64,'me'), (2633,'Nepali','default',64,'ne'), (2634,'Norwegian (BokmÃ¥l)','default',64,'nb'), (2635,'Norwegian (Nynorsk)','default',64,'nn'), (2636,'Persian','default',64,'fa'), (2637,'Persian (Afghanistan)','default',64,'fa-af'), (2638,'Peruvian Spanish','default',64,'es-pe'), (2639,'Polish','default',64,'pl'), (2640,'Portuguese','default',64,'pt'), (2641,'Punjabi','default',64,'pa'), (2642,'Romanian','default',64,'ro'), (2643,'Russian','default',64,'ru'), (2644,'Sardinian','default',64,'srd'), (2645,'Scottish Gaelic','default',64,'gd'), (2646,'Serbian','default',64,'sr'), (2647,'Sinhala','default',64,'si'), (2648,'Slovak','default',64,'sk'), (2649,'Slovenian','default',64,'sl'), (2650,'Somali','default',64,'so'), (2651,'Spanish','default',64,'es'), (2652,'Sundanese','default',64,'su'), (2653,'Swahili','default',64,'sw'), (2654,'Swedish','default',64,'sv'), (2655,'Tamil','default',64,'ta'), (2656,'Tamil (Sri Lanka)','default',64,'ta-lk'), (2657,'Thai','default',64,'th'), (2658,'Turkish','default',64,'tr'), (2659,'Uighur','default',64,'ug'), (2660,'Ukrainian','default',64,'uk'), (2661,'Urdu','default',64,'ur'), (2662,'Uzbek','default',64,'uz'), (2663,'Venezuelan Spanish','default',64,'es-ve'), (2664,'Vietnamese','default',64,'vi'), (2665,'Welsh','default',64,'cy'), (2666,'Czech','default',59,'cs'), (2676,'Chinese (Taiwan)','default',57,'zh-tw'), (2677,'Tamil (Sri Lanka)','default',43,'ta-lk'), (2678,'Tamil (Sri Lanka)','default',41,'ta-lk'), (2679,'Tamil (Sri Lanka)','default',39,'ta-lk'), (2680,'Tamil (Sri Lanka)','default',37,'ta-lk'), (2681,'Tamil (Sri Lanka)','default',35,'ta-lk'), (2682,'Tamil (Sri Lanka)','default',33,'ta-lk'), (2683,'Tamil (Sri Lanka)','default',31,'ta-lk'), (2684,'Tamil (Sri Lanka)','default',29,'ta-lk'), (2685,'Tamil (Sri Lanka)','default',27,'ta-lk'), (2686,'Tamil (Sri Lanka)','default',25,'ta-lk'), (2687,'Tamil (Sri Lanka)','default',23,'ta-lk'), (2688,'Tamil (Sri Lanka)','default',21,'ta-lk'), (2689,'Tamil (Sri Lanka)','default',19,'ta-lk'), (2690,'Tamil (Sri Lanka)','default',7,'ta-lk'), (2691,'Tamil (Sri Lanka)','default',5,'ta-lk'), (2692,'Tamil (Sri Lanka)','default',50,'ta-lk'), (2694,'Albanian','default',66,'sq'), (2695,'Amharic','default',66,'am'), (2696,'Arabic','default',66,'ar'), (2697,'Armenian','default',66,'hy'), (2698,'Azerbaijani','default',66,'az'), (2699,'Basque','default',66,'eu'), (2700,'Bengali','default',66,'bn'), (2701,'Bosnian','default',66,'bs'), (2702,'Brazilian Portuguese','default',66,'pt-br'), (2703,'Breton','default',66,'br'), (2704,'Bulgarian','default',66,'bg'), (2705,'Burmese','default',66,'mya'), (2706,'Catalan','default',66,'ca'), (2707,'Catalan (Balear)','default',66,'bal'), (2708,'Chilean Spanish','default',66,'es-cl'), (2709,'Chinese (China)','default',66,'zh-cn'), (2710,'Chinese (Taiwan)','default',66,'zh-tw'), (2711,'Croatian','default',66,'hr'), (2712,'Czech','default',66,'cs'), (2713,'Danish','default',66,'da'), (2714,'Dutch','default',66,'nl'), (2715,'Dzongkha','default',66,'dzo'), (2716,'English (UK)','default',66,'en-gb'), (2717,'Esperanto','default',66,'eo'), (2718,'Estonian','default',66,'et'), (2719,'Faroese','default',66,'fo'), (2720,'Finnish','default',66,'fi'), (2721,'French','default',66,'fr'), (2722,'Frisian','default',66,'fy'), (2723,'Galician','default',66,'gl'), (2724,'Georgian','default',66,'ka'), (2725,'German','default',66,'de'), (2726,'Greek','default',66,'el'), (2727,'Hawaiian','default',66,'haw'), (2728,'Hebrew','default',66,'he'), (2729,'Hindi','default',66,'hi'), (2730,'Hungarian','default',66,'hu'), (2731,'Icelandic','default',66,'is'), (2732,'Indonesian','default',66,'id'), (2733,'Italian','default',66,'it'), (2734,'Japanese','default',66,'ja'), (2735,'Javanese','default',66,'jv'), (2736,'Kannada','default',66,'kn'), (2737,'Kazakh','default',66,'kk'), (2738,'Khmer','default',66,'km'), (2739,'Kirghiz','default',66,'ky'), (2740,'Korean','default',66,'ko'), (2741,'Kurdish','default',66,'ckb'), (2742,'Kurdish (Kurmanji)','default',66,'ku'), (2743,'Latvian','default',66,'lv'), (2744,'Limburgish','default',66,'li'), (2745,'Lithuanian','default',66,'lt'), (2746,'Luxembourgish','default',66,'lb'), (2747,'Macedonian','default',66,'mk'), (2748,'Malagasy','default',66,'mg'), (2749,'Malay','default',66,'ms'), (2750,'Malayalam','default',66,'ml'), (2751,'Mongolian','default',66,'mn'), (2752,'Montenegrin','default',66,'me'), (2753,'Nepali','default',66,'ne'), (2754,'Norwegian (BokmÃ¥l)','default',66,'nb'), (2755,'Norwegian (Nynorsk)','default',66,'nn'), (2756,'Persian','default',66,'fa'), (2757,'Persian (Afghanistan)','default',66,'fa-af'), (2758,'Peruvian Spanish','default',66,'es-pe'), (2759,'Polish','default',66,'pl'), (2760,'Portuguese','default',66,'pt'), (2761,'Punjabi','default',66,'pa'), (2762,'Romanian','default',66,'ro'), (2763,'Russian','default',66,'ru'), (2764,'Sardinian','default',66,'srd'), (2765,'Scottish Gaelic','default',66,'gd'), (2766,'Serbian','default',66,'sr'), (2767,'Sinhala','default',66,'si'), (2768,'Slovak','default',66,'sk'), (2769,'Slovenian','default',66,'sl'), (2770,'Somali','default',66,'so'), (2771,'Spanish','default',66,'es'), (2772,'Sundanese','default',66,'su'), (2773,'Swahili','default',66,'sw'), (2774,'Swedish','default',66,'sv'), (2775,'Tamil','default',66,'ta'), (2776,'Tamil (Sri Lanka)','default',66,'ta-lk'), (2777,'Thai','default',66,'th'), (2778,'Turkish','default',66,'tr'), (2779,'Uighur','default',66,'ug'), (2780,'Ukrainian','default',66,'uk'), (2781,'Urdu','default',66,'ur'), (2782,'Uzbek','default',66,'uz'), (2783,'Venezuelan Spanish','default',66,'es-ve'), (2784,'Vietnamese','default',66,'vi'), (2785,'Welsh','default',66,'cy'), (2786,'Polish','default',59,'pl'), (2787,'Kurdish (Kurmanji)','default',59,'ku'), (2788,'Kurdish (Sorani)','default',59,'ckb'), (2789,'Kurdish (Sorani)','default',57,'ckb'), (2790,'Kurdish (Kurmanji)','default',57,'ku'), (2791,'Kurdish (Sorani)','default',7,'ckb'), (2792,'Kurdish (Kurmanji)','default',7,'ku'), (2793,'Sanskrit','default',2,'sa-in'), (2794,'Sanskrit','default',64,'sa-in'), (2795,'Sanskrit','default',55,'sa-in'), (2797,'Sanskrit','default',15,'sa-in'), (2798,'Polish','default',57,'pl'), (2799,'Portuguese (Portugal)','default',67,'pt'), (2800,'Dutch','default',67,'nl'), (2801,'Spanish (Spain)','default',67,'es'), (2802,'Swedish','default',67,'sv'), (2803,'Polish','default',67,'pl'), (2804,'Bosnian','default',67,'bs'), (2805,'Turkish','default',67,'tr'), (2806,'Hebrew','default',67,'he'), (2807,'Hungarian','default',57,'hu'), (2808,'Malay','default',59,'ms'), (2809,'Norwegian (BokmÃ¥l)','default',67,'nb'), (2810,'Polish','default',50,'pl'), (2811,'Telugu','default',2,'te'), (2812,'Telugu','default',15,'te'), (2814,'Telugu','default',55,'te'), (2815,'Telugu','default',64,'te'), (2816,'Portuguese (Portugal)','default',51,'pt'), (2817,'Portuguese (Brazil)','default',67,'pt-br'), (2818,'Ossetic','default',2,'os'), (2820,'Ossetic','default',64,'os'), (2821,'Ossetic','default',15,'os'), (2822,'Ossetic','default',55,'os'), (2823,'English (Canada)','default',2,'en-ca'), (2824,'English (Canada)','default',15,'en-ca'), (2826,'English (Canada)','default',55,'en-ca'), (2827,'Japanese','default',67,'ja'), (2828,'Divehi','default',66,'dv'), (2829,'Divehi','default',2,'dv'), (2830,'Divehi','default',64,'dv'), (2831,'Divehi','default',55,'dv'), (2833,'Divehi','default',15,'dv'), (2835,'Albanian','default',71,'sq'), (2836,'Amharic','default',71,'am'), (2837,'Arabic','default',71,'ar'), (2838,'Armenian','default',71,'hy'), (2839,'Azerbaijani','default',71,'az'), (2840,'Basque','default',71,'eu'), (2841,'Bengali','default',71,'bn'), (2842,'Bosnian','default',71,'bs'), (2843,'Brazilian Portuguese','default',71,'pt-br'), (2844,'Breton','default',71,'br'), (2845,'Bulgarian','default',71,'bg'), (2846,'Burmese','default',71,'mya'), (2847,'Catalan','default',71,'ca'), (2848,'Catalan (Balear)','default',71,'bal'), (2849,'Chilean Spanish','default',71,'es-cl'), (2850,'Chinese (China)','default',71,'zh-cn'), (2851,'Chinese (Taiwan)','default',71,'zh-tw'), (2852,'Croatian','default',71,'hr'), (2853,'Czech','default',71,'cs'), (2854,'Danish','default',71,'da'), (2855,'Divehi','default',71,'dv'), (2856,'Dutch','default',71,'nl'), (2857,'Dzongkha','default',71,'dzo'), (2858,'English (Canada)','default',71,'en-ca'), (2859,'English (UK)','default',71,'en-gb'), (2860,'Esperanto','default',71,'eo'), (2861,'Estonian','default',71,'et'), (2862,'Faroese','default',71,'fo'), (2863,'Finnish','default',71,'fi'), (2864,'French','default',71,'fr'), (2865,'Frisian','default',71,'fy'), (2866,'Galician','default',71,'gl'), (2867,'Georgian','default',71,'ka'), (2868,'German','default',71,'de'), (2869,'Greek','default',71,'el'), (2870,'Hawaiian','default',71,'haw'), (2871,'Hebrew','default',71,'he'), (2872,'Hindi','default',71,'hi'), (2873,'Hungarian','default',71,'hu'), (2874,'Icelandic','default',71,'is'), (2875,'Indonesian','default',71,'id'), (2876,'Italian','default',71,'it'), (2877,'Japanese','default',71,'ja'), (2878,'Javanese','default',71,'jv'), (2879,'Kannada','default',71,'kn'), (2880,'Kazakh','default',71,'kk'), (2881,'Khmer','default',71,'km'), (2882,'Kirghiz','default',71,'ky'), (2883,'Korean','default',71,'ko'), (2884,'Kurdish','default',71,'ckb'), (2885,'Kurdish (Kurmanji)','default',71,'ku'), (2886,'Latvian','default',71,'lv'), (2887,'Limburgish','default',71,'li'), (2888,'Lithuanian','default',71,'lt'), (2889,'Luxembourgish','default',71,'lb'), (2890,'Macedonian','default',71,'mk'), (2891,'Malagasy','default',71,'mg'), (2892,'Malay','default',71,'ms'), (2893,'Malayalam','default',71,'ml'), (2894,'Mongolian','default',71,'mn'), (2895,'Montenegrin','default',71,'me'), (2896,'Nepali','default',71,'ne'), (2897,'Norwegian (BokmÃ¥l)','default',71,'nb'), (2898,'Norwegian (Nynorsk)','default',71,'nn'), (2899,'Ossetic','default',71,'os'), (2900,'Persian','default',71,'fa'), (2901,'Persian (Afghanistan)','default',71,'fa-af'), (2902,'Peruvian Spanish','default',71,'es-pe'), (2903,'Polish','default',71,'pl'), (2904,'Portuguese','default',71,'pt'), (2905,'Punjabi','default',71,'pa'), (2906,'Romanian','default',71,'ro'), (2907,'Russian','default',71,'ru'), (2908,'Sanskrit','default',71,'sa-in'), (2909,'Sardinian','default',71,'srd'), (2910,'Scottish Gaelic','default',71,'gd'), (2911,'Serbian','default',71,'sr'), (2912,'Sinhala','default',71,'si'), (2913,'Slovak','default',71,'sk'), (2914,'Slovenian','default',71,'sl'), (2915,'Somali','default',71,'so'), (2916,'Spanish','default',71,'es'), (2917,'Sundanese','default',71,'su'), (2918,'Swahili','default',71,'sw'), (2919,'Swedish','default',71,'sv'), (2920,'Tamil','default',71,'ta'), (2921,'Tamil (Sri Lanka)','default',71,'ta-lk'), (2922,'Telugu','default',71,'te'), (2923,'Thai','default',71,'th'), (2924,'Turkish','default',71,'tr'), (2925,'Uighur','default',71,'ug'), (2926,'Ukrainian','default',71,'uk'), (2927,'Urdu','default',71,'ur'), (2928,'Uzbek','default',71,'uz'), (2929,'Venezuelan Spanish','default',71,'es-ve'), (2930,'Vietnamese','default',71,'vi'), (2931,'Welsh','default',71,'cy'), (2933,'Albanian','default',72,'sq'), (2934,'Amharic','default',72,'am'), (2935,'Arabic','default',72,'ar'), (2936,'Armenian','default',72,'hy'), (2937,'Azerbaijani','default',72,'az'), (2938,'Basque','default',72,'eu'), (2939,'Bengali','default',72,'bn'), (2940,'Bosnian','default',72,'bs'), (2941,'Brazilian Portuguese','default',72,'pt-br'), (2942,'Breton','default',72,'br'), (2943,'Bulgarian','default',72,'bg'), (2944,'Burmese','default',72,'mya'), (2945,'Catalan','default',72,'ca'), (2946,'Chilean Spanish','default',72,'es-cl'), (2947,'Chinese (China)','default',72,'zh-cn'), (2948,'Chinese (Taiwan)','default',72,'zh-tw'), (2949,'Croatian','default',72,'hr'), (2950,'Czech','default',72,'cs'), (2951,'Danish','default',72,'da'), (2952,'Divehi','default',72,'dv'), (2953,'Dutch','default',72,'nl'), (2954,'Dzongkha','default',72,'dzo'), (2955,'English (Canada)','default',72,'en-ca'), (2956,'Esperanto','default',72,'eo'), (2957,'Estonian','default',72,'et'), (2958,'Faroese','default',72,'fo'), (2959,'Finnish','default',72,'fi'), (2960,'French','default',72,'fr'), (2961,'Frisian','default',72,'fy'), (2962,'Galician','default',72,'gl'), (2963,'Georgian','default',72,'ka'), (2964,'German','default',72,'de'), (2965,'Greek','default',72,'el'), (2966,'Hebrew','default',72,'he'), (2967,'Hindi','default',72,'hi'), (2968,'Hungarian','default',72,'hu'), (2969,'Icelandic','default',72,'is'), (2970,'Indonesian','default',72,'id'), (2971,'Italian','default',72,'it'), (2972,'Japanese','default',72,'ja'), (2973,'Javanese','default',72,'jv'), (2974,'Kannada','default',72,'kn'), (2975,'Kazakh','default',72,'kk'), (2976,'Khmer','default',72,'km'), (2977,'Kirghiz','default',72,'ky'), (2978,'Korean','default',72,'ko'), (2979,'Kurdish','default',72,'ckb'), (2980,'Latvian','default',72,'lv'), (2981,'Limburgish','default',72,'li'), (2982,'Lithuanian','default',72,'lt'), (2983,'Macedonian','default',72,'mk'), (2984,'Malay','default',72,'ms'), (2985,'Malayalam','default',72,'ml'), (2986,'Mongolian','default',72,'mn'), (2987,'Montenegrin','default',72,'me'), (2988,'Nepali','default',72,'ne'), (2989,'Norwegian (BokmÃ¥l)','default',72,'nb'), (2990,'Norwegian (Nynorsk)','default',72,'nn'), (2991,'Ossetic','default',72,'os'), (2992,'Persian','default',72,'fa'), (2993,'Persian (Afghanistan)','default',72,'fa-af'), (2994,'Peruvian Spanish','default',72,'es-pe'), (2995,'Polish','default',72,'pl'), (2996,'Portuguese','default',72,'pt'), (2997,'Punjabi','default',72,'pa'), (2998,'Romanian','default',72,'ro'), (2999,'Russian','default',72,'ru'), (3000,'Sanskrit','default',72,'sa-in'), (3001,'Sardinian','default',72,'srd'), (3002,'Scottish Gaelic','default',72,'gd'), (3003,'Serbian','default',72,'sr'), (3004,'Sinhala','default',72,'si'), (3005,'Slovak','default',72,'sk'), (3006,'Slovenian','default',72,'sl'), (3007,'Somali','default',72,'so'), (3008,'Spanish','default',72,'es'), (3009,'Sundanese','default',72,'su'), (3010,'Swahili','default',72,'sw'), (3011,'Swedish','default',72,'sv'), (3012,'Tamil (Sri Lanka)','default',72,'ta-lk'), (3013,'Telugu','default',72,'te'), (3014,'Thai','default',72,'th'), (3015,'Turkish','default',72,'tr'), (3016,'Uighur','default',72,'ug'), (3017,'Ukrainian','default',72,'uk'), (3018,'Uzbek','default',72,'uz'), (3019,'Venezuelan Spanish','default',72,'es-ve'), (3020,'Vietnamese','default',72,'vi'), (3021,'Welsh','default',72,'cy'), (3023,'Albanian','default',73,'sq'), (3024,'Amharic','default',73,'am'), (3025,'Arabic','default',73,'ar'), (3026,'Armenian','default',73,'hy'), (3027,'Azerbaijani','default',73,'az'), (3028,'Basque','default',73,'eu'), (3029,'Bengali','default',73,'bn'), (3030,'Bosnian','default',73,'bs'), (3031,'Brazilian Portuguese','default',73,'pt-br'), (3032,'Breton','default',73,'br'), (3033,'Bulgarian','default',73,'bg'), (3034,'Burmese','default',73,'mya'), (3035,'Catalan','default',73,'ca'), (3036,'Chilean Spanish','default',73,'es-cl'), (3037,'Chinese (China)','default',73,'zh-cn'), (3038,'Chinese (Taiwan)','default',73,'zh-tw'), (3039,'Croatian','default',73,'hr'), (3040,'Czech','default',73,'cs'), (3041,'Danish','default',73,'da'), (3042,'Divehi','default',73,'dv'), (3043,'Dutch','default',73,'nl'), (3044,'Dzongkha','default',73,'dzo'), (3045,'English (Canada)','default',73,'en-ca'), (3046,'Esperanto','default',73,'eo'), (3047,'Estonian','default',73,'et'), (3048,'Faroese','default',73,'fo'), (3049,'Finnish','default',73,'fi'), (3050,'French','default',73,'fr'), (3051,'Frisian','default',73,'fy'), (3052,'Galician','default',73,'gl'), (3053,'Georgian','default',73,'ka'), (3054,'German','default',73,'de'), (3055,'Greek','default',73,'el'), (3056,'Hebrew','default',73,'he'), (3057,'Hindi','default',73,'hi'), (3058,'Hungarian','default',73,'hu'), (3059,'Icelandic','default',73,'is'), (3060,'Indonesian','default',73,'id'), (3061,'Italian','default',73,'it'), (3062,'Japanese','default',73,'ja'), (3063,'Javanese','default',73,'jv'), (3064,'Kannada','default',73,'kn'), (3065,'Kazakh','default',73,'kk'), (3066,'Khmer','default',73,'km'), (3067,'Kirghiz','default',73,'ky'), (3068,'Korean','default',73,'ko'), (3069,'Kurdish','default',73,'ckb'), (3070,'Latvian','default',73,'lv'), (3071,'Limburgish','default',73,'li'), (3072,'Lithuanian','default',73,'lt'), (3073,'Macedonian','default',73,'mk'), (3074,'Malay','default',73,'ms'), (3075,'Malayalam','default',73,'ml'), (3076,'Mongolian','default',73,'mn'), (3077,'Montenegrin','default',73,'me'), (3078,'Nepali','default',73,'ne'), (3079,'Norwegian (BokmÃ¥l)','default',73,'nb'), (3080,'Norwegian (Nynorsk)','default',73,'nn'), (3081,'Ossetic','default',73,'os'), (3082,'Persian','default',73,'fa'), (3083,'Persian (Afghanistan)','default',73,'fa-af'), (3084,'Peruvian Spanish','default',73,'es-pe'), (3085,'Polish','default',73,'pl'), (3086,'Portuguese','default',73,'pt'), (3087,'Punjabi','default',73,'pa'), (3088,'Romanian','default',73,'ro'), (3089,'Russian','default',73,'ru'), (3090,'Sanskrit','default',73,'sa-in'), (3091,'Sardinian','default',73,'srd'), (3092,'Scottish Gaelic','default',73,'gd'), (3093,'Serbian','default',73,'sr'), (3094,'Sinhala','default',73,'si'), (3095,'Slovak','default',73,'sk'), (3096,'Slovenian','default',73,'sl'), (3097,'Somali','default',73,'so'), (3098,'Spanish','default',73,'es'), (3099,'Sundanese','default',73,'su'), (3100,'Swahili','default',73,'sw'), (3101,'Swedish','default',73,'sv'), (3102,'Tamil (Sri Lanka)','default',73,'ta-lk'), (3103,'Telugu','default',73,'te'), (3104,'Thai','default',73,'th'), (3105,'Turkish','default',73,'tr'), (3106,'Uighur','default',73,'ug'), (3107,'Ukrainian','default',73,'uk'), (3108,'Uzbek','default',73,'uz'), (3109,'Venezuelan Spanish','default',73,'es-ve'), (3110,'Vietnamese','default',73,'vi'), (3111,'Welsh','default',73,'cy'), (3113,'Albanian','default',74,'sq'), (3114,'Amharic','default',74,'am'), (3115,'Arabic','default',74,'ar'), (3116,'Armenian','default',74,'hy'), (3117,'Azerbaijani','default',74,'az'), (3118,'Basque','default',74,'eu'), (3119,'Bengali','default',74,'bn'), (3120,'Bosnian','default',74,'bs'), (3121,'Brazilian Portuguese','default',74,'pt-br'), (3122,'Breton','default',74,'br'), (3123,'Bulgarian','default',74,'bg'), (3124,'Burmese','default',74,'mya'), (3125,'Catalan','default',74,'ca'), (3126,'Chilean Spanish','default',74,'es-cl'), (3127,'Chinese (China)','default',74,'zh-cn'), (3128,'Chinese (Taiwan)','default',74,'zh-tw'), (3129,'Croatian','default',74,'hr'), (3130,'Czech','default',74,'cs'), (3131,'Danish','default',74,'da'), (3132,'Divehi','default',74,'dv'), (3133,'Dutch','default',74,'nl'), (3134,'Dzongkha','default',74,'dzo'), (3135,'English (Canada)','default',74,'en-ca'), (3136,'Esperanto','default',74,'eo'), (3137,'Estonian','default',74,'et'), (3138,'Faroese','default',74,'fo'), (3139,'Finnish','default',74,'fi'), (3140,'French','default',74,'fr'), (3141,'Frisian','default',74,'fy'), (3142,'Galician','default',74,'gl'), (3143,'Georgian','default',74,'ka'), (3144,'German','default',74,'de'), (3145,'Greek','default',74,'el'), (3146,'Hebrew','default',74,'he'), (3147,'Hindi','default',74,'hi'), (3148,'Hungarian','default',74,'hu'), (3149,'Icelandic','default',74,'is'), (3150,'Indonesian','default',74,'id'), (3151,'Italian','default',74,'it'), (3152,'Japanese','default',74,'ja'), (3153,'Javanese','default',74,'jv'), (3154,'Kannada','default',74,'kn'), (3155,'Kazakh','default',74,'kk'), (3156,'Khmer','default',74,'km'), (3157,'Kirghiz','default',74,'ky'), (3158,'Korean','default',74,'ko'), (3159,'Kurdish','default',74,'ckb'), (3160,'Latvian','default',74,'lv'), (3161,'Limburgish','default',74,'li'), (3162,'Lithuanian','default',74,'lt'), (3163,'Macedonian','default',74,'mk'), (3164,'Malay','default',74,'ms'), (3165,'Malayalam','default',74,'ml'), (3166,'Mongolian','default',74,'mn'), (3167,'Montenegrin','default',74,'me'), (3168,'Nepali','default',74,'ne'), (3169,'Norwegian (BokmÃ¥l)','default',74,'nb'), (3170,'Norwegian (Nynorsk)','default',74,'nn'), (3171,'Ossetic','default',74,'os'), (3172,'Persian','default',74,'fa'), (3173,'Persian (Afghanistan)','default',74,'fa-af'), (3174,'Peruvian Spanish','default',74,'es-pe'), (3175,'Polish','default',74,'pl'), (3176,'Portuguese','default',74,'pt'), (3177,'Punjabi','default',74,'pa'), (3178,'Romanian','default',74,'ro'), (3179,'Russian','default',74,'ru'), (3180,'Sanskrit','default',74,'sa-in'), (3181,'Sardinian','default',74,'srd'), (3182,'Scottish Gaelic','default',74,'gd'), (3183,'Serbian','default',74,'sr'), (3184,'Sinhala','default',74,'si'), (3185,'Slovak','default',74,'sk'), (3186,'Slovenian','default',74,'sl'), (3187,'Somali','default',74,'so'), (3188,'Spanish','default',74,'es'), (3189,'Sundanese','default',74,'su'), (3190,'Swahili','default',74,'sw'), (3191,'Swedish','default',74,'sv'), (3192,'Tamil (Sri Lanka)','default',74,'ta-lk'), (3193,'Telugu','default',74,'te'), (3194,'Thai','default',74,'th'), (3195,'Turkish','default',74,'tr'), (3196,'Uighur','default',74,'ug'), (3197,'Ukrainian','default',74,'uk'), (3198,'Uzbek','default',74,'uz'), (3199,'Venezuelan Spanish','default',74,'es-ve'), (3200,'Vietnamese','default',74,'vi'), (3201,'Welsh','default',74,'cy'), (3203,'Albanian','default',75,'sq'), (3204,'Amharic','default',75,'am'), (3205,'Arabic','default',75,'ar'), (3206,'Armenian','default',75,'hy'), (3207,'Azerbaijani','default',75,'az'), (3208,'Basque','default',75,'eu'), (3209,'Bengali','default',75,'bn'), (3210,'Bosnian','default',75,'bs'), (3211,'Brazilian Portuguese','default',75,'pt-br'), (3212,'Breton','default',75,'br'), (3213,'Bulgarian','default',75,'bg'), (3214,'Burmese','default',75,'mya'), (3215,'Catalan','default',75,'ca'), (3216,'Catalan (Balear)','default',75,'bal'), (3217,'Chilean Spanish','default',75,'es-cl'), (3218,'Chinese (China)','default',75,'zh-cn'), (3219,'Chinese (Taiwan)','default',75,'zh-tw'), (3220,'Croatian','default',75,'hr'), (3221,'Czech','default',75,'cs'), (3222,'Danish','default',75,'da'), (3223,'Divehi','default',75,'dv'), (3224,'Dutch','default',75,'nl'), (3225,'Dzongkha','default',75,'dzo'), (3226,'English (UK)','default',75,'en-gb'), (3227,'Esperanto','default',75,'eo'), (3228,'Estonian','default',75,'et'), (3229,'Faroese','default',75,'fo'), (3230,'Finnish','default',75,'fi'), (3231,'French','default',75,'fr'), (3232,'Frisian','default',75,'fy'), (3233,'Galician','default',75,'gl'), (3234,'Georgian','default',75,'ka'), (3235,'German','default',75,'de'), (3236,'Greek','default',75,'el'), (3237,'Hawaiian','default',75,'haw'), (3238,'Hebrew','default',75,'he'), (3239,'Hindi','default',75,'hi'), (3240,'Hungarian','default',75,'hu'), (3241,'Icelandic','default',75,'is'), (3242,'Indonesian','default',75,'id'), (3243,'Italian','default',75,'it'), (3244,'Japanese','default',75,'ja'), (3245,'Javanese','default',75,'jv'), (3246,'Kannada','default',75,'kn'), (3247,'Kazakh','default',75,'kk'), (3248,'Khmer','default',75,'km'), (3249,'Kirghiz','default',75,'ky'), (3250,'Korean','default',75,'ko'), (3251,'Kurdish','default',75,'ckb'), (3252,'Kurdish (Kurmanji)','default',75,'ku'), (3253,'Latvian','default',75,'lv'), (3254,'Limburgish','default',75,'li'), (3255,'Lithuanian','default',75,'lt'), (3256,'Luxembourgish','default',75,'lb'), (3257,'Macedonian','default',75,'mk'), (3258,'Malagasy','default',75,'mg'), (3259,'Malay','default',75,'ms'), (3260,'Malayalam','default',75,'ml'), (3261,'Mongolian','default',75,'mn'), (3262,'Montenegrin','default',75,'me'), (3263,'Nepali','default',75,'ne'), (3264,'Norwegian (BokmÃ¥l)','default',75,'nb'), (3265,'Norwegian (Nynorsk)','default',75,'nn'), (3266,'Ossetic','default',75,'os'), (3267,'Persian','default',75,'fa'), (3268,'Persian (Afghanistan)','default',75,'fa-af'), (3269,'Peruvian Spanish','default',75,'es-pe'), (3270,'Polish','default',75,'pl'), (3271,'Portuguese','default',75,'pt'), (3272,'Punjabi','default',75,'pa'), (3273,'Romanian','default',75,'ro'), (3274,'Russian','default',75,'ru'), (3275,'Sanskrit','default',75,'sa-in'), (3276,'Sardinian','default',75,'srd'), (3277,'Scottish Gaelic','default',75,'gd'), (3278,'Serbian','default',75,'sr'), (3279,'Sinhala','default',75,'si'), (3280,'Slovak','default',75,'sk'), (3281,'Slovenian','default',75,'sl'), (3282,'Somali','default',75,'so'), (3283,'Spanish','default',75,'es'), (3284,'Sundanese','default',75,'su'), (3285,'Swahili','default',75,'sw'), (3286,'Swedish','default',75,'sv'), (3287,'Tamil','default',75,'ta'), (3288,'Tamil (Sri Lanka)','default',75,'ta-lk'), (3289,'Telugu','default',75,'te'), (3290,'Thai','default',75,'th'), (3291,'Turkish','default',75,'tr'), (3292,'Uighur','default',75,'ug'), (3293,'Ukrainian','default',75,'uk'), (3294,'Urdu','default',75,'ur'), (3295,'Uzbek','default',75,'uz'), (3296,'Venezuelan Spanish','default',75,'es-ve'), (3297,'Vietnamese','default',75,'vi'), (3298,'Welsh','default',75,'cy'), (3299,'Azerbaijani (Turkey)','default',2,'az-tr'), (3300,'Azerbaijani (Turkey)','default',64,'az-tr'), (3301,'Azerbaijani (Turkey)','default',55,'az-tr'), (3303,'Azerbaijani (Turkey)','default',15,'az-tr'), (3305,'Albanian','default',77,'sq'), (3306,'Amharic','default',77,'am'), (3307,'Arabic','default',77,'ar'), (3308,'Armenian','default',77,'hy'), (3309,'Azerbaijani','default',77,'az'), (3310,'Basque','default',77,'eu'), (3311,'Bengali','default',77,'bn'), (3312,'Bosnian','default',77,'bs'), (3313,'Brazilian Portuguese','default',77,'pt-br'), (3314,'Breton','default',77,'br'), (3315,'Bulgarian','default',77,'bg'), (3316,'Burmese','default',77,'mya'), (3317,'Catalan','default',77,'ca'), (3318,'Catalan (Balear)','default',77,'bal'), (3319,'Chilean Spanish','default',77,'es-cl'), (3320,'Chinese (China)','default',77,'zh-cn'), (3321,'Chinese (Taiwan)','default',77,'zh-tw'), (3322,'Croatian','default',77,'hr'), (3323,'Czech','default',77,'cs'), (3324,'Danish','default',77,'da'), (3325,'Divehi','default',77,'dv'), (3326,'Dutch','default',77,'nl'), (3327,'Dzongkha','default',77,'dzo'), (3328,'English (Canada)','default',77,'en-ca'), (3329,'English (UK)','default',77,'en-gb'), (3330,'Esperanto','default',77,'eo'), (3331,'Estonian','default',77,'et'), (3332,'Faroese','default',77,'fo'), (3333,'Finnish','default',77,'fi'), (3334,'French','default',77,'fr'), (3335,'Frisian','default',77,'fy'), (3336,'Galician','default',77,'gl'), (3337,'Georgian','default',77,'ka'), (3338,'German','default',77,'de'), (3339,'Greek','default',77,'el'), (3340,'Hawaiian','default',77,'haw'), (3341,'Hebrew','default',77,'he'), (3342,'Hindi','default',77,'hi'), (3343,'Hungarian','default',77,'hu'), (3344,'Icelandic','default',77,'is'), (3345,'Indonesian','default',77,'id'), (3346,'Italian','default',77,'it'), (3347,'Japanese','default',77,'ja'), (3348,'Javanese','default',77,'jv'), (3349,'Kannada','default',77,'kn'), (3350,'Kazakh','default',77,'kk'), (3351,'Khmer','default',77,'km'), (3352,'Kirghiz','default',77,'ky'), (3353,'Korean','default',77,'ko'), (3354,'Kurdish','default',77,'ckb'), (3355,'Kurdish (Kurmanji)','default',77,'ku'), (3356,'Latvian','default',77,'lv'), (3357,'Limburgish','default',77,'li'), (3358,'Lithuanian','default',77,'lt'), (3359,'Luxembourgish','default',77,'lb'), (3360,'Macedonian','default',77,'mk'), (3361,'Malagasy','default',77,'mg'), (3362,'Malay','default',77,'ms'), (3363,'Malayalam','default',77,'ml'), (3364,'Mongolian','default',77,'mn'), (3365,'Montenegrin','default',77,'me'), (3366,'Nepali','default',77,'ne'), (3367,'Norwegian (BokmÃ¥l)','default',77,'nb'), (3368,'Norwegian (Nynorsk)','default',77,'nn'), (3369,'Ossetic','default',77,'os'), (3370,'Persian','default',77,'fa'), (3371,'Persian (Afghanistan)','default',77,'fa-af'), (3372,'Peruvian Spanish','default',77,'es-pe'), (3373,'Polish','default',77,'pl'), (3374,'Portuguese','default',77,'pt'), (3375,'Punjabi','default',77,'pa'), (3376,'Romanian','default',77,'ro'), (3377,'Russian','default',77,'ru'), (3378,'Sanskrit','default',77,'sa-in'), (3379,'Sardinian','default',77,'srd'), (3380,'Scottish Gaelic','default',77,'gd'), (3381,'Serbian','default',77,'sr'), (3382,'Sinhala','default',77,'si'), (3383,'Slovak','default',77,'sk'), (3384,'Slovenian','default',77,'sl'), (3385,'Somali','default',77,'so'), (3386,'Spanish','default',77,'es'), (3387,'Sundanese','default',77,'su'), (3388,'Swahili','default',77,'sw'), (3389,'Swedish','default',77,'sv'), (3390,'Tamil','default',77,'ta'), (3391,'Tamil (Sri Lanka)','default',77,'ta-lk'), (3392,'Telugu','default',77,'te'), (3393,'Thai','default',77,'th'), (3394,'Turkish','default',77,'tr'), (3395,'Uighur','default',77,'ug'), (3396,'Ukrainian','default',77,'uk'), (3397,'Urdu','default',77,'ur'), (3398,'Uzbek','default',77,'uz'), (3399,'Venezuelan Spanish','default',77,'es-ve'), (3400,'Vietnamese','default',77,'vi'), (3401,'Welsh','default',77,'cy'), (3402,'Slovak','default',67,'sk'), (3403,'Korean','default',59,'ko'), (3404,'Slovak','default',57,'sk'), (3405,'Danish','default',57,'da'), (3406,'Chinese (China)','default',7,'zh-cn'), (3411,'Croatian','default',67,'hr'), (3412,'Hungarian','default',50,'hu'), (3414,'Albanian','default',78,'sq'), (3415,'Amharic','default',78,'am'), (3416,'Arabic','default',78,'ar'), (3417,'Armenian','default',78,'hy'), (3418,'Azerbaijani','default',78,'az'), (3419,'Azerbaijani (Turkey)','default',78,'az-tr'), (3420,'Basque','default',78,'eu'), (3421,'Bengali','default',78,'bn'), (3422,'Bosnian','default',78,'bs'), (3423,'Brazilian Portuguese','default',78,'pt-br'), (3424,'Breton','default',78,'br'), (3425,'Bulgarian','default',78,'bg'), (3426,'Burmese','default',78,'mya'), (3427,'Catalan','default',78,'ca'), (3428,'Catalan (Balear)','default',78,'bal'), (3429,'Chilean Spanish','default',78,'es-cl'), (3430,'Chinese (China)','default',78,'zh-cn'), (3431,'Chinese (Taiwan)','default',78,'zh-tw'), (3432,'Croatian','default',78,'hr'), (3433,'Czech','default',78,'cs'), (3434,'Danish','default',78,'da'), (3435,'Divehi','default',78,'dv'), (3436,'Dutch','default',78,'nl'), (3437,'Dzongkha','default',78,'dzo'), (3438,'English (Canada)','default',78,'en-ca'), (3439,'English (UK)','default',78,'en-gb'), (3440,'Esperanto','default',78,'eo'), (3441,'Estonian','default',78,'et'), (3442,'Faroese','default',78,'fo'), (3443,'Finnish','default',78,'fi'), (3444,'French','default',78,'fr'), (3445,'Frisian','default',78,'fy'), (3446,'Galician','default',78,'gl'), (3447,'Georgian','default',78,'ka'), (3448,'German','default',78,'de'), (3449,'Greek','default',78,'el'), (3450,'Hawaiian','default',78,'haw'), (3451,'Hebrew','default',78,'he'), (3452,'Hindi','default',78,'hi'), (3453,'Hungarian','default',78,'hu'), (3454,'Icelandic','default',78,'is'), (3455,'Indonesian','default',78,'id'), (3456,'Italian','default',78,'it'), (3457,'Japanese','default',78,'ja'), (3458,'Javanese','default',78,'jv'), (3459,'Kannada','default',78,'kn'), (3460,'Kazakh','default',78,'kk'), (3461,'Khmer','default',78,'km'), (3462,'Kirghiz','default',78,'ky'), (3463,'Korean','default',78,'ko'), (3464,'Kurdish','default',78,'ckb'), (3465,'Kurdish (Kurmanji)','default',78,'ku'), (3466,'Latvian','default',78,'lv'), (3467,'Limburgish','default',78,'li'), (3468,'Lithuanian','default',78,'lt'), (3469,'Luxembourgish','default',78,'lb'), (3470,'Macedonian','default',78,'mk'), (3471,'Malagasy','default',78,'mg'), (3472,'Malay','default',78,'ms'), (3473,'Malayalam','default',78,'ml'), (3474,'Mongolian','default',78,'mn'), (3475,'Montenegrin','default',78,'me'), (3476,'Nepali','default',78,'ne'), (3477,'Norwegian (BokmÃ¥l)','default',78,'nb'), (3478,'Norwegian (Nynorsk)','default',78,'nn'), (3479,'Ossetic','default',78,'os'), (3480,'Persian','default',78,'fa'), (3481,'Persian (Afghanistan)','default',78,'fa-af'), (3482,'Peruvian Spanish','default',78,'es-pe'), (3483,'Polish','default',78,'pl'), (3484,'Portuguese','default',78,'pt'), (3485,'Punjabi','default',78,'pa'), (3486,'Romanian','default',78,'ro'), (3487,'Russian','default',78,'ru'), (3488,'Sanskrit','default',78,'sa-in'), (3489,'Sardinian','default',78,'srd'), (3490,'Scottish Gaelic','default',78,'gd'), (3491,'Serbian','default',78,'sr'), (3492,'Sinhala','default',78,'si'), (3493,'Slovak','default',78,'sk'), (3494,'Slovenian','default',78,'sl'), (3495,'Somali','default',78,'so'), (3496,'Spanish','default',78,'es'), (3497,'Sundanese','default',78,'su'), (3498,'Swahili','default',78,'sw'), (3499,'Swedish','default',78,'sv'), (3500,'Tamil','default',78,'ta'), (3501,'Tamil (Sri Lanka)','default',78,'ta-lk'), (3502,'Telugu','default',78,'te'), (3503,'Thai','default',78,'th'), (3504,'Turkish','default',78,'tr'), (3505,'Uighur','default',78,'ug'), (3506,'Ukrainian','default',78,'uk'), (3507,'Urdu','default',78,'ur'), (3508,'Uzbek','default',78,'uz'), (3509,'Venezuelan Spanish','default',78,'es-ve'), (3510,'Vietnamese','default',78,'vi'), (3511,'Welsh','default',78,'cy'), (3513,'Albanian','default',79,'sq'), (3514,'Amharic','default',79,'am'), (3515,'Arabic','default',79,'ar'), (3516,'Armenian','default',79,'hy'), (3517,'Azerbaijani','default',79,'az'), (3518,'Azerbaijani (Turkey)','default',79,'az-tr'), (3519,'Basque','default',79,'eu'), (3520,'Bengali','default',79,'bn'), (3521,'Bosnian','default',79,'bs'), (3522,'Brazilian Portuguese','default',79,'pt-br'), (3523,'Breton','default',79,'br'), (3524,'Bulgarian','default',79,'bg'), (3525,'Burmese','default',79,'mya'), (3526,'Catalan','default',79,'ca'), (3527,'Catalan (Balear)','default',79,'bal'), (3528,'Chilean Spanish','default',79,'es-cl'), (3529,'Chinese (China)','default',79,'zh-cn'), (3530,'Chinese (Taiwan)','default',79,'zh-tw'), (3531,'Croatian','default',79,'hr'), (3532,'Czech','default',79,'cs'), (3533,'Danish','default',79,'da'), (3534,'Divehi','default',79,'dv'), (3535,'Dutch','default',79,'nl'), (3536,'Dzongkha','default',79,'dzo'), (3537,'English (Canada)','default',79,'en-ca'), (3538,'English (UK)','default',79,'en-gb'), (3539,'Esperanto','default',79,'eo'), (3540,'Estonian','default',79,'et'), (3541,'Faroese','default',79,'fo'), (3542,'Finnish','default',79,'fi'), (3543,'French','default',79,'fr'), (3544,'Frisian','default',79,'fy'), (3545,'Galician','default',79,'gl'), (3546,'Georgian','default',79,'ka'), (3547,'German','default',79,'de'), (3548,'Greek','default',79,'el'), (3549,'Hawaiian','default',79,'haw'), (3550,'Hebrew','default',79,'he'), (3551,'Hindi','default',79,'hi'), (3552,'Hungarian','default',79,'hu'), (3553,'Icelandic','default',79,'is'), (3554,'Indonesian','default',79,'id'), (3555,'Italian','default',79,'it'), (3556,'Japanese','default',79,'ja'), (3557,'Javanese','default',79,'jv'), (3558,'Kannada','default',79,'kn'), (3559,'Kazakh','default',79,'kk'), (3560,'Khmer','default',79,'km'), (3561,'Kirghiz','default',79,'ky'), (3562,'Korean','default',79,'ko'), (3563,'Kurdish','default',79,'ckb'), (3564,'Kurdish (Kurmanji)','default',79,'ku'), (3565,'Latvian','default',79,'lv'), (3566,'Limburgish','default',79,'li'), (3567,'Lithuanian','default',79,'lt'), (3568,'Luxembourgish','default',79,'lb'), (3569,'Macedonian','default',79,'mk'), (3570,'Malagasy','default',79,'mg'), (3571,'Malay','default',79,'ms'), (3572,'Malayalam','default',79,'ml'), (3573,'Mongolian','default',79,'mn'), (3574,'Montenegrin','default',79,'me'), (3575,'Nepali','default',79,'ne'), (3576,'Norwegian (BokmÃ¥l)','default',79,'nb'), (3577,'Norwegian (Nynorsk)','default',79,'nn'), (3578,'Ossetic','default',79,'os'), (3579,'Persian','default',79,'fa'), (3580,'Persian (Afghanistan)','default',79,'fa-af'), (3581,'Peruvian Spanish','default',79,'es-pe'), (3582,'Polish','default',79,'pl'), (3583,'Portuguese','default',79,'pt'), (3584,'Punjabi','default',79,'pa'), (3585,'Romanian','default',79,'ro'), (3586,'Russian','default',79,'ru'), (3587,'Sanskrit','default',79,'sa-in'), (3588,'Sardinian','default',79,'srd'), (3589,'Scottish Gaelic','default',79,'gd'), (3590,'Serbian','default',79,'sr'), (3591,'Sinhala','default',79,'si'), (3592,'Slovak','default',79,'sk'), (3593,'Slovenian','default',79,'sl'), (3594,'Somali','default',79,'so'), (3595,'Spanish','default',79,'es'), (3596,'Sundanese','default',79,'su'), (3597,'Swahili','default',79,'sw'), (3598,'Swedish','default',79,'sv'), (3599,'Tamil','default',79,'ta'), (3600,'Tamil (Sri Lanka)','default',79,'ta-lk'), (3601,'Telugu','default',79,'te'), (3602,'Thai','default',79,'th'), (3603,'Turkish','default',79,'tr'), (3604,'Uighur','default',79,'ug'), (3605,'Ukrainian','default',79,'uk'), (3606,'Urdu','default',79,'ur'), (3607,'Uzbek','default',79,'uz'), (3608,'Venezuelan Spanish','default',79,'es-ve'), (3609,'Vietnamese','default',79,'vi'), (3610,'Welsh','default',79,'cy'), (3611,'Bulgarian','default',59,'bg'), (3612,'Basque','default',7,'eu'), (3613,'Bulgarian','default',14,'bg'), (3615,'Albanian','default',80,'sq'), (3616,'Amharic','default',80,'am'), (3617,'Arabic','default',80,'ar'), (3618,'Armenian','default',80,'hy'), (3619,'Azerbaijani','default',80,'az'), (3620,'Azerbaijani (Turkey)','default',80,'az-tr'), (3621,'Basque','default',80,'eu'), (3622,'Bengali','default',80,'bn'), (3623,'Bosnian','default',80,'bs'), (3624,'Brazilian Portuguese','default',80,'pt-br'), (3625,'Breton','default',80,'br'), (3626,'Bulgarian','default',80,'bg'), (3627,'Burmese','default',80,'mya'), (3628,'Catalan','default',80,'ca'), (3629,'Chilean Spanish','default',80,'es-cl'), (3630,'Chinese (China)','default',80,'zh-cn'), (3631,'Chinese (Taiwan)','default',80,'zh-tw'), (3632,'Croatian','default',80,'hr'), (3633,'Czech','default',80,'cs'), (3634,'Danish','default',80,'da'), (3635,'Divehi','default',80,'dv'), (3636,'Dutch','default',80,'nl'), (3637,'Dzongkha','default',80,'dzo'), (3638,'English (Canada)','default',80,'en-ca'), (3639,'Esperanto','default',80,'eo'), (3640,'Estonian','default',80,'et'), (3641,'Faroese','default',80,'fo'), (3642,'Finnish','default',80,'fi'), (3643,'French','default',80,'fr'), (3644,'Frisian','default',80,'fy'), (3645,'Galician','default',80,'gl'), (3646,'Georgian','default',80,'ka'), (3647,'German','default',80,'de'), (3648,'Greek','default',80,'el'), (3649,'Hebrew','default',80,'he'), (3650,'Hindi','default',80,'hi'), (3651,'Hungarian','default',80,'hu'), (3652,'Icelandic','default',80,'is'), (3653,'Indonesian','default',80,'id'), (3654,'Italian','default',80,'it'), (3655,'Japanese','default',80,'ja'), (3656,'Javanese','default',80,'jv'), (3657,'Kannada','default',80,'kn'), (3658,'Kazakh','default',80,'kk'), (3659,'Khmer','default',80,'km'), (3660,'Kirghiz','default',80,'ky'), (3661,'Korean','default',80,'ko'), (3662,'Kurdish','default',80,'ckb'), (3663,'Latvian','default',80,'lv'), (3664,'Limburgish','default',80,'li'), (3665,'Lithuanian','default',80,'lt'), (3666,'Macedonian','default',80,'mk'), (3667,'Malay','default',80,'ms'), (3668,'Malayalam','default',80,'ml'), (3669,'Mongolian','default',80,'mn'), (3670,'Montenegrin','default',80,'me'), (3671,'Nepali','default',80,'ne'), (3672,'Norwegian (BokmÃ¥l)','default',80,'nb'), (3673,'Norwegian (Nynorsk)','default',80,'nn'), (3674,'Ossetic','default',80,'os'), (3675,'Persian','default',80,'fa'), (3676,'Persian (Afghanistan)','default',80,'fa-af'), (3677,'Peruvian Spanish','default',80,'es-pe'), (3678,'Polish','default',80,'pl'), (3679,'Portuguese','default',80,'pt'), (3680,'Punjabi','default',80,'pa'), (3681,'Romanian','default',80,'ro'), (3682,'Russian','default',80,'ru'), (3683,'Sanskrit','default',80,'sa-in'), (3684,'Sardinian','default',80,'srd'), (3685,'Scottish Gaelic','default',80,'gd'), (3686,'Serbian','default',80,'sr'), (3687,'Sinhala','default',80,'si'), (3688,'Slovak','default',80,'sk'), (3689,'Slovenian','default',80,'sl'), (3690,'Somali','default',80,'so'), (3691,'Spanish','default',80,'es'), (3692,'Sundanese','default',80,'su'), (3693,'Swahili','default',80,'sw'), (3694,'Swedish','default',80,'sv'), (3695,'Tamil (Sri Lanka)','default',80,'ta-lk'), (3696,'Telugu','default',80,'te'), (3697,'Thai','default',80,'th'), (3698,'Turkish','default',80,'tr'), (3699,'Uighur','default',80,'ug'), (3700,'Ukrainian','default',80,'uk'), (3701,'Uzbek','default',80,'uz'), (3702,'Venezuelan Spanish','default',80,'es-ve'), (3703,'Vietnamese','default',80,'vi'), (3704,'Welsh','default',80,'cy'), (3705,'Corsican','default',2,'co'), (3706,'Corsican','default',80,'co'), (3707,'Corsican','default',15,'co'), (3708,'Corsican','default',55,'co'), (3709,'Corsican','default',64,'co'), (3710,'Corsican','default',78,'co'), (3711,'Corsican','default',79,'co'), (3712,'Corsican','default',66,'co'), (3713,'Russian','default',59,'ru'), (3714,'Aragonese','default',66,'an'), (3715,'Aragonese','default',2,'an'), (3716,'Aragonese','default',80,'an'), (3717,'Aragonese','default',64,'an'), (3718,'Aragonese','default',55,'an'), (3719,'Aragonese','default',15,'an'), (3720,'Aragonese','default',78,'an'), (3721,'Aragonese','default',79,'an'), (3722,'Italian','default',67,'it'), (3723,'Lao','default',2,'lo'), (3724,'Lao','default',80,'lo'), (3725,'Lao','default',64,'lo'), (3726,'Lao','default',55,'lo'), (3727,'Lao','default',15,'lo'), (3728,'Lao','default',78,'lo'), (3729,'Lao','default',79,'lo'), (3735,'Portuguese (Portugal)','default',81,'pt'), (3736,'Bulgarian','default',81,'bg'), (3737,'Portuguese (Brazil)','default',81,'pt-br'), (3738,'Bosnian','default',81,'bs'), (3739,'Catalan','default',81,'ca'), (3740,'German','default',81,'de'), (3741,'Finnish','default',81,'fi'), (3742,'Hebrew','default',81,'he'), (3743,'Croatian','default',81,'hr'), (3744,'Indonesian','default',81,'id'), (3745,'Japanese','default',81,'ja'), (3746,'Georgian','default',81,'ka'), (3747,'Dutch','default',81,'nl'), (3748,'Polish','default',81,'pl'), (3749,'Romanian','default',81,'ro'), (3750,'Russian','default',81,'ru'), (3751,'Slovak','default',81,'sk'), (3752,'Serbian','default',81,'sr'), (3753,'Thai','default',81,'th'), (3754,'Chinese (Taiwan)','default',81,'zh-tw'), (3755,'Uighur','default',81,'ug'), (3756,'Chinese','default',81,'zh'), (3757,'Spanish (Spain)','default',81,'es'), (3758,'Macedonian','default',81,'mk'), (3759,'Burmese','default',81,'mya'), (3760,'Ossetic','default',66,'os'), (3764,'Lao','default',66,'lo'), (3765,'Korean','default',81,'ko'), (3766,'Slovenian','default',59,'sl'), (3767,'Slovenian','default',7,'sl'), (3768,'Latvian','default',59,'lv'), (3769,'Irish','default',57,'ga'), (3770,'Irish','default',50,'ga'), (3771,'Irish','default',66,'ga'), (3772,'Irish','default',2,'ga'), (3773,'Irish','default',80,'ga'), (3774,'Irish','default',64,'ga'), (3775,'Irish','default',55,'ga'), (3776,'Irish','default',78,'ga'), (3777,'Irish','default',79,'ga'), (3778,'Irish','default',15,'ga'), (3780,'Albanian','default',82,'sq'), (3781,'Amharic','default',82,'am'), (3782,'Arabic','default',82,'ar'), (3783,'Aragonese','default',82,'an'), (3784,'Armenian','default',82,'hy'), (3785,'Azerbaijani','default',82,'az'), (3786,'Azerbaijani (Turkey)','default',82,'az-tr'), (3787,'Basque','default',82,'eu'), (3788,'Bengali','default',82,'bn'), (3789,'Bosnian','default',82,'bs'), (3790,'Brazilian Portuguese','default',82,'pt-br'), (3791,'Breton','default',82,'br'), (3792,'Bulgarian','default',82,'bg'), (3793,'Burmese','default',82,'mya'), (3794,'Catalan','default',82,'ca'), (3795,'Catalan (Balear)','default',82,'bal'), (3796,'Chilean Spanish','default',82,'es-cl'), (3797,'Chinese (China)','default',82,'zh-cn'), (3798,'Chinese (Taiwan)','default',82,'zh-tw'), (3799,'Corsican','default',82,'co'), (3800,'Croatian','default',82,'hr'), (3801,'Czech','default',82,'cs'), (3802,'Danish','default',82,'da'), (3803,'Divehi','default',82,'dv'), (3804,'Dutch','default',82,'nl'), (3805,'Dzongkha','default',82,'dzo'), (3806,'English (Canada)','default',82,'en-ca'), (3807,'English (UK)','default',82,'en-gb'), (3808,'Esperanto','default',82,'eo'), (3809,'Estonian','default',82,'et'), (3810,'Faroese','default',82,'fo'), (3811,'Finnish','default',82,'fi'), (3812,'French','default',82,'fr'), (3813,'Frisian','default',82,'fy'), (3814,'Galician','default',82,'gl'), (3815,'Georgian','default',82,'ka'), (3816,'German','default',82,'de'), (3817,'Greek','default',82,'el'), (3818,'Hawaiian','default',82,'haw'), (3819,'Hebrew','default',82,'he'), (3820,'Hindi','default',82,'hi'), (3821,'Hungarian','default',82,'hu'), (3822,'Icelandic','default',82,'is'), (3823,'Indonesian','default',82,'id'), (3824,'Irish','default',82,'ga'), (3825,'Italian','default',82,'it'), (3826,'Japanese','default',82,'ja'), (3827,'Javanese','default',82,'jv'), (3828,'Kannada','default',82,'kn'), (3829,'Kazakh','default',82,'kk'), (3830,'Khmer','default',82,'km'), (3831,'Kirghiz','default',82,'ky'), (3832,'Korean','default',82,'ko'), (3833,'Kurdish','default',82,'ckb'), (3834,'Kurdish (Kurmanji)','default',82,'ku'), (3835,'Lao','default',82,'lo'), (3836,'Latvian','default',82,'lv'), (3837,'Limburgish','default',82,'li'), (3838,'Lithuanian','default',82,'lt'), (3839,'Luxembourgish','default',82,'lb'), (3840,'Macedonian','default',82,'mk'), (3841,'Malagasy','default',82,'mg'), (3842,'Malay','default',82,'ms'), (3843,'Malayalam','default',82,'ml'), (3844,'Mongolian','default',82,'mn'), (3845,'Montenegrin','default',82,'me'), (3846,'Nepali','default',82,'ne'), (3847,'Norwegian (BokmÃ¥l)','default',82,'nb'), (3848,'Norwegian (Nynorsk)','default',82,'nn'), (3849,'Ossetic','default',82,'os'), (3850,'Persian','default',82,'fa'), (3851,'Persian (Afghanistan)','default',82,'fa-af'), (3852,'Peruvian Spanish','default',82,'es-pe'), (3853,'Polish','default',82,'pl'), (3854,'Portuguese','default',82,'pt'), (3855,'Punjabi','default',82,'pa'), (3856,'Romanian','default',82,'ro'), (3857,'Russian','default',82,'ru'), (3858,'Sanskrit','default',82,'sa-in'), (3859,'Sardinian','default',82,'srd'), (3860,'Scottish Gaelic','default',82,'gd'), (3861,'Serbian','default',82,'sr'), (3862,'Sinhala','default',82,'si'), (3863,'Slovak','default',82,'sk'), (3864,'Slovenian','default',82,'sl'), (3865,'Somali','default',82,'so'), (3866,'Spanish','default',82,'es'), (3867,'Sundanese','default',82,'su'), (3868,'Swahili','default',82,'sw'), (3869,'Swedish','default',82,'sv'), (3870,'Tamil','default',82,'ta'), (3871,'Tamil (Sri Lanka)','default',82,'ta-lk'), (3872,'Telugu','default',82,'te'), (3873,'Thai','default',82,'th'), (3874,'Turkish','default',82,'tr'), (3875,'Uighur','default',82,'ug'), (3876,'Ukrainian','default',82,'uk'), (3877,'Urdu','default',82,'ur'), (3878,'Uzbek','default',82,'uz'), (3879,'Venezuelan Spanish','default',82,'es-ve'), (3880,'Vietnamese','default',82,'vi'), (3881,'Welsh','default',82,'cy'), (3882,'Sanskrit','default',66,'sa-in'), (3883,'Portuguese Informal','informal',2,'pt'), (3884,'Portuguese (Portugal) - Informal','informal',78,'pt'), (3885,'Português (Informal)','informal',79,'pt'), (3886,'Portuguese (Informal)','informal',15,'pt'), (3887,'Portuguese (Informal)','informal',55,'pt'), (3888,'Portuguese (Informal)','informal',80,'pt'), (3889,'German (Formal)','formal',71,'de'), (3890,'German (Formal)','formal',72,'de'), (3891,'German (Formal)','formal',73,'de'), (3892,'German (Formal)','formal',74,'de'), (3893,'German (Formal)','formal',75,'de'), (3894,'German (Formal)','formal',2,'de'), (3895,'German (Formal)','formal',80,'de'), (3896,'German (Formal)','formal',64,'de'), (3897,'German (Formal)','formal',55,'de'), (3898,'German (Formal)','formal',78,'de'), (3899,'German (Formal)','formal',79,'de'), (3900,'German (Formal)','formal',15,'de'), (3901,'Greek','default',14,'el'), (3903,'Korean','default',14,'ko'), (3904,'Latin','default',66,'la'), (3905,'Latin','default',2,'la'), (3906,'Latin','default',80,'la'), (3907,'Latin','default',64,'la'), (3908,'Latin','default',55,'la'), (3909,'Latin','default',78,'la'), (3910,'Latin','default',79,'la'), (3911,'Latin','default',15,'la'), (3912,'Chinese (Taiwan)','default',7,'zh-tw'), (3913,'Kirghiz','default',81,'ky'), (3914,'Gujarati','default',2,'gu'), (3915,'Gujarati','default',80,'gu'), (3916,'Gujarati','default',64,'gu'), (3917,'Gujarati','default',55,'gu'), (3918,'Gujarati','default',78,'gu'), (3919,'Gujarati','default',79,'gu'), (3920,'Gujarati','default',15,'gu'), (3921,'Marathi','default',2,'mr'), (3922,'Marathi','default',80,'mr'), (3923,'Marathi','default',64,'mr'), (3924,'Marathi','default',55,'mr'), (3925,'Marathi','default',78,'mr'), (3926,'Marathi','default',79,'mr'), (3927,'Marathi','default',15,'mr'), (3928,'Scottish Gaelic','default',7,'gd'), (3929,'Scottish Gaelic','default',57,'gd'), (3930,'Scottish Gaelic','default',5,'gd'), (3931,'Scottish Gaelic','default',50,'gd'), (3932,'Korean','default',57,'ko'), (3934,'Arabic','default',83,'ar'), (3935,'Basque','default',83,'eu'), (3936,'Bosnian','default',83,'bs'), (3937,'Bulgarian','default',83,'bg'), (3938,'Burmese','default',83,'mya'), (3939,'Catalan','default',83,'ca'), (3940,'Chinese (China)','default',83,'zh-cn'), (3941,'Chinese (Taiwan)','default',83,'zh-tw'), (3942,'Croatian','default',83,'hr'), (3943,'Czech','default',83,'cs'), (3944,'Danish','default',83,'da'), (3945,'Dutch','default',83,'nl'), (3946,'Finnish','default',83,'fi'), (3947,'French (France)','default',83,'fr'), (3948,'Frisian','default',83,'fy'), (3949,'Galician','default',83,'gl'), (3950,'Georgian','default',83,'ka'), (3951,'German','default',83,'de'), (3952,'Greek','default',83,'el'), (3954,'Hebrew','default',83,'he'), (3955,'Hungarian','default',83,'hu'), (3956,'Icelandic','default',83,'is'), (3957,'Indonesian','default',83,'id'), (3958,'Italian','default',83,'it'), (3959,'Japanese','default',83,'ja'), (3960,'Korean','default',83,'ko'), (3961,'Latvian','default',83,'lv'), (3962,'Limburgish','default',83,'li'), (3963,'Macedonian','default',83,'mk'), (3964,'Norwegian (BokmÃ¥l)','default',83,'nb'), (3965,'Persian','default',83,'fa'), (3966,'Polish','default',83,'pl'), (3967,'Portuguese (Brazil)','default',83,'pt-br'), (3968,'Portuguese (Portugal)','default',83,'pt'), (3969,'Romanian','default',83,'ro'), (3970,'Russian','default',83,'ru'), (3971,'Serbian','default',83,'sr'), (3972,'Slovak','default',83,'sk'), (3973,'Somali','default',83,'so'), (3974,'Spanish (Spain)','default',83,'es'), (3975,'Swedish','default',83,'sv'), (3976,'Thai','default',83,'th'), (3977,'Turkish','default',83,'tr'), (3978,'Ukrainian','default',83,'uk'), (3979,'Vietnamese','default',83,'vi'), (3981,'Albanian','default',84,'sq'), (3982,'Amharic','default',84,'am'), (3983,'Arabic','default',84,'ar'), (3984,'Aragonese','default',84,'an'), (3985,'Armenian','default',84,'hy'), (3986,'Azerbaijani','default',84,'az'), (3987,'Azerbaijani (Turkey)','default',84,'az-tr'), (3988,'Basque','default',84,'eu'), (3989,'Bengali','default',84,'bn'), (3990,'Bosnian','default',84,'bs'), (3991,'Brazilian Portuguese','default',84,'pt-br'), (3992,'Breton','default',84,'br'), (3993,'Bulgarian','default',84,'bg'), (3994,'Burmese','default',84,'mya'), (3995,'Catalan','default',84,'ca'), (3996,'Catalan (Balear)','default',84,'bal'), (3997,'Chilean Spanish','default',84,'es-cl'), (3998,'Chinese (China)','default',84,'zh-cn'), (3999,'Chinese (Taiwan)','default',84,'zh-tw'), (4000,'Corsican','default',84,'co'), (4001,'Croatian','default',84,'hr'), (4002,'Czech','default',84,'cs'), (4003,'Danish','default',84,'da'), (4004,'Divehi','default',84,'dv'), (4005,'Dutch','default',84,'nl'), (4006,'Dzongkha','default',84,'dzo'), (4007,'English (Canada)','default',84,'en-ca'), (4008,'English (UK)','default',84,'en-gb'), (4009,'Esperanto','default',84,'eo'), (4010,'Estonian','default',84,'et'), (4011,'Faroese','default',84,'fo'), (4012,'Finnish','default',84,'fi'), (4013,'French','default',84,'fr'), (4014,'Frisian','default',84,'fy'), (4015,'Galician','default',84,'gl'), (4016,'Georgian','default',84,'ka'), (4017,'German','default',84,'de'), (4018,'German (Formal)','formal',84,'de'), (4019,'Greek','default',84,'el'), (4020,'Gujarati','default',84,'gu'), (4021,'Hawaiian','default',84,'haw'), (4022,'Hebrew','default',84,'he'), (4023,'Hindi','default',84,'hi'), (4024,'Hungarian','default',84,'hu'), (4025,'Icelandic','default',84,'is'), (4026,'Indonesian','default',84,'id'), (4027,'Irish','default',84,'ga'), (4028,'Italian','default',84,'it'), (4029,'Japanese','default',84,'ja'), (4030,'Javanese','default',84,'jv'), (4031,'Kannada','default',84,'kn'), (4032,'Kazakh','default',84,'kk'), (4033,'Khmer','default',84,'km'), (4034,'Kirghiz','default',84,'ky'), (4035,'Korean','default',84,'ko'), (4036,'Kurdish','default',84,'ckb'), (4037,'Kurdish (Kurmanji)','default',84,'ku'), (4038,'Lao','default',84,'lo'), (4039,'Latin','default',84,'la'), (4040,'Latvian','default',84,'lv'), (4041,'Limburgish','default',84,'li'), (4042,'Lithuanian','default',84,'lt'), (4043,'Luxembourgish','default',84,'lb'), (4044,'Macedonian','default',84,'mk'), (4045,'Malagasy','default',84,'mg'), (4046,'Malay','default',84,'ms'), (4047,'Malayalam','default',84,'ml'), (4048,'Marathi','default',84,'mr'), (4049,'Mongolian','default',84,'mn'), (4050,'Montenegrin','default',84,'me'), (4051,'Nepali','default',84,'ne'), (4052,'Norwegian (BokmÃ¥l)','default',84,'nb'), (4053,'Norwegian (Nynorsk)','default',84,'nn'), (4054,'Ossetic','default',84,'os'), (4055,'Persian','default',84,'fa'), (4056,'Persian (Afghanistan)','default',84,'fa-af'), (4057,'Peruvian Spanish','default',84,'es-pe'), (4058,'Polish','default',84,'pl'), (4059,'Portuguese','default',84,'pt'), (4060,'Portuguese Informal','informal',84,'pt'), (4061,'Punjabi','default',84,'pa'), (4062,'Romanian','default',84,'ro'), (4063,'Russian','default',84,'ru'), (4064,'Sanskrit','default',84,'sa-in'), (4065,'Sardinian','default',84,'srd'), (4066,'Scottish Gaelic','default',84,'gd'), (4067,'Serbian','default',84,'sr'), (4068,'Sinhala','default',84,'si'), (4069,'Slovak','default',84,'sk'), (4070,'Slovenian','default',84,'sl'), (4071,'Somali','default',84,'so'), (4072,'Spanish','default',84,'es'), (4073,'Sundanese','default',84,'su'), (4074,'Swahili','default',84,'sw'), (4075,'Swedish','default',84,'sv'), (4076,'Tamil','default',84,'ta'), (4077,'Tamil (Sri Lanka)','default',84,'ta-lk'), (4078,'Telugu','default',84,'te'), (4079,'Thai','default',84,'th'), (4080,'Turkish','default',84,'tr'), (4081,'Uighur','default',84,'ug'), (4082,'Ukrainian','default',84,'uk'), (4083,'Urdu','default',84,'ur'), (4084,'Uzbek','default',84,'uz'), (4085,'Venezuelan Spanish','default',84,'es-ve'), (4086,'Vietnamese','default',84,'vi'), (4087,'Welsh','default',84,'cy'), (4089,'Albanian','default',85,'sq'), (4090,'Amharic','default',85,'am'), (4091,'Arabic','default',85,'ar'), (4092,'Aragonese','default',85,'an'), (4093,'Armenian','default',85,'hy'), (4094,'Azerbaijani','default',85,'az'), (4095,'Azerbaijani (Turkey)','default',85,'az-tr'), (4096,'Basque','default',85,'eu'), (4097,'Bengali','default',85,'bn'), (4098,'Bosnian','default',85,'bs'), (4099,'Brazilian Portuguese','default',85,'pt-br'), (4100,'Breton','default',85,'br'), (4101,'Bulgarian','default',85,'bg'), (4102,'Burmese','default',85,'mya'), (4103,'Catalan','default',85,'ca'), (4104,'Catalan (Balear)','default',85,'bal'), (4105,'Chilean Spanish','default',85,'es-cl'), (4106,'Chinese (China)','default',85,'zh-cn'), (4107,'Chinese (Taiwan)','default',85,'zh-tw'), (4108,'Corsican','default',85,'co'), (4109,'Croatian','default',85,'hr'), (4110,'Czech','default',85,'cs'), (4111,'Danish','default',85,'da'), (4112,'Divehi','default',85,'dv'), (4113,'Dutch','default',85,'nl'), (4114,'Dzongkha','default',85,'dzo'), (4115,'English (Canada)','default',85,'en-ca'), (4116,'English (UK)','default',85,'en-gb'), (4117,'Esperanto','default',85,'eo'), (4118,'Estonian','default',85,'et'), (4119,'Faroese','default',85,'fo'), (4120,'Finnish','default',85,'fi'), (4121,'French','default',85,'fr'), (4122,'Frisian','default',85,'fy'), (4123,'Galician','default',85,'gl'), (4124,'Georgian','default',85,'ka'), (4125,'German','default',85,'de'), (4126,'German (Formal)','formal',85,'de'), (4127,'Greek','default',85,'el'), (4128,'Gujarati','default',85,'gu'), (4129,'Hawaiian','default',85,'haw'), (4130,'Hebrew','default',85,'he'), (4131,'Hindi','default',85,'hi'), (4132,'Hungarian','default',85,'hu'), (4133,'Icelandic','default',85,'is'), (4134,'Indonesian','default',85,'id'), (4135,'Irish','default',85,'ga'), (4136,'Italian','default',85,'it'), (4137,'Japanese','default',85,'ja'), (4138,'Javanese','default',85,'jv'), (4139,'Kannada','default',85,'kn'), (4140,'Kazakh','default',85,'kk'), (4141,'Khmer','default',85,'km'), (4142,'Kirghiz','default',85,'ky'), (4143,'Korean','default',85,'ko'), (4144,'Kurdish','default',85,'ckb'), (4145,'Kurdish (Kurmanji)','default',85,'ku'), (4146,'Lao','default',85,'lo'), (4147,'Latin','default',85,'la'), (4148,'Latvian','default',85,'lv'), (4149,'Limburgish','default',85,'li'), (4150,'Lithuanian','default',85,'lt'), (4151,'Luxembourgish','default',85,'lb'), (4152,'Macedonian','default',85,'mk'), (4153,'Malagasy','default',85,'mg'), (4154,'Malay','default',85,'ms'), (4155,'Malayalam','default',85,'ml'), (4156,'Marathi','default',85,'mr'), (4157,'Mongolian','default',85,'mn'), (4158,'Montenegrin','default',85,'me'), (4159,'Nepali','default',85,'ne'), (4160,'Norwegian (BokmÃ¥l)','default',85,'nb'), (4161,'Norwegian (Nynorsk)','default',85,'nn'), (4162,'Ossetic','default',85,'os'), (4163,'Persian','default',85,'fa'), (4164,'Persian (Afghanistan)','default',85,'fa-af'), (4165,'Peruvian Spanish','default',85,'es-pe'), (4166,'Polish','default',85,'pl'), (4167,'Portuguese','default',85,'pt'), (4168,'Portuguese (Portugal) - Informal','informal',85,'pt'), (4169,'Punjabi','default',85,'pa'), (4170,'Romanian','default',85,'ro'), (4171,'Russian','default',85,'ru'), (4172,'Sanskrit','default',85,'sa-in'), (4173,'Sardinian','default',85,'srd'), (4174,'Scottish Gaelic','default',85,'gd'), (4175,'Serbian','default',85,'sr'), (4176,'Sinhala','default',85,'si'), (4177,'Slovak','default',85,'sk'), (4178,'Slovenian','default',85,'sl'), (4179,'Somali','default',85,'so'), (4180,'Spanish','default',85,'es'), (4181,'Sundanese','default',85,'su'), (4182,'Swahili','default',85,'sw'), (4183,'Swedish','default',85,'sv'), (4184,'Tamil','default',85,'ta'), (4185,'Tamil (Sri Lanka)','default',85,'ta-lk'), (4186,'Telugu','default',85,'te'), (4187,'Thai','default',85,'th'), (4188,'Turkish','default',85,'tr'), (4189,'Uighur','default',85,'ug'), (4190,'Ukrainian','default',85,'uk'), (4191,'Urdu','default',85,'ur'), (4192,'Uzbek','default',85,'uz'), (4193,'Venezuelan Spanish','default',85,'es-ve'), (4194,'Vietnamese','default',85,'vi'), (4195,'Welsh','default',85,'cy'), (4197,'Albanian','default',86,'sq'), (4198,'Amharic','default',86,'am'), (4199,'Arabic','default',86,'ar'), (4200,'Aragonese','default',86,'an'), (4201,'Armenian','default',86,'hy'), (4202,'Azerbaijani','default',86,'az'), (4203,'Azerbaijani (Turkey)','default',86,'az-tr'), (4204,'Basque','default',86,'eu'), (4205,'Bengali','default',86,'bn'), (4206,'Bosnian','default',86,'bs'), (4207,'Brazilian Portuguese','default',86,'pt-br'), (4208,'Breton','default',86,'br'), (4209,'Bulgarian','default',86,'bg'), (4210,'Burmese','default',86,'mya'), (4211,'Catalan','default',86,'ca'), (4212,'Catalan (Balear)','default',86,'bal'), (4213,'Chilean Spanish','default',86,'es-cl'), (4214,'Chinese (China)','default',86,'zh-cn'), (4215,'Chinese (Taiwan)','default',86,'zh-tw'), (4216,'Corsican','default',86,'co'), (4217,'Croatian','default',86,'hr'), (4218,'Czech','default',86,'cs'), (4219,'Danish','default',86,'da'), (4220,'Divehi','default',86,'dv'), (4221,'Dutch','default',86,'nl'), (4222,'Dzongkha','default',86,'dzo'), (4223,'English (Canada)','default',86,'en-ca'), (4224,'English (UK)','default',86,'en-gb'), (4225,'Esperanto','default',86,'eo'), (4226,'Estonian','default',86,'et'), (4227,'Faroese','default',86,'fo'), (4228,'Finnish','default',86,'fi'), (4229,'French','default',86,'fr'), (4230,'Frisian','default',86,'fy'), (4231,'Galician','default',86,'gl'), (4232,'Georgian','default',86,'ka'), (4233,'German','default',86,'de'), (4234,'German (Formal)','formal',86,'de'), (4235,'Greek','default',86,'el'), (4236,'Gujarati','default',86,'gu'), (4237,'Hawaiian','default',86,'haw'), (4238,'Hebrew','default',86,'he'), (4239,'Hindi','default',86,'hi'), (4240,'Hungarian','default',86,'hu'), (4241,'Icelandic','default',86,'is'), (4242,'Indonesian','default',86,'id'), (4243,'Irish','default',86,'ga'), (4244,'Italian','default',86,'it'), (4245,'Japanese','default',86,'ja'), (4246,'Javanese','default',86,'jv'), (4247,'Kannada','default',86,'kn'), (4248,'Kazakh','default',86,'kk'), (4249,'Khmer','default',86,'km'), (4250,'Kirghiz','default',86,'ky'), (4251,'Korean','default',86,'ko'), (4252,'Kurdish','default',86,'ckb'), (4253,'Kurdish (Kurmanji)','default',86,'ku'), (4254,'Lao','default',86,'lo'), (4255,'Latin','default',86,'la'), (4256,'Latvian','default',86,'lv'), (4257,'Limburgish','default',86,'li'), (4258,'Lithuanian','default',86,'lt'), (4259,'Luxembourgish','default',86,'lb'), (4260,'Macedonian','default',86,'mk'), (4261,'Malagasy','default',86,'mg'), (4262,'Malay','default',86,'ms'), (4263,'Malayalam','default',86,'ml'), (4264,'Marathi','default',86,'mr'), (4265,'Mongolian','default',86,'mn'), (4266,'Montenegrin','default',86,'me'), (4267,'Nepali','default',86,'ne'), (4268,'Norwegian (BokmÃ¥l)','default',86,'nb'), (4269,'Norwegian (Nynorsk)','default',86,'nn'), (4270,'Ossetic','default',86,'os'), (4271,'Persian','default',86,'fa'), (4272,'Persian (Afghanistan)','default',86,'fa-af'), (4273,'Peruvian Spanish','default',86,'es-pe'), (4274,'Polish','default',86,'pl'), (4275,'Português (Informal)','informal',86,'pt'), (4276,'Portuguese','default',86,'pt'), (4277,'Punjabi','default',86,'pa'), (4278,'Romanian','default',86,'ro'), (4279,'Russian','default',86,'ru'), (4280,'Sanskrit','default',86,'sa-in'), (4281,'Sardinian','default',86,'srd'), (4282,'Scottish Gaelic','default',86,'gd'), (4283,'Serbian','default',86,'sr'), (4284,'Sinhala','default',86,'si'), (4285,'Slovak','default',86,'sk'), (4286,'Slovenian','default',86,'sl'), (4287,'Somali','default',86,'so'), (4288,'Spanish','default',86,'es'), (4289,'Sundanese','default',86,'su'), (4290,'Swahili','default',86,'sw'), (4291,'Swedish','default',86,'sv'), (4292,'Tamil','default',86,'ta'), (4293,'Tamil (Sri Lanka)','default',86,'ta-lk'), (4294,'Telugu','default',86,'te'), (4295,'Thai','default',86,'th'), (4296,'Turkish','default',86,'tr'), (4297,'Uighur','default',86,'ug'), (4298,'Ukrainian','default',86,'uk'), (4299,'Urdu','default',86,'ur'), (4300,'Uzbek','default',86,'uz'), (4301,'Venezuelan Spanish','default',86,'es-ve'), (4302,'Vietnamese','default',86,'vi'), (4303,'Welsh','default',86,'cy'), (4305,'Albanian','default',87,'sq'), (4306,'Amharic','default',87,'am'), (4307,'Arabic','default',87,'ar'), (4308,'Aragonese','default',87,'an'), (4309,'Armenian','default',87,'hy'), (4310,'Azerbaijani','default',87,'az'), (4311,'Azerbaijani (Turkey)','default',87,'az-tr'), (4312,'Basque','default',87,'eu'), (4313,'Bengali','default',87,'bn'), (4314,'Bosnian','default',87,'bs'), (4315,'Brazilian Portuguese','default',87,'pt-br'), (4316,'Breton','default',87,'br'), (4317,'Bulgarian','default',87,'bg'), (4318,'Burmese','default',87,'mya'), (4319,'Catalan','default',87,'ca'), (4320,'Chilean Spanish','default',87,'es-cl'), (4321,'Chinese (China)','default',87,'zh-cn'), (4322,'Chinese (Taiwan)','default',87,'zh-tw'), (4323,'Corsican','default',87,'co'), (4324,'Croatian','default',87,'hr'), (4325,'Czech','default',87,'cs'), (4326,'Danish','default',87,'da'), (4327,'Divehi','default',87,'dv'), (4328,'Dutch','default',87,'nl'), (4329,'Dzongkha','default',87,'dzo'), (4330,'English (Canada)','default',87,'en-ca'), (4331,'Esperanto','default',87,'eo'), (4332,'Estonian','default',87,'et'), (4333,'Faroese','default',87,'fo'), (4334,'Finnish','default',87,'fi'), (4335,'French','default',87,'fr'), (4336,'Frisian','default',87,'fy'), (4337,'Galician','default',87,'gl'), (4338,'Georgian','default',87,'ka'), (4339,'German','default',87,'de'), (4340,'German (Formal)','formal',87,'de'), (4341,'Greek','default',87,'el'), (4342,'Gujarati','default',87,'gu'), (4343,'Hebrew','default',87,'he'), (4344,'Hindi','default',87,'hi'), (4345,'Hungarian','default',87,'hu'), (4346,'Icelandic','default',87,'is'), (4347,'Indonesian','default',87,'id'), (4348,'Irish','default',87,'ga'), (4349,'Italian','default',87,'it'), (4350,'Japanese','default',87,'ja'), (4351,'Javanese','default',87,'jv'), (4352,'Kannada','default',87,'kn'), (4353,'Kazakh','default',87,'kk'), (4354,'Khmer','default',87,'km'), (4355,'Kirghiz','default',87,'ky'), (4356,'Korean','default',87,'ko'), (4357,'Kurdish','default',87,'ckb'), (4358,'Lao','default',87,'lo'), (4359,'Latin','default',87,'la'), (4360,'Latvian','default',87,'lv'), (4361,'Limburgish','default',87,'li'), (4362,'Lithuanian','default',87,'lt'), (4363,'Macedonian','default',87,'mk'), (4364,'Malay','default',87,'ms'), (4365,'Malayalam','default',87,'ml'), (4366,'Marathi','default',87,'mr'), (4367,'Mongolian','default',87,'mn'), (4368,'Montenegrin','default',87,'me'), (4369,'Nepali','default',87,'ne'), (4370,'Norwegian (BokmÃ¥l)','default',87,'nb'), (4371,'Norwegian (Nynorsk)','default',87,'nn'), (4372,'Ossetic','default',87,'os'), (4373,'Persian','default',87,'fa'), (4374,'Persian (Afghanistan)','default',87,'fa-af'), (4375,'Peruvian Spanish','default',87,'es-pe'), (4376,'Polish','default',87,'pl'), (4377,'Portuguese','default',87,'pt'), (4378,'Portuguese (Informal)','informal',87,'pt'), (4379,'Punjabi','default',87,'pa'), (4380,'Romanian','default',87,'ro'), (4381,'Russian','default',87,'ru'), (4382,'Sanskrit','default',87,'sa-in'), (4383,'Sardinian','default',87,'srd'), (4384,'Scottish Gaelic','default',87,'gd'), (4385,'Serbian','default',87,'sr'), (4386,'Sinhala','default',87,'si'), (4387,'Slovak','default',87,'sk'), (4388,'Slovenian','default',87,'sl'), (4389,'Somali','default',87,'so'), (4390,'Spanish','default',87,'es'), (4391,'Sundanese','default',87,'su'), (4392,'Swahili','default',87,'sw'), (4393,'Swedish','default',87,'sv'), (4394,'Tamil (Sri Lanka)','default',87,'ta-lk'), (4395,'Telugu','default',87,'te'), (4396,'Thai','default',87,'th'), (4397,'Turkish','default',87,'tr'), (4398,'Uighur','default',87,'ug'), (4399,'Ukrainian','default',87,'uk'), (4400,'Uzbek','default',87,'uz'), (4401,'Venezuelan Spanish','default',87,'es-ve'), (4402,'Vietnamese','default',87,'vi'), (4403,'Welsh','default',87,'cy'), (4405,'Albanian','default',88,'sq'), (4406,'Amharic','default',88,'am'), (4407,'Arabic','default',88,'ar'), (4408,'Aragonese','default',88,'an'), (4409,'Armenian','default',88,'hy'), (4410,'Azerbaijani','default',88,'az'), (4411,'Azerbaijani (Turkey)','default',88,'az-tr'), (4412,'Basque','default',88,'eu'), (4413,'Bengali','default',88,'bn'), (4414,'Bosnian','default',88,'bs'), (4415,'Brazilian Portuguese','default',88,'pt-br'), (4416,'Breton','default',88,'br'), (4417,'Bulgarian','default',88,'bg'), (4418,'Burmese','default',88,'mya'), (4419,'Catalan','default',88,'ca'), (4420,'Chilean Spanish','default',88,'es-cl'), (4421,'Chinese (China)','default',88,'zh-cn'), (4422,'Chinese (Taiwan)','default',88,'zh-tw'), (4423,'Corsican','default',88,'co'), (4424,'Croatian','default',88,'hr'), (4425,'Czech','default',88,'cs'), (4426,'Danish','default',88,'da'), (4427,'Divehi','default',88,'dv'), (4428,'Dutch','default',88,'nl'), (4429,'Dzongkha','default',88,'dzo'), (4430,'English (Canada)','default',88,'en-ca'), (4431,'Esperanto','default',88,'eo'), (4432,'Estonian','default',88,'et'), (4433,'Faroese','default',88,'fo'), (4434,'Finnish','default',88,'fi'), (4435,'French','default',88,'fr'), (4436,'Frisian','default',88,'fy'), (4437,'Galician','default',88,'gl'), (4438,'Georgian','default',88,'ka'), (4439,'German','default',88,'de'), (4440,'German (Formal)','formal',88,'de'), (4441,'Greek','default',88,'el'), (4442,'Gujarati','default',88,'gu'), (4443,'Hebrew','default',88,'he'), (4444,'Hindi','default',88,'hi'), (4445,'Hungarian','default',88,'hu'), (4446,'Icelandic','default',88,'is'), (4447,'Indonesian','default',88,'id'), (4448,'Irish','default',88,'ga'), (4449,'Italian','default',88,'it'), (4450,'Japanese','default',88,'ja'), (4451,'Javanese','default',88,'jv'), (4452,'Kannada','default',88,'kn'), (4453,'Kazakh','default',88,'kk'), (4454,'Khmer','default',88,'km'), (4455,'Kirghiz','default',88,'ky'), (4456,'Korean','default',88,'ko'), (4457,'Kurdish','default',88,'ckb'), (4458,'Lao','default',88,'lo'), (4459,'Latin','default',88,'la'), (4460,'Latvian','default',88,'lv'), (4461,'Limburgish','default',88,'li'), (4462,'Lithuanian','default',88,'lt'), (4463,'Macedonian','default',88,'mk'), (4464,'Malay','default',88,'ms'), (4465,'Malayalam','default',88,'ml'), (4466,'Marathi','default',88,'mr'), (4467,'Mongolian','default',88,'mn'), (4468,'Montenegrin','default',88,'me'), (4469,'Nepali','default',88,'ne'), (4470,'Norwegian (BokmÃ¥l)','default',88,'nb'), (4471,'Norwegian (Nynorsk)','default',88,'nn'), (4472,'Ossetic','default',88,'os'), (4473,'Persian','default',88,'fa'), (4474,'Persian (Afghanistan)','default',88,'fa-af'), (4475,'Peruvian Spanish','default',88,'es-pe'), (4476,'Polish','default',88,'pl'), (4477,'Portuguese','default',88,'pt'), (4478,'Portuguese (Informal)','informal',88,'pt'), (4479,'Punjabi','default',88,'pa'), (4480,'Romanian','default',88,'ro'), (4481,'Russian','default',88,'ru'), (4482,'Sanskrit','default',88,'sa-in'), (4483,'Sardinian','default',88,'srd'), (4484,'Scottish Gaelic','default',88,'gd'), (4485,'Serbian','default',88,'sr'), (4486,'Sinhala','default',88,'si'), (4487,'Slovak','default',88,'sk'), (4488,'Slovenian','default',88,'sl'), (4489,'Somali','default',88,'so'), (4490,'Spanish','default',88,'es'), (4491,'Sundanese','default',88,'su'), (4492,'Swahili','default',88,'sw'), (4493,'Swedish','default',88,'sv'), (4494,'Tamil (Sri Lanka)','default',88,'ta-lk'), (4495,'Telugu','default',88,'te'), (4496,'Thai','default',88,'th'), (4497,'Turkish','default',88,'tr'), (4498,'Uighur','default',88,'ug'), (4499,'Ukrainian','default',88,'uk'), (4500,'Uzbek','default',88,'uz'), (4501,'Venezuelan Spanish','default',88,'es-ve'), (4502,'Vietnamese','default',88,'vi'), (4503,'Welsh','default',88,'cy'), (4605,'Albanian','default',90,'sq'), (4606,'Amharic','default',90,'am'), (4607,'Arabic','default',90,'ar'), (4608,'Aragonese','default',90,'an'), (4609,'Armenian','default',90,'hy'), (4610,'Azerbaijani','default',90,'az'), (4611,'Azerbaijani (Turkey)','default',90,'az-tr'), (4612,'Basque','default',90,'eu'), (4613,'Bengali','default',90,'bn'), (4614,'Bosnian','default',90,'bs'), (4615,'Brazilian Portuguese','default',90,'pt-br'), (4616,'Breton','default',90,'br'), (4617,'Bulgarian','default',90,'bg'), (4618,'Burmese','default',90,'mya'), (4619,'Catalan','default',90,'ca'), (4620,'Catalan (Balear)','default',90,'bal'), (4621,'Chilean Spanish','default',90,'es-cl'), (4622,'Chinese (China)','default',90,'zh-cn'), (4623,'Chinese (Taiwan)','default',90,'zh-tw'), (4624,'Corsican','default',90,'co'), (4625,'Croatian','default',90,'hr'), (4626,'Czech','default',90,'cs'), (4627,'Danish','default',90,'da'), (4628,'Divehi','default',90,'dv'), (4629,'Dutch','default',90,'nl'), (4630,'Dzongkha','default',90,'dzo'), (4631,'English (UK)','default',90,'en-gb'), (4632,'Esperanto','default',90,'eo'), (4633,'Estonian','default',90,'et'), (4634,'Faroese','default',90,'fo'), (4635,'Finnish','default',90,'fi'), (4636,'French','default',90,'fr'), (4637,'Frisian','default',90,'fy'), (4638,'Galician','default',90,'gl'), (4639,'Georgian','default',90,'ka'), (4640,'German','default',90,'de'), (4641,'German (Formal)','formal',90,'de'), (4642,'Greek','default',90,'el'), (4643,'Gujarati','default',90,'gu'), (4644,'Hawaiian','default',90,'haw'), (4645,'Hebrew','default',90,'he'), (4646,'Hindi','default',90,'hi'), (4647,'Hungarian','default',90,'hu'), (4648,'Icelandic','default',90,'is'), (4649,'Indonesian','default',90,'id'), (4650,'Irish','default',90,'ga'), (4651,'Italian','default',90,'it'), (4652,'Japanese','default',90,'ja'), (4653,'Javanese','default',90,'jv'), (4654,'Kannada','default',90,'kn'), (4655,'Kazakh','default',90,'kk'), (4656,'Khmer','default',90,'km'), (4657,'Kirghiz','default',90,'ky'), (4658,'Korean','default',90,'ko'), (4659,'Kurdish','default',90,'ckb'), (4660,'Kurdish (Kurmanji)','default',90,'ku'), (4661,'Lao','default',90,'lo'), (4662,'Latin','default',90,'la'), (4663,'Latvian','default',90,'lv'), (4664,'Limburgish','default',90,'li'), (4665,'Lithuanian','default',90,'lt'), (4666,'Luxembourgish','default',90,'lb'), (4667,'Macedonian','default',90,'mk'), (4668,'Malagasy','default',90,'mg'), (4669,'Malay','default',90,'ms'), (4670,'Malayalam','default',90,'ml'), (4671,'Marathi','default',90,'mr'), (4672,'Mongolian','default',90,'mn'), (4673,'Montenegrin','default',90,'me'), (4674,'Nepali','default',90,'ne'), (4675,'Norwegian (BokmÃ¥l)','default',90,'nb'), (4676,'Norwegian (Nynorsk)','default',90,'nn'), (4677,'Ossetic','default',90,'os'), (4678,'Persian','default',90,'fa'), (4679,'Persian (Afghanistan)','default',90,'fa-af'), (4680,'Peruvian Spanish','default',90,'es-pe'), (4681,'Polish','default',90,'pl'), (4682,'Portuguese','default',90,'pt'), (4683,'Punjabi','default',90,'pa'), (4684,'Romanian','default',90,'ro'), (4685,'Russian','default',90,'ru'), (4686,'Sanskrit','default',90,'sa-in'), (4687,'Sardinian','default',90,'srd'), (4688,'Scottish Gaelic','default',90,'gd'), (4689,'Serbian','default',90,'sr'), (4690,'Sinhala','default',90,'si'), (4691,'Slovak','default',90,'sk'), (4692,'Slovenian','default',90,'sl'), (4693,'Somali','default',90,'so'), (4694,'Spanish','default',90,'es'), (4695,'Sundanese','default',90,'su'), (4696,'Swahili','default',90,'sw'), (4697,'Swedish','default',90,'sv'), (4698,'Tamil','default',90,'ta'), (4699,'Tamil (Sri Lanka)','default',90,'ta-lk'), (4700,'Telugu','default',90,'te'), (4701,'Thai','default',90,'th'), (4702,'Turkish','default',90,'tr'), (4703,'Uighur','default',90,'ug'), (4704,'Ukrainian','default',90,'uk'), (4705,'Urdu','default',90,'ur'), (4706,'Uzbek','default',90,'uz'), (4707,'Venezuelan Spanish','default',90,'es-ve'), (4708,'Vietnamese','default',90,'vi'), (4709,'Welsh','default',90,'cy'), (4710,'Tajik','default',84,'tg'), (4711,'Tajik','default',90,'tg'), (4713,'Tajik','default',88,'tg'), (4714,'Tajik','default',87,'tg'), (4715,'Tajik','default',85,'tg'), (4716,'Tajik','default',86,'tg'), (4717,'Tajik','default',2,'tg'), (4718,'Tajik','default',80,'tg'), (4719,'Tajik','default',64,'tg'), (4720,'Tajik','default',55,'tg'), (4721,'Tajik','default',78,'tg'), (4722,'Tajik','default',79,'tg'), (4723,'Tajik','default',15,'tg'), (4724,'Catalan','default',59,'ca'), (4725,'Thai','default',5,'th'), (4726,'Thai','default',57,'th'), (4727,'Thai','default',50,'th'), (4728,'Telugu','default',7,'te'), (4729,'Telugu','default',5,'te'), (4730,'Telugu','default',57,'te'), (4731,'Telugu','default',50,'te'), (4732,'Telugu','default',66,'te'), (4733,'Tagalog','default',14,'tl'), (4734,'Tagalog','default',83,'tl'), (4735,'Tagalog','default',84,'tl'), (4736,'Tagalog','default',90,'tl'), (4737,'Tagalog','default',88,'tl'), (4738,'Tagalog','default',87,'tl'), (4739,'Tagalog','default',85,'tl'), (4740,'Tagalog','default',86,'tl'), (4741,'Tagalog','default',2,'tl'), (4742,'Tagalog','default',80,'tl'), (4743,'Tagalog','default',64,'tl'), (4744,'Tagalog','default',55,'tl'), (4745,'Tagalog','default',78,'tl'), (4746,'Tagalog','default',79,'tl'), (4747,'Tagalog','default',15,'tl'), (4748,'Tagalog','default',66,'tl'), (4749,'Thai','default',67,'th'), (4750,'Bengali','default',14,'bn'), (4751,'Catalan','default',50,'ca'), (4752,'Russian','default',50,'ru'), (4753,'Hazaragi','default',2,'haz'), (4754,'Hazaragi','default',80,'haz'), (4755,'Hazaragi','default',64,'haz'), (4756,'Hazaragi','default',55,'haz'), (4757,'Hazaragi','default',78,'haz'), (4758,'Hazaragi','default',79,'haz'), (4759,'Hazaragi','default',15,'haz'), (4760,'Arabic','default',93,'ar'), (4761,'Bosnian','default',93,'bs'), (4762,'Bulgarian','default',93,'bg'), (4763,'Burmese','default',93,'mya'), (4764,'Catalan','default',93,'ca'), (4765,'Chinese (China)','default',93,'zh-cn'), (4766,'Croatian','default',93,'hr'), (4767,'Czech','default',93,'cs'), (4768,'Danish','default',93,'da'), (4769,'Dutch','default',93,'nl'), (4770,'Finnish','default',93,'fi'), (4771,'French (France)','default',93,'fr'), (4772,'German','default',93,'de'), (4773,'Hebrew','default',93,'he'), (4774,'Hungarian','default',93,'hu'), (4775,'Indonesian','default',93,'id'), (4776,'Italian','default',93,'it'), (4777,'Japanese','default',93,'ja'), (4778,'Korean','default',93,'ko'), (4779,'Kurdish (Kurmanji)','default',93,'ku'), (4780,'Kurdish (Sorani)','default',93,'ckb'), (4781,'Latvian','default',93,'lv'), (4782,'Macedonian','default',93,'mk'), (4783,'Malay','default',93,'ms'), (4784,'Norwegian (BokmÃ¥l)','default',93,'nb'), (4785,'Polish','default',93,'pl'), (4786,'Portuguese (Brazil)','default',93,'pt-br'), (4787,'Portuguese (Portugal)','default',93,'pt'), (4788,'Romanian','default',93,'ro'), (4789,'Russian','default',93,'ru'), (4790,'Serbian','default',93,'sr'), (4791,'Slovak','default',93,'sk'), (4792,'Slovenian','default',93,'sl'), (4793,'Spanish (Spain)','default',93,'es'), (4794,'Swedish','default',93,'sv'), (4795,'Tamil','default',93,'ta'), (4796,'Tamil (Sri Lanka)','default',93,'ta-lk'), (4797,'Thai','default',93,'th'), (4798,'Turkish','default',93,'tr'), (4799,'Hazaragi','default',66,'haz'), (4801,'Albanian','default',94,'sq'), (4802,'Amharic','default',94,'am'), (4803,'Arabic','default',94,'ar'), (4804,'Aragonese','default',94,'an'), (4805,'Armenian','default',94,'hy'), (4806,'Azerbaijani','default',94,'az'), (4807,'Azerbaijani (Turkey)','default',94,'az-tr'), (4808,'Basque','default',94,'eu'), (4809,'Bengali','default',94,'bn'), (4810,'Bosnian','default',94,'bs'), (4811,'Brazilian Portuguese','default',94,'pt-br'), (4812,'Breton','default',94,'br'), (4813,'Bulgarian','default',94,'bg'), (4814,'Burmese','default',94,'mya'), (4815,'Catalan','default',94,'ca'), (4816,'Catalan (Balear)','default',94,'bal'), (4817,'Chilean Spanish','default',94,'es-cl'), (4818,'Chinese (China)','default',94,'zh-cn'), (4819,'Chinese (Taiwan)','default',94,'zh-tw'), (4820,'Corsican','default',94,'co'), (4821,'Croatian','default',94,'hr'), (4822,'Czech','default',94,'cs'), (4823,'Danish','default',94,'da'), (4824,'Divehi','default',94,'dv'), (4825,'Dutch','default',94,'nl'), (4826,'Dzongkha','default',94,'dzo'), (4827,'English (Canada)','default',94,'en-ca'), (4828,'English (UK)','default',94,'en-gb'), (4829,'Esperanto','default',94,'eo'), (4830,'Estonian','default',94,'et'), (4831,'Faroese','default',94,'fo'), (4832,'Finnish','default',94,'fi'), (4833,'French','default',94,'fr'), (4834,'Frisian','default',94,'fy'), (4835,'Galician','default',94,'gl'), (4836,'Georgian','default',94,'ka'), (4837,'German','default',94,'de'), (4838,'German (Formal)','formal',94,'de'), (4839,'Greek','default',94,'el'), (4840,'Gujarati','default',94,'gu'), (4841,'Hawaiian','default',94,'haw'), (4842,'Hazaragi','default',94,'haz'), (4843,'Hebrew','default',94,'he'), (4844,'Hindi','default',94,'hi'), (4845,'Hungarian','default',94,'hu'), (4846,'Icelandic','default',94,'is'), (4847,'Indonesian','default',94,'id'), (4848,'Irish','default',94,'ga'), (4849,'Italian','default',94,'it'), (4850,'Japanese','default',94,'ja'), (4851,'Javanese','default',94,'jv'), (4852,'Kannada','default',94,'kn'), (4853,'Kazakh','default',94,'kk'), (4854,'Khmer','default',94,'km'), (4855,'Kirghiz','default',94,'ky'), (4856,'Korean','default',94,'ko'), (4857,'Kurdish','default',94,'ckb'), (4858,'Kurdish (Kurmanji)','default',94,'ku'), (4859,'Lao','default',94,'lo'), (4860,'Latin','default',94,'la'), (4861,'Latvian','default',94,'lv'), (4862,'Limburgish','default',94,'li'), (4863,'Lithuanian','default',94,'lt'), (4864,'Luxembourgish','default',94,'lb'), (4865,'Macedonian','default',94,'mk'), (4866,'Malagasy','default',94,'mg'), (4867,'Malay','default',94,'ms'), (4868,'Malayalam','default',94,'ml'), (4869,'Marathi','default',94,'mr'), (4870,'Mongolian','default',94,'mn'), (4871,'Montenegrin','default',94,'me'), (4872,'Nepali','default',94,'ne'), (4873,'Norwegian (BokmÃ¥l)','default',94,'nb'), (4874,'Norwegian (Nynorsk)','default',94,'nn'), (4875,'Ossetic','default',94,'os'), (4876,'Persian','default',94,'fa'), (4877,'Persian (Afghanistan)','default',94,'fa-af'), (4878,'Peruvian Spanish','default',94,'es-pe'), (4879,'Polish','default',94,'pl'), (4880,'Portuguese','default',94,'pt'), (4881,'Portuguese Informal','informal',94,'pt'), (4882,'Punjabi','default',94,'pa'), (4883,'Romanian','default',94,'ro'), (4884,'Russian','default',94,'ru'), (4885,'Sanskrit','default',94,'sa-in'), (4886,'Sardinian','default',94,'srd'), (4887,'Scottish Gaelic','default',94,'gd'), (4888,'Serbian','default',94,'sr'), (4889,'Sinhala','default',94,'si'), (4890,'Slovak','default',94,'sk'), (4891,'Slovenian','default',94,'sl'), (4892,'Somali','default',94,'so'), (4893,'Spanish','default',94,'es'), (4894,'Sundanese','default',94,'su'), (4895,'Swahili','default',94,'sw'), (4896,'Swedish','default',94,'sv'), (4897,'Tagalog','default',94,'tl'), (4898,'Tajik','default',94,'tg'), (4899,'Tamil','default',94,'ta'), (4900,'Tamil (Sri Lanka)','default',94,'ta-lk'), (4901,'Telugu','default',94,'te'), (4902,'Thai','default',94,'th'), (4903,'Turkish','default',94,'tr'), (4904,'Uighur','default',94,'ug'), (4905,'Ukrainian','default',94,'uk'), (4906,'Urdu','default',94,'ur'), (4907,'Uzbek','default',94,'uz'), (4908,'Venezuelan Spanish','default',94,'es-ve'), (4909,'Vietnamese','default',94,'vi'), (4910,'Welsh','default',94,'cy'), (4912,'Albanian','default',95,'sq'), (4913,'Amharic','default',95,'am'), (4914,'Arabic','default',95,'ar'), (4915,'Aragonese','default',95,'an'), (4916,'Armenian','default',95,'hy'), (4917,'Azerbaijani','default',95,'az'), (4918,'Azerbaijani (Turkey)','default',95,'az-tr'), (4919,'Basque','default',95,'eu'), (4920,'Bengali','default',95,'bn'), (4921,'Bosnian','default',95,'bs'), (4922,'Brazilian Portuguese','default',95,'pt-br'), (4923,'Breton','default',95,'br'), (4924,'Bulgarian','default',95,'bg'), (4925,'Burmese','default',95,'mya'), (4926,'Catalan','default',95,'ca'), (4927,'Catalan (Balear)','default',95,'bal'), (4928,'Chilean Spanish','default',95,'es-cl'), (4929,'Chinese (China)','default',95,'zh-cn'), (4930,'Chinese (Taiwan)','default',95,'zh-tw'), (4931,'Corsican','default',95,'co'), (4932,'Croatian','default',95,'hr'), (4933,'Czech','default',95,'cs'), (4934,'Danish','default',95,'da'), (4935,'Divehi','default',95,'dv'), (4936,'Dutch','default',95,'nl'), (4937,'Dzongkha','default',95,'dzo'), (4938,'English (Canada)','default',95,'en-ca'), (4939,'English (UK)','default',95,'en-gb'), (4940,'Esperanto','default',95,'eo'), (4941,'Estonian','default',95,'et'), (4942,'Faroese','default',95,'fo'), (4943,'Finnish','default',95,'fi'), (4944,'French','default',95,'fr'), (4945,'Frisian','default',95,'fy'), (4946,'Galician','default',95,'gl'), (4947,'Georgian','default',95,'ka'), (4948,'German','default',95,'de'), (4949,'German (Formal)','formal',95,'de'), (4950,'Greek','default',95,'el'), (4951,'Gujarati','default',95,'gu'), (4952,'Hawaiian','default',95,'haw'), (4953,'Hazaragi','default',95,'haz'), (4954,'Hebrew','default',95,'he'), (4955,'Hindi','default',95,'hi'), (4956,'Hungarian','default',95,'hu'), (4957,'Icelandic','default',95,'is'), (4958,'Indonesian','default',95,'id'), (4959,'Irish','default',95,'ga'), (4960,'Italian','default',95,'it'), (4961,'Japanese','default',95,'ja'), (4962,'Javanese','default',95,'jv'), (4963,'Kannada','default',95,'kn'), (4964,'Kazakh','default',95,'kk'), (4965,'Khmer','default',95,'km'), (4966,'Kirghiz','default',95,'ky'), (4967,'Korean','default',95,'ko'), (4968,'Kurdish','default',95,'ckb'), (4969,'Kurdish (Kurmanji)','default',95,'ku'), (4970,'Lao','default',95,'lo'), (4971,'Latin','default',95,'la'), (4972,'Latvian','default',95,'lv'), (4973,'Limburgish','default',95,'li'), (4974,'Lithuanian','default',95,'lt'), (4975,'Luxembourgish','default',95,'lb'), (4976,'Macedonian','default',95,'mk'), (4977,'Malagasy','default',95,'mg'), (4978,'Malay','default',95,'ms'), (4979,'Malayalam','default',95,'ml'), (4980,'Marathi','default',95,'mr'), (4981,'Mongolian','default',95,'mn'), (4982,'Montenegrin','default',95,'me'), (4983,'Nepali','default',95,'ne'), (4984,'Norwegian (BokmÃ¥l)','default',95,'nb'), (4985,'Norwegian (Nynorsk)','default',95,'nn'), (4986,'Ossetic','default',95,'os'), (4987,'Persian','default',95,'fa'), (4988,'Persian (Afghanistan)','default',95,'fa-af'), (4989,'Peruvian Spanish','default',95,'es-pe'), (4990,'Polish','default',95,'pl'), (4991,'Portuguese','default',95,'pt'), (4992,'Portuguese (Portugal) - Informal','informal',95,'pt'), (4993,'Punjabi','default',95,'pa'), (4994,'Romanian','default',95,'ro'), (4995,'Russian','default',95,'ru'), (4996,'Sanskrit','default',95,'sa-in'), (4997,'Sardinian','default',95,'srd'), (4998,'Scottish Gaelic','default',95,'gd'), (4999,'Serbian','default',95,'sr'), (5000,'Sinhala','default',95,'si'), (5001,'Slovak','default',95,'sk'), (5002,'Slovenian','default',95,'sl'), (5003,'Somali','default',95,'so'), (5004,'Spanish','default',95,'es'), (5005,'Sundanese','default',95,'su'), (5006,'Swahili','default',95,'sw'), (5007,'Swedish','default',95,'sv'), (5008,'Tagalog','default',95,'tl'), (5009,'Tajik','default',95,'tg'), (5010,'Tamil','default',95,'ta'), (5011,'Tamil (Sri Lanka)','default',95,'ta-lk'), (5012,'Telugu','default',95,'te'), (5013,'Thai','default',95,'th'), (5014,'Turkish','default',95,'tr'), (5015,'Uighur','default',95,'ug'), (5016,'Ukrainian','default',95,'uk'), (5017,'Urdu','default',95,'ur'), (5018,'Uzbek','default',95,'uz'), (5019,'Venezuelan Spanish','default',95,'es-ve'), (5020,'Vietnamese','default',95,'vi'), (5021,'Welsh','default',95,'cy'), (5023,'Albanian','default',96,'sq'), (5024,'Amharic','default',96,'am'), (5025,'Arabic','default',96,'ar'), (5026,'Aragonese','default',96,'an'), (5027,'Armenian','default',96,'hy'), (5028,'Azerbaijani','default',96,'az'), (5029,'Azerbaijani (Turkey)','default',96,'az-tr'), (5030,'Basque','default',96,'eu'), (5031,'Bengali','default',96,'bn'), (5032,'Bosnian','default',96,'bs'), (5033,'Brazilian Portuguese','default',96,'pt-br'), (5034,'Breton','default',96,'br'), (5035,'Bulgarian','default',96,'bg'), (5036,'Burmese','default',96,'mya'), (5037,'Catalan','default',96,'ca'), (5038,'Catalan (Balear)','default',96,'bal'), (5039,'Chilean Spanish','default',96,'es-cl'), (5040,'Chinese (China)','default',96,'zh-cn'), (5041,'Chinese (Taiwan)','default',96,'zh-tw'), (5042,'Corsican','default',96,'co'), (5043,'Croatian','default',96,'hr'), (5044,'Czech','default',96,'cs'), (5045,'Danish','default',96,'da'), (5046,'Divehi','default',96,'dv'), (5047,'Dutch','default',96,'nl'), (5048,'Dzongkha','default',96,'dzo'), (5049,'English (Canada)','default',96,'en-ca'), (5050,'English (UK)','default',96,'en-gb'), (5051,'Esperanto','default',96,'eo'), (5052,'Estonian','default',96,'et'), (5053,'Faroese','default',96,'fo'), (5054,'Finnish','default',96,'fi'), (5055,'French','default',96,'fr'), (5056,'Frisian','default',96,'fy'), (5057,'Galician','default',96,'gl'), (5058,'Georgian','default',96,'ka'), (5059,'German','default',96,'de'), (5060,'German (Formal)','formal',96,'de'), (5061,'Greek','default',96,'el'), (5062,'Gujarati','default',96,'gu'), (5063,'Hawaiian','default',96,'haw'), (5064,'Hazaragi','default',96,'haz'), (5065,'Hebrew','default',96,'he'), (5066,'Hindi','default',96,'hi'), (5067,'Hungarian','default',96,'hu'), (5068,'Icelandic','default',96,'is'), (5069,'Indonesian','default',96,'id'), (5070,'Irish','default',96,'ga'), (5071,'Italian','default',96,'it'), (5072,'Japanese','default',96,'ja'), (5073,'Javanese','default',96,'jv'), (5074,'Kannada','default',96,'kn'), (5075,'Kazakh','default',96,'kk'), (5076,'Khmer','default',96,'km'), (5077,'Kirghiz','default',96,'ky'), (5078,'Korean','default',96,'ko'), (5079,'Kurdish','default',96,'ckb'), (5080,'Kurdish (Kurmanji)','default',96,'ku'), (5081,'Lao','default',96,'lo'), (5082,'Latin','default',96,'la'), (5083,'Latvian','default',96,'lv'), (5084,'Limburgish','default',96,'li'), (5085,'Lithuanian','default',96,'lt'), (5086,'Luxembourgish','default',96,'lb'), (5087,'Macedonian','default',96,'mk'), (5088,'Malagasy','default',96,'mg'), (5089,'Malay','default',96,'ms'), (5090,'Malayalam','default',96,'ml'), (5091,'Marathi','default',96,'mr'), (5092,'Mongolian','default',96,'mn'), (5093,'Montenegrin','default',96,'me'), (5094,'Nepali','default',96,'ne'), (5095,'Norwegian (BokmÃ¥l)','default',96,'nb'), (5096,'Norwegian (Nynorsk)','default',96,'nn'), (5097,'Ossetic','default',96,'os'), (5098,'Persian','default',96,'fa'), (5099,'Persian (Afghanistan)','default',96,'fa-af'), (5100,'Peruvian Spanish','default',96,'es-pe'), (5101,'Polish','default',96,'pl'), (5102,'Português (Informal)','informal',96,'pt'), (5103,'Portuguese','default',96,'pt'), (5104,'Punjabi','default',96,'pa'), (5105,'Romanian','default',96,'ro'), (5106,'Russian','default',96,'ru'), (5107,'Sanskrit','default',96,'sa-in'), (5108,'Sardinian','default',96,'srd'), (5109,'Scottish Gaelic','default',96,'gd'), (5110,'Serbian','default',96,'sr'), (5111,'Sinhala','default',96,'si'), (5112,'Slovak','default',96,'sk'), (5113,'Slovenian','default',96,'sl'), (5114,'Somali','default',96,'so'), (5115,'Spanish','default',96,'es'), (5116,'Sundanese','default',96,'su'), (5117,'Swahili','default',96,'sw'), (5118,'Swedish','default',96,'sv'), (5119,'Tagalog','default',96,'tl'), (5120,'Tajik','default',96,'tg'), (5121,'Tamil','default',96,'ta'), (5122,'Tamil (Sri Lanka)','default',96,'ta-lk'), (5123,'Telugu','default',96,'te'), (5124,'Thai','default',96,'th'), (5125,'Turkish','default',96,'tr'), (5126,'Uighur','default',96,'ug'), (5127,'Ukrainian','default',96,'uk'), (5128,'Urdu','default',96,'ur'), (5129,'Uzbek','default',96,'uz'), (5130,'Venezuelan Spanish','default',96,'es-ve'), (5131,'Vietnamese','default',96,'vi'), (5132,'Welsh','default',96,'cy'), (5134,'Albanian','default',98,'sq'), (5135,'Amharic','default',98,'am'), (5136,'Arabic','default',98,'ar'), (5137,'Aragonese','default',98,'an'), (5138,'Armenian','default',98,'hy'), (5139,'Azerbaijani','default',98,'az'), (5140,'Azerbaijani (Turkey)','default',98,'az-tr'), (5141,'Basque','default',98,'eu'), (5142,'Bengali','default',98,'bn'), (5143,'Bosnian','default',98,'bs'), (5144,'Brazilian Portuguese','default',98,'pt-br'), (5145,'Breton','default',98,'br'), (5146,'Bulgarian','default',98,'bg'), (5147,'Burmese','default',98,'mya'), (5148,'Catalan','default',98,'ca'), (5149,'Catalan (Balear)','default',98,'bal'), (5150,'Chilean Spanish','default',98,'es-cl'), (5151,'Chinese (China)','default',98,'zh-cn'), (5152,'Chinese (Taiwan)','default',98,'zh-tw'), (5153,'Corsican','default',98,'co'), (5154,'Croatian','default',98,'hr'), (5155,'Czech','default',98,'cs'), (5156,'Danish','default',98,'da'), (5157,'Divehi','default',98,'dv'), (5158,'Dutch','default',98,'nl'), (5159,'Dzongkha','default',98,'dzo'), (5160,'English (Canada)','default',98,'en-ca'), (5161,'English (UK)','default',98,'en-gb'), (5162,'Esperanto','default',98,'eo'), (5163,'Estonian','default',98,'et'), (5164,'Faroese','default',98,'fo'), (5165,'Finnish','default',98,'fi'), (5166,'French','default',98,'fr'), (5167,'Frisian','default',98,'fy'), (5168,'Galician','default',98,'gl'), (5169,'Georgian','default',98,'ka'), (5170,'German','default',98,'de'), (5171,'German (Formal)','formal',98,'de'), (5172,'Greek','default',98,'el'), (5173,'Gujarati','default',98,'gu'), (5174,'Hawaiian','default',98,'haw'), (5175,'Hazaragi','default',98,'haz'), (5176,'Hebrew','default',98,'he'), (5177,'Hindi','default',98,'hi'), (5178,'Hungarian','default',98,'hu'), (5179,'Icelandic','default',98,'is'), (5180,'Indonesian','default',98,'id'), (5181,'Irish','default',98,'ga'), (5182,'Italian','default',98,'it'), (5183,'Japanese','default',98,'ja'), (5184,'Javanese','default',98,'jv'), (5185,'Kannada','default',98,'kn'), (5186,'Kazakh','default',98,'kk'), (5187,'Khmer','default',98,'km'), (5188,'Kirghiz','default',98,'ky'), (5189,'Korean','default',98,'ko'), (5190,'Kurdish','default',98,'ckb'), (5191,'Kurdish (Kurmanji)','default',98,'ku'), (5192,'Lao','default',98,'lo'), (5193,'Latin','default',98,'la'), (5194,'Latvian','default',98,'lv'), (5195,'Limburgish','default',98,'li'), (5196,'Lithuanian','default',98,'lt'), (5197,'Luxembourgish','default',98,'lb'), (5198,'Macedonian','default',98,'mk'), (5199,'Malagasy','default',98,'mg'), (5200,'Malay','default',98,'ms'), (5201,'Malayalam','default',98,'ml'), (5202,'Marathi','default',98,'mr'), (5203,'Mongolian','default',98,'mn'), (5204,'Montenegrin','default',98,'me'), (5205,'Nepali','default',98,'ne'), (5206,'Norwegian (BokmÃ¥l)','default',98,'nb'), (5207,'Norwegian (Nynorsk)','default',98,'nn'), (5208,'Ossetic','default',98,'os'), (5209,'Persian','default',98,'fa'), (5210,'Persian (Afghanistan)','default',98,'fa-af'), (5211,'Peruvian Spanish','default',98,'es-pe'), (5212,'Polish','default',98,'pl'), (5213,'Portuguese','default',98,'pt'), (5214,'Portuguese Informal','informal',98,'pt'), (5215,'Punjabi','default',98,'pa'), (5216,'Romanian','default',98,'ro'), (5217,'Russian','default',98,'ru'), (5218,'Sanskrit','default',98,'sa-in'), (5219,'Sardinian','default',98,'srd'), (5220,'Scottish Gaelic','default',98,'gd'), (5221,'Serbian','default',98,'sr'), (5222,'Sinhala','default',98,'si'), (5223,'Slovak','default',98,'sk'), (5224,'Slovenian','default',98,'sl'), (5225,'Somali','default',98,'so'), (5226,'Spanish','default',98,'es'), (5227,'Sundanese','default',98,'su'), (5228,'Swahili','default',98,'sw'), (5229,'Swedish','default',98,'sv'), (5230,'Tagalog','default',98,'tl'), (5231,'Tajik','default',98,'tg'), (5232,'Tamil','default',98,'ta'), (5233,'Tamil (Sri Lanka)','default',98,'ta-lk'), (5234,'Telugu','default',98,'te'), (5235,'Thai','default',98,'th'), (5236,'Turkish','default',98,'tr'), (5237,'Uighur','default',98,'ug'), (5238,'Ukrainian','default',98,'uk'), (5239,'Urdu','default',98,'ur'), (5240,'Uzbek','default',98,'uz'), (5241,'Venezuelan Spanish','default',98,'es-ve'), (5242,'Vietnamese','default',98,'vi'), (5243,'Welsh','default',98,'cy'), (5245,'Albanian','default',100,'sq'), (5246,'Amharic','default',100,'am'), (5247,'Arabic','default',100,'ar'), (5248,'Aragonese','default',100,'an'), (5249,'Armenian','default',100,'hy'), (5250,'Azerbaijani','default',100,'az'), (5251,'Azerbaijani (Turkey)','default',100,'az-tr'), (5252,'Basque','default',100,'eu'), (5253,'Bengali','default',100,'bn'), (5254,'Bosnian','default',100,'bs'), (5255,'Brazilian Portuguese','default',100,'pt-br'), (5256,'Breton','default',100,'br'), (5257,'Bulgarian','default',100,'bg'), (5258,'Burmese','default',100,'mya'), (5259,'Catalan','default',100,'ca'), (5260,'Catalan (Balear)','default',100,'bal'), (5261,'Chilean Spanish','default',100,'es-cl'), (5262,'Chinese (China)','default',100,'zh-cn'), (5263,'Chinese (Taiwan)','default',100,'zh-tw'), (5264,'Corsican','default',100,'co'), (5265,'Croatian','default',100,'hr'), (5266,'Czech','default',100,'cs'), (5267,'Danish','default',100,'da'), (5268,'Divehi','default',100,'dv'), (5269,'Dutch','default',100,'nl'), (5270,'Dzongkha','default',100,'dzo'), (5271,'English (Canada)','default',100,'en-ca'), (5272,'English (UK)','default',100,'en-gb'), (5273,'Esperanto','default',100,'eo'), (5274,'Estonian','default',100,'et'), (5275,'Faroese','default',100,'fo'), (5276,'Finnish','default',100,'fi'), (5277,'French','default',100,'fr'), (5278,'Frisian','default',100,'fy'), (5279,'Galician','default',100,'gl'), (5280,'Georgian','default',100,'ka'), (5281,'German','default',100,'de'), (5282,'German (Formal)','formal',100,'de'), (5283,'Greek','default',100,'el'), (5284,'Gujarati','default',100,'gu'), (5285,'Hawaiian','default',100,'haw'), (5286,'Hazaragi','default',100,'haz'), (5287,'Hebrew','default',100,'he'), (5288,'Hindi','default',100,'hi'), (5289,'Hungarian','default',100,'hu'), (5290,'Icelandic','default',100,'is'), (5291,'Indonesian','default',100,'id'), (5292,'Irish','default',100,'ga'), (5293,'Italian','default',100,'it'), (5294,'Japanese','default',100,'ja'), (5295,'Javanese','default',100,'jv'), (5296,'Kannada','default',100,'kn'), (5297,'Kazakh','default',100,'kk'), (5298,'Khmer','default',100,'km'), (5299,'Kirghiz','default',100,'ky'), (5300,'Korean','default',100,'ko'), (5301,'Kurdish','default',100,'ckb'), (5302,'Kurdish (Kurmanji)','default',100,'ku'), (5303,'Lao','default',100,'lo'), (5304,'Latin','default',100,'la'), (5305,'Latvian','default',100,'lv'), (5306,'Limburgish','default',100,'li'), (5307,'Lithuanian','default',100,'lt'), (5308,'Luxembourgish','default',100,'lb'), (5309,'Macedonian','default',100,'mk'), (5310,'Malagasy','default',100,'mg'), (5311,'Malay','default',100,'ms'), (5312,'Malayalam','default',100,'ml'), (5313,'Marathi','default',100,'mr'), (5314,'Mongolian','default',100,'mn'), (5315,'Montenegrin','default',100,'me'), (5316,'Nepali','default',100,'ne'), (5317,'Norwegian (BokmÃ¥l)','default',100,'nb'), (5318,'Norwegian (Nynorsk)','default',100,'nn'), (5319,'Ossetic','default',100,'os'), (5320,'Persian','default',100,'fa'), (5321,'Persian (Afghanistan)','default',100,'fa-af'), (5322,'Peruvian Spanish','default',100,'es-pe'), (5323,'Polish','default',100,'pl'), (5324,'Portuguese','default',100,'pt'), (5325,'Portuguese Informal','informal',100,'pt'), (5326,'Punjabi','default',100,'pa'), (5327,'Romanian','default',100,'ro'), (5328,'Russian','default',100,'ru'), (5329,'Sanskrit','default',100,'sa-in'), (5330,'Sardinian','default',100,'srd'), (5331,'Scottish Gaelic','default',100,'gd'), (5332,'Serbian','default',100,'sr'), (5333,'Sinhala','default',100,'si'), (5334,'Slovak','default',100,'sk'), (5335,'Slovenian','default',100,'sl'), (5336,'Somali','default',100,'so'), (5337,'Spanish','default',100,'es'), (5338,'Sundanese','default',100,'su'), (5339,'Swahili','default',100,'sw'), (5340,'Swedish','default',100,'sv'), (5341,'Tagalog','default',100,'tl'), (5342,'Tajik','default',100,'tg'), (5343,'Tamil','default',100,'ta'), (5344,'Tamil (Sri Lanka)','default',100,'ta-lk'), (5345,'Telugu','default',100,'te'), (5346,'Thai','default',100,'th'), (5347,'Turkish','default',100,'tr'), (5348,'Uighur','default',100,'ug'), (5349,'Ukrainian','default',100,'uk'), (5350,'Urdu','default',100,'ur'), (5351,'Uzbek','default',100,'uz'), (5352,'Venezuelan Spanish','default',100,'es-ve'), (5353,'Vietnamese','default',100,'vi'), (5354,'Welsh','default',100,'cy'), (5356,'Albanian','default',99,'sq'), (5357,'Amharic','default',99,'am'), (5358,'Arabic','default',99,'ar'), (5359,'Aragonese','default',99,'an'), (5360,'Armenian','default',99,'hy'), (5361,'Azerbaijani','default',99,'az'), (5362,'Azerbaijani (Turkey)','default',99,'az-tr'), (5363,'Basque','default',99,'eu'), (5364,'Bengali','default',99,'bn'), (5365,'Bosnian','default',99,'bs'), (5366,'Brazilian Portuguese','default',99,'pt-br'), (5367,'Breton','default',99,'br'), (5368,'Bulgarian','default',99,'bg'), (5369,'Burmese','default',99,'mya'), (5370,'Catalan','default',99,'ca'), (5371,'Catalan (Balear)','default',99,'bal'), (5372,'Chilean Spanish','default',99,'es-cl'), (5373,'Chinese (China)','default',99,'zh-cn'), (5374,'Chinese (Taiwan)','default',99,'zh-tw'), (5375,'Corsican','default',99,'co'), (5376,'Croatian','default',99,'hr'), (5377,'Czech','default',99,'cs'), (5378,'Danish','default',99,'da'), (5379,'Divehi','default',99,'dv'), (5380,'Dutch','default',99,'nl'), (5381,'Dzongkha','default',99,'dzo'), (5382,'English (Canada)','default',99,'en-ca'), (5383,'English (UK)','default',99,'en-gb'), (5384,'Esperanto','default',99,'eo'), (5385,'Estonian','default',99,'et'), (5386,'Faroese','default',99,'fo'), (5387,'Finnish','default',99,'fi'), (5388,'French','default',99,'fr'), (5389,'Frisian','default',99,'fy'), (5390,'Galician','default',99,'gl'), (5391,'Georgian','default',99,'ka'), (5392,'German','default',99,'de'), (5393,'German (Formal)','formal',99,'de'), (5394,'Greek','default',99,'el'), (5395,'Gujarati','default',99,'gu'), (5396,'Hawaiian','default',99,'haw'), (5397,'Hazaragi','default',99,'haz'), (5398,'Hebrew','default',99,'he'), (5399,'Hindi','default',99,'hi'), (5400,'Hungarian','default',99,'hu'), (5401,'Icelandic','default',99,'is'), (5402,'Indonesian','default',99,'id'), (5403,'Irish','default',99,'ga'), (5404,'Italian','default',99,'it'), (5405,'Japanese','default',99,'ja'), (5406,'Javanese','default',99,'jv'), (5407,'Kannada','default',99,'kn'), (5408,'Kazakh','default',99,'kk'), (5409,'Khmer','default',99,'km'), (5410,'Kirghiz','default',99,'ky'), (5411,'Korean','default',99,'ko'), (5412,'Kurdish','default',99,'ckb'), (5413,'Kurdish (Kurmanji)','default',99,'ku'), (5414,'Lao','default',99,'lo'), (5415,'Latin','default',99,'la'), (5416,'Latvian','default',99,'lv'), (5417,'Limburgish','default',99,'li'), (5418,'Lithuanian','default',99,'lt'), (5419,'Luxembourgish','default',99,'lb'), (5420,'Macedonian','default',99,'mk'), (5421,'Malagasy','default',99,'mg'), (5422,'Malay','default',99,'ms'), (5423,'Malayalam','default',99,'ml'), (5424,'Marathi','default',99,'mr'), (5425,'Mongolian','default',99,'mn'), (5426,'Montenegrin','default',99,'me'), (5427,'Nepali','default',99,'ne'), (5428,'Norwegian (BokmÃ¥l)','default',99,'nb'), (5429,'Norwegian (Nynorsk)','default',99,'nn'), (5430,'Ossetic','default',99,'os'), (5431,'Persian','default',99,'fa'), (5432,'Persian (Afghanistan)','default',99,'fa-af'), (5433,'Peruvian Spanish','default',99,'es-pe'), (5434,'Polish','default',99,'pl'), (5435,'Portuguese','default',99,'pt'), (5436,'Portuguese Informal','informal',99,'pt'), (5437,'Punjabi','default',99,'pa'), (5438,'Romanian','default',99,'ro'), (5439,'Russian','default',99,'ru'), (5440,'Sanskrit','default',99,'sa-in'), (5441,'Sardinian','default',99,'srd'), (5442,'Scottish Gaelic','default',99,'gd'), (5443,'Serbian','default',99,'sr'), (5444,'Sinhala','default',99,'si'), (5445,'Slovak','default',99,'sk'), (5446,'Slovenian','default',99,'sl'), (5447,'Somali','default',99,'so'), (5448,'Spanish','default',99,'es'), (5449,'Sundanese','default',99,'su'), (5450,'Swahili','default',99,'sw'), (5451,'Swedish','default',99,'sv'), (5452,'Tagalog','default',99,'tl'), (5453,'Tajik','default',99,'tg'), (5454,'Tamil','default',99,'ta'), (5455,'Tamil (Sri Lanka)','default',99,'ta-lk'), (5456,'Telugu','default',99,'te'), (5457,'Thai','default',99,'th'), (5458,'Turkish','default',99,'tr'), (5459,'Uighur','default',99,'ug'), (5460,'Ukrainian','default',99,'uk'), (5461,'Urdu','default',99,'ur'), (5462,'Uzbek','default',99,'uz'), (5463,'Venezuelan Spanish','default',99,'es-ve'), (5464,'Vietnamese','default',99,'vi'), (5465,'Welsh','default',99,'cy'), (5467,'Albanian','default',97,'sq'), (5468,'Amharic','default',97,'am'), (5469,'Arabic','default',97,'ar'), (5470,'Aragonese','default',97,'an'), (5471,'Armenian','default',97,'hy'), (5472,'Azerbaijani','default',97,'az'), (5473,'Azerbaijani (Turkey)','default',97,'az-tr'), (5474,'Basque','default',97,'eu'), (5475,'Bengali','default',97,'bn'), (5476,'Bosnian','default',97,'bs'), (5477,'Brazilian Portuguese','default',97,'pt-br'), (5478,'Breton','default',97,'br'), (5479,'Bulgarian','default',97,'bg'), (5480,'Burmese','default',97,'mya'), (5481,'Catalan','default',97,'ca'), (5482,'Catalan (Balear)','default',97,'bal'), (5483,'Chilean Spanish','default',97,'es-cl'), (5484,'Chinese (China)','default',97,'zh-cn'), (5485,'Chinese (Taiwan)','default',97,'zh-tw'), (5486,'Corsican','default',97,'co'), (5487,'Croatian','default',97,'hr'), (5488,'Czech','default',97,'cs'), (5489,'Danish','default',97,'da'), (5490,'Divehi','default',97,'dv'), (5491,'Dutch','default',97,'nl'), (5492,'Dzongkha','default',97,'dzo'), (5493,'English (Canada)','default',97,'en-ca'), (5494,'English (UK)','default',97,'en-gb'), (5495,'Esperanto','default',97,'eo'), (5496,'Estonian','default',97,'et'), (5497,'Faroese','default',97,'fo'), (5498,'Finnish','default',97,'fi'), (5499,'French','default',97,'fr'), (5500,'Frisian','default',97,'fy'), (5501,'Galician','default',97,'gl'), (5502,'Georgian','default',97,'ka'), (5503,'German','default',97,'de'), (5504,'German (Formal)','formal',97,'de'), (5505,'Greek','default',97,'el'), (5506,'Gujarati','default',97,'gu'), (5507,'Hawaiian','default',97,'haw'), (5508,'Hazaragi','default',97,'haz'), (5509,'Hebrew','default',97,'he'), (5510,'Hindi','default',97,'hi'), (5511,'Hungarian','default',97,'hu'), (5512,'Icelandic','default',97,'is'), (5513,'Indonesian','default',97,'id'), (5514,'Irish','default',97,'ga'), (5515,'Italian','default',97,'it'), (5516,'Japanese','default',97,'ja'), (5517,'Javanese','default',97,'jv'), (5518,'Kannada','default',97,'kn'), (5519,'Kazakh','default',97,'kk'), (5520,'Khmer','default',97,'km'), (5521,'Kirghiz','default',97,'ky'), (5522,'Korean','default',97,'ko'), (5523,'Kurdish','default',97,'ckb'), (5524,'Kurdish (Kurmanji)','default',97,'ku'), (5525,'Lao','default',97,'lo'), (5526,'Latin','default',97,'la'), (5527,'Latvian','default',97,'lv'), (5528,'Limburgish','default',97,'li'), (5529,'Lithuanian','default',97,'lt'), (5530,'Luxembourgish','default',97,'lb'), (5531,'Macedonian','default',97,'mk'), (5532,'Malagasy','default',97,'mg'), (5533,'Malay','default',97,'ms'), (5534,'Malayalam','default',97,'ml'), (5535,'Marathi','default',97,'mr'), (5536,'Mongolian','default',97,'mn'), (5537,'Montenegrin','default',97,'me'), (5538,'Nepali','default',97,'ne'), (5539,'Norwegian (BokmÃ¥l)','default',97,'nb'), (5540,'Norwegian (Nynorsk)','default',97,'nn'), (5541,'Ossetic','default',97,'os'), (5542,'Persian','default',97,'fa'), (5543,'Persian (Afghanistan)','default',97,'fa-af'), (5544,'Peruvian Spanish','default',97,'es-pe'), (5545,'Polish','default',97,'pl'), (5546,'Portuguese','default',97,'pt'), (5547,'Portuguese Informal','informal',97,'pt'), (5548,'Punjabi','default',97,'pa'), (5549,'Romanian','default',97,'ro'), (5550,'Russian','default',97,'ru'), (5551,'Sanskrit','default',97,'sa-in'), (5552,'Sardinian','default',97,'srd'), (5553,'Scottish Gaelic','default',97,'gd'), (5554,'Serbian','default',97,'sr'), (5555,'Sinhala','default',97,'si'), (5556,'Slovak','default',97,'sk'), (5557,'Slovenian','default',97,'sl'), (5558,'Somali','default',97,'so'), (5559,'Spanish','default',97,'es'), (5560,'Sundanese','default',97,'su'), (5561,'Swahili','default',97,'sw'), (5562,'Swedish','default',97,'sv'), (5563,'Tagalog','default',97,'tl'), (5564,'Tajik','default',97,'tg'), (5565,'Tamil','default',97,'ta'), (5566,'Tamil (Sri Lanka)','default',97,'ta-lk'), (5567,'Telugu','default',97,'te'), (5568,'Thai','default',97,'th'), (5569,'Turkish','default',97,'tr'), (5570,'Uighur','default',97,'ug'), (5571,'Ukrainian','default',97,'uk'), (5572,'Urdu','default',97,'ur'), (5573,'Uzbek','default',97,'uz'), (5574,'Venezuelan Spanish','default',97,'es-ve'), (5575,'Vietnamese','default',97,'vi'), (5576,'Welsh','default',97,'cy'), (5577,'Assamese','default',2,'as'), (5578,'Assamese','default',80,'as'), (5579,'Assamese','default',64,'as'), (5580,'Assamese','default',55,'as'), (5581,'Assamese','default',78,'as'), (5582,'Assamese','default',79,'as'), (5583,'Assamese','default',15,'as'), (5584,'Assamese','default',94,'as'), (5585,'Assamese','default',100,'as'), (5586,'Assamese','default',99,'as'), (5587,'Assamese','default',98,'as'), (5588,'Assamese','default',97,'as'), (5589,'Assamese','default',95,'as'), (5590,'Assamese','default',96,'as'), (5591,'South Azerbaijani','default',2,'azb'), (5592,'South Azerbaijani','default',80,'azb'), (5593,'South Azerbaijani','default',64,'azb'), (5594,'South Azerbaijani','default',55,'azb'), (5595,'South Azerbaijani','default',78,'azb'), (5596,'South Azerbaijani','default',79,'azb'), (5597,'South Azerbaijani','default',15,'azb'), (5598,'South Azerbaijani','default',94,'azb'), (5599,'South Azerbaijani','default',100,'azb'), (5600,'South Azerbaijani','default',99,'azb'), (5601,'South Azerbaijani','default',98,'azb'), (5602,'South Azerbaijani','default',97,'azb'), (5603,'South Azerbaijani','default',95,'azb'), (5604,'South Azerbaijani','default',96,'azb'), (5605,'Assamese','default',66,'as'), (5606,'South Azerbaijani','default',66,'azb'), (5607,'Swahili','default',14,'sw'), (5608,'Swahili','default',83,'sw'), (5623,'Chinese (Taiwan)','default',59,'zh-tw'), (5624,'Chinese (Taiwan)','default',93,'zh-tw'), (5641,'Galician','default',59,'gl'), (5642,'Galician','default',93,'gl'), (5643,'Turkmen','default',66,'tuk'), (5644,'Turkmen','default',2,'tuk'), (5645,'Turkmen','default',80,'tuk'), (5646,'Turkmen','default',64,'tuk'), (5647,'Turkmen','default',55,'tuk'), (5648,'Turkmen','default',78,'tuk'), (5649,'Turkmen','default',79,'tuk'), (5650,'Turkmen','default',15,'tuk'), (5651,'Turkmen','default',94,'tuk'), (5652,'Turkmen','default',100,'tuk'), (5653,'Turkmen','default',99,'tuk'), (5654,'Turkmen','default',98,'tuk'), (5655,'Turkmen','default',97,'tuk'), (5656,'Turkmen','default',95,'tuk'), (5657,'Turkmen','default',96,'tuk'), (5659,'Arabic','default',7,'ar'), (5660,'Dutch','default',50,'nl'), (5661,'Greek','default',93,'el'), (5664,'Albanian','default',101,'sq'), (5665,'Amharic','default',101,'am'), (5666,'Arabic','default',101,'ar'), (5667,'Aragonese','default',101,'an'), (5668,'Armenian','default',101,'hy'), (5669,'Assamese','default',101,'as'), (5670,'Azerbaijani','default',101,'az'), (5671,'Azerbaijani (Turkey)','default',101,'az-tr'), (5672,'Basque','default',101,'eu'), (5674,'Bengali','default',101,'bn'), (5675,'Bosnian','default',101,'bs'), (5676,'Brazilian Portuguese','default',101,'pt-br'), (5677,'Breton','default',101,'br'), (5678,'Bulgarian','default',101,'bg'), (5679,'Burmese','default',101,'mya'), (5680,'Catalan','default',101,'ca'), (5681,'Chilean Spanish','default',101,'es-cl'), (5682,'Chinese (China)','default',101,'zh-cn'), (5683,'Chinese (Taiwan)','default',101,'zh-tw'), (5684,'Corsican','default',101,'co'), (5685,'Croatian','default',101,'hr'), (5686,'Czech','default',101,'cs'), (5687,'Danish','default',101,'da'), (5688,'Divehi','default',101,'dv'), (5689,'Dutch','default',101,'nl'), (5690,'Dzongkha','default',101,'dzo'), (5691,'English (Canada)','default',101,'en-ca'), (5692,'Esperanto','default',101,'eo'), (5693,'Estonian','default',101,'et'), (5694,'Faroese','default',101,'fo'), (5695,'Finnish','default',101,'fi'), (5696,'French','default',101,'fr'), (5697,'Frisian','default',101,'fy'), (5698,'Galician','default',101,'gl'), (5699,'Georgian','default',101,'ka'), (5700,'German','default',101,'de'), (5701,'German (Formal)','formal',101,'de'), (5702,'Greek','default',101,'el'), (5703,'Gujarati','default',101,'gu'), (5704,'Hazaragi','default',101,'haz'), (5705,'Hebrew','default',101,'he'), (5706,'Hindi','default',101,'hi'), (5707,'Hungarian','default',101,'hu'), (5708,'Icelandic','default',101,'is'), (5709,'Indonesian','default',101,'id'), (5710,'Irish','default',101,'ga'), (5711,'Italian','default',101,'it'), (5712,'Japanese','default',101,'ja'), (5713,'Javanese','default',101,'jv'), (5714,'Kannada','default',101,'kn'), (5715,'Kazakh','default',101,'kk'), (5716,'Khmer','default',101,'km'), (5717,'Kirghiz','default',101,'ky'), (5718,'Korean','default',101,'ko'), (5719,'Kurdish','default',101,'ckb'), (5720,'Lao','default',101,'lo'), (5721,'Latin','default',101,'la'), (5722,'Latvian','default',101,'lv'), (5723,'Limburgish','default',101,'li'), (5724,'Lithuanian','default',101,'lt'), (5725,'Macedonian','default',101,'mk'), (5726,'Malay','default',101,'ms'), (5727,'Malayalam','default',101,'ml'), (5729,'Marathi','default',101,'mr'), (5730,'Mongolian','default',101,'mn'), (5731,'Montenegrin','default',101,'me'), (5732,'Nepali','default',101,'ne'), (5733,'Norwegian (BokmÃ¥l)','default',101,'nb'), (5734,'Norwegian (Nynorsk)','default',101,'nn'), (5735,'Ossetic','default',101,'os'), (5736,'Persian','default',101,'fa'), (5737,'Persian (Afghanistan)','default',101,'fa-af'), (5738,'Peruvian Spanish','default',101,'es-pe'), (5739,'Polish','default',101,'pl'), (5740,'Portuguese','default',101,'pt'), (5741,'Portuguese (Informal)','informal',101,'pt'), (5742,'Punjabi','default',101,'pa'), (5743,'Romanian','default',101,'ro'), (5744,'Russian','default',101,'ru'), (5745,'Sanskrit','default',101,'sa-in'), (5746,'Sardinian','default',101,'srd'), (5747,'Scottish Gaelic','default',101,'gd'), (5748,'Serbian','default',101,'sr'), (5749,'Sinhala','default',101,'si'), (5750,'Slovak','default',101,'sk'), (5751,'Slovenian','default',101,'sl'), (5752,'Somali','default',101,'so'), (5753,'South Azerbaijani','default',101,'azb'), (5754,'Spanish','default',101,'es'), (5755,'Sundanese','default',101,'su'), (5756,'Swahili','default',101,'sw'), (5757,'Swedish','default',101,'sv'), (5758,'Tagalog','default',101,'tl'), (5759,'Tajik','default',101,'tg'), (5760,'Tamil (Sri Lanka)','default',101,'ta-lk'), (5761,'Telugu','default',101,'te'), (5762,'Thai','default',101,'th'), (5763,'Turkish','default',101,'tr'), (5764,'Turkmen','default',101,'tuk'), (5765,'Uighur','default',101,'ug'), (5766,'Ukrainian','default',101,'uk'), (5767,'Uzbek','default',101,'uz'), (5768,'Venezuelan Spanish','default',101,'es-ve'), (5769,'Vietnamese','default',101,'vi'), (5770,'Welsh','default',101,'cy'), (5771,'Tagalog','default',82,'tl'), (5772,'Swiss German','default',2,'gsw'), (5773,'Swiss German','default',101,'gsw'), (5774,'Swiss German','default',80,'gsw'), (5775,'Swiss German','default',64,'gsw'), (5776,'Swiss German','default',55,'gsw'), (5777,'Swiss German','default',78,'gsw'), (5778,'Swiss German','default',79,'gsw'), (5779,'Swiss German','default',15,'gsw'), (5780,'Swiss German','default',94,'gsw'), (5781,'Swiss German','default',100,'gsw'), (5782,'Swiss German','default',99,'gsw'), (5783,'Swiss German','default',98,'gsw'), (5784,'Swiss German','default',97,'gsw'), (5785,'Swiss German','default',95,'gsw'), (5786,'Swiss German','default',96,'gsw'), (5787,'Swiss German','default',66,'gsw'), (5788,'Belarusian','default',94,'bel'), (5789,'Belarusian','default',100,'bel'), (5790,'Belarusian','default',99,'bel'), (5791,'Belarusian','default',98,'bel'), (5792,'Belarusian','default',97,'bel'), (5793,'Belarusian','default',95,'bel'), (5794,'Belarusian','default',96,'bel'), (5795,'Belarusian','default',2,'bel'), (5796,'Belarusian','default',101,'bel'), (5797,'Belarusian','default',80,'bel'), (5798,'Belarusian','default',64,'bel'), (5799,'Belarusian','default',55,'bel'), (5800,'Belarusian','default',78,'bel'), (5801,'Belarusian','default',79,'bel'), (5802,'Belarusian','default',15,'bel'), (5803,'Belarusian','default',66,'bel'), (5804,'English (Canada)','default',66,'en-ca'), (5805,'Uzbek','default',7,'uz'), (5807,'Arabic','default',102,'ar'), (5808,'Basque','default',102,'eu'), (5809,'Bosnian','default',102,'bs'), (5810,'Bulgarian','default',102,'bg'), (5811,'Burmese','default',102,'mya'), (5812,'Catalan','default',102,'ca'), (5813,'Chinese (China)','default',102,'zh-cn'), (5814,'Chinese (Taiwan)','default',102,'zh-tw'), (5815,'Croatian','default',102,'hr'), (5816,'Czech','default',102,'cs'), (5817,'Danish','default',102,'da'), (5818,'Dutch','default',102,'nl'), (5819,'Finnish','default',102,'fi'), (5820,'French (France)','default',102,'fr'), (5821,'Frisian','default',102,'fy'), (5822,'Galician','default',102,'gl'), (5823,'Georgian','default',102,'ka'), (5824,'German','default',102,'de'), (5825,'Greek','default',102,'el'), (5827,'Hebrew','default',102,'he'), (5828,'Hungarian','default',102,'hu'), (5829,'Icelandic','default',102,'is'), (5830,'Indonesian','default',102,'id'), (5831,'Italian','default',102,'it'), (5832,'Japanese','default',102,'ja'), (5833,'Korean','default',102,'ko'), (5834,'Latvian','default',102,'lv'), (5835,'Limburgish','default',102,'li'), (5836,'Macedonian','default',102,'mk'), (5837,'Norwegian (BokmÃ¥l)','default',102,'nb'), (5838,'Persian','default',102,'fa'), (5839,'Polish','default',102,'pl'), (5840,'Portuguese (Brazil)','default',102,'pt-br'), (5841,'Portuguese (Portugal)','default',102,'pt'), (5842,'Romanian','default',102,'ro'), (5843,'Russian','default',102,'ru'), (5844,'Serbian','default',102,'sr'), (5845,'Slovak','default',102,'sk'), (5846,'Somali','default',102,'so'), (5847,'Spanish (Spain)','default',102,'es'), (5848,'Swahili','default',102,'sw'), (5849,'Swedish','default',102,'sv'), (5850,'Tagalog','default',102,'tl'), (5851,'Thai','default',102,'th'), (5852,'Turkish','default',102,'tr'), (5853,'Ukrainian','default',102,'uk'), (5854,'Vietnamese','default',102,'vi'), (5855,'Afrikaans','default',2,'af'), (5856,'Afrikaans','default',101,'af'), (5857,'Afrikaans','default',80,'af'), (5858,'Afrikaans','default',64,'af'), (5859,'Afrikaans','default',55,'af'), (5860,'Afrikaans','default',78,'af'), (5861,'Afrikaans','default',79,'af'), (5862,'Afrikaans','default',15,'af'), (5863,'Catalan','default',57,'ca'), (5864,'Greek','default',57,'el'), (5866,'Arabic','default',103,'ar'), (5867,'Bosnian','default',103,'bs'), (5868,'Bulgarian','default',103,'bg'), (5869,'Burmese','default',103,'mya'), (5870,'Catalan','default',103,'ca'), (5871,'Chinese (China)','default',103,'zh-cn'), (5872,'Chinese (Taiwan)','default',103,'zh-tw'), (5873,'Croatian','default',103,'hr'), (5874,'Czech','default',103,'cs'), (5875,'Danish','default',103,'da'), (5876,'Dutch','default',103,'nl'), (5877,'Finnish','default',103,'fi'), (5878,'French (France)','default',103,'fr'), (5879,'Galician','default',103,'gl'), (5880,'German','default',103,'de'), (5881,'Greek','default',103,'el'), (5883,'Hebrew','default',103,'he'), (5884,'Hungarian','default',103,'hu'), (5885,'Indonesian','default',103,'id'), (5886,'Italian','default',103,'it'), (5887,'Japanese','default',103,'ja'), (5888,'Korean','default',103,'ko'), (5889,'Kurdish (Kurmanji)','default',103,'ku'), (5890,'Kurdish (Sorani)','default',103,'ckb'), (5891,'Latvian','default',103,'lv'), (5892,'Macedonian','default',103,'mk'), (5893,'Malay','default',103,'ms'), (5894,'Norwegian (BokmÃ¥l)','default',103,'nb'), (5895,'Polish','default',103,'pl'), (5896,'Portuguese (Brazil)','default',103,'pt-br'), (5897,'Portuguese (Portugal)','default',103,'pt'), (5898,'Romanian','default',103,'ro'), (5899,'Russian','default',103,'ru'), (5900,'Serbian','default',103,'sr'), (5901,'Slovak','default',103,'sk'), (5902,'Slovenian','default',103,'sl'), (5903,'Spanish (Spain)','default',103,'es'), (5904,'Swedish','default',103,'sv'), (5905,'Tamil','default',103,'ta'), (5906,'Tamil (Sri Lanka)','default',103,'ta-lk'), (5907,'Thai','default',103,'th'), (5908,'Turkish','default',103,'tr'), (5909,'Persian','default',59,'fa'), (5910,'Persian','default',81,'fa'), (5911,'Tamazight (Central Atlas)','default',2,'tzm'), (5912,'Tamazight (Central Atlas)','default',101,'tzm'), (5913,'Tamazight (Central Atlas)','default',80,'tzm'), (5914,'Tamazight (Central Atlas)','default',64,'tzm'), (5915,'Tamazight (Central Atlas)','default',55,'tzm'), (5916,'Tamazight (Central Atlas)','default',78,'tzm'), (5917,'Tamazight (Central Atlas)','default',79,'tzm'), (5918,'Tamazight (Central Atlas)','default',15,'tzm'), (5920,'Afrikaans','default',92,'af'), (5921,'Albanian','default',92,'sq'), (5922,'Amharic','default',92,'am'), (5923,'Arabic','default',92,'ar'), (5924,'Aragonese','default',92,'an'), (5925,'Armenian','default',92,'hy'), (5926,'Assamese','default',92,'as'), (5927,'Azerbaijani','default',92,'az'), (5928,'Azerbaijani (Turkey)','default',92,'az-tr'), (5929,'Basque','default',92,'eu'), (5931,'Belarusian','default',92,'bel'), (5932,'Bengali','default',92,'bn'), (5933,'Bosnian','default',92,'bs'), (5934,'Brazilian Portuguese','default',92,'pt-br'), (5935,'Breton','default',92,'br'), (5936,'Bulgarian','default',92,'bg'), (5937,'Burmese','default',92,'mya'), (5938,'Catalan','default',92,'ca'), (5939,'Catalan (Balear)','default',92,'bal'), (5940,'Chilean Spanish','default',92,'es-cl'), (5941,'Chinese (China)','default',92,'zh-cn'), (5942,'Chinese (Taiwan)','default',92,'zh-tw'), (5943,'Corsican','default',92,'co'), (5944,'Croatian','default',92,'hr'), (5945,'Czech','default',92,'cs'), (5946,'Danish','default',92,'da'), (5947,'Divehi','default',92,'dv'), (5948,'Dutch','default',92,'nl'), (5949,'Dzongkha','default',92,'dzo'), (5950,'English (Canada)','default',92,'en-ca'), (5951,'English (UK)','default',92,'en-gb'), (5952,'Esperanto','default',92,'eo'), (5953,'Estonian','default',92,'et'), (5954,'Faroese','default',92,'fo'), (5955,'Finnish','default',92,'fi'), (5956,'French','default',92,'fr'), (5957,'Frisian','default',92,'fy'), (5958,'Galician','default',92,'gl'), (5959,'Georgian','default',92,'ka'), (5960,'German','default',92,'de'), (5961,'German (Formal)','formal',92,'de'), (5962,'Greek','default',92,'el'), (5963,'Gujarati','default',92,'gu'), (5964,'Hawaiian','default',92,'haw'), (5965,'Hazaragi','default',92,'haz'), (5966,'Hebrew','default',92,'he'), (5967,'Hindi','default',92,'hi'), (5968,'Hungarian','default',92,'hu'), (5969,'Icelandic','default',92,'is'), (5970,'Indonesian','default',92,'id'), (5971,'Irish','default',92,'ga'), (5972,'Italian','default',92,'it'), (5973,'Japanese','default',92,'ja'), (5974,'Javanese','default',92,'jv'), (5975,'Kannada','default',92,'kn'), (5976,'Kazakh','default',92,'kk'), (5977,'Khmer','default',92,'km'), (5978,'Kirghiz','default',92,'ky'), (5979,'Korean','default',92,'ko'), (5980,'Kurdish','default',92,'ckb'), (5981,'Kurdish (Kurmanji)','default',92,'ku'), (5982,'Lao','default',92,'lo'), (5983,'Latin','default',92,'la'), (5984,'Latvian','default',92,'lv'), (5985,'Limburgish','default',92,'li'), (5986,'Lithuanian','default',92,'lt'), (5987,'Luxembourgish','default',92,'lb'), (5988,'Macedonian','default',92,'mk'), (5989,'Malagasy','default',92,'mg'), (5990,'Malay','default',92,'ms'), (5991,'Malayalam','default',92,'ml'), (5993,'Marathi','default',92,'mr'), (5994,'Mongolian','default',92,'mn'), (5995,'Montenegrin','default',92,'me'), (5996,'Nepali','default',92,'ne'), (5997,'Norwegian (BokmÃ¥l)','default',92,'nb'), (5998,'Norwegian (Nynorsk)','default',92,'nn'), (5999,'Ossetic','default',92,'os'), (6000,'Persian','default',92,'fa'), (6001,'Persian (Afghanistan)','default',92,'fa-af'), (6002,'Peruvian Spanish','default',92,'es-pe'), (6003,'Polish','default',92,'pl'), (6004,'Portuguese','default',92,'pt'), (6005,'Portuguese Informal','informal',92,'pt'), (6006,'Punjabi','default',92,'pa'), (6007,'Romanian','default',92,'ro'), (6008,'Russian','default',92,'ru'), (6009,'Sanskrit','default',92,'sa-in'), (6010,'Sardinian','default',92,'srd'), (6011,'Scottish Gaelic','default',92,'gd'), (6012,'Serbian','default',92,'sr'), (6013,'Sinhala','default',92,'si'), (6014,'Slovak','default',92,'sk'), (6015,'Slovenian','default',92,'sl'), (6016,'Somali','default',92,'so'), (6017,'South Azerbaijani','default',92,'azb'), (6018,'Spanish','default',92,'es'), (6019,'Sundanese','default',92,'su'), (6020,'Swahili','default',92,'sw'), (6021,'Swedish','default',92,'sv'), (6022,'Swiss German','default',92,'gsw'), (6023,'Tagalog','default',92,'tl'), (6024,'Tajik','default',92,'tg'), (6025,'Tamazight (Central Atlas)','default',92,'tzm'), (6026,'Tamil','default',92,'ta'), (6027,'Tamil (Sri Lanka)','default',92,'ta-lk'), (6028,'Telugu','default',92,'te'), (6029,'Thai','default',92,'th'), (6030,'Turkish','default',92,'tr'), (6031,'Turkmen','default',92,'tuk'), (6032,'Uighur','default',92,'ug'), (6033,'Ukrainian','default',92,'uk'), (6034,'Urdu','default',92,'ur'), (6035,'Uzbek','default',92,'uz'), (6036,'Venezuelan Spanish','default',92,'es-ve'), (6037,'Vietnamese','default',92,'vi'), (6038,'Welsh','default',92,'cy'), (6039,'Tamazight (Central Atlas)','default',66,'tzm'), (6040,'Georgian','default',59,'ka'), (6041,'Georgian','default',103,'ka'), (6042,'Georgian','default',93,'ka'), (6043,'Tibetan','default',2,'bo'), (6044,'Tibetan','default',101,'bo'), (6045,'Tibetan','default',80,'bo'), (6046,'Tibetan','default',64,'bo'), (6047,'Tibetan','default',55,'bo'), (6048,'Tibetan','default',78,'bo'), (6049,'Tibetan','default',79,'bo'), (6050,'Tibetan','default',15,'bo'), (6051,'Mongolian','default',7,'mn'), (6052,'Azerbaijani','default',7,'az'), (7100,'Arabic','default',113,'ar'), (7101,'Bosnian','default',113,'bs'), (7102,'Bulgarian','default',113,'bg'), (7103,'Burmese','default',113,'mya'), (7104,'Catalan','default',113,'ca'), (7105,'Chinese (China)','default',113,'zh-cn'), (7106,'Chinese (Taiwan)','default',113,'zh-tw'), (7107,'Croatian','default',113,'hr'), (7108,'Czech','default',113,'cs'), (7109,'Danish','default',113,'da'), (7110,'Dutch','default',113,'nl'), (7111,'Finnish','default',113,'fi'), (7112,'French (France)','default',113,'fr'), (7113,'Galician','default',113,'gl'), (7114,'Georgian','default',113,'ka'), (7115,'German','default',113,'de'), (7116,'Greek','default',113,'el'), (7118,'Hebrew','default',113,'he'), (7119,'Hungarian','default',113,'hu'), (7120,'Indonesian','default',113,'id'), (7121,'Italian','default',113,'it'), (7122,'Japanese','default',113,'ja'), (7123,'Korean','default',113,'ko'), (7124,'Kurdish (Kurmanji)','default',113,'ku'), (7125,'Kurdish (Sorani)','default',113,'ckb'), (7126,'Latvian','default',113,'lv'), (7127,'Macedonian','default',113,'mk'), (7128,'Malay','default',113,'ms'), (7129,'Norwegian (BokmÃ¥l)','default',113,'nb'), (7130,'Polish','default',113,'pl'), (7131,'Portuguese (Brazil)','default',113,'pt-br'), (7132,'Portuguese (Portugal)','default',113,'pt'), (7133,'Romanian','default',113,'ro'), (7134,'Russian','default',113,'ru'), (7135,'Serbian','default',113,'sr'), (7136,'Slovak','default',113,'sk'), (7137,'Slovenian','default',113,'sl'), (7138,'Spanish (Spain)','default',113,'es'), (7139,'Swedish','default',113,'sv'), (7140,'Tamil','default',113,'ta'), (7141,'Tamil (Sri Lanka)','default',113,'ta-lk'), (7142,'Thai','default',113,'th'), (7143,'Turkish','default',113,'tr'), (7144,'Catalan','default',67,'ca'), (7145,'Galician','default',67,'gl'), (7146,'Korean','default',67,'ko'), (7148,'Afrikaans','default',114,'af'), (7149,'Albanian','default',114,'sq'), (7150,'Amharic','default',114,'am'), (7151,'Arabic','default',114,'ar'), (7152,'Aragonese','default',114,'an'), (7153,'Armenian','default',114,'hy'), (7154,'Assamese','default',114,'as'), (7155,'Azerbaijani','default',114,'az'), (7156,'Azerbaijani (Turkey)','default',114,'az-tr'), (7157,'Basque','default',114,'eu'), (7159,'Belarusian','default',114,'bel'), (7160,'Bengali','default',114,'bn'), (7161,'Bosnian','default',114,'bs'), (7162,'Brazilian Portuguese','default',114,'pt-br'), (7163,'Breton','default',114,'br'), (7164,'Bulgarian','default',114,'bg'), (7165,'Burmese','default',114,'mya'), (7166,'Catalan','default',114,'ca'), (7167,'Catalan (Balear)','default',114,'bal'), (7168,'Chilean Spanish','default',114,'es-cl'), (7169,'Chinese (China)','default',114,'zh-cn'), (7170,'Chinese (Taiwan)','default',114,'zh-tw'), (7171,'Corsican','default',114,'co'), (7172,'Croatian','default',114,'hr'), (7173,'Czech','default',114,'cs'), (7174,'Danish','default',114,'da'), (7175,'Divehi','default',114,'dv'), (7176,'Dutch','default',114,'nl'), (7177,'Dzongkha','default',114,'dzo'), (7178,'English (Canada)','default',114,'en-ca'), (7179,'English (UK)','default',114,'en-gb'), (7180,'Esperanto','default',114,'eo'), (7181,'Estonian','default',114,'et'), (7182,'Faroese','default',114,'fo'), (7183,'Finnish','default',114,'fi'), (7184,'French','default',114,'fr'), (7185,'Frisian','default',114,'fy'), (7186,'Galician','default',114,'gl'), (7187,'Georgian','default',114,'ka'), (7188,'German','default',114,'de'), (7189,'German (Formal)','formal',114,'de'), (7190,'Greek','default',114,'el'), (7191,'Gujarati','default',114,'gu'), (7192,'Hawaiian','default',114,'haw'), (7193,'Hazaragi','default',114,'haz'), (7194,'Hebrew','default',114,'he'), (7195,'Hindi','default',114,'hi'), (7196,'Hungarian','default',114,'hu'), (7197,'Icelandic','default',114,'is'), (7198,'Indonesian','default',114,'id'), (7199,'Irish','default',114,'ga'), (7200,'Italian','default',114,'it'), (7201,'Japanese','default',114,'ja'), (7202,'Javanese','default',114,'jv'), (7203,'Kannada','default',114,'kn'), (7204,'Kazakh','default',114,'kk'), (7205,'Khmer','default',114,'km'), (7206,'Kirghiz','default',114,'ky'), (7207,'Korean','default',114,'ko'), (7208,'Kurdish','default',114,'ckb'), (7209,'Kurdish (Kurmanji)','default',114,'ku'), (7210,'Lao','default',114,'lo'), (7211,'Latin','default',114,'la'), (7212,'Latvian','default',114,'lv'), (7213,'Limburgish','default',114,'li'), (7214,'Lithuanian','default',114,'lt'), (7215,'Luxembourgish','default',114,'lb'), (7216,'Macedonian','default',114,'mk'), (7217,'Malagasy','default',114,'mg'), (7218,'Malay','default',114,'ms'), (7219,'Malayalam','default',114,'ml'), (7221,'Marathi','default',114,'mr'), (7222,'Mongolian','default',114,'mn'), (7223,'Montenegrin','default',114,'me'), (7224,'Nepali','default',114,'ne'), (7225,'Norwegian (BokmÃ¥l)','default',114,'nb'), (7226,'Norwegian (Nynorsk)','default',114,'nn'), (7227,'Ossetic','default',114,'os'), (7228,'Persian','default',114,'fa'), (7229,'Persian (Afghanistan)','default',114,'fa-af'), (7230,'Peruvian Spanish','default',114,'es-pe'), (7231,'Polish','default',114,'pl'), (7232,'Portuguese','default',114,'pt'), (7233,'Portuguese Informal','informal',114,'pt'), (7234,'Punjabi','default',114,'pa'), (7235,'Romanian','default',114,'ro'), (7236,'Russian','default',114,'ru'), (7237,'Sanskrit','default',114,'sa-in'), (7238,'Sardinian','default',114,'srd'), (7239,'Scottish Gaelic','default',114,'gd'), (7240,'Serbian','default',114,'sr'), (7241,'Sinhala','default',114,'si'), (7242,'Slovak','default',114,'sk'), (7243,'Slovenian','default',114,'sl'), (7244,'Somali','default',114,'so'), (7245,'South Azerbaijani','default',114,'azb'), (7246,'Spanish','default',114,'es'), (7247,'Sundanese','default',114,'su'), (7248,'Swahili','default',114,'sw'), (7249,'Swedish','default',114,'sv'), (7250,'Swiss German','default',114,'gsw'), (7251,'Tagalog','default',114,'tl'), (7252,'Tajik','default',114,'tg'), (7253,'Tamazight (Central Atlas)','default',114,'tzm'), (7254,'Tamil','default',114,'ta'), (7255,'Tamil (Sri Lanka)','default',114,'ta-lk'), (7256,'Telugu','default',114,'te'), (7257,'Thai','default',114,'th'), (7258,'Tibetan','default',114,'bo'), (7259,'Turkish','default',114,'tr'), (7260,'Turkmen','default',114,'tuk'), (7261,'Uighur','default',114,'ug'), (7262,'Ukrainian','default',114,'uk'), (7263,'Urdu','default',114,'ur'), (7264,'Uzbek','default',114,'uz'), (7265,'Venezuelan Spanish','default',114,'es-ve'), (7266,'Vietnamese','default',114,'vi'), (7267,'Welsh','default',114,'cy'), (7269,'Afrikaans','default',115,'af'), (7270,'Albanian','default',115,'sq'), (7271,'Amharic','default',115,'am'), (7272,'Arabic','default',115,'ar'), (7273,'Aragonese','default',115,'an'), (7274,'Armenian','default',115,'hy'), (7275,'Assamese','default',115,'as'), (7276,'Azerbaijani','default',115,'az'), (7277,'Azerbaijani (Turkey)','default',115,'az-tr'), (7278,'Basque','default',115,'eu'), (7280,'Belarusian','default',115,'bel'), (7281,'Bengali','default',115,'bn'), (7282,'Bosnian','default',115,'bs'), (7283,'Brazilian Portuguese','default',115,'pt-br'), (7284,'Breton','default',115,'br'), (7285,'Bulgarian','default',115,'bg'), (7286,'Burmese','default',115,'mya'), (7287,'Catalan','default',115,'ca'), (7288,'Catalan (Balear)','default',115,'bal'), (7289,'Chilean Spanish','default',115,'es-cl'), (7290,'Chinese (China)','default',115,'zh-cn'), (7291,'Chinese (Taiwan)','default',115,'zh-tw'), (7292,'Corsican','default',115,'co'), (7293,'Croatian','default',115,'hr'), (7294,'Czech','default',115,'cs'), (7295,'Danish','default',115,'da'), (7296,'Divehi','default',115,'dv'), (7297,'Dutch','default',115,'nl'), (7298,'Dzongkha','default',115,'dzo'), (7299,'English (Canada)','default',115,'en-ca'), (7300,'English (UK)','default',115,'en-gb'), (7301,'Esperanto','default',115,'eo'), (7302,'Estonian','default',115,'et'), (7303,'Faroese','default',115,'fo'), (7304,'Finnish','default',115,'fi'), (7305,'French','default',115,'fr'), (7306,'Frisian','default',115,'fy'), (7307,'Galician','default',115,'gl'), (7308,'Georgian','default',115,'ka'), (7309,'German','default',115,'de'), (7310,'German (Formal)','formal',115,'de'), (7311,'Greek','default',115,'el'), (7312,'Gujarati','default',115,'gu'), (7313,'Hawaiian','default',115,'haw'), (7314,'Hazaragi','default',115,'haz'), (7315,'Hebrew','default',115,'he'), (7316,'Hindi','default',115,'hi'), (7317,'Hungarian','default',115,'hu'), (7318,'Icelandic','default',115,'is'), (7319,'Indonesian','default',115,'id'), (7320,'Irish','default',115,'ga'), (7321,'Italian','default',115,'it'), (7322,'Japanese','default',115,'ja'), (7323,'Javanese','default',115,'jv'), (7324,'Kannada','default',115,'kn'), (7325,'Kazakh','default',115,'kk'), (7326,'Khmer','default',115,'km'), (7327,'Kirghiz','default',115,'ky'), (7328,'Korean','default',115,'ko'), (7329,'Kurdish','default',115,'ckb'), (7330,'Kurdish (Kurmanji)','default',115,'ku'), (7331,'Lao','default',115,'lo'), (7332,'Latin','default',115,'la'), (7333,'Latvian','default',115,'lv'), (7334,'Limburgish','default',115,'li'), (7335,'Lithuanian','default',115,'lt'), (7336,'Luxembourgish','default',115,'lb'), (7337,'Macedonian','default',115,'mk'), (7338,'Malagasy','default',115,'mg'), (7339,'Malay','default',115,'ms'), (7340,'Malayalam','default',115,'ml'), (7342,'Marathi','default',115,'mr'), (7343,'Mongolian','default',115,'mn'), (7344,'Montenegrin','default',115,'me'), (7345,'Nepali','default',115,'ne'), (7346,'Norwegian (BokmÃ¥l)','default',115,'nb'), (7347,'Norwegian (Nynorsk)','default',115,'nn'), (7348,'Ossetic','default',115,'os'), (7349,'Persian','default',115,'fa'), (7350,'Persian (Afghanistan)','default',115,'fa-af'), (7351,'Peruvian Spanish','default',115,'es-pe'), (7352,'Polish','default',115,'pl'), (7353,'Portuguese','default',115,'pt'), (7354,'Portuguese Informal','informal',115,'pt'), (7355,'Punjabi','default',115,'pa'), (7356,'Romanian','default',115,'ro'), (7357,'Russian','default',115,'ru'), (7358,'Sanskrit','default',115,'sa-in'), (7359,'Sardinian','default',115,'srd'), (7360,'Scottish Gaelic','default',115,'gd'), (7361,'Serbian','default',115,'sr'), (7362,'Sinhala','default',115,'si'), (7363,'Slovak','default',115,'sk'), (7364,'Slovenian','default',115,'sl'), (7365,'Somali','default',115,'so'), (7366,'South Azerbaijani','default',115,'azb'), (7367,'Spanish','default',115,'es'), (7368,'Sundanese','default',115,'su'), (7369,'Swahili','default',115,'sw'), (7370,'Swedish','default',115,'sv'), (7371,'Swiss German','default',115,'gsw'), (7372,'Tagalog','default',115,'tl'), (7373,'Tajik','default',115,'tg'), (7374,'Tamazight (Central Atlas)','default',115,'tzm'), (7375,'Tamil','default',115,'ta'), (7376,'Tamil (Sri Lanka)','default',115,'ta-lk'), (7377,'Telugu','default',115,'te'), (7378,'Thai','default',115,'th'), (7379,'Tibetan','default',115,'bo'), (7380,'Turkish','default',115,'tr'), (7381,'Turkmen','default',115,'tuk'), (7382,'Uighur','default',115,'ug'), (7383,'Ukrainian','default',115,'uk'), (7384,'Urdu','default',115,'ur'), (7385,'Uzbek','default',115,'uz'), (7386,'Venezuelan Spanish','default',115,'es-ve'), (7387,'Vietnamese','default',115,'vi'), (7388,'Welsh','default',115,'cy'), (7390,'Afrikaans','default',116,'af'), (7391,'Albanian','default',116,'sq'), (7392,'Amharic','default',116,'am'), (7393,'Arabic','default',116,'ar'), (7394,'Aragonese','default',116,'an'), (7395,'Armenian','default',116,'hy'), (7396,'Assamese','default',116,'as'), (7397,'Azerbaijani','default',116,'az'), (7398,'Azerbaijani (Turkey)','default',116,'az-tr'), (7399,'Basque','default',116,'eu'), (7401,'Belarusian','default',116,'bel'), (7402,'Bengali','default',116,'bn'), (7403,'Bosnian','default',116,'bs'), (7404,'Brazilian Portuguese','default',116,'pt-br'), (7405,'Breton','default',116,'br'), (7406,'Bulgarian','default',116,'bg'), (7407,'Burmese','default',116,'mya'), (7408,'Catalan','default',116,'ca'), (7409,'Catalan (Balear)','default',116,'bal'), (7410,'Chilean Spanish','default',116,'es-cl'), (7411,'Chinese (China)','default',116,'zh-cn'), (7412,'Chinese (Taiwan)','default',116,'zh-tw'), (7413,'Corsican','default',116,'co'), (7414,'Croatian','default',116,'hr'), (7415,'Czech','default',116,'cs'), (7416,'Danish','default',116,'da'), (7417,'Divehi','default',116,'dv'), (7418,'Dutch','default',116,'nl'), (7419,'Dzongkha','default',116,'dzo'), (7420,'English (Canada)','default',116,'en-ca'), (7421,'English (UK)','default',116,'en-gb'), (7422,'Esperanto','default',116,'eo'), (7423,'Estonian','default',116,'et'), (7424,'Faroese','default',116,'fo'), (7425,'Finnish','default',116,'fi'), (7426,'French','default',116,'fr'), (7427,'Frisian','default',116,'fy'), (7428,'Galician','default',116,'gl'), (7429,'Georgian','default',116,'ka'), (7430,'German','default',116,'de'), (7431,'German (Formal)','formal',116,'de'), (7432,'Greek','default',116,'el'), (7433,'Gujarati','default',116,'gu'), (7434,'Hawaiian','default',116,'haw'), (7435,'Hazaragi','default',116,'haz'), (7436,'Hebrew','default',116,'he'), (7437,'Hindi','default',116,'hi'), (7438,'Hungarian','default',116,'hu'), (7439,'Icelandic','default',116,'is'), (7440,'Indonesian','default',116,'id'), (7441,'Irish','default',116,'ga'), (7442,'Italian','default',116,'it'), (7443,'Japanese','default',116,'ja'), (7444,'Javanese','default',116,'jv'), (7445,'Kannada','default',116,'kn'), (7446,'Kazakh','default',116,'kk'), (7447,'Khmer','default',116,'km'), (7448,'Kirghiz','default',116,'ky'), (7449,'Korean','default',116,'ko'), (7450,'Kurdish','default',116,'ckb'), (7451,'Kurdish (Kurmanji)','default',116,'ku'), (7452,'Lao','default',116,'lo'), (7453,'Latin','default',116,'la'), (7454,'Latvian','default',116,'lv'), (7455,'Limburgish','default',116,'li'), (7456,'Lithuanian','default',116,'lt'), (7457,'Luxembourgish','default',116,'lb'), (7458,'Macedonian','default',116,'mk'), (7459,'Malagasy','default',116,'mg'), (7460,'Malay','default',116,'ms'), (7461,'Malayalam','default',116,'ml'), (7463,'Marathi','default',116,'mr'), (7464,'Mongolian','default',116,'mn'), (7465,'Montenegrin','default',116,'me'), (7466,'Nepali','default',116,'ne'), (7467,'Norwegian (BokmÃ¥l)','default',116,'nb'), (7468,'Norwegian (Nynorsk)','default',116,'nn'), (7469,'Ossetic','default',116,'os'), (7470,'Persian','default',116,'fa'), (7471,'Persian (Afghanistan)','default',116,'fa-af'), (7472,'Peruvian Spanish','default',116,'es-pe'), (7473,'Polish','default',116,'pl'), (7474,'Portuguese','default',116,'pt'), (7475,'Portuguese Informal','informal',116,'pt'), (7476,'Punjabi','default',116,'pa'), (7477,'Romanian','default',116,'ro'), (7478,'Russian','default',116,'ru'), (7479,'Sanskrit','default',116,'sa-in'), (7480,'Sardinian','default',116,'srd'), (7481,'Scottish Gaelic','default',116,'gd'), (7482,'Serbian','default',116,'sr'), (7483,'Sinhala','default',116,'si'), (7484,'Slovak','default',116,'sk'), (7485,'Slovenian','default',116,'sl'), (7486,'Somali','default',116,'so'), (7487,'South Azerbaijani','default',116,'azb'), (7488,'Spanish','default',116,'es'), (7489,'Sundanese','default',116,'su'), (7490,'Swahili','default',116,'sw'), (7491,'Swedish','default',116,'sv'), (7492,'Swiss German','default',116,'gsw'), (7493,'Tagalog','default',116,'tl'), (7494,'Tajik','default',116,'tg'), (7495,'Tamazight (Central Atlas)','default',116,'tzm'), (7496,'Tamil','default',116,'ta'), (7497,'Tamil (Sri Lanka)','default',116,'ta-lk'), (7498,'Telugu','default',116,'te'), (7499,'Thai','default',116,'th'), (7500,'Tibetan','default',116,'bo'), (7501,'Turkish','default',116,'tr'), (7502,'Turkmen','default',116,'tuk'), (7503,'Uighur','default',116,'ug'), (7504,'Ukrainian','default',116,'uk'), (7505,'Urdu','default',116,'ur'), (7506,'Uzbek','default',116,'uz'), (7507,'Venezuelan Spanish','default',116,'es-ve'), (7508,'Vietnamese','default',116,'vi'), (7509,'Welsh','default',116,'cy'), (7511,'Afrikaans','default',117,'af'), (7512,'Albanian','default',117,'sq'), (7513,'Amharic','default',117,'am'), (7514,'Arabic','default',117,'ar'), (7515,'Aragonese','default',117,'an'), (7516,'Armenian','default',117,'hy'), (7517,'Assamese','default',117,'as'), (7518,'Azerbaijani','default',117,'az'), (7519,'Azerbaijani (Turkey)','default',117,'az-tr'), (7520,'Basque','default',117,'eu'), (7522,'Belarusian','default',117,'bel'), (7523,'Bengali','default',117,'bn'), (7524,'Bosnian','default',117,'bs'), (7525,'Brazilian Portuguese','default',117,'pt-br'), (7526,'Breton','default',117,'br'), (7527,'Bulgarian','default',117,'bg'), (7528,'Burmese','default',117,'mya'), (7529,'Catalan','default',117,'ca'), (7530,'Catalan (Balear)','default',117,'bal'), (7531,'Chilean Spanish','default',117,'es-cl'), (7532,'Chinese (China)','default',117,'zh-cn'), (7533,'Chinese (Taiwan)','default',117,'zh-tw'), (7534,'Corsican','default',117,'co'), (7535,'Croatian','default',117,'hr'), (7536,'Czech','default',117,'cs'), (7537,'Danish','default',117,'da'), (7538,'Divehi','default',117,'dv'), (7539,'Dutch','default',117,'nl'), (7540,'Dzongkha','default',117,'dzo'), (7541,'English (Canada)','default',117,'en-ca'), (7542,'English (UK)','default',117,'en-gb'), (7543,'Esperanto','default',117,'eo'), (7544,'Estonian','default',117,'et'), (7545,'Faroese','default',117,'fo'), (7546,'Finnish','default',117,'fi'), (7547,'French','default',117,'fr'), (7548,'Frisian','default',117,'fy'), (7549,'Galician','default',117,'gl'), (7550,'Georgian','default',117,'ka'), (7551,'German','default',117,'de'), (7552,'German (Formal)','formal',117,'de'), (7553,'Greek','default',117,'el'), (7554,'Gujarati','default',117,'gu'), (7555,'Hawaiian','default',117,'haw'), (7556,'Hazaragi','default',117,'haz'), (7557,'Hebrew','default',117,'he'), (7558,'Hindi','default',117,'hi'), (7559,'Hungarian','default',117,'hu'), (7560,'Icelandic','default',117,'is'), (7561,'Indonesian','default',117,'id'), (7562,'Irish','default',117,'ga'), (7563,'Italian','default',117,'it'), (7564,'Japanese','default',117,'ja'), (7565,'Javanese','default',117,'jv'), (7566,'Kannada','default',117,'kn'), (7567,'Kazakh','default',117,'kk'), (7568,'Khmer','default',117,'km'), (7569,'Kirghiz','default',117,'ky'), (7570,'Korean','default',117,'ko'), (7571,'Kurdish','default',117,'ckb'), (7572,'Kurdish (Kurmanji)','default',117,'ku'), (7573,'Lao','default',117,'lo'), (7574,'Latin','default',117,'la'), (7575,'Latvian','default',117,'lv'), (7576,'Limburgish','default',117,'li'), (7577,'Lithuanian','default',117,'lt'), (7578,'Luxembourgish','default',117,'lb'), (7579,'Macedonian','default',117,'mk'), (7580,'Malagasy','default',117,'mg'), (7581,'Malay','default',117,'ms'), (7582,'Malayalam','default',117,'ml'), (7584,'Marathi','default',117,'mr'), (7585,'Mongolian','default',117,'mn'), (7586,'Montenegrin','default',117,'me'), (7587,'Nepali','default',117,'ne'), (7588,'Norwegian (BokmÃ¥l)','default',117,'nb'), (7589,'Norwegian (Nynorsk)','default',117,'nn'), (7590,'Ossetic','default',117,'os'), (7591,'Persian','default',117,'fa'), (7592,'Persian (Afghanistan)','default',117,'fa-af'), (7593,'Peruvian Spanish','default',117,'es-pe'), (7594,'Polish','default',117,'pl'), (7595,'Portuguese','default',117,'pt'), (7596,'Portuguese Informal','informal',117,'pt'), (7597,'Punjabi','default',117,'pa'), (7598,'Romanian','default',117,'ro'), (7599,'Russian','default',117,'ru'), (7600,'Sanskrit','default',117,'sa-in'), (7601,'Sardinian','default',117,'srd'), (7602,'Scottish Gaelic','default',117,'gd'), (7603,'Serbian','default',117,'sr'), (7604,'Sinhala','default',117,'si'), (7605,'Slovak','default',117,'sk'), (7606,'Slovenian','default',117,'sl'), (7607,'Somali','default',117,'so'), (7608,'South Azerbaijani','default',117,'azb'), (7609,'Spanish','default',117,'es'), (7610,'Sundanese','default',117,'su'), (7611,'Swahili','default',117,'sw'), (7612,'Swedish','default',117,'sv'), (7613,'Swiss German','default',117,'gsw'), (7614,'Tagalog','default',117,'tl'), (7615,'Tajik','default',117,'tg'), (7616,'Tamazight (Central Atlas)','default',117,'tzm'), (7617,'Tamil','default',117,'ta'), (7618,'Tamil (Sri Lanka)','default',117,'ta-lk'), (7619,'Telugu','default',117,'te'), (7620,'Thai','default',117,'th'), (7621,'Tibetan','default',117,'bo'), (7622,'Turkish','default',117,'tr'), (7623,'Turkmen','default',117,'tuk'), (7624,'Uighur','default',117,'ug'), (7625,'Ukrainian','default',117,'uk'), (7626,'Urdu','default',117,'ur'), (7627,'Uzbek','default',117,'uz'), (7628,'Venezuelan Spanish','default',117,'es-ve'), (7629,'Vietnamese','default',117,'vi'), (7630,'Welsh','default',117,'cy'), (7632,'Afrikaans','default',120,'af'), (7633,'Albanian','default',120,'sq'), (7634,'Amharic','default',120,'am'), (7635,'Arabic','default',120,'ar'), (7636,'Aragonese','default',120,'an'), (7637,'Armenian','default',120,'hy'), (7638,'Assamese','default',120,'as'), (7639,'Azerbaijani','default',120,'az'), (7640,'Azerbaijani (Turkey)','default',120,'az-tr'), (7641,'Basque','default',120,'eu'), (7643,'Belarusian','default',120,'bel'), (7644,'Bengali','default',120,'bn'), (7645,'Bosnian','default',120,'bs'), (7646,'Brazilian Portuguese','default',120,'pt-br'), (7647,'Breton','default',120,'br'), (7648,'Bulgarian','default',120,'bg'), (7649,'Burmese','default',120,'mya'), (7650,'Catalan','default',120,'ca'), (7651,'Catalan (Balear)','default',120,'bal'), (7652,'Chilean Spanish','default',120,'es-cl'), (7653,'Chinese (China)','default',120,'zh-cn'), (7654,'Chinese (Taiwan)','default',120,'zh-tw'), (7655,'Corsican','default',120,'co'), (7656,'Croatian','default',120,'hr'), (7657,'Czech','default',120,'cs'), (7658,'Danish','default',120,'da'), (7659,'Divehi','default',120,'dv'), (7660,'Dutch','default',120,'nl'), (7661,'Dzongkha','default',120,'dzo'), (7662,'English (Canada)','default',120,'en-ca'), (7663,'English (UK)','default',120,'en-gb'), (7664,'Esperanto','default',120,'eo'), (7665,'Estonian','default',120,'et'), (7666,'Faroese','default',120,'fo'), (7667,'Finnish','default',120,'fi'), (7668,'French','default',120,'fr'), (7669,'Frisian','default',120,'fy'), (7670,'Galician','default',120,'gl'), (7671,'Georgian','default',120,'ka'), (7672,'German','default',120,'de'), (7673,'German (Formal)','formal',120,'de'), (7674,'Greek','default',120,'el'), (7675,'Gujarati','default',120,'gu'), (7676,'Hawaiian','default',120,'haw'), (7677,'Hazaragi','default',120,'haz'), (7678,'Hebrew','default',120,'he'), (7679,'Hindi','default',120,'hi'), (7680,'Hungarian','default',120,'hu'), (7681,'Icelandic','default',120,'is'), (7682,'Indonesian','default',120,'id'), (7683,'Irish','default',120,'ga'), (7684,'Italian','default',120,'it'), (7685,'Japanese','default',120,'ja'), (7686,'Javanese','default',120,'jv'), (7687,'Kannada','default',120,'kn'), (7688,'Kazakh','default',120,'kk'), (7689,'Khmer','default',120,'km'), (7690,'Kirghiz','default',120,'ky'), (7691,'Korean','default',120,'ko'), (7692,'Kurdish','default',120,'ckb'), (7693,'Kurdish (Kurmanji)','default',120,'ku'), (7694,'Lao','default',120,'lo'), (7695,'Latin','default',120,'la'), (7696,'Latvian','default',120,'lv'), (7697,'Limburgish','default',120,'li'), (7698,'Lithuanian','default',120,'lt'), (7699,'Luxembourgish','default',120,'lb'), (7700,'Macedonian','default',120,'mk'), (7701,'Malagasy','default',120,'mg'), (7702,'Malay','default',120,'ms'), (7703,'Malayalam','default',120,'ml'), (7705,'Marathi','default',120,'mr'), (7706,'Mongolian','default',120,'mn'), (7707,'Montenegrin','default',120,'me'), (7708,'Nepali','default',120,'ne'), (7709,'Norwegian (BokmÃ¥l)','default',120,'nb'), (7710,'Norwegian (Nynorsk)','default',120,'nn'), (7711,'Ossetic','default',120,'os'), (7712,'Persian','default',120,'fa'), (7713,'Persian (Afghanistan)','default',120,'fa-af'), (7714,'Peruvian Spanish','default',120,'es-pe'), (7715,'Polish','default',120,'pl'), (7716,'Portuguese','default',120,'pt'), (7717,'Portuguese Informal','informal',120,'pt'), (7718,'Punjabi','default',120,'pa'), (7719,'Romanian','default',120,'ro'), (7720,'Russian','default',120,'ru'), (7721,'Sanskrit','default',120,'sa-in'), (7722,'Sardinian','default',120,'srd'), (7723,'Scottish Gaelic','default',120,'gd'), (7724,'Serbian','default',120,'sr'), (7725,'Sinhala','default',120,'si'), (7726,'Slovak','default',120,'sk'), (7727,'Slovenian','default',120,'sl'), (7728,'Somali','default',120,'so'), (7729,'South Azerbaijani','default',120,'azb'), (7730,'Spanish','default',120,'es'), (7731,'Sundanese','default',120,'su'), (7732,'Swahili','default',120,'sw'), (7733,'Swedish','default',120,'sv'), (7734,'Swiss German','default',120,'gsw'), (7735,'Tagalog','default',120,'tl'), (7736,'Tajik','default',120,'tg'), (7737,'Tamazight (Central Atlas)','default',120,'tzm'), (7738,'Tamil','default',120,'ta'), (7739,'Tamil (Sri Lanka)','default',120,'ta-lk'), (7740,'Telugu','default',120,'te'), (7741,'Thai','default',120,'th'), (7742,'Tibetan','default',120,'bo'), (7743,'Turkish','default',120,'tr'), (7744,'Turkmen','default',120,'tuk'), (7745,'Uighur','default',120,'ug'), (7746,'Ukrainian','default',120,'uk'), (7747,'Urdu','default',120,'ur'), (7748,'Uzbek','default',120,'uz'), (7749,'Venezuelan Spanish','default',120,'es-ve'), (7750,'Vietnamese','default',120,'vi'), (7751,'Welsh','default',120,'cy'), (7753,'Afrikaans','default',118,'af'), (7754,'Albanian','default',118,'sq'), (7755,'Amharic','default',118,'am'), (7756,'Arabic','default',118,'ar'), (7757,'Aragonese','default',118,'an'), (7758,'Armenian','default',118,'hy'), (7759,'Assamese','default',118,'as'), (7760,'Azerbaijani','default',118,'az'), (7761,'Azerbaijani (Turkey)','default',118,'az-tr'), (7762,'Basque','default',118,'eu'), (7764,'Belarusian','default',118,'bel'), (7765,'Bengali','default',118,'bn'), (7766,'Bosnian','default',118,'bs'), (7767,'Brazilian Portuguese','default',118,'pt-br'), (7768,'Breton','default',118,'br'), (7769,'Bulgarian','default',118,'bg'), (7770,'Burmese','default',118,'mya'), (7771,'Catalan','default',118,'ca'), (7772,'Catalan (Balear)','default',118,'bal'), (7773,'Chilean Spanish','default',118,'es-cl'), (7774,'Chinese (China)','default',118,'zh-cn'), (7775,'Chinese (Taiwan)','default',118,'zh-tw'), (7776,'Corsican','default',118,'co'), (7777,'Croatian','default',118,'hr'), (7778,'Czech','default',118,'cs'), (7779,'Danish','default',118,'da'), (7780,'Divehi','default',118,'dv'), (7781,'Dutch','default',118,'nl'), (7782,'Dzongkha','default',118,'dzo'), (7783,'English (Canada)','default',118,'en-ca'), (7784,'English (UK)','default',118,'en-gb'), (7785,'Esperanto','default',118,'eo'), (7786,'Estonian','default',118,'et'), (7787,'Faroese','default',118,'fo'), (7788,'Finnish','default',118,'fi'), (7789,'French','default',118,'fr'), (7790,'Frisian','default',118,'fy'), (7791,'Galician','default',118,'gl'), (7792,'Georgian','default',118,'ka'), (7793,'German','default',118,'de'), (7794,'German (Formal)','formal',118,'de'), (7795,'Greek','default',118,'el'), (7796,'Gujarati','default',118,'gu'), (7797,'Hawaiian','default',118,'haw'), (7798,'Hazaragi','default',118,'haz'), (7799,'Hebrew','default',118,'he'), (7800,'Hindi','default',118,'hi'), (7801,'Hungarian','default',118,'hu'), (7802,'Icelandic','default',118,'is'), (7803,'Indonesian','default',118,'id'), (7804,'Irish','default',118,'ga'), (7805,'Italian','default',118,'it'), (7806,'Japanese','default',118,'ja'), (7807,'Javanese','default',118,'jv'), (7808,'Kannada','default',118,'kn'), (7809,'Kazakh','default',118,'kk'), (7810,'Khmer','default',118,'km'), (7811,'Kirghiz','default',118,'ky'), (7812,'Korean','default',118,'ko'), (7813,'Kurdish','default',118,'ckb'), (7814,'Kurdish (Kurmanji)','default',118,'ku'), (7815,'Lao','default',118,'lo'), (7816,'Latin','default',118,'la'), (7817,'Latvian','default',118,'lv'), (7818,'Limburgish','default',118,'li'), (7819,'Lithuanian','default',118,'lt'), (7820,'Luxembourgish','default',118,'lb'), (7821,'Macedonian','default',118,'mk'), (7822,'Malagasy','default',118,'mg'), (7823,'Malay','default',118,'ms'), (7824,'Malayalam','default',118,'ml'), (7826,'Marathi','default',118,'mr'), (7827,'Mongolian','default',118,'mn'), (7828,'Montenegrin','default',118,'me'), (7829,'Nepali','default',118,'ne'), (7830,'Norwegian (BokmÃ¥l)','default',118,'nb'), (7831,'Norwegian (Nynorsk)','default',118,'nn'), (7832,'Ossetic','default',118,'os'), (7833,'Persian','default',118,'fa'), (7834,'Persian (Afghanistan)','default',118,'fa-af'), (7835,'Peruvian Spanish','default',118,'es-pe'), (7836,'Polish','default',118,'pl'), (7837,'Portuguese','default',118,'pt'), (7838,'Portuguese Informal','informal',118,'pt'), (7839,'Punjabi','default',118,'pa'), (7840,'Romanian','default',118,'ro'), (7841,'Russian','default',118,'ru'), (7842,'Sanskrit','default',118,'sa-in'), (7843,'Sardinian','default',118,'srd'), (7844,'Scottish Gaelic','default',118,'gd'), (7845,'Serbian','default',118,'sr'), (7846,'Sinhala','default',118,'si'), (7847,'Slovak','default',118,'sk'), (7848,'Slovenian','default',118,'sl'), (7849,'Somali','default',118,'so'), (7850,'South Azerbaijani','default',118,'azb'), (7851,'Spanish','default',118,'es'), (7852,'Sundanese','default',118,'su'), (7853,'Swahili','default',118,'sw'), (7854,'Swedish','default',118,'sv'), (7855,'Swiss German','default',118,'gsw'), (7856,'Tagalog','default',118,'tl'), (7857,'Tajik','default',118,'tg'), (7858,'Tamazight (Central Atlas)','default',118,'tzm'), (7859,'Tamil','default',118,'ta'), (7860,'Tamil (Sri Lanka)','default',118,'ta-lk'), (7861,'Telugu','default',118,'te'), (7862,'Thai','default',118,'th'), (7863,'Tibetan','default',118,'bo'), (7864,'Turkish','default',118,'tr'), (7865,'Turkmen','default',118,'tuk'), (7866,'Uighur','default',118,'ug'), (7867,'Ukrainian','default',118,'uk'), (7868,'Urdu','default',118,'ur'), (7869,'Uzbek','default',118,'uz'), (7870,'Venezuelan Spanish','default',118,'es-ve'), (7871,'Vietnamese','default',118,'vi'), (7872,'Welsh','default',118,'cy'), (7874,'Afrikaans','default',119,'af'), (7875,'Albanian','default',119,'sq'), (7876,'Amharic','default',119,'am'), (7877,'Arabic','default',119,'ar'), (7878,'Aragonese','default',119,'an'), (7879,'Armenian','default',119,'hy'), (7880,'Assamese','default',119,'as'), (7881,'Azerbaijani','default',119,'az'), (7882,'Azerbaijani (Turkey)','default',119,'az-tr'), (7883,'Basque','default',119,'eu'), (7885,'Belarusian','default',119,'bel'), (7886,'Bengali','default',119,'bn'), (7887,'Bosnian','default',119,'bs'), (7888,'Brazilian Portuguese','default',119,'pt-br'), (7889,'Breton','default',119,'br'), (7890,'Bulgarian','default',119,'bg'), (7891,'Burmese','default',119,'mya'), (7892,'Catalan','default',119,'ca'), (7893,'Catalan (Balear)','default',119,'bal'), (7894,'Chilean Spanish','default',119,'es-cl'), (7895,'Chinese (China)','default',119,'zh-cn'), (7896,'Chinese (Taiwan)','default',119,'zh-tw'), (7897,'Corsican','default',119,'co'), (7898,'Croatian','default',119,'hr'), (7899,'Czech','default',119,'cs'), (7900,'Danish','default',119,'da'), (7901,'Divehi','default',119,'dv'), (7902,'Dutch','default',119,'nl'), (7903,'Dzongkha','default',119,'dzo'), (7904,'English (Canada)','default',119,'en-ca'), (7905,'English (UK)','default',119,'en-gb'), (7906,'Esperanto','default',119,'eo'), (7907,'Estonian','default',119,'et'), (7908,'Faroese','default',119,'fo'), (7909,'Finnish','default',119,'fi'), (7910,'French','default',119,'fr'), (7911,'Frisian','default',119,'fy'), (7912,'Galician','default',119,'gl'), (7913,'Georgian','default',119,'ka'), (7914,'German','default',119,'de'), (7915,'German (Formal)','formal',119,'de'), (7916,'Greek','default',119,'el'), (7917,'Gujarati','default',119,'gu'), (7918,'Hawaiian','default',119,'haw'), (7919,'Hazaragi','default',119,'haz'), (7920,'Hebrew','default',119,'he'), (7921,'Hindi','default',119,'hi'), (7922,'Hungarian','default',119,'hu'), (7923,'Icelandic','default',119,'is'), (7924,'Indonesian','default',119,'id'), (7925,'Irish','default',119,'ga'), (7926,'Italian','default',119,'it'), (7927,'Japanese','default',119,'ja'), (7928,'Javanese','default',119,'jv'), (7929,'Kannada','default',119,'kn'), (7930,'Kazakh','default',119,'kk'), (7931,'Khmer','default',119,'km'), (7932,'Kirghiz','default',119,'ky'), (7933,'Korean','default',119,'ko'), (7934,'Kurdish','default',119,'ckb'), (7935,'Kurdish (Kurmanji)','default',119,'ku'), (7936,'Lao','default',119,'lo'), (7937,'Latin','default',119,'la'), (7938,'Latvian','default',119,'lv'), (7939,'Limburgish','default',119,'li'), (7940,'Lithuanian','default',119,'lt'), (7941,'Luxembourgish','default',119,'lb'), (7942,'Macedonian','default',119,'mk'), (7943,'Malagasy','default',119,'mg'), (7944,'Malay','default',119,'ms'), (7945,'Malayalam','default',119,'ml'), (7947,'Marathi','default',119,'mr'), (7948,'Mongolian','default',119,'mn'), (7949,'Montenegrin','default',119,'me'), (7950,'Nepali','default',119,'ne'), (7951,'Norwegian (BokmÃ¥l)','default',119,'nb'), (7952,'Norwegian (Nynorsk)','default',119,'nn'), (7953,'Ossetic','default',119,'os'), (7954,'Persian','default',119,'fa'), (7955,'Persian (Afghanistan)','default',119,'fa-af'), (7956,'Peruvian Spanish','default',119,'es-pe'), (7957,'Polish','default',119,'pl'), (7958,'Portuguese','default',119,'pt'), (7959,'Portuguese Informal','informal',119,'pt'), (7960,'Punjabi','default',119,'pa'), (7961,'Romanian','default',119,'ro'), (7962,'Russian','default',119,'ru'), (7963,'Sanskrit','default',119,'sa-in'), (7964,'Sardinian','default',119,'srd'), (7965,'Scottish Gaelic','default',119,'gd'), (7966,'Serbian','default',119,'sr'), (7967,'Sinhala','default',119,'si'), (7968,'Slovak','default',119,'sk'), (7969,'Slovenian','default',119,'sl'), (7970,'Somali','default',119,'so'), (7971,'South Azerbaijani','default',119,'azb'), (7972,'Spanish','default',119,'es'), (7973,'Sundanese','default',119,'su'), (7974,'Swahili','default',119,'sw'), (7975,'Swedish','default',119,'sv'), (7976,'Swiss German','default',119,'gsw'), (7977,'Tagalog','default',119,'tl'), (7978,'Tajik','default',119,'tg'), (7979,'Tamazight (Central Atlas)','default',119,'tzm'), (7980,'Tamil','default',119,'ta'), (7981,'Tamil (Sri Lanka)','default',119,'ta-lk'), (7982,'Telugu','default',119,'te'), (7983,'Thai','default',119,'th'), (7984,'Tibetan','default',119,'bo'), (7985,'Turkish','default',119,'tr'), (7986,'Turkmen','default',119,'tuk'), (7987,'Uighur','default',119,'ug'), (7988,'Ukrainian','default',119,'uk'), (7989,'Urdu','default',119,'ur'), (7990,'Uzbek','default',119,'uz'), (7991,'Venezuelan Spanish','default',119,'es-ve'), (7992,'Vietnamese','default',119,'vi'), (7993,'Welsh','default',119,'cy'), (7995,'Afrikaans','default',121,'af'), (7996,'Albanian','default',121,'sq'), (7997,'Amharic','default',121,'am'), (7998,'Arabic','default',121,'ar'), (7999,'Aragonese','default',121,'an'), (8000,'Armenian','default',121,'hy'), (8001,'Assamese','default',121,'as'), (8002,'Azerbaijani','default',121,'az'), (8003,'Azerbaijani (Turkey)','default',121,'az-tr'), (8004,'Basque','default',121,'eu'), (8006,'Belarusian','default',121,'bel'), (8007,'Bengali','default',121,'bn'), (8008,'Bosnian','default',121,'bs'), (8009,'Brazilian Portuguese','default',121,'pt-br'), (8010,'Breton','default',121,'br'), (8011,'Bulgarian','default',121,'bg'), (8012,'Burmese','default',121,'mya'), (8013,'Catalan','default',121,'ca'), (8014,'Catalan (Balear)','default',121,'bal'), (8015,'Chilean Spanish','default',121,'es-cl'), (8016,'Chinese (China)','default',121,'zh-cn'), (8017,'Chinese (Taiwan)','default',121,'zh-tw'), (8018,'Corsican','default',121,'co'), (8019,'Croatian','default',121,'hr'), (8020,'Czech','default',121,'cs'), (8021,'Danish','default',121,'da'), (8022,'Divehi','default',121,'dv'), (8023,'Dutch','default',121,'nl'), (8024,'Dzongkha','default',121,'dzo'), (8025,'English (Canada)','default',121,'en-ca'), (8026,'English (UK)','default',121,'en-gb'), (8027,'Esperanto','default',121,'eo'), (8028,'Estonian','default',121,'et'), (8029,'Faroese','default',121,'fo'), (8030,'Finnish','default',121,'fi'), (8031,'French','default',121,'fr'), (8032,'Frisian','default',121,'fy'), (8033,'Galician','default',121,'gl'), (8034,'Georgian','default',121,'ka'), (8035,'German','default',121,'de'), (8036,'German (Formal)','formal',121,'de'), (8037,'Greek','default',121,'el'), (8038,'Gujarati','default',121,'gu'), (8039,'Hawaiian','default',121,'haw'), (8040,'Hazaragi','default',121,'haz'), (8041,'Hebrew','default',121,'he'), (8042,'Hindi','default',121,'hi'), (8043,'Hungarian','default',121,'hu'), (8044,'Icelandic','default',121,'is'), (8045,'Indonesian','default',121,'id'), (8046,'Irish','default',121,'ga'), (8047,'Italian','default',121,'it'), (8048,'Japanese','default',121,'ja'), (8049,'Javanese','default',121,'jv'), (8050,'Kannada','default',121,'kn'), (8051,'Kazakh','default',121,'kk'), (8052,'Khmer','default',121,'km'), (8053,'Kirghiz','default',121,'ky'), (8054,'Korean','default',121,'ko'), (8055,'Kurdish','default',121,'ckb'), (8056,'Kurdish (Kurmanji)','default',121,'ku'), (8057,'Lao','default',121,'lo'), (8058,'Latin','default',121,'la'), (8059,'Latvian','default',121,'lv'), (8060,'Limburgish','default',121,'li'), (8061,'Lithuanian','default',121,'lt'), (8062,'Luxembourgish','default',121,'lb'), (8063,'Macedonian','default',121,'mk'), (8064,'Malagasy','default',121,'mg'), (8065,'Malay','default',121,'ms'), (8066,'Malayalam','default',121,'ml'), (8068,'Marathi','default',121,'mr'), (8069,'Mongolian','default',121,'mn'), (8070,'Montenegrin','default',121,'me'), (8071,'Nepali','default',121,'ne'), (8072,'Norwegian (BokmÃ¥l)','default',121,'nb'), (8073,'Norwegian (Nynorsk)','default',121,'nn'), (8074,'Ossetic','default',121,'os'), (8075,'Persian','default',121,'fa'), (8076,'Persian (Afghanistan)','default',121,'fa-af'), (8077,'Peruvian Spanish','default',121,'es-pe'), (8078,'Polish','default',121,'pl'), (8079,'Portuguese','default',121,'pt'), (8080,'Portuguese Informal','informal',121,'pt'), (8081,'Punjabi','default',121,'pa'), (8082,'Romanian','default',121,'ro'), (8083,'Russian','default',121,'ru'), (8084,'Sanskrit','default',121,'sa-in'), (8085,'Sardinian','default',121,'srd'), (8086,'Scottish Gaelic','default',121,'gd'), (8087,'Serbian','default',121,'sr'), (8088,'Sinhala','default',121,'si'), (8089,'Slovak','default',121,'sk'), (8090,'Slovenian','default',121,'sl'), (8091,'Somali','default',121,'so'), (8092,'South Azerbaijani','default',121,'azb'), (8093,'Spanish','default',121,'es'), (8094,'Sundanese','default',121,'su'), (8095,'Swahili','default',121,'sw'), (8096,'Swedish','default',121,'sv'), (8097,'Swiss German','default',121,'gsw'), (8098,'Tagalog','default',121,'tl'), (8099,'Tajik','default',121,'tg'), (8100,'Tamazight (Central Atlas)','default',121,'tzm'), (8101,'Tamil','default',121,'ta'), (8102,'Tamil (Sri Lanka)','default',121,'ta-lk'), (8103,'Telugu','default',121,'te'), (8104,'Thai','default',121,'th'), (8105,'Tibetan','default',121,'bo'), (8106,'Turkish','default',121,'tr'), (8107,'Turkmen','default',121,'tuk'), (8108,'Uighur','default',121,'ug'), (8109,'Ukrainian','default',121,'uk'), (8110,'Urdu','default',121,'ur'), (8111,'Uzbek','default',121,'uz'), (8112,'Venezuelan Spanish','default',121,'es-ve'), (8113,'Vietnamese','default',121,'vi'), (8114,'Welsh','default',121,'cy'), (8115,'Swiss German (Formal)','formal',2,'gsw'), (8116,'Swiss German (Formal)','formal',101,'gsw'), (8117,'Swiss German (Formal)','formal',80,'gsw'), (8118,'Swiss German (Formal)','formal',64,'gsw'), (8119,'Swiss German (Formal)','formal',55,'gsw'), (8120,'Swiss German (Formal)','formal',78,'gsw'), (8121,'Swiss German (Formal)','formal',79,'gsw'), (8122,'Swiss German (Formal)','formal',15,'gsw'), (8123,'English (Australia)','default',2,'en-au'), (8124,'English (Australia)','default',78,'en-au'), (8125,'English (Australia)','default',79,'en-au'), (8127,'German','default',67,'de'), (8128,'English (Australia)','default',80,'en-au'), (8129,'English (Australia)','default',101,'en-au'), (8130,'English (Australia)','default',55,'en-au'), (8131,'English (Australia)','default',15,'en-au'), (8132,'English (Australia)','default',113,'en-au'), (8133,'English (Australia)','default',59,'en-au'), (8134,'English (Australia)','default',14,'en-au'), (8135,'Pashto','default',66,'ps'), (8136,'Pashto','default',81,'ps'), (8137,'Pashto','default',2,'ps'), (8138,'Pashto','default',101,'ps'), (8139,'Pashto','default',80,'ps'), (8140,'Pashto','default',64,'ps'), (8141,'Pashto','default',55,'ps'), (8142,'Pashto','default',78,'ps'), (8143,'Pashto','default',79,'ps'), (8144,'Pashto','default',15,'ps'), (8145,'Spanish (Argentina)','default',2,'es-ar'), (8146,'Spanish (Argentina)','default',101,'es-ar'), (8147,'Spanish (Argentina)','default',80,'es-ar'), (8148,'Spanish (Argentina)','default',64,'es-ar'), (8149,'Spanish (Argentina)','default',55,'es-ar'), (8150,'Spanish (Argentina)','default',78,'es-ar'), (8151,'Spanish (Argentina)','default',79,'es-ar'), (8152,'Spanish (Argentina)','default',15,'es-ar'), (8153,'Spanish (Argentina)','default',66,'es-ar'), (8154,'English (Australia)','default',66,'en-au'), (8156,'Afrikaans','default',122,'af'), (8157,'Albanian','default',122,'sq'), (8158,'Amharic','default',122,'am'), (8159,'Arabic','default',122,'ar'), (8160,'Aragonese','default',122,'an'), (8161,'Armenian','default',122,'hy'), (8162,'Assamese','default',122,'as'), (8163,'Azerbaijani','default',122,'az'), (8164,'Azerbaijani (Turkey)','default',122,'az-tr'), (8165,'Basque','default',122,'eu'), (8167,'Belarusian','default',122,'bel'), (8168,'Bengali','default',122,'bn'), (8169,'Bosnian','default',122,'bs'), (8170,'Brazilian Portuguese','default',122,'pt-br'), (8171,'Breton','default',122,'br'), (8172,'Bulgarian','default',122,'bg'), (8173,'Burmese','default',122,'mya'), (8174,'Catalan','default',122,'ca'), (8175,'Catalan (Balear)','default',122,'bal'), (8176,'Chilean Spanish','default',122,'es-cl'), (8177,'Chinese (China)','default',122,'zh-cn'), (8178,'Chinese (Taiwan)','default',122,'zh-tw'), (8179,'Corsican','default',122,'co'), (8180,'Croatian','default',122,'hr'), (8181,'Czech','default',122,'cs'), (8182,'Danish','default',122,'da'), (8183,'Divehi','default',122,'dv'), (8184,'Dutch','default',122,'nl'), (8185,'Dzongkha','default',122,'dzo'), (8186,'English (Australia)','default',122,'en-au'), (8187,'English (Canada)','default',122,'en-ca'), (8188,'English (UK)','default',122,'en-gb'), (8189,'Esperanto','default',122,'eo'), (8190,'Estonian','default',122,'et'), (8191,'Faroese','default',122,'fo'), (8192,'Finnish','default',122,'fi'), (8193,'French','default',122,'fr'), (8194,'Frisian','default',122,'fy'), (8195,'Galician','default',122,'gl'), (8196,'Georgian','default',122,'ka'), (8197,'German','default',122,'de'), (8198,'German (Formal)','formal',122,'de'), (8199,'Greek','default',122,'el'), (8200,'Gujarati','default',122,'gu'), (8201,'Hawaiian','default',122,'haw'); INSERT INTO `translate_translation_sets` (`id`, `name`, `slug`, `project_id`, `locale`) VALUES (8202,'Hazaragi','default',122,'haz'), (8203,'Hebrew','default',122,'he'), (8204,'Hindi','default',122,'hi'), (8205,'Hungarian','default',122,'hu'), (8206,'Icelandic','default',122,'is'), (8207,'Indonesian','default',122,'id'), (8208,'Irish','default',122,'ga'), (8209,'Italian','default',122,'it'), (8210,'Japanese','default',122,'ja'), (8211,'Javanese','default',122,'jv'), (8212,'Kannada','default',122,'kn'), (8213,'Kazakh','default',122,'kk'), (8214,'Khmer','default',122,'km'), (8215,'Kirghiz','default',122,'ky'), (8216,'Korean','default',122,'ko'), (8217,'Kurdish','default',122,'ckb'), (8218,'Kurdish (Kurmanji)','default',122,'ku'), (8219,'Lao','default',122,'lo'), (8220,'Latin','default',122,'la'), (8221,'Latvian','default',122,'lv'), (8222,'Limburgish','default',122,'li'), (8223,'Lithuanian','default',122,'lt'), (8224,'Luxembourgish','default',122,'lb'), (8225,'Macedonian','default',122,'mk'), (8226,'Malagasy','default',122,'mg'), (8227,'Malay','default',122,'ms'), (8228,'Malayalam','default',122,'ml'), (8230,'Marathi','default',122,'mr'), (8231,'Mongolian','default',122,'mn'), (8232,'Montenegrin','default',122,'me'), (8233,'Nepali','default',122,'ne'), (8234,'Norwegian (BokmÃ¥l)','default',122,'nb'), (8235,'Norwegian (Nynorsk)','default',122,'nn'), (8236,'Ossetic','default',122,'os'), (8237,'Pashto','default',122,'ps'), (8238,'Persian','default',122,'fa'), (8239,'Persian (Afghanistan)','default',122,'fa-af'), (8240,'Peruvian Spanish','default',122,'es-pe'), (8241,'Polish','default',122,'pl'), (8242,'Portuguese','default',122,'pt'), (8243,'Portuguese Informal','informal',122,'pt'), (8244,'Punjabi','default',122,'pa'), (8245,'Romanian','default',122,'ro'), (8246,'Russian','default',122,'ru'), (8247,'Sanskrit','default',122,'sa-in'), (8248,'Sardinian','default',122,'srd'), (8249,'Scottish Gaelic','default',122,'gd'), (8250,'Serbian','default',122,'sr'), (8251,'Sinhala','default',122,'si'), (8252,'Slovak','default',122,'sk'), (8253,'Slovenian','default',122,'sl'), (8254,'Somali','default',122,'so'), (8255,'South Azerbaijani','default',122,'azb'), (8256,'Spanish','default',122,'es'), (8257,'Spanish (Argentina)','default',122,'es-ar'), (8258,'Sundanese','default',122,'su'), (8259,'Swahili','default',122,'sw'), (8260,'Swedish','default',122,'sv'), (8261,'Swiss German','default',122,'gsw'), (8262,'Swiss German (Formal)','formal',122,'gsw'), (8263,'Tagalog','default',122,'tl'), (8264,'Tajik','default',122,'tg'), (8265,'Tamazight (Central Atlas)','default',122,'tzm'), (8266,'Tamil','default',122,'ta'), (8267,'Tamil (Sri Lanka)','default',122,'ta-lk'), (8268,'Telugu','default',122,'te'), (8269,'Thai','default',122,'th'), (8270,'Tibetan','default',122,'bo'), (8271,'Turkish','default',122,'tr'), (8272,'Turkmen','default',122,'tuk'), (8273,'Uighur','default',122,'ug'), (8274,'Ukrainian','default',122,'uk'), (8275,'Urdu','default',122,'ur'), (8276,'Uzbek','default',122,'uz'), (8277,'Venezuelan Spanish','default',122,'es-ve'), (8278,'Vietnamese','default',122,'vi'), (8279,'Welsh','default',122,'cy'), (8281,'Afrikaans','default',123,'af'), (8282,'Albanian','default',123,'sq'), (8283,'Amharic','default',123,'am'), (8284,'Arabic','default',123,'ar'), (8285,'Aragonese','default',123,'an'), (8286,'Armenian','default',123,'hy'), (8287,'Assamese','default',123,'as'), (8288,'Azerbaijani','default',123,'az'), (8289,'Azerbaijani (Turkey)','default',123,'az-tr'), (8290,'Basque','default',123,'eu'), (8292,'Belarusian','default',123,'bel'), (8293,'Bengali','default',123,'bn'), (8294,'Bosnian','default',123,'bs'), (8295,'Brazilian Portuguese','default',123,'pt-br'), (8296,'Breton','default',123,'br'), (8297,'Bulgarian','default',123,'bg'), (8298,'Burmese','default',123,'mya'), (8299,'Catalan','default',123,'ca'), (8300,'Catalan (Balear)','default',123,'bal'), (8301,'Chilean Spanish','default',123,'es-cl'), (8302,'Chinese (China)','default',123,'zh-cn'), (8303,'Chinese (Taiwan)','default',123,'zh-tw'), (8304,'Corsican','default',123,'co'), (8305,'Croatian','default',123,'hr'), (8306,'Czech','default',123,'cs'), (8307,'Danish','default',123,'da'), (8308,'Divehi','default',123,'dv'), (8309,'Dutch','default',123,'nl'), (8310,'Dzongkha','default',123,'dzo'), (8311,'English (Australia)','default',123,'en-au'), (8312,'English (Canada)','default',123,'en-ca'), (8313,'English (UK)','default',123,'en-gb'), (8314,'Esperanto','default',123,'eo'), (8315,'Estonian','default',123,'et'), (8316,'Faroese','default',123,'fo'), (8317,'Finnish','default',123,'fi'), (8318,'French','default',123,'fr'), (8319,'Frisian','default',123,'fy'), (8320,'Galician','default',123,'gl'), (8321,'Georgian','default',123,'ka'), (8322,'German','default',123,'de'), (8323,'German (Formal)','formal',123,'de'), (8324,'Greek','default',123,'el'), (8325,'Gujarati','default',123,'gu'), (8326,'Hawaiian','default',123,'haw'), (8327,'Hazaragi','default',123,'haz'), (8328,'Hebrew','default',123,'he'), (8329,'Hindi','default',123,'hi'), (8330,'Hungarian','default',123,'hu'), (8331,'Icelandic','default',123,'is'), (8332,'Indonesian','default',123,'id'), (8333,'Irish','default',123,'ga'), (8334,'Italian','default',123,'it'), (8335,'Japanese','default',123,'ja'), (8336,'Javanese','default',123,'jv'), (8337,'Kannada','default',123,'kn'), (8338,'Kazakh','default',123,'kk'), (8339,'Khmer','default',123,'km'), (8340,'Kirghiz','default',123,'ky'), (8341,'Korean','default',123,'ko'), (8342,'Kurdish','default',123,'ckb'), (8343,'Kurdish (Kurmanji)','default',123,'ku'), (8344,'Lao','default',123,'lo'), (8345,'Latin','default',123,'la'), (8346,'Latvian','default',123,'lv'), (8347,'Limburgish','default',123,'li'), (8348,'Lithuanian','default',123,'lt'), (8349,'Luxembourgish','default',123,'lb'), (8350,'Macedonian','default',123,'mk'), (8351,'Malagasy','default',123,'mg'), (8352,'Malay','default',123,'ms'), (8353,'Malayalam','default',123,'ml'), (8355,'Marathi','default',123,'mr'), (8356,'Mongolian','default',123,'mn'), (8357,'Montenegrin','default',123,'me'), (8358,'Nepali','default',123,'ne'), (8359,'Norwegian (BokmÃ¥l)','default',123,'nb'), (8360,'Norwegian (Nynorsk)','default',123,'nn'), (8361,'Ossetic','default',123,'os'), (8362,'Pashto','default',123,'ps'), (8363,'Persian','default',123,'fa'), (8364,'Persian (Afghanistan)','default',123,'fa-af'), (8365,'Peruvian Spanish','default',123,'es-pe'), (8366,'Polish','default',123,'pl'), (8367,'Portuguese','default',123,'pt'), (8368,'Portuguese Informal','informal',123,'pt'), (8369,'Punjabi','default',123,'pa'), (8370,'Romanian','default',123,'ro'), (8371,'Russian','default',123,'ru'), (8372,'Sanskrit','default',123,'sa-in'), (8373,'Sardinian','default',123,'srd'), (8374,'Scottish Gaelic','default',123,'gd'), (8375,'Serbian','default',123,'sr'), (8376,'Sinhala','default',123,'si'), (8377,'Slovak','default',123,'sk'), (8378,'Slovenian','default',123,'sl'), (8379,'Somali','default',123,'so'), (8380,'South Azerbaijani','default',123,'azb'), (8381,'Spanish','default',123,'es'), (8382,'Spanish (Argentina)','default',123,'es-ar'), (8383,'Sundanese','default',123,'su'), (8384,'Swahili','default',123,'sw'), (8385,'Swedish','default',123,'sv'), (8386,'Swiss German','default',123,'gsw'), (8387,'Swiss German (Formal)','formal',123,'gsw'), (8388,'Tagalog','default',123,'tl'), (8389,'Tajik','default',123,'tg'), (8390,'Tamazight (Central Atlas)','default',123,'tzm'), (8391,'Tamil','default',123,'ta'), (8392,'Tamil (Sri Lanka)','default',123,'ta-lk'), (8393,'Telugu','default',123,'te'), (8394,'Thai','default',123,'th'), (8395,'Tibetan','default',123,'bo'), (8396,'Turkish','default',123,'tr'), (8397,'Turkmen','default',123,'tuk'), (8398,'Uighur','default',123,'ug'), (8399,'Ukrainian','default',123,'uk'), (8400,'Urdu','default',123,'ur'), (8401,'Uzbek','default',123,'uz'), (8402,'Venezuelan Spanish','default',123,'es-ve'), (8403,'Vietnamese','default',123,'vi'), (8404,'Welsh','default',123,'cy'), (8406,'Afrikaans','default',125,'af'), (8407,'Albanian','default',125,'sq'), (8408,'Amharic','default',125,'am'), (8409,'Arabic','default',125,'ar'), (8410,'Aragonese','default',125,'an'), (8411,'Armenian','default',125,'hy'), (8412,'Assamese','default',125,'as'), (8413,'Azerbaijani','default',125,'az'), (8414,'Azerbaijani (Turkey)','default',125,'az-tr'), (8415,'Basque','default',125,'eu'), (8417,'Belarusian','default',125,'bel'), (8418,'Bengali','default',125,'bn'), (8419,'Bosnian','default',125,'bs'), (8420,'Brazilian Portuguese','default',125,'pt-br'), (8421,'Breton','default',125,'br'), (8422,'Bulgarian','default',125,'bg'), (8423,'Burmese','default',125,'mya'), (8424,'Catalan','default',125,'ca'), (8425,'Catalan (Balear)','default',125,'bal'), (8426,'Chilean Spanish','default',125,'es-cl'), (8427,'Chinese (China)','default',125,'zh-cn'), (8428,'Chinese (Taiwan)','default',125,'zh-tw'), (8429,'Corsican','default',125,'co'), (8430,'Croatian','default',125,'hr'), (8431,'Czech','default',125,'cs'), (8432,'Danish','default',125,'da'), (8433,'Divehi','default',125,'dv'), (8434,'Dutch','default',125,'nl'), (8435,'Dzongkha','default',125,'dzo'), (8436,'English (Australia)','default',125,'en-au'), (8437,'English (Canada)','default',125,'en-ca'), (8438,'English (UK)','default',125,'en-gb'), (8439,'Esperanto','default',125,'eo'), (8440,'Estonian','default',125,'et'), (8441,'Faroese','default',125,'fo'), (8442,'Finnish','default',125,'fi'), (8443,'French','default',125,'fr'), (8444,'Frisian','default',125,'fy'), (8445,'Galician','default',125,'gl'), (8446,'Georgian','default',125,'ka'), (8447,'German','default',125,'de'), (8448,'German (Formal)','formal',125,'de'), (8449,'Greek','default',125,'el'), (8450,'Gujarati','default',125,'gu'), (8451,'Hawaiian','default',125,'haw'), (8452,'Hazaragi','default',125,'haz'), (8453,'Hebrew','default',125,'he'), (8454,'Hindi','default',125,'hi'), (8455,'Hungarian','default',125,'hu'), (8456,'Icelandic','default',125,'is'), (8457,'Indonesian','default',125,'id'), (8458,'Irish','default',125,'ga'), (8459,'Italian','default',125,'it'), (8460,'Japanese','default',125,'ja'), (8461,'Javanese','default',125,'jv'), (8462,'Kannada','default',125,'kn'), (8463,'Kazakh','default',125,'kk'), (8464,'Khmer','default',125,'km'), (8465,'Kirghiz','default',125,'ky'), (8466,'Korean','default',125,'ko'), (8467,'Kurdish','default',125,'ckb'), (8468,'Kurdish (Kurmanji)','default',125,'ku'), (8469,'Lao','default',125,'lo'), (8470,'Latin','default',125,'la'), (8471,'Latvian','default',125,'lv'), (8472,'Limburgish','default',125,'li'), (8473,'Lithuanian','default',125,'lt'), (8474,'Luxembourgish','default',125,'lb'), (8475,'Macedonian','default',125,'mk'), (8476,'Malagasy','default',125,'mg'), (8477,'Malay','default',125,'ms'), (8478,'Malayalam','default',125,'ml'), (8480,'Marathi','default',125,'mr'), (8481,'Mongolian','default',125,'mn'), (8482,'Montenegrin','default',125,'me'), (8483,'Nepali','default',125,'ne'), (8484,'Norwegian (BokmÃ¥l)','default',125,'nb'), (8485,'Norwegian (Nynorsk)','default',125,'nn'), (8486,'Ossetic','default',125,'os'), (8487,'Pashto','default',125,'ps'), (8488,'Persian','default',125,'fa'), (8489,'Persian (Afghanistan)','default',125,'fa-af'), (8490,'Peruvian Spanish','default',125,'es-pe'), (8491,'Polish','default',125,'pl'), (8492,'Portuguese','default',125,'pt'), (8493,'Portuguese Informal','informal',125,'pt'), (8494,'Punjabi','default',125,'pa'), (8495,'Romanian','default',125,'ro'), (8496,'Russian','default',125,'ru'), (8497,'Sanskrit','default',125,'sa-in'), (8498,'Sardinian','default',125,'srd'), (8499,'Scottish Gaelic','default',125,'gd'), (8500,'Serbian','default',125,'sr'), (8501,'Sinhala','default',125,'si'), (8502,'Slovak','default',125,'sk'), (8503,'Slovenian','default',125,'sl'), (8504,'Somali','default',125,'so'), (8505,'South Azerbaijani','default',125,'azb'), (8506,'Spanish','default',125,'es'), (8507,'Spanish (Argentina)','default',125,'es-ar'), (8508,'Sundanese','default',125,'su'), (8509,'Swahili','default',125,'sw'), (8510,'Swedish','default',125,'sv'), (8511,'Swiss German','default',125,'gsw'), (8512,'Swiss German (Formal)','formal',125,'gsw'), (8513,'Tagalog','default',125,'tl'), (8514,'Tajik','default',125,'tg'), (8515,'Tamazight (Central Atlas)','default',125,'tzm'), (8516,'Tamil','default',125,'ta'), (8517,'Tamil (Sri Lanka)','default',125,'ta-lk'), (8518,'Telugu','default',125,'te'), (8519,'Thai','default',125,'th'), (8520,'Tibetan','default',125,'bo'), (8521,'Turkish','default',125,'tr'), (8522,'Turkmen','default',125,'tuk'), (8523,'Uighur','default',125,'ug'), (8524,'Ukrainian','default',125,'uk'), (8525,'Urdu','default',125,'ur'), (8526,'Uzbek','default',125,'uz'), (8527,'Venezuelan Spanish','default',125,'es-ve'), (8528,'Vietnamese','default',125,'vi'), (8529,'Welsh','default',125,'cy'), (8531,'Afrikaans','default',126,'af'), (8532,'Albanian','default',126,'sq'), (8533,'Amharic','default',126,'am'), (8534,'Arabic','default',126,'ar'), (8535,'Aragonese','default',126,'an'), (8536,'Armenian','default',126,'hy'), (8537,'Assamese','default',126,'as'), (8538,'Azerbaijani','default',126,'az'), (8539,'Azerbaijani (Turkey)','default',126,'az-tr'), (8540,'Basque','default',126,'eu'), (8542,'Belarusian','default',126,'bel'), (8543,'Bengali','default',126,'bn'), (8544,'Bosnian','default',126,'bs'), (8545,'Brazilian Portuguese','default',126,'pt-br'), (8546,'Breton','default',126,'br'), (8547,'Bulgarian','default',126,'bg'), (8548,'Burmese','default',126,'mya'), (8549,'Catalan','default',126,'ca'), (8550,'Catalan (Balear)','default',126,'bal'), (8551,'Chilean Spanish','default',126,'es-cl'), (8552,'Chinese (China)','default',126,'zh-cn'), (8553,'Chinese (Taiwan)','default',126,'zh-tw'), (8554,'Corsican','default',126,'co'), (8555,'Croatian','default',126,'hr'), (8556,'Czech','default',126,'cs'), (8557,'Danish','default',126,'da'), (8558,'Divehi','default',126,'dv'), (8559,'Dutch','default',126,'nl'), (8560,'Dzongkha','default',126,'dzo'), (8561,'English (Australia)','default',126,'en-au'), (8562,'English (Canada)','default',126,'en-ca'), (8563,'English (UK)','default',126,'en-gb'), (8564,'Esperanto','default',126,'eo'), (8565,'Estonian','default',126,'et'), (8566,'Faroese','default',126,'fo'), (8567,'Finnish','default',126,'fi'), (8568,'French','default',126,'fr'), (8569,'Frisian','default',126,'fy'), (8570,'Galician','default',126,'gl'), (8571,'Georgian','default',126,'ka'), (8572,'German','default',126,'de'), (8573,'German (Formal)','formal',126,'de'), (8574,'Greek','default',126,'el'), (8575,'Gujarati','default',126,'gu'), (8576,'Hawaiian','default',126,'haw'), (8577,'Hazaragi','default',126,'haz'), (8578,'Hebrew','default',126,'he'), (8579,'Hindi','default',126,'hi'), (8580,'Hungarian','default',126,'hu'), (8581,'Icelandic','default',126,'is'), (8582,'Indonesian','default',126,'id'), (8583,'Irish','default',126,'ga'), (8584,'Italian','default',126,'it'), (8585,'Japanese','default',126,'ja'), (8586,'Javanese','default',126,'jv'), (8587,'Kannada','default',126,'kn'), (8588,'Kazakh','default',126,'kk'), (8589,'Khmer','default',126,'km'), (8590,'Kirghiz','default',126,'ky'), (8591,'Korean','default',126,'ko'), (8592,'Kurdish','default',126,'ckb'), (8593,'Kurdish (Kurmanji)','default',126,'ku'), (8594,'Lao','default',126,'lo'), (8595,'Latin','default',126,'la'), (8596,'Latvian','default',126,'lv'), (8597,'Limburgish','default',126,'li'), (8598,'Lithuanian','default',126,'lt'), (8599,'Luxembourgish','default',126,'lb'), (8600,'Macedonian','default',126,'mk'), (8601,'Malagasy','default',126,'mg'), (8602,'Malay','default',126,'ms'), (8603,'Malayalam','default',126,'ml'), (8605,'Marathi','default',126,'mr'), (8606,'Mongolian','default',126,'mn'), (8607,'Montenegrin','default',126,'me'), (8608,'Nepali','default',126,'ne'), (8609,'Norwegian (BokmÃ¥l)','default',126,'nb'), (8610,'Norwegian (Nynorsk)','default',126,'nn'), (8611,'Ossetic','default',126,'os'), (8612,'Pashto','default',126,'ps'), (8613,'Persian','default',126,'fa'), (8614,'Persian (Afghanistan)','default',126,'fa-af'), (8615,'Peruvian Spanish','default',126,'es-pe'), (8616,'Polish','default',126,'pl'), (8617,'Portuguese','default',126,'pt'), (8618,'Portuguese Informal','informal',126,'pt'), (8619,'Punjabi','default',126,'pa'), (8620,'Romanian','default',126,'ro'), (8621,'Russian','default',126,'ru'), (8622,'Sanskrit','default',126,'sa-in'), (8623,'Sardinian','default',126,'srd'), (8624,'Scottish Gaelic','default',126,'gd'), (8625,'Serbian','default',126,'sr'), (8626,'Sinhala','default',126,'si'), (8627,'Slovak','default',126,'sk'), (8628,'Slovenian','default',126,'sl'), (8629,'Somali','default',126,'so'), (8630,'South Azerbaijani','default',126,'azb'), (8631,'Spanish','default',126,'es'), (8632,'Spanish (Argentina)','default',126,'es-ar'), (8633,'Sundanese','default',126,'su'), (8634,'Swahili','default',126,'sw'), (8635,'Swedish','default',126,'sv'), (8636,'Swiss German','default',126,'gsw'), (8637,'Swiss German (Formal)','formal',126,'gsw'), (8638,'Tagalog','default',126,'tl'), (8639,'Tajik','default',126,'tg'), (8640,'Tamazight (Central Atlas)','default',126,'tzm'), (8641,'Tamil','default',126,'ta'), (8642,'Tamil (Sri Lanka)','default',126,'ta-lk'), (8643,'Telugu','default',126,'te'), (8644,'Thai','default',126,'th'), (8645,'Tibetan','default',126,'bo'), (8646,'Turkish','default',126,'tr'), (8647,'Turkmen','default',126,'tuk'), (8648,'Uighur','default',126,'ug'), (8649,'Ukrainian','default',126,'uk'), (8650,'Urdu','default',126,'ur'), (8651,'Uzbek','default',126,'uz'), (8652,'Venezuelan Spanish','default',126,'es-ve'), (8653,'Vietnamese','default',126,'vi'), (8654,'Welsh','default',126,'cy'), (8656,'Afrikaans','default',127,'af'), (8657,'Albanian','default',127,'sq'), (8658,'Amharic','default',127,'am'), (8659,'Arabic','default',127,'ar'), (8660,'Aragonese','default',127,'an'), (8661,'Armenian','default',127,'hy'), (8662,'Assamese','default',127,'as'), (8663,'Azerbaijani','default',127,'az'), (8664,'Azerbaijani (Turkey)','default',127,'az-tr'), (8665,'Basque','default',127,'eu'), (8667,'Belarusian','default',127,'bel'), (8668,'Bengali','default',127,'bn'), (8669,'Bosnian','default',127,'bs'), (8670,'Brazilian Portuguese','default',127,'pt-br'), (8671,'Breton','default',127,'br'), (8672,'Bulgarian','default',127,'bg'), (8673,'Burmese','default',127,'mya'), (8674,'Catalan','default',127,'ca'), (8675,'Catalan (Balear)','default',127,'bal'), (8676,'Chilean Spanish','default',127,'es-cl'), (8677,'Chinese (China)','default',127,'zh-cn'), (8678,'Chinese (Taiwan)','default',127,'zh-tw'), (8679,'Corsican','default',127,'co'), (8680,'Croatian','default',127,'hr'), (8681,'Czech','default',127,'cs'), (8682,'Danish','default',127,'da'), (8683,'Divehi','default',127,'dv'), (8684,'Dutch','default',127,'nl'), (8685,'Dzongkha','default',127,'dzo'), (8686,'English (Australia)','default',127,'en-au'), (8687,'English (Canada)','default',127,'en-ca'), (8688,'English (UK)','default',127,'en-gb'), (8689,'Esperanto','default',127,'eo'), (8690,'Estonian','default',127,'et'), (8691,'Faroese','default',127,'fo'), (8692,'Finnish','default',127,'fi'), (8693,'French','default',127,'fr'), (8694,'Frisian','default',127,'fy'), (8695,'Galician','default',127,'gl'), (8696,'Georgian','default',127,'ka'), (8697,'German','default',127,'de'), (8698,'German (Formal)','formal',127,'de'), (8699,'Greek','default',127,'el'), (8700,'Gujarati','default',127,'gu'), (8701,'Hawaiian','default',127,'haw'), (8702,'Hazaragi','default',127,'haz'), (8703,'Hebrew','default',127,'he'), (8704,'Hindi','default',127,'hi'), (8705,'Hungarian','default',127,'hu'), (8706,'Icelandic','default',127,'is'), (8707,'Indonesian','default',127,'id'), (8708,'Irish','default',127,'ga'), (8709,'Italian','default',127,'it'), (8710,'Japanese','default',127,'ja'), (8711,'Javanese','default',127,'jv'), (8712,'Kannada','default',127,'kn'), (8713,'Kazakh','default',127,'kk'), (8714,'Khmer','default',127,'km'), (8715,'Kirghiz','default',127,'ky'), (8716,'Korean','default',127,'ko'), (8717,'Kurdish','default',127,'ckb'), (8718,'Kurdish (Kurmanji)','default',127,'ku'), (8719,'Lao','default',127,'lo'), (8720,'Latin','default',127,'la'), (8721,'Latvian','default',127,'lv'), (8722,'Limburgish','default',127,'li'), (8723,'Lithuanian','default',127,'lt'), (8724,'Luxembourgish','default',127,'lb'), (8725,'Macedonian','default',127,'mk'), (8726,'Malagasy','default',127,'mg'), (8727,'Malay','default',127,'ms'), (8728,'Malayalam','default',127,'ml'), (8730,'Marathi','default',127,'mr'), (8731,'Mongolian','default',127,'mn'), (8732,'Montenegrin','default',127,'me'), (8733,'Nepali','default',127,'ne'), (8734,'Norwegian (BokmÃ¥l)','default',127,'nb'), (8735,'Norwegian (Nynorsk)','default',127,'nn'), (8736,'Ossetic','default',127,'os'), (8737,'Pashto','default',127,'ps'), (8738,'Persian','default',127,'fa'), (8739,'Persian (Afghanistan)','default',127,'fa-af'), (8740,'Peruvian Spanish','default',127,'es-pe'), (8741,'Polish','default',127,'pl'), (8742,'Portuguese','default',127,'pt'), (8743,'Portuguese Informal','informal',127,'pt'), (8744,'Punjabi','default',127,'pa'), (8745,'Romanian','default',127,'ro'), (8746,'Russian','default',127,'ru'), (8747,'Sanskrit','default',127,'sa-in'), (8748,'Sardinian','default',127,'srd'), (8749,'Scottish Gaelic','default',127,'gd'), (8750,'Serbian','default',127,'sr'), (8751,'Sinhala','default',127,'si'), (8752,'Slovak','default',127,'sk'), (8753,'Slovenian','default',127,'sl'), (8754,'Somali','default',127,'so'), (8755,'South Azerbaijani','default',127,'azb'), (8756,'Spanish','default',127,'es'), (8757,'Spanish (Argentina)','default',127,'es-ar'), (8758,'Sundanese','default',127,'su'), (8759,'Swahili','default',127,'sw'), (8760,'Swedish','default',127,'sv'), (8761,'Swiss German','default',127,'gsw'), (8762,'Swiss German (Formal)','formal',127,'gsw'), (8763,'Tagalog','default',127,'tl'), (8764,'Tajik','default',127,'tg'), (8765,'Tamazight (Central Atlas)','default',127,'tzm'), (8766,'Tamil','default',127,'ta'), (8767,'Tamil (Sri Lanka)','default',127,'ta-lk'), (8768,'Telugu','default',127,'te'), (8769,'Thai','default',127,'th'), (8770,'Tibetan','default',127,'bo'), (8771,'Turkish','default',127,'tr'), (8772,'Turkmen','default',127,'tuk'), (8773,'Uighur','default',127,'ug'), (8774,'Ukrainian','default',127,'uk'), (8775,'Urdu','default',127,'ur'), (8776,'Uzbek','default',127,'uz'), (8777,'Venezuelan Spanish','default',127,'es-ve'), (8778,'Vietnamese','default',127,'vi'), (8779,'Welsh','default',127,'cy'), (8781,'Afrikaans','default',128,'af'), (8782,'Albanian','default',128,'sq'), (8783,'Amharic','default',128,'am'), (8784,'Arabic','default',128,'ar'), (8785,'Aragonese','default',128,'an'), (8786,'Armenian','default',128,'hy'), (8787,'Assamese','default',128,'as'), (8788,'Azerbaijani','default',128,'az'), (8789,'Azerbaijani (Turkey)','default',128,'az-tr'), (8790,'Basque','default',128,'eu'), (8792,'Belarusian','default',128,'bel'), (8793,'Bengali','default',128,'bn'), (8794,'Bosnian','default',128,'bs'), (8795,'Brazilian Portuguese','default',128,'pt-br'), (8796,'Breton','default',128,'br'), (8797,'Bulgarian','default',128,'bg'), (8798,'Burmese','default',128,'mya'), (8799,'Catalan','default',128,'ca'), (8800,'Catalan (Balear)','default',128,'bal'), (8801,'Chilean Spanish','default',128,'es-cl'), (8802,'Chinese (China)','default',128,'zh-cn'), (8803,'Chinese (Taiwan)','default',128,'zh-tw'), (8804,'Corsican','default',128,'co'), (8805,'Croatian','default',128,'hr'), (8806,'Czech','default',128,'cs'), (8807,'Danish','default',128,'da'), (8808,'Divehi','default',128,'dv'), (8809,'Dutch','default',128,'nl'), (8810,'Dzongkha','default',128,'dzo'), (8811,'English (Australia)','default',128,'en-au'), (8812,'English (Canada)','default',128,'en-ca'), (8813,'English (UK)','default',128,'en-gb'), (8814,'Esperanto','default',128,'eo'), (8815,'Estonian','default',128,'et'), (8816,'Faroese','default',128,'fo'), (8817,'Finnish','default',128,'fi'), (8818,'French','default',128,'fr'), (8819,'Frisian','default',128,'fy'), (8820,'Galician','default',128,'gl'), (8821,'Georgian','default',128,'ka'), (8822,'German','default',128,'de'), (8823,'German (Formal)','formal',128,'de'), (8824,'Greek','default',128,'el'), (8825,'Gujarati','default',128,'gu'), (8826,'Hawaiian','default',128,'haw'), (8827,'Hazaragi','default',128,'haz'), (8828,'Hebrew','default',128,'he'), (8829,'Hindi','default',128,'hi'), (8830,'Hungarian','default',128,'hu'), (8831,'Icelandic','default',128,'is'), (8832,'Indonesian','default',128,'id'), (8833,'Irish','default',128,'ga'), (8834,'Italian','default',128,'it'), (8835,'Japanese','default',128,'ja'), (8836,'Javanese','default',128,'jv'), (8837,'Kannada','default',128,'kn'), (8838,'Kazakh','default',128,'kk'), (8839,'Khmer','default',128,'km'), (8840,'Kirghiz','default',128,'ky'), (8841,'Korean','default',128,'ko'), (8842,'Kurdish','default',128,'ckb'), (8843,'Kurdish (Kurmanji)','default',128,'ku'), (8844,'Lao','default',128,'lo'), (8845,'Latin','default',128,'la'), (8846,'Latvian','default',128,'lv'), (8847,'Limburgish','default',128,'li'), (8848,'Lithuanian','default',128,'lt'), (8849,'Luxembourgish','default',128,'lb'), (8850,'Macedonian','default',128,'mk'), (8851,'Malagasy','default',128,'mg'), (8852,'Malay','default',128,'ms'), (8853,'Malayalam','default',128,'ml'), (8855,'Marathi','default',128,'mr'), (8856,'Mongolian','default',128,'mn'), (8857,'Montenegrin','default',128,'me'), (8858,'Nepali','default',128,'ne'), (8859,'Norwegian (BokmÃ¥l)','default',128,'nb'), (8860,'Norwegian (Nynorsk)','default',128,'nn'), (8861,'Ossetic','default',128,'os'), (8862,'Pashto','default',128,'ps'), (8863,'Persian','default',128,'fa'), (8864,'Persian (Afghanistan)','default',128,'fa-af'), (8865,'Peruvian Spanish','default',128,'es-pe'), (8866,'Polish','default',128,'pl'), (8867,'Portuguese','default',128,'pt'), (8868,'Portuguese Informal','informal',128,'pt'), (8869,'Punjabi','default',128,'pa'), (8870,'Romanian','default',128,'ro'), (8871,'Russian','default',128,'ru'), (8872,'Sanskrit','default',128,'sa-in'), (8873,'Sardinian','default',128,'srd'), (8874,'Scottish Gaelic','default',128,'gd'), (8875,'Serbian','default',128,'sr'), (8876,'Sinhala','default',128,'si'), (8877,'Slovak','default',128,'sk'), (8878,'Slovenian','default',128,'sl'), (8879,'Somali','default',128,'so'), (8880,'South Azerbaijani','default',128,'azb'), (8881,'Spanish','default',128,'es'), (8882,'Spanish (Argentina)','default',128,'es-ar'), (8883,'Sundanese','default',128,'su'), (8884,'Swahili','default',128,'sw'), (8885,'Swedish','default',128,'sv'), (8886,'Swiss German','default',128,'gsw'), (8887,'Swiss German (Formal)','formal',128,'gsw'), (8888,'Tagalog','default',128,'tl'), (8889,'Tajik','default',128,'tg'), (8890,'Tamazight (Central Atlas)','default',128,'tzm'), (8891,'Tamil','default',128,'ta'), (8892,'Tamil (Sri Lanka)','default',128,'ta-lk'), (8893,'Telugu','default',128,'te'), (8894,'Thai','default',128,'th'), (8895,'Tibetan','default',128,'bo'), (8896,'Turkish','default',128,'tr'), (8897,'Turkmen','default',128,'tuk'), (8898,'Uighur','default',128,'ug'), (8899,'Ukrainian','default',128,'uk'), (8900,'Urdu','default',128,'ur'), (8901,'Uzbek','default',128,'uz'), (8902,'Venezuelan Spanish','default',128,'es-ve'), (8903,'Vietnamese','default',128,'vi'), (8904,'Welsh','default',128,'cy'), (8906,'Afrikaans','default',129,'af'), (8907,'Albanian','default',129,'sq'), (8908,'Amharic','default',129,'am'), (8909,'Arabic','default',129,'ar'), (8910,'Aragonese','default',129,'an'), (8911,'Armenian','default',129,'hy'), (8912,'Assamese','default',129,'as'), (8913,'Azerbaijani','default',129,'az'), (8914,'Azerbaijani (Turkey)','default',129,'az-tr'), (8915,'Basque','default',129,'eu'), (8917,'Belarusian','default',129,'bel'), (8918,'Bengali','default',129,'bn'), (8919,'Bosnian','default',129,'bs'), (8920,'Brazilian Portuguese','default',129,'pt-br'), (8921,'Breton','default',129,'br'), (8922,'Bulgarian','default',129,'bg'), (8923,'Burmese','default',129,'mya'), (8924,'Catalan','default',129,'ca'), (8925,'Catalan (Balear)','default',129,'bal'), (8926,'Chilean Spanish','default',129,'es-cl'), (8927,'Chinese (China)','default',129,'zh-cn'), (8928,'Chinese (Taiwan)','default',129,'zh-tw'), (8929,'Corsican','default',129,'co'), (8930,'Croatian','default',129,'hr'), (8931,'Czech','default',129,'cs'), (8932,'Danish','default',129,'da'), (8933,'Divehi','default',129,'dv'), (8934,'Dutch','default',129,'nl'), (8935,'Dzongkha','default',129,'dzo'), (8936,'English (Australia)','default',129,'en-au'), (8937,'English (Canada)','default',129,'en-ca'), (8938,'English (UK)','default',129,'en-gb'), (8939,'Esperanto','default',129,'eo'), (8940,'Estonian','default',129,'et'), (8941,'Faroese','default',129,'fo'), (8942,'Finnish','default',129,'fi'), (8943,'French','default',129,'fr'), (8944,'Frisian','default',129,'fy'), (8945,'Galician','default',129,'gl'), (8946,'Georgian','default',129,'ka'), (8947,'German','default',129,'de'), (8948,'German (Formal)','formal',129,'de'), (8949,'Greek','default',129,'el'), (8950,'Gujarati','default',129,'gu'), (8951,'Hawaiian','default',129,'haw'), (8952,'Hazaragi','default',129,'haz'), (8953,'Hebrew','default',129,'he'), (8954,'Hindi','default',129,'hi'), (8955,'Hungarian','default',129,'hu'), (8956,'Icelandic','default',129,'is'), (8957,'Indonesian','default',129,'id'), (8958,'Irish','default',129,'ga'), (8959,'Italian','default',129,'it'), (8960,'Japanese','default',129,'ja'), (8961,'Javanese','default',129,'jv'), (8962,'Kannada','default',129,'kn'), (8963,'Kazakh','default',129,'kk'), (8964,'Khmer','default',129,'km'), (8965,'Kirghiz','default',129,'ky'), (8966,'Korean','default',129,'ko'), (8967,'Kurdish','default',129,'ckb'), (8968,'Kurdish (Kurmanji)','default',129,'ku'), (8969,'Lao','default',129,'lo'), (8970,'Latin','default',129,'la'), (8971,'Latvian','default',129,'lv'), (8972,'Limburgish','default',129,'li'), (8973,'Lithuanian','default',129,'lt'), (8974,'Luxembourgish','default',129,'lb'), (8975,'Macedonian','default',129,'mk'), (8976,'Malagasy','default',129,'mg'), (8977,'Malay','default',129,'ms'), (8978,'Malayalam','default',129,'ml'), (8980,'Marathi','default',129,'mr'), (8981,'Mongolian','default',129,'mn'), (8982,'Montenegrin','default',129,'me'), (8983,'Nepali','default',129,'ne'), (8984,'Norwegian (BokmÃ¥l)','default',129,'nb'), (8985,'Norwegian (Nynorsk)','default',129,'nn'), (8986,'Ossetic','default',129,'os'), (8987,'Pashto','default',129,'ps'), (8988,'Persian','default',129,'fa'), (8989,'Persian (Afghanistan)','default',129,'fa-af'), (8990,'Peruvian Spanish','default',129,'es-pe'), (8991,'Polish','default',129,'pl'), (8992,'Portuguese','default',129,'pt'), (8993,'Portuguese Informal','informal',129,'pt'), (8994,'Punjabi','default',129,'pa'), (8995,'Romanian','default',129,'ro'), (8996,'Russian','default',129,'ru'), (8997,'Sanskrit','default',129,'sa-in'), (8998,'Sardinian','default',129,'srd'), (8999,'Scottish Gaelic','default',129,'gd'), (9000,'Serbian','default',129,'sr'), (9001,'Sinhala','default',129,'si'), (9002,'Slovak','default',129,'sk'), (9003,'Slovenian','default',129,'sl'), (9004,'Somali','default',129,'so'), (9005,'South Azerbaijani','default',129,'azb'), (9006,'Spanish','default',129,'es'), (9007,'Spanish (Argentina)','default',129,'es-ar'), (9008,'Sundanese','default',129,'su'), (9009,'Swahili','default',129,'sw'), (9010,'Swedish','default',129,'sv'), (9011,'Swiss German','default',129,'gsw'), (9012,'Swiss German (Formal)','formal',129,'gsw'), (9013,'Tagalog','default',129,'tl'), (9014,'Tajik','default',129,'tg'), (9015,'Tamazight (Central Atlas)','default',129,'tzm'), (9016,'Tamil','default',129,'ta'), (9017,'Tamil (Sri Lanka)','default',129,'ta-lk'), (9018,'Telugu','default',129,'te'), (9019,'Thai','default',129,'th'), (9020,'Tibetan','default',129,'bo'), (9021,'Turkish','default',129,'tr'), (9022,'Turkmen','default',129,'tuk'), (9023,'Uighur','default',129,'ug'), (9024,'Ukrainian','default',129,'uk'), (9025,'Urdu','default',129,'ur'), (9026,'Uzbek','default',129,'uz'), (9027,'Venezuelan Spanish','default',129,'es-ve'), (9028,'Vietnamese','default',129,'vi'), (9029,'Welsh','default',129,'cy'), (9031,'Afrikaans','default',124,'af'), (9032,'Albanian','default',124,'sq'), (9033,'Amharic','default',124,'am'), (9034,'Arabic','default',124,'ar'), (9035,'Aragonese','default',124,'an'), (9036,'Armenian','default',124,'hy'), (9037,'Assamese','default',124,'as'), (9038,'Azerbaijani','default',124,'az'), (9039,'Azerbaijani (Turkey)','default',124,'az-tr'), (9040,'Basque','default',124,'eu'), (9042,'Belarusian','default',124,'bel'), (9043,'Bengali','default',124,'bn'), (9044,'Bosnian','default',124,'bs'), (9045,'Brazilian Portuguese','default',124,'pt-br'), (9046,'Breton','default',124,'br'), (9047,'Bulgarian','default',124,'bg'), (9048,'Burmese','default',124,'mya'), (9049,'Catalan','default',124,'ca'), (9050,'Catalan (Balear)','default',124,'bal'), (9051,'Chilean Spanish','default',124,'es-cl'), (9052,'Chinese (China)','default',124,'zh-cn'), (9053,'Chinese (Taiwan)','default',124,'zh-tw'), (9054,'Corsican','default',124,'co'), (9055,'Croatian','default',124,'hr'), (9056,'Czech','default',124,'cs'), (9057,'Danish','default',124,'da'), (9058,'Divehi','default',124,'dv'), (9059,'Dutch','default',124,'nl'), (9060,'Dzongkha','default',124,'dzo'), (9061,'English (Australia)','default',124,'en-au'), (9062,'English (Canada)','default',124,'en-ca'), (9063,'English (UK)','default',124,'en-gb'), (9064,'Esperanto','default',124,'eo'), (9065,'Estonian','default',124,'et'), (9066,'Faroese','default',124,'fo'), (9067,'Finnish','default',124,'fi'), (9068,'French','default',124,'fr'), (9069,'Frisian','default',124,'fy'), (9070,'Galician','default',124,'gl'), (9071,'Georgian','default',124,'ka'), (9072,'German','default',124,'de'), (9073,'German (Formal)','formal',124,'de'), (9074,'Greek','default',124,'el'), (9075,'Gujarati','default',124,'gu'), (9076,'Hawaiian','default',124,'haw'), (9077,'Hazaragi','default',124,'haz'), (9078,'Hebrew','default',124,'he'), (9079,'Hindi','default',124,'hi'), (9080,'Hungarian','default',124,'hu'), (9081,'Icelandic','default',124,'is'), (9082,'Indonesian','default',124,'id'), (9083,'Irish','default',124,'ga'), (9084,'Italian','default',124,'it'), (9085,'Japanese','default',124,'ja'), (9086,'Javanese','default',124,'jv'), (9087,'Kannada','default',124,'kn'), (9088,'Kazakh','default',124,'kk'), (9089,'Khmer','default',124,'km'), (9090,'Kirghiz','default',124,'ky'), (9091,'Korean','default',124,'ko'), (9092,'Kurdish','default',124,'ckb'), (9093,'Kurdish (Kurmanji)','default',124,'ku'), (9094,'Lao','default',124,'lo'), (9095,'Latin','default',124,'la'), (9096,'Latvian','default',124,'lv'), (9097,'Limburgish','default',124,'li'), (9098,'Lithuanian','default',124,'lt'), (9099,'Luxembourgish','default',124,'lb'), (9100,'Macedonian','default',124,'mk'), (9101,'Malagasy','default',124,'mg'), (9102,'Malay','default',124,'ms'), (9103,'Malayalam','default',124,'ml'), (9105,'Marathi','default',124,'mr'), (9106,'Mongolian','default',124,'mn'), (9107,'Montenegrin','default',124,'me'), (9108,'Nepali','default',124,'ne'), (9109,'Norwegian (BokmÃ¥l)','default',124,'nb'), (9110,'Norwegian (Nynorsk)','default',124,'nn'), (9111,'Ossetic','default',124,'os'), (9112,'Pashto','default',124,'ps'), (9113,'Persian','default',124,'fa'), (9114,'Persian (Afghanistan)','default',124,'fa-af'), (9115,'Peruvian Spanish','default',124,'es-pe'), (9116,'Polish','default',124,'pl'), (9117,'Portuguese','default',124,'pt'), (9118,'Portuguese Informal','informal',124,'pt'), (9119,'Punjabi','default',124,'pa'), (9120,'Romanian','default',124,'ro'), (9121,'Russian','default',124,'ru'), (9122,'Sanskrit','default',124,'sa-in'), (9123,'Sardinian','default',124,'srd'), (9124,'Scottish Gaelic','default',124,'gd'), (9125,'Serbian','default',124,'sr'), (9126,'Sinhala','default',124,'si'), (9127,'Slovak','default',124,'sk'), (9128,'Slovenian','default',124,'sl'), (9129,'Somali','default',124,'so'), (9130,'South Azerbaijani','default',124,'azb'), (9131,'Spanish','default',124,'es'), (9132,'Spanish (Argentina)','default',124,'es-ar'), (9133,'Sundanese','default',124,'su'), (9134,'Swahili','default',124,'sw'), (9135,'Swedish','default',124,'sv'), (9136,'Swiss German','default',124,'gsw'), (9137,'Swiss German (Formal)','formal',124,'gsw'), (9138,'Tagalog','default',124,'tl'), (9139,'Tajik','default',124,'tg'), (9140,'Tamazight (Central Atlas)','default',124,'tzm'), (9141,'Tamil','default',124,'ta'), (9142,'Tamil (Sri Lanka)','default',124,'ta-lk'), (9143,'Telugu','default',124,'te'), (9144,'Thai','default',124,'th'), (9145,'Tibetan','default',124,'bo'), (9146,'Turkish','default',124,'tr'), (9147,'Turkmen','default',124,'tuk'), (9148,'Uighur','default',124,'ug'), (9149,'Ukrainian','default',124,'uk'), (9150,'Urdu','default',124,'ur'), (9151,'Uzbek','default',124,'uz'), (9152,'Venezuelan Spanish','default',124,'es-ve'), (9153,'Vietnamese','default',124,'vi'), (9154,'Welsh','default',124,'cy'), (9156,'Afrikaans','default',130,'af'), (9157,'Albanian','default',130,'sq'), (9158,'Amharic','default',130,'am'), (9159,'Arabic','default',130,'ar'), (9160,'Aragonese','default',130,'an'), (9161,'Armenian','default',130,'hy'), (9162,'Assamese','default',130,'as'), (9163,'Azerbaijani','default',130,'az'), (9164,'Azerbaijani (Turkey)','default',130,'az-tr'), (9165,'Basque','default',130,'eu'), (9167,'Belarusian','default',130,'bel'), (9168,'Bengali','default',130,'bn'), (9169,'Bosnian','default',130,'bs'), (9170,'Brazilian Portuguese','default',130,'pt-br'), (9171,'Breton','default',130,'br'), (9172,'Bulgarian','default',130,'bg'), (9173,'Burmese','default',130,'mya'), (9174,'Catalan','default',130,'ca'), (9175,'Catalan (Balear)','default',130,'bal'), (9176,'Chilean Spanish','default',130,'es-cl'), (9177,'Chinese (China)','default',130,'zh-cn'), (9178,'Chinese (Taiwan)','default',130,'zh-tw'), (9179,'Corsican','default',130,'co'), (9180,'Croatian','default',130,'hr'), (9181,'Czech','default',130,'cs'), (9182,'Danish','default',130,'da'), (9183,'Divehi','default',130,'dv'), (9184,'Dutch','default',130,'nl'), (9185,'Dzongkha','default',130,'dzo'), (9186,'English (Australia)','default',130,'en-au'), (9187,'English (Canada)','default',130,'en-ca'), (9188,'English (UK)','default',130,'en-gb'), (9189,'Esperanto','default',130,'eo'), (9190,'Estonian','default',130,'et'), (9191,'Faroese','default',130,'fo'), (9192,'Finnish','default',130,'fi'), (9193,'French','default',130,'fr'), (9194,'Frisian','default',130,'fy'), (9195,'Galician','default',130,'gl'), (9196,'Georgian','default',130,'ka'), (9197,'German','default',130,'de'), (9198,'German (Formal)','formal',130,'de'), (9199,'Greek','default',130,'el'), (9200,'Gujarati','default',130,'gu'), (9201,'Hawaiian','default',130,'haw'), (9202,'Hazaragi','default',130,'haz'), (9203,'Hebrew','default',130,'he'), (9204,'Hindi','default',130,'hi'), (9205,'Hungarian','default',130,'hu'), (9206,'Icelandic','default',130,'is'), (9207,'Indonesian','default',130,'id'), (9208,'Irish','default',130,'ga'), (9209,'Italian','default',130,'it'), (9210,'Japanese','default',130,'ja'), (9211,'Javanese','default',130,'jv'), (9212,'Kannada','default',130,'kn'), (9213,'Kazakh','default',130,'kk'), (9214,'Khmer','default',130,'km'), (9215,'Kirghiz','default',130,'ky'), (9216,'Korean','default',130,'ko'), (9217,'Kurdish','default',130,'ckb'), (9218,'Kurdish (Kurmanji)','default',130,'ku'), (9219,'Lao','default',130,'lo'), (9220,'Latin','default',130,'la'), (9221,'Latvian','default',130,'lv'), (9222,'Limburgish','default',130,'li'), (9223,'Lithuanian','default',130,'lt'), (9224,'Luxembourgish','default',130,'lb'), (9225,'Macedonian','default',130,'mk'), (9226,'Malagasy','default',130,'mg'), (9227,'Malay','default',130,'ms'), (9228,'Malayalam','default',130,'ml'), (9230,'Marathi','default',130,'mr'), (9231,'Mongolian','default',130,'mn'), (9232,'Montenegrin','default',130,'me'), (9233,'Nepali','default',130,'ne'), (9234,'Norwegian (BokmÃ¥l)','default',130,'nb'), (9235,'Norwegian (Nynorsk)','default',130,'nn'), (9236,'Ossetic','default',130,'os'), (9237,'Pashto','default',130,'ps'), (9238,'Persian','default',130,'fa'), (9239,'Persian (Afghanistan)','default',130,'fa-af'), (9240,'Peruvian Spanish','default',130,'es-pe'), (9241,'Polish','default',130,'pl'), (9242,'Portuguese','default',130,'pt'), (9243,'Portuguese Informal','informal',130,'pt'), (9244,'Punjabi','default',130,'pa'), (9245,'Romanian','default',130,'ro'), (9246,'Russian','default',130,'ru'), (9247,'Sanskrit','default',130,'sa-in'), (9248,'Sardinian','default',130,'srd'), (9249,'Scottish Gaelic','default',130,'gd'), (9250,'Serbian','default',130,'sr'), (9251,'Sinhala','default',130,'si'), (9252,'Slovak','default',130,'sk'), (9253,'Slovenian','default',130,'sl'), (9254,'Somali','default',130,'so'), (9255,'South Azerbaijani','default',130,'azb'), (9256,'Spanish','default',130,'es'), (9257,'Spanish (Argentina)','default',130,'es-ar'), (9258,'Sundanese','default',130,'su'), (9259,'Swahili','default',130,'sw'), (9260,'Swedish','default',130,'sv'), (9261,'Swiss German','default',130,'gsw'), (9262,'Swiss German (Formal)','formal',130,'gsw'), (9263,'Tagalog','default',130,'tl'), (9264,'Tajik','default',130,'tg'), (9265,'Tamazight (Central Atlas)','default',130,'tzm'), (9266,'Tamil','default',130,'ta'), (9267,'Tamil (Sri Lanka)','default',130,'ta-lk'), (9268,'Telugu','default',130,'te'), (9269,'Thai','default',130,'th'), (9270,'Tibetan','default',130,'bo'), (9271,'Turkish','default',130,'tr'), (9272,'Turkmen','default',130,'tuk'), (9273,'Uighur','default',130,'ug'), (9274,'Ukrainian','default',130,'uk'), (9275,'Urdu','default',130,'ur'), (9276,'Uzbek','default',130,'uz'), (9277,'Venezuelan Spanish','default',130,'es-ve'), (9278,'Vietnamese','default',130,'vi'), (9279,'Welsh','default',130,'cy'), (9280,'Azerbaijani','default',81,'az'), (9281,'Azerbaijani','default',59,'az'), (9282,'Azerbaijani','default',14,'az'), (9283,'Azerbaijani','default',57,'az'), (9284,'Azerbaijani','default',5,'az'), (9285,'Azerbaijani','default',50,'az'), (9286,'Azerbaijani','default',67,'az'), (9287,'Bulgarian','default',67,'bg'), (9288,'Bulgarian','default',57,'bg'), (9289,'Bulgarian','default',50,'bg'), (9291,'Marathi','default',7,'mr'), (9292,'Hindi','default',7,'hi'), (9293,'Welsh','default',14,'cy'), (9294,'Estonian','default',14,'et'), (9295,'Fulah','default',2,'fuc'), (9296,'Fulah','default',130,'fuc'), (9297,'Fulah','default',101,'fuc'), (9298,'Fulah','default',80,'fuc'), (9299,'Fulah','default',64,'fuc'), (9300,'Fulah','default',55,'fuc'), (9301,'Fulah','default',78,'fuc'), (9302,'Fulah','default',79,'fuc'), (9303,'Fulah','default',15,'fuc'), (9304,'Fulah','default',77,'fuc'), (9305,'Fulah','default',43,'fuc'), (9306,'Fulah','default',41,'fuc'), (9307,'Fulah','default',39,'fuc'), (9308,'Fulah','default',37,'fuc'), (9309,'Fulah','default',35,'fuc'), (9310,'Fulah','default',33,'fuc'), (9311,'Fulah','default',31,'fuc'), (9312,'Fulah','default',29,'fuc'), (9313,'Fulah','default',27,'fuc'), (9314,'Fulah','default',25,'fuc'), (9315,'Fulah','default',23,'fuc'), (9316,'Fulah','default',21,'fuc'), (9317,'Fulah','default',19,'fuc'), (9318,'Fulah','default',66,'fuc'), (9319,'Fulah','default',81,'fuc'), (9320,'Greek','default',7,'el'), (9322,'French (France)','default',67,'fr'), (9323,'English (UK)','default',59,'en-gb'), (9324,'English (UK)','default',14,'en-gb'), (9325,'English (UK)','default',67,'en-gb'), (9326,'English (UK)','default',7,'en-gb'), (9327,'English (UK)','default',5,'en-gb'), (9328,'English (UK)','default',57,'en-gb'), (9329,'English (UK)','default',50,'en-gb'), (9330,'English (UK)','default',19,'en-gb'), (9331,'English (UK)','default',21,'en-gb'), (9332,'English (UK)','default',23,'en-gb'), (9333,'English (UK)','default',25,'en-gb'), (9334,'English (UK)','default',27,'en-gb'), (9335,'English (UK)','default',29,'en-gb'), (9336,'English (UK)','default',31,'en-gb'), (9337,'English (UK)','default',33,'en-gb'), (9338,'English (UK)','default',35,'en-gb'), (9339,'English (UK)','default',37,'en-gb'), (9340,'English (UK)','default',39,'en-gb'), (9341,'English (UK)','default',41,'en-gb'), (9342,'English (UK)','default',43,'en-gb'), (9343,'Spanish (Mexico)','default',59,'es-mx'), (9344,'Spanish (Mexico)','default',113,'es-mx'), (9345,'Spanish (Mexico)','default',66,'es-mx'), (9346,'Spanish (Mexico)','default',2,'es-mx'), (9347,'Spanish (Mexico)','default',130,'es-mx'), (9348,'Spanish (Mexico)','default',101,'es-mx'), (9349,'Spanish (Mexico)','default',80,'es-mx'), (9350,'Spanish (Mexico)','default',64,'es-mx'), (9351,'Spanish (Mexico)','default',55,'es-mx'), (9352,'Spanish (Mexico)','default',78,'es-mx'), (9353,'Spanish (Mexico)','default',79,'es-mx'), (9354,'Spanish (Mexico)','default',15,'es-mx'), (9355,'Greek','default',59,'el'), (9357,'Kannada','default',59,'kn'), (9358,'Kannada','default',14,'kn'), (9359,'Kannada','default',57,'kn'), (9360,'Kannada','default',7,'kn'), (9361,'Rohingya','default',66,'rhg'), (9362,'Rohingya','default',59,'rhg'), (9363,'Rohingya','default',82,'rhg'), (9364,'Rohingya','default',2,'rhg'), (9365,'Rohingya','default',130,'rhg'), (9366,'Rohingya','default',101,'rhg'), (9367,'Rohingya','default',80,'rhg'), (9368,'Rohingya','default',64,'rhg'), (9369,'Rohingya','default',55,'rhg'), (9370,'Rohingya','default',78,'rhg'), (9371,'Rohingya','default',79,'rhg'), (9372,'Rohingya','default',15,'rhg'), (9373,'Rohingya','default',14,'rhg'), (9374,'Rohingya','default',7,'rhg'), (9375,'Rohingya','default',5,'rhg'), (9376,'Rohingya','default',50,'rhg'), (9377,'Rohingya','default',57,'rhg'), (9378,'Hindi','default',59,'hi'), (9379,'Hindi','default',14,'hi'), (9380,'Hindi','default',57,'hi'), (9428,'Arabic','default',131,'ar'), (9429,'Azerbaijani','default',131,'az'), (9430,'Basque','default',131,'eu'), (9431,'Bengali','default',131,'bn'), (9432,'Bosnian','default',131,'bs'), (9433,'Bulgarian','default',131,'bg'), (9434,'Burmese','default',131,'mya'), (9435,'Catalan','default',131,'ca'), (9436,'Chinese (China)','default',131,'zh-cn'), (9437,'Chinese (Taiwan)','default',131,'zh-tw'), (9438,'Croatian','default',131,'hr'), (9439,'Czech','default',131,'cs'), (9440,'Danish','default',131,'da'), (9441,'Dutch','default',131,'nl'), (9442,'English (Australia)','default',131,'en-au'), (9443,'English (UK)','default',131,'en-gb'), (9444,'Estonian','default',131,'et'), (9445,'Finnish','default',131,'fi'), (9446,'French (France)','default',131,'fr'), (9447,'Frisian','default',131,'fy'), (9448,'Galician','default',131,'gl'), (9449,'Georgian','default',131,'ka'), (9450,'German','default',131,'de'), (9451,'Greek','default',131,'el'), (9453,'Hebrew','default',131,'he'), (9454,'Hindi','default',131,'hi'), (9455,'Hungarian','default',131,'hu'), (9456,'Icelandic','default',131,'is'), (9457,'Indonesian','default',131,'id'), (9458,'Italian','default',131,'it'), (9459,'Japanese','default',131,'ja'), (9460,'Kannada','default',131,'kn'), (9461,'Korean','default',131,'ko'), (9462,'Latvian','default',131,'lv'), (9463,'Limburgish','default',131,'li'), (9464,'Macedonian','default',131,'mk'), (9465,'Norwegian (BokmÃ¥l)','default',131,'nb'), (9466,'Persian','default',131,'fa'), (9467,'Polish','default',131,'pl'), (9468,'Portuguese (Brazil)','default',131,'pt-br'), (9469,'Portuguese (Portugal)','default',131,'pt'), (9470,'Rohingya','default',131,'rhg'), (9471,'Romanian','default',131,'ro'), (9472,'Russian','default',131,'ru'), (9473,'Serbian','default',131,'sr'), (9474,'Slovak','default',131,'sk'), (9475,'Somali','default',131,'so'), (9476,'Spanish (Spain)','default',131,'es'), (9477,'Swahili','default',131,'sw'), (9478,'Swedish','default',131,'sv'), (9479,'Tagalog','default',131,'tl'), (9480,'Thai','default',131,'th'), (9481,'Turkish','default',131,'tr'), (9482,'Ukrainian','default',131,'uk'), (9483,'Vietnamese','default',131,'vi'), (9484,'Welsh','default',131,'cy'), (11924,'Afrikaans','default',206,'af'), (11925,'Albanian','default',206,'sq'), (11926,'Amharic','default',206,'am'), (11927,'Arabic','default',206,'ar'), (11928,'Aragonese','default',206,'an'), (11929,'Armenian','default',206,'hy'), (11930,'Assamese','default',206,'as'), (11931,'Azerbaijani','default',206,'az'), (11932,'Azerbaijani (Turkey)','default',206,'az-tr'), (11933,'Basque','default',206,'eu'), (11934,'Belarusian','default',206,'bel'), (11936,'Bengali','default',206,'bn'), (11937,'Bosnian','default',206,'bs'), (11938,'Brazilian Portuguese','default',206,'pt-br'), (11939,'Breton','default',206,'br'), (11940,'Bulgarian','default',206,'bg'), (11941,'Burmese','default',206,'mya'), (11942,'Catalan','default',206,'ca'), (11943,'Catalan (Balear)','default',206,'bal'), (11944,'Chilean Spanish','default',206,'es-cl'), (11945,'Chinese (China)','default',206,'zh-cn'), (11946,'Chinese (Taiwan)','default',206,'zh-tw'), (11947,'Corsican','default',206,'co'), (11948,'Croatian','default',206,'hr'), (11949,'Czech','default',206,'cs'), (11950,'Danish','default',206,'da'), (11951,'Divehi','default',206,'dv'), (11952,'Dutch','default',206,'nl'), (11953,'Dzongkha','default',206,'dzo'), (11954,'English (Australia)','default',206,'en-au'), (11955,'English (Canada)','default',206,'en-ca'), (11956,'English (UK)','default',206,'en-gb'), (11957,'Esperanto','default',206,'eo'), (11958,'Estonian','default',206,'et'), (11959,'Faroese','default',206,'fo'), (11960,'Finnish','default',206,'fi'), (11961,'French','default',206,'fr'), (11962,'Frisian','default',206,'fy'), (11963,'Fulah','default',206,'fuc'), (11964,'Galician','default',206,'gl'), (11965,'Georgian','default',206,'ka'), (11966,'German','default',206,'de'), (11967,'German (Formal)','formal',206,'de'), (11968,'Greek','default',206,'el'), (11969,'Gujarati','default',206,'gu'), (11970,'Hawaiian','default',206,'haw'), (11971,'Hazaragi','default',206,'haz'), (11972,'Hebrew','default',206,'he'), (11973,'Hindi','default',206,'hi'), (11974,'Hungarian','default',206,'hu'), (11975,'Icelandic','default',206,'is'), (11976,'Indonesian','default',206,'id'), (11977,'Irish','default',206,'ga'), (11978,'Italian','default',206,'it'), (11979,'Japanese','default',206,'ja'), (11980,'Javanese','default',206,'jv'), (11981,'Kannada','default',206,'kn'), (11982,'Kazakh','default',206,'kk'), (11983,'Khmer','default',206,'km'), (11984,'Kirghiz','default',206,'ky'), (11985,'Korean','default',206,'ko'), (11986,'Kurdish','default',206,'ckb'), (11987,'Kurdish (Kurmanji)','default',206,'ku'), (11988,'Lao','default',206,'lo'), (11989,'Latin','default',206,'la'), (11990,'Latvian','default',206,'lv'), (11991,'Limburgish','default',206,'li'), (11992,'Lithuanian','default',206,'lt'), (11993,'Luxembourgish','default',206,'lb'), (11994,'Macedonian','default',206,'mk'), (11995,'Malagasy','default',206,'mg'), (11996,'Malay','default',206,'ms'), (11997,'Malayalam','default',206,'ml'), (11999,'Marathi','default',206,'mr'), (12000,'Mongolian','default',206,'mn'), (12001,'Montenegrin','default',206,'me'), (12002,'Nepali','default',206,'ne'), (12003,'Norwegian (BokmÃ¥l)','default',206,'nb'), (12004,'Norwegian (Nynorsk)','default',206,'nn'), (12005,'Ossetic','default',206,'os'), (12006,'Pashto','default',206,'ps'), (12007,'Persian','default',206,'fa'), (12008,'Persian (Afghanistan)','default',206,'fa-af'), (12009,'Peruvian Spanish','default',206,'es-pe'), (12010,'Polish','default',206,'pl'), (12011,'Portuguese','default',206,'pt'), (12012,'Portuguese Informal','informal',206,'pt'), (12013,'Punjabi','default',206,'pa'), (12014,'Rohingya','default',206,'rhg'), (12015,'Romanian','default',206,'ro'), (12016,'Russian','default',206,'ru'), (12017,'Sanskrit','default',206,'sa-in'), (12018,'Sardinian','default',206,'srd'), (12019,'Scottish Gaelic','default',206,'gd'), (12020,'Serbian','default',206,'sr'), (12021,'Sinhala','default',206,'si'), (12022,'Slovak','default',206,'sk'), (12023,'Slovenian','default',206,'sl'), (12024,'Somali','default',206,'so'), (12025,'South Azerbaijani','default',206,'azb'), (12026,'Spanish','default',206,'es'), (12027,'Spanish (Argentina)','default',206,'es-ar'), (12028,'Spanish (Mexico)','default',206,'es-mx'), (12029,'Sundanese','default',206,'su'), (12030,'Swahili','default',206,'sw'), (12031,'Swedish','default',206,'sv'), (12032,'Swiss German','default',206,'gsw'), (12033,'Swiss German (Formal)','formal',206,'gsw'), (12034,'Tagalog','default',206,'tl'), (12035,'Tajik','default',206,'tg'), (12036,'Tamazight (Central Atlas)','default',206,'tzm'), (12037,'Tamil','default',206,'ta'), (12038,'Tamil (Sri Lanka)','default',206,'ta-lk'), (12039,'Telugu','default',206,'te'), (12040,'Thai','default',206,'th'), (12041,'Tibetan','default',206,'bo'), (12042,'Turkish','default',206,'tr'), (12043,'Turkmen','default',206,'tuk'), (12044,'Uighur','default',206,'ug'), (12045,'Ukrainian','default',206,'uk'), (12046,'Urdu','default',206,'ur'), (12047,'Uzbek','default',206,'uz'), (12048,'Venezuelan Spanish','default',206,'es-ve'), (12049,'Vietnamese','default',206,'vi'), (12050,'Welsh','default',206,'cy'), (12052,'Afrikaans','default',207,'af'), (12053,'Albanian','default',207,'sq'), (12054,'Amharic','default',207,'am'), (12055,'Arabic','default',207,'ar'), (12056,'Aragonese','default',207,'an'), (12057,'Armenian','default',207,'hy'), (12058,'Assamese','default',207,'as'), (12059,'Azerbaijani','default',207,'az'), (12060,'Azerbaijani (Turkey)','default',207,'az-tr'), (12061,'Basque','default',207,'eu'), (12062,'Belarusian','default',207,'bel'), (12064,'Bengali','default',207,'bn'), (12065,'Bosnian','default',207,'bs'), (12066,'Brazilian Portuguese','default',207,'pt-br'), (12067,'Breton','default',207,'br'), (12068,'Bulgarian','default',207,'bg'), (12069,'Burmese','default',207,'mya'), (12070,'Catalan','default',207,'ca'), (12071,'Catalan (Balear)','default',207,'bal'), (12072,'Chilean Spanish','default',207,'es-cl'), (12073,'Chinese (China)','default',207,'zh-cn'), (12074,'Chinese (Taiwan)','default',207,'zh-tw'), (12075,'Corsican','default',207,'co'), (12076,'Croatian','default',207,'hr'), (12077,'Czech','default',207,'cs'), (12078,'Danish','default',207,'da'), (12079,'Divehi','default',207,'dv'), (12080,'Dutch','default',207,'nl'), (12081,'Dzongkha','default',207,'dzo'), (12082,'English (Australia)','default',207,'en-au'), (12083,'English (Canada)','default',207,'en-ca'), (12084,'English (UK)','default',207,'en-gb'), (12085,'Esperanto','default',207,'eo'), (12086,'Estonian','default',207,'et'), (12087,'Faroese','default',207,'fo'), (12088,'Finnish','default',207,'fi'), (12089,'French','default',207,'fr'), (12090,'Frisian','default',207,'fy'), (12091,'Fulah','default',207,'fuc'), (12092,'Galician','default',207,'gl'), (12093,'Georgian','default',207,'ka'), (12094,'German','default',207,'de'), (12095,'German (Formal)','formal',207,'de'), (12096,'Greek','default',207,'el'), (12097,'Gujarati','default',207,'gu'), (12098,'Hawaiian','default',207,'haw'), (12099,'Hazaragi','default',207,'haz'), (12100,'Hebrew','default',207,'he'), (12101,'Hindi','default',207,'hi'), (12102,'Hungarian','default',207,'hu'), (12103,'Icelandic','default',207,'is'), (12104,'Indonesian','default',207,'id'), (12105,'Irish','default',207,'ga'), (12106,'Italian','default',207,'it'), (12107,'Japanese','default',207,'ja'), (12108,'Javanese','default',207,'jv'), (12109,'Kannada','default',207,'kn'), (12110,'Kazakh','default',207,'kk'), (12111,'Khmer','default',207,'km'), (12112,'Kirghiz','default',207,'ky'), (12113,'Korean','default',207,'ko'), (12114,'Kurdish','default',207,'ckb'), (12115,'Kurdish (Kurmanji)','default',207,'ku'), (12116,'Lao','default',207,'lo'), (12117,'Latin','default',207,'la'), (12118,'Latvian','default',207,'lv'), (12119,'Limburgish','default',207,'li'), (12120,'Lithuanian','default',207,'lt'), (12121,'Luxembourgish','default',207,'lb'), (12122,'Macedonian','default',207,'mk'), (12123,'Malagasy','default',207,'mg'), (12124,'Malay','default',207,'ms'), (12125,'Malayalam','default',207,'ml'), (12127,'Marathi','default',207,'mr'), (12128,'Mongolian','default',207,'mn'), (12129,'Montenegrin','default',207,'me'), (12130,'Nepali','default',207,'ne'), (12131,'Norwegian (BokmÃ¥l)','default',207,'nb'), (12132,'Norwegian (Nynorsk)','default',207,'nn'), (12133,'Ossetic','default',207,'os'), (12134,'Pashto','default',207,'ps'), (12135,'Persian','default',207,'fa'), (12136,'Persian (Afghanistan)','default',207,'fa-af'), (12137,'Peruvian Spanish','default',207,'es-pe'), (12138,'Polish','default',207,'pl'), (12139,'Portuguese','default',207,'pt'), (12140,'Portuguese Informal','informal',207,'pt'), (12141,'Punjabi','default',207,'pa'), (12142,'Rohingya','default',207,'rhg'), (12143,'Romanian','default',207,'ro'), (12144,'Russian','default',207,'ru'), (12145,'Sanskrit','default',207,'sa-in'), (12146,'Sardinian','default',207,'srd'), (12147,'Scottish Gaelic','default',207,'gd'), (12148,'Serbian','default',207,'sr'), (12149,'Sinhala','default',207,'si'), (12150,'Slovak','default',207,'sk'), (12151,'Slovenian','default',207,'sl'), (12152,'Somali','default',207,'so'), (12153,'South Azerbaijani','default',207,'azb'), (12154,'Spanish','default',207,'es'), (12155,'Spanish (Argentina)','default',207,'es-ar'), (12156,'Spanish (Mexico)','default',207,'es-mx'), (12157,'Sundanese','default',207,'su'), (12158,'Swahili','default',207,'sw'), (12159,'Swedish','default',207,'sv'), (12160,'Swiss German','default',207,'gsw'), (12161,'Swiss German (Formal)','formal',207,'gsw'), (12162,'Tagalog','default',207,'tl'), (12163,'Tajik','default',207,'tg'), (12164,'Tamazight (Central Atlas)','default',207,'tzm'), (12165,'Tamil','default',207,'ta'), (12166,'Tamil (Sri Lanka)','default',207,'ta-lk'), (12167,'Telugu','default',207,'te'), (12168,'Thai','default',207,'th'), (12169,'Tibetan','default',207,'bo'), (12170,'Turkish','default',207,'tr'), (12171,'Turkmen','default',207,'tuk'), (12172,'Uighur','default',207,'ug'), (12173,'Ukrainian','default',207,'uk'), (12174,'Urdu','default',207,'ur'), (12175,'Uzbek','default',207,'uz'), (12176,'Venezuelan Spanish','default',207,'es-ve'), (12177,'Vietnamese','default',207,'vi'), (12178,'Welsh','default',207,'cy'), (12180,'Afrikaans','default',208,'af'), (12181,'Albanian','default',208,'sq'), (12182,'Amharic','default',208,'am'), (12183,'Arabic','default',208,'ar'), (12184,'Aragonese','default',208,'an'), (12185,'Armenian','default',208,'hy'), (12186,'Assamese','default',208,'as'), (12187,'Azerbaijani','default',208,'az'), (12188,'Azerbaijani (Turkey)','default',208,'az-tr'), (12189,'Basque','default',208,'eu'), (12190,'Belarusian','default',208,'bel'), (12192,'Bengali','default',208,'bn'), (12193,'Bosnian','default',208,'bs'), (12194,'Brazilian Portuguese','default',208,'pt-br'), (12195,'Breton','default',208,'br'), (12196,'Bulgarian','default',208,'bg'), (12197,'Burmese','default',208,'mya'), (12198,'Catalan','default',208,'ca'), (12199,'Catalan (Balear)','default',208,'bal'), (12200,'Chilean Spanish','default',208,'es-cl'), (12201,'Chinese (China)','default',208,'zh-cn'), (12202,'Chinese (Taiwan)','default',208,'zh-tw'), (12203,'Corsican','default',208,'co'), (12204,'Croatian','default',208,'hr'), (12205,'Czech','default',208,'cs'), (12206,'Danish','default',208,'da'), (12207,'Divehi','default',208,'dv'), (12208,'Dutch','default',208,'nl'), (12209,'Dzongkha','default',208,'dzo'), (12210,'English (Australia)','default',208,'en-au'), (12211,'English (Canada)','default',208,'en-ca'), (12212,'English (UK)','default',208,'en-gb'), (12213,'Esperanto','default',208,'eo'), (12214,'Estonian','default',208,'et'), (12215,'Faroese','default',208,'fo'), (12216,'Finnish','default',208,'fi'), (12217,'French','default',208,'fr'), (12218,'Frisian','default',208,'fy'), (12219,'Fulah','default',208,'fuc'), (12220,'Galician','default',208,'gl'), (12221,'Georgian','default',208,'ka'), (12222,'German','default',208,'de'), (12223,'German (Formal)','formal',208,'de'), (12224,'Greek','default',208,'el'), (12225,'Gujarati','default',208,'gu'), (12226,'Hawaiian','default',208,'haw'), (12227,'Hazaragi','default',208,'haz'), (12228,'Hebrew','default',208,'he'), (12229,'Hindi','default',208,'hi'), (12230,'Hungarian','default',208,'hu'), (12231,'Icelandic','default',208,'is'), (12232,'Indonesian','default',208,'id'), (12233,'Irish','default',208,'ga'), (12234,'Italian','default',208,'it'), (12235,'Japanese','default',208,'ja'), (12236,'Javanese','default',208,'jv'), (12237,'Kannada','default',208,'kn'), (12238,'Kazakh','default',208,'kk'), (12239,'Khmer','default',208,'km'), (12240,'Kirghiz','default',208,'ky'), (12241,'Korean','default',208,'ko'), (12242,'Kurdish','default',208,'ckb'), (12243,'Kurdish (Kurmanji)','default',208,'ku'), (12244,'Lao','default',208,'lo'), (12245,'Latin','default',208,'la'), (12246,'Latvian','default',208,'lv'), (12247,'Limburgish','default',208,'li'), (12248,'Lithuanian','default',208,'lt'), (12249,'Luxembourgish','default',208,'lb'), (12250,'Macedonian','default',208,'mk'), (12251,'Malagasy','default',208,'mg'), (12252,'Malay','default',208,'ms'), (12253,'Malayalam','default',208,'ml'), (12255,'Marathi','default',208,'mr'), (12256,'Mongolian','default',208,'mn'), (12257,'Montenegrin','default',208,'me'), (12258,'Nepali','default',208,'ne'), (12259,'Norwegian (BokmÃ¥l)','default',208,'nb'), (12260,'Norwegian (Nynorsk)','default',208,'nn'), (12261,'Ossetic','default',208,'os'), (12262,'Pashto','default',208,'ps'), (12263,'Persian','default',208,'fa'), (12264,'Persian (Afghanistan)','default',208,'fa-af'), (12265,'Peruvian Spanish','default',208,'es-pe'), (12266,'Polish','default',208,'pl'), (12267,'Portuguese','default',208,'pt'), (12268,'Portuguese Informal','informal',208,'pt'), (12269,'Punjabi','default',208,'pa'), (12270,'Rohingya','default',208,'rhg'), (12271,'Romanian','default',208,'ro'), (12272,'Russian','default',208,'ru'), (12273,'Sanskrit','default',208,'sa-in'), (12274,'Sardinian','default',208,'srd'), (12275,'Scottish Gaelic','default',208,'gd'), (12276,'Serbian','default',208,'sr'), (12277,'Sinhala','default',208,'si'), (12278,'Slovak','default',208,'sk'), (12279,'Slovenian','default',208,'sl'), (12280,'Somali','default',208,'so'), (12281,'South Azerbaijani','default',208,'azb'), (12282,'Spanish','default',208,'es'), (12283,'Spanish (Argentina)','default',208,'es-ar'), (12284,'Spanish (Mexico)','default',208,'es-mx'), (12285,'Sundanese','default',208,'su'), (12286,'Swahili','default',208,'sw'), (12287,'Swedish','default',208,'sv'), (12288,'Swiss German','default',208,'gsw'), (12289,'Swiss German (Formal)','formal',208,'gsw'), (12290,'Tagalog','default',208,'tl'), (12291,'Tajik','default',208,'tg'), (12292,'Tamazight (Central Atlas)','default',208,'tzm'), (12293,'Tamil','default',208,'ta'), (12294,'Tamil (Sri Lanka)','default',208,'ta-lk'), (12295,'Telugu','default',208,'te'), (12296,'Thai','default',208,'th'), (12297,'Tibetan','default',208,'bo'), (12298,'Turkish','default',208,'tr'), (12299,'Turkmen','default',208,'tuk'), (12300,'Uighur','default',208,'ug'), (12301,'Ukrainian','default',208,'uk'), (12302,'Urdu','default',208,'ur'), (12303,'Uzbek','default',208,'uz'), (12304,'Venezuelan Spanish','default',208,'es-ve'), (12305,'Vietnamese','default',208,'vi'), (12306,'Welsh','default',208,'cy'), (12308,'Afrikaans','default',209,'af'), (12309,'Albanian','default',209,'sq'), (12310,'Amharic','default',209,'am'), (12311,'Arabic','default',209,'ar'), (12312,'Aragonese','default',209,'an'), (12313,'Armenian','default',209,'hy'), (12314,'Assamese','default',209,'as'), (12315,'Azerbaijani','default',209,'az'), (12316,'Azerbaijani (Turkey)','default',209,'az-tr'), (12317,'Basque','default',209,'eu'), (12318,'Belarusian','default',209,'bel'), (12320,'Bengali','default',209,'bn'), (12321,'Bosnian','default',209,'bs'), (12322,'Brazilian Portuguese','default',209,'pt-br'), (12323,'Breton','default',209,'br'), (12324,'Bulgarian','default',209,'bg'), (12325,'Burmese','default',209,'mya'), (12326,'Catalan','default',209,'ca'), (12327,'Catalan (Balear)','default',209,'bal'), (12328,'Chilean Spanish','default',209,'es-cl'), (12329,'Chinese (China)','default',209,'zh-cn'), (12330,'Chinese (Taiwan)','default',209,'zh-tw'), (12331,'Corsican','default',209,'co'), (12332,'Croatian','default',209,'hr'), (12333,'Czech','default',209,'cs'), (12334,'Danish','default',209,'da'), (12335,'Divehi','default',209,'dv'), (12336,'Dutch','default',209,'nl'), (12337,'Dzongkha','default',209,'dzo'), (12338,'English (Australia)','default',209,'en-au'), (12339,'English (Canada)','default',209,'en-ca'), (12340,'English (UK)','default',209,'en-gb'), (12341,'Esperanto','default',209,'eo'), (12342,'Estonian','default',209,'et'), (12343,'Faroese','default',209,'fo'), (12344,'Finnish','default',209,'fi'), (12345,'French','default',209,'fr'), (12346,'Frisian','default',209,'fy'), (12347,'Fulah','default',209,'fuc'), (12348,'Galician','default',209,'gl'), (12349,'Georgian','default',209,'ka'), (12350,'German','default',209,'de'), (12351,'German (Formal)','formal',209,'de'), (12352,'Greek','default',209,'el'), (12353,'Gujarati','default',209,'gu'), (12354,'Hawaiian','default',209,'haw'), (12355,'Hazaragi','default',209,'haz'), (12356,'Hebrew','default',209,'he'), (12357,'Hindi','default',209,'hi'), (12358,'Hungarian','default',209,'hu'), (12359,'Icelandic','default',209,'is'), (12360,'Indonesian','default',209,'id'), (12361,'Irish','default',209,'ga'), (12362,'Italian','default',209,'it'), (12363,'Japanese','default',209,'ja'), (12364,'Javanese','default',209,'jv'), (12365,'Kannada','default',209,'kn'), (12366,'Kazakh','default',209,'kk'), (12367,'Khmer','default',209,'km'), (12368,'Kirghiz','default',209,'ky'), (12369,'Korean','default',209,'ko'), (12370,'Kurdish','default',209,'ckb'), (12371,'Kurdish (Kurmanji)','default',209,'ku'), (12372,'Lao','default',209,'lo'), (12373,'Latin','default',209,'la'), (12374,'Latvian','default',209,'lv'), (12375,'Limburgish','default',209,'li'), (12376,'Lithuanian','default',209,'lt'), (12377,'Luxembourgish','default',209,'lb'), (12378,'Macedonian','default',209,'mk'), (12379,'Malagasy','default',209,'mg'), (12380,'Malay','default',209,'ms'), (12381,'Malayalam','default',209,'ml'), (12383,'Marathi','default',209,'mr'), (12384,'Mongolian','default',209,'mn'), (12385,'Montenegrin','default',209,'me'), (12386,'Nepali','default',209,'ne'), (12387,'Norwegian (BokmÃ¥l)','default',209,'nb'), (12388,'Norwegian (Nynorsk)','default',209,'nn'), (12389,'Ossetic','default',209,'os'), (12390,'Pashto','default',209,'ps'), (12391,'Persian','default',209,'fa'), (12392,'Persian (Afghanistan)','default',209,'fa-af'), (12393,'Peruvian Spanish','default',209,'es-pe'), (12394,'Polish','default',209,'pl'), (12395,'Portuguese','default',209,'pt'), (12396,'Portuguese Informal','informal',209,'pt'), (12397,'Punjabi','default',209,'pa'), (12398,'Rohingya','default',209,'rhg'), (12399,'Romanian','default',209,'ro'), (12400,'Russian','default',209,'ru'), (12401,'Sanskrit','default',209,'sa-in'), (12402,'Sardinian','default',209,'srd'), (12403,'Scottish Gaelic','default',209,'gd'), (12404,'Serbian','default',209,'sr'), (12405,'Sinhala','default',209,'si'), (12406,'Slovak','default',209,'sk'), (12407,'Slovenian','default',209,'sl'), (12408,'Somali','default',209,'so'), (12409,'South Azerbaijani','default',209,'azb'), (12410,'Spanish','default',209,'es'), (12411,'Spanish (Argentina)','default',209,'es-ar'), (12412,'Spanish (Mexico)','default',209,'es-mx'), (12413,'Sundanese','default',209,'su'), (12414,'Swahili','default',209,'sw'), (12415,'Swedish','default',209,'sv'), (12416,'Swiss German','default',209,'gsw'), (12417,'Swiss German (Formal)','formal',209,'gsw'), (12418,'Tagalog','default',209,'tl'), (12419,'Tajik','default',209,'tg'), (12420,'Tamazight (Central Atlas)','default',209,'tzm'), (12421,'Tamil','default',209,'ta'), (12422,'Tamil (Sri Lanka)','default',209,'ta-lk'), (12423,'Telugu','default',209,'te'), (12424,'Thai','default',209,'th'), (12425,'Tibetan','default',209,'bo'), (12426,'Turkish','default',209,'tr'), (12427,'Turkmen','default',209,'tuk'), (12428,'Uighur','default',209,'ug'), (12429,'Ukrainian','default',209,'uk'), (12430,'Urdu','default',209,'ur'), (12431,'Uzbek','default',209,'uz'), (12432,'Venezuelan Spanish','default',209,'es-ve'), (12433,'Vietnamese','default',209,'vi'), (12434,'Welsh','default',209,'cy'), (12436,'Afrikaans','default',210,'af'), (12437,'Albanian','default',210,'sq'), (12438,'Amharic','default',210,'am'), (12439,'Arabic','default',210,'ar'), (12440,'Aragonese','default',210,'an'), (12441,'Armenian','default',210,'hy'), (12442,'Assamese','default',210,'as'), (12443,'Azerbaijani','default',210,'az'), (12444,'Azerbaijani (Turkey)','default',210,'az-tr'), (12445,'Basque','default',210,'eu'), (12446,'Belarusian','default',210,'bel'), (12448,'Bengali','default',210,'bn'), (12449,'Bosnian','default',210,'bs'), (12450,'Brazilian Portuguese','default',210,'pt-br'), (12451,'Breton','default',210,'br'), (12452,'Bulgarian','default',210,'bg'), (12453,'Burmese','default',210,'mya'), (12454,'Catalan','default',210,'ca'), (12455,'Catalan (Balear)','default',210,'bal'), (12456,'Chilean Spanish','default',210,'es-cl'), (12457,'Chinese (China)','default',210,'zh-cn'), (12458,'Chinese (Taiwan)','default',210,'zh-tw'), (12459,'Corsican','default',210,'co'), (12460,'Croatian','default',210,'hr'), (12461,'Czech','default',210,'cs'), (12462,'Danish','default',210,'da'), (12463,'Divehi','default',210,'dv'), (12464,'Dutch','default',210,'nl'), (12465,'Dzongkha','default',210,'dzo'), (12466,'English (Australia)','default',210,'en-au'), (12467,'English (Canada)','default',210,'en-ca'), (12468,'English (UK)','default',210,'en-gb'), (12469,'Esperanto','default',210,'eo'), (12470,'Estonian','default',210,'et'), (12471,'Faroese','default',210,'fo'), (12472,'Finnish','default',210,'fi'), (12473,'French','default',210,'fr'), (12474,'Frisian','default',210,'fy'), (12475,'Fulah','default',210,'fuc'), (12476,'Galician','default',210,'gl'), (12477,'Georgian','default',210,'ka'), (12478,'German','default',210,'de'), (12479,'German (Formal)','formal',210,'de'), (12480,'Greek','default',210,'el'), (12481,'Gujarati','default',210,'gu'), (12482,'Hawaiian','default',210,'haw'), (12483,'Hazaragi','default',210,'haz'), (12484,'Hebrew','default',210,'he'), (12485,'Hindi','default',210,'hi'), (12486,'Hungarian','default',210,'hu'), (12487,'Icelandic','default',210,'is'), (12488,'Indonesian','default',210,'id'), (12489,'Irish','default',210,'ga'), (12490,'Italian','default',210,'it'), (12491,'Japanese','default',210,'ja'), (12492,'Javanese','default',210,'jv'), (12493,'Kannada','default',210,'kn'), (12494,'Kazakh','default',210,'kk'), (12495,'Khmer','default',210,'km'), (12496,'Kirghiz','default',210,'ky'), (12497,'Korean','default',210,'ko'), (12498,'Kurdish','default',210,'ckb'), (12499,'Kurdish (Kurmanji)','default',210,'ku'), (12500,'Lao','default',210,'lo'), (12501,'Latin','default',210,'la'), (12502,'Latvian','default',210,'lv'), (12503,'Limburgish','default',210,'li'), (12504,'Lithuanian','default',210,'lt'), (12505,'Luxembourgish','default',210,'lb'), (12506,'Macedonian','default',210,'mk'), (12507,'Malagasy','default',210,'mg'), (12508,'Malay','default',210,'ms'), (12509,'Malayalam','default',210,'ml'), (12511,'Marathi','default',210,'mr'), (12512,'Mongolian','default',210,'mn'), (12513,'Montenegrin','default',210,'me'), (12514,'Nepali','default',210,'ne'), (12515,'Norwegian (BokmÃ¥l)','default',210,'nb'), (12516,'Norwegian (Nynorsk)','default',210,'nn'), (12517,'Ossetic','default',210,'os'), (12518,'Pashto','default',210,'ps'), (12519,'Persian','default',210,'fa'), (12520,'Persian (Afghanistan)','default',210,'fa-af'), (12521,'Peruvian Spanish','default',210,'es-pe'), (12522,'Polish','default',210,'pl'), (12523,'Portuguese','default',210,'pt'), (12524,'Portuguese Informal','informal',210,'pt'), (12525,'Punjabi','default',210,'pa'), (12526,'Rohingya','default',210,'rhg'), (12527,'Romanian','default',210,'ro'), (12528,'Russian','default',210,'ru'), (12529,'Sanskrit','default',210,'sa-in'), (12530,'Sardinian','default',210,'srd'), (12531,'Scottish Gaelic','default',210,'gd'), (12532,'Serbian','default',210,'sr'), (12533,'Sinhala','default',210,'si'), (12534,'Slovak','default',210,'sk'), (12535,'Slovenian','default',210,'sl'), (12536,'Somali','default',210,'so'), (12537,'South Azerbaijani','default',210,'azb'), (12538,'Spanish','default',210,'es'), (12539,'Spanish (Argentina)','default',210,'es-ar'), (12540,'Spanish (Mexico)','default',210,'es-mx'), (12541,'Sundanese','default',210,'su'), (12542,'Swahili','default',210,'sw'), (12543,'Swedish','default',210,'sv'), (12544,'Swiss German','default',210,'gsw'), (12545,'Swiss German (Formal)','formal',210,'gsw'), (12546,'Tagalog','default',210,'tl'), (12547,'Tajik','default',210,'tg'), (12548,'Tamazight (Central Atlas)','default',210,'tzm'), (12549,'Tamil','default',210,'ta'), (12550,'Tamil (Sri Lanka)','default',210,'ta-lk'), (12551,'Telugu','default',210,'te'), (12552,'Thai','default',210,'th'), (12553,'Tibetan','default',210,'bo'), (12554,'Turkish','default',210,'tr'), (12555,'Turkmen','default',210,'tuk'), (12556,'Uighur','default',210,'ug'), (12557,'Ukrainian','default',210,'uk'), (12558,'Urdu','default',210,'ur'), (12559,'Uzbek','default',210,'uz'), (12560,'Venezuelan Spanish','default',210,'es-ve'), (12561,'Vietnamese','default',210,'vi'), (12562,'Welsh','default',210,'cy'), (12564,'Afrikaans','default',211,'af'), (12565,'Albanian','default',211,'sq'), (12566,'Amharic','default',211,'am'), (12567,'Arabic','default',211,'ar'), (12568,'Aragonese','default',211,'an'), (12569,'Armenian','default',211,'hy'), (12570,'Assamese','default',211,'as'), (12571,'Azerbaijani','default',211,'az'), (12572,'Azerbaijani (Turkey)','default',211,'az-tr'), (12573,'Basque','default',211,'eu'), (12574,'Belarusian','default',211,'bel'), (12576,'Bengali','default',211,'bn'), (12577,'Bosnian','default',211,'bs'), (12578,'Brazilian Portuguese','default',211,'pt-br'), (12579,'Breton','default',211,'br'), (12580,'Bulgarian','default',211,'bg'), (12581,'Burmese','default',211,'mya'), (12582,'Catalan','default',211,'ca'), (12583,'Catalan (Balear)','default',211,'bal'), (12584,'Chilean Spanish','default',211,'es-cl'), (12585,'Chinese (China)','default',211,'zh-cn'), (12586,'Chinese (Taiwan)','default',211,'zh-tw'), (12587,'Corsican','default',211,'co'), (12588,'Croatian','default',211,'hr'), (12589,'Czech','default',211,'cs'), (12590,'Danish','default',211,'da'), (12591,'Divehi','default',211,'dv'), (12592,'Dutch','default',211,'nl'), (12593,'Dzongkha','default',211,'dzo'), (12594,'English (Australia)','default',211,'en-au'), (12595,'English (Canada)','default',211,'en-ca'), (12596,'English (UK)','default',211,'en-gb'), (12597,'Esperanto','default',211,'eo'), (12598,'Estonian','default',211,'et'), (12599,'Faroese','default',211,'fo'), (12600,'Finnish','default',211,'fi'), (12601,'French','default',211,'fr'), (12602,'Frisian','default',211,'fy'), (12603,'Fulah','default',211,'fuc'), (12604,'Galician','default',211,'gl'), (12605,'Georgian','default',211,'ka'), (12606,'German','default',211,'de'), (12607,'German (Formal)','formal',211,'de'), (12608,'Greek','default',211,'el'), (12609,'Gujarati','default',211,'gu'), (12610,'Hawaiian','default',211,'haw'), (12611,'Hazaragi','default',211,'haz'), (12612,'Hebrew','default',211,'he'), (12613,'Hindi','default',211,'hi'), (12614,'Hungarian','default',211,'hu'), (12615,'Icelandic','default',211,'is'), (12616,'Indonesian','default',211,'id'), (12617,'Irish','default',211,'ga'), (12618,'Italian','default',211,'it'), (12619,'Japanese','default',211,'ja'), (12620,'Javanese','default',211,'jv'), (12621,'Kannada','default',211,'kn'), (12622,'Kazakh','default',211,'kk'), (12623,'Khmer','default',211,'km'), (12624,'Kirghiz','default',211,'ky'), (12625,'Korean','default',211,'ko'), (12626,'Kurdish','default',211,'ckb'), (12627,'Kurdish (Kurmanji)','default',211,'ku'), (12628,'Lao','default',211,'lo'), (12629,'Latin','default',211,'la'), (12630,'Latvian','default',211,'lv'), (12631,'Limburgish','default',211,'li'), (12632,'Lithuanian','default',211,'lt'), (12633,'Luxembourgish','default',211,'lb'), (12634,'Macedonian','default',211,'mk'), (12635,'Malagasy','default',211,'mg'), (12636,'Malay','default',211,'ms'), (12637,'Malayalam','default',211,'ml'), (12639,'Marathi','default',211,'mr'), (12640,'Mongolian','default',211,'mn'), (12641,'Montenegrin','default',211,'me'), (12642,'Nepali','default',211,'ne'), (12643,'Norwegian (BokmÃ¥l)','default',211,'nb'), (12644,'Norwegian (Nynorsk)','default',211,'nn'), (12645,'Ossetic','default',211,'os'), (12646,'Pashto','default',211,'ps'), (12647,'Persian','default',211,'fa'), (12648,'Persian (Afghanistan)','default',211,'fa-af'), (12649,'Peruvian Spanish','default',211,'es-pe'), (12650,'Polish','default',211,'pl'), (12651,'Portuguese','default',211,'pt'), (12652,'Portuguese Informal','informal',211,'pt'), (12653,'Punjabi','default',211,'pa'), (12654,'Rohingya','default',211,'rhg'), (12655,'Romanian','default',211,'ro'), (12656,'Russian','default',211,'ru'), (12657,'Sanskrit','default',211,'sa-in'), (12658,'Sardinian','default',211,'srd'), (12659,'Scottish Gaelic','default',211,'gd'), (12660,'Serbian','default',211,'sr'), (12661,'Sinhala','default',211,'si'), (12662,'Slovak','default',211,'sk'), (12663,'Slovenian','default',211,'sl'), (12664,'Somali','default',211,'so'), (12665,'South Azerbaijani','default',211,'azb'), (12666,'Spanish','default',211,'es'), (12667,'Spanish (Argentina)','default',211,'es-ar'), (12668,'Spanish (Mexico)','default',211,'es-mx'), (12669,'Sundanese','default',211,'su'), (12670,'Swahili','default',211,'sw'), (12671,'Swedish','default',211,'sv'), (12672,'Swiss German','default',211,'gsw'), (12673,'Swiss German (Formal)','formal',211,'gsw'), (12674,'Tagalog','default',211,'tl'), (12675,'Tajik','default',211,'tg'), (12676,'Tamazight (Central Atlas)','default',211,'tzm'), (12677,'Tamil','default',211,'ta'), (12678,'Tamil (Sri Lanka)','default',211,'ta-lk'), (12679,'Telugu','default',211,'te'), (12680,'Thai','default',211,'th'), (12681,'Tibetan','default',211,'bo'), (12682,'Turkish','default',211,'tr'), (12683,'Turkmen','default',211,'tuk'), (12684,'Uighur','default',211,'ug'), (12685,'Ukrainian','default',211,'uk'), (12686,'Urdu','default',211,'ur'), (12687,'Uzbek','default',211,'uz'), (12688,'Venezuelan Spanish','default',211,'es-ve'), (12689,'Vietnamese','default',211,'vi'), (12690,'Welsh','default',211,'cy'), (12692,'Afrikaans','default',212,'af'), (12693,'Albanian','default',212,'sq'), (12694,'Amharic','default',212,'am'), (12695,'Arabic','default',212,'ar'), (12696,'Aragonese','default',212,'an'), (12697,'Armenian','default',212,'hy'), (12698,'Assamese','default',212,'as'), (12699,'Azerbaijani','default',212,'az'), (12700,'Azerbaijani (Turkey)','default',212,'az-tr'), (12701,'Basque','default',212,'eu'), (12702,'Belarusian','default',212,'bel'), (12704,'Bengali','default',212,'bn'), (12705,'Bosnian','default',212,'bs'), (12706,'Brazilian Portuguese','default',212,'pt-br'), (12707,'Breton','default',212,'br'), (12708,'Bulgarian','default',212,'bg'), (12709,'Burmese','default',212,'mya'), (12710,'Catalan','default',212,'ca'), (12711,'Catalan (Balear)','default',212,'bal'), (12712,'Chilean Spanish','default',212,'es-cl'), (12713,'Chinese (China)','default',212,'zh-cn'), (12714,'Chinese (Taiwan)','default',212,'zh-tw'), (12715,'Corsican','default',212,'co'), (12716,'Croatian','default',212,'hr'), (12717,'Czech','default',212,'cs'), (12718,'Danish','default',212,'da'), (12719,'Divehi','default',212,'dv'), (12720,'Dutch','default',212,'nl'), (12721,'Dzongkha','default',212,'dzo'), (12722,'English (Australia)','default',212,'en-au'), (12723,'English (Canada)','default',212,'en-ca'), (12724,'English (UK)','default',212,'en-gb'), (12725,'Esperanto','default',212,'eo'), (12726,'Estonian','default',212,'et'), (12727,'Faroese','default',212,'fo'), (12728,'Finnish','default',212,'fi'), (12729,'French','default',212,'fr'), (12730,'Frisian','default',212,'fy'), (12731,'Fulah','default',212,'fuc'), (12732,'Galician','default',212,'gl'), (12733,'Georgian','default',212,'ka'), (12734,'German','default',212,'de'), (12735,'German (Formal)','formal',212,'de'), (12736,'Greek','default',212,'el'), (12737,'Gujarati','default',212,'gu'), (12738,'Hawaiian','default',212,'haw'), (12739,'Hazaragi','default',212,'haz'), (12740,'Hebrew','default',212,'he'), (12741,'Hindi','default',212,'hi'), (12742,'Hungarian','default',212,'hu'), (12743,'Icelandic','default',212,'is'), (12744,'Indonesian','default',212,'id'), (12745,'Irish','default',212,'ga'), (12746,'Italian','default',212,'it'), (12747,'Japanese','default',212,'ja'), (12748,'Javanese','default',212,'jv'), (12749,'Kannada','default',212,'kn'), (12750,'Kazakh','default',212,'kk'), (12751,'Khmer','default',212,'km'), (12752,'Kirghiz','default',212,'ky'), (12753,'Korean','default',212,'ko'), (12754,'Kurdish','default',212,'ckb'), (12755,'Kurdish (Kurmanji)','default',212,'ku'), (12756,'Lao','default',212,'lo'), (12757,'Latin','default',212,'la'), (12758,'Latvian','default',212,'lv'), (12759,'Limburgish','default',212,'li'), (12760,'Lithuanian','default',212,'lt'), (12761,'Luxembourgish','default',212,'lb'), (12762,'Macedonian','default',212,'mk'), (12763,'Malagasy','default',212,'mg'), (12764,'Malay','default',212,'ms'), (12765,'Malayalam','default',212,'ml'), (12767,'Marathi','default',212,'mr'), (12768,'Mongolian','default',212,'mn'), (12769,'Montenegrin','default',212,'me'), (12770,'Nepali','default',212,'ne'), (12771,'Norwegian (BokmÃ¥l)','default',212,'nb'), (12772,'Norwegian (Nynorsk)','default',212,'nn'), (12773,'Ossetic','default',212,'os'), (12774,'Pashto','default',212,'ps'), (12775,'Persian','default',212,'fa'), (12776,'Persian (Afghanistan)','default',212,'fa-af'), (12777,'Peruvian Spanish','default',212,'es-pe'), (12778,'Polish','default',212,'pl'), (12779,'Portuguese','default',212,'pt'), (12780,'Portuguese Informal','informal',212,'pt'), (12781,'Punjabi','default',212,'pa'), (12782,'Rohingya','default',212,'rhg'), (12783,'Romanian','default',212,'ro'), (12784,'Russian','default',212,'ru'), (12785,'Sanskrit','default',212,'sa-in'), (12786,'Sardinian','default',212,'srd'), (12787,'Scottish Gaelic','default',212,'gd'), (12788,'Serbian','default',212,'sr'), (12789,'Sinhala','default',212,'si'), (12790,'Slovak','default',212,'sk'), (12791,'Slovenian','default',212,'sl'), (12792,'Somali','default',212,'so'), (12793,'South Azerbaijani','default',212,'azb'), (12794,'Spanish','default',212,'es'), (12795,'Spanish (Argentina)','default',212,'es-ar'), (12796,'Spanish (Mexico)','default',212,'es-mx'), (12797,'Sundanese','default',212,'su'), (12798,'Swahili','default',212,'sw'), (12799,'Swedish','default',212,'sv'), (12800,'Swiss German','default',212,'gsw'), (12801,'Swiss German (Formal)','formal',212,'gsw'), (12802,'Tagalog','default',212,'tl'), (12803,'Tajik','default',212,'tg'), (12804,'Tamazight (Central Atlas)','default',212,'tzm'), (12805,'Tamil','default',212,'ta'), (12806,'Tamil (Sri Lanka)','default',212,'ta-lk'), (12807,'Telugu','default',212,'te'), (12808,'Thai','default',212,'th'), (12809,'Tibetan','default',212,'bo'), (12810,'Turkish','default',212,'tr'), (12811,'Turkmen','default',212,'tuk'), (12812,'Uighur','default',212,'ug'), (12813,'Ukrainian','default',212,'uk'), (12814,'Urdu','default',212,'ur'), (12815,'Uzbek','default',212,'uz'), (12816,'Venezuelan Spanish','default',212,'es-ve'), (12817,'Vietnamese','default',212,'vi'), (12818,'Welsh','default',212,'cy'), (12820,'Afrikaans','default',213,'af'), (12821,'Albanian','default',213,'sq'), (12822,'Amharic','default',213,'am'), (12823,'Arabic','default',213,'ar'), (12824,'Aragonese','default',213,'an'), (12825,'Armenian','default',213,'hy'), (12826,'Assamese','default',213,'as'), (12827,'Azerbaijani','default',213,'az'), (12828,'Azerbaijani (Turkey)','default',213,'az-tr'), (12829,'Basque','default',213,'eu'), (12830,'Belarusian','default',213,'bel'), (12832,'Bengali','default',213,'bn'), (12833,'Bosnian','default',213,'bs'), (12834,'Brazilian Portuguese','default',213,'pt-br'), (12835,'Breton','default',213,'br'), (12836,'Bulgarian','default',213,'bg'), (12837,'Burmese','default',213,'mya'), (12838,'Catalan','default',213,'ca'), (12839,'Catalan (Balear)','default',213,'bal'), (12840,'Chilean Spanish','default',213,'es-cl'), (12841,'Chinese (China)','default',213,'zh-cn'), (12842,'Chinese (Taiwan)','default',213,'zh-tw'), (12843,'Corsican','default',213,'co'), (12844,'Croatian','default',213,'hr'), (12845,'Czech','default',213,'cs'), (12846,'Danish','default',213,'da'), (12847,'Divehi','default',213,'dv'), (12848,'Dutch','default',213,'nl'), (12849,'Dzongkha','default',213,'dzo'), (12850,'English (Australia)','default',213,'en-au'), (12851,'English (Canada)','default',213,'en-ca'), (12852,'English (UK)','default',213,'en-gb'), (12853,'Esperanto','default',213,'eo'), (12854,'Estonian','default',213,'et'), (12855,'Faroese','default',213,'fo'), (12856,'Finnish','default',213,'fi'), (12857,'French','default',213,'fr'), (12858,'Frisian','default',213,'fy'), (12859,'Fulah','default',213,'fuc'), (12860,'Galician','default',213,'gl'), (12861,'Georgian','default',213,'ka'), (12862,'German','default',213,'de'), (12863,'German (Formal)','formal',213,'de'), (12864,'Greek','default',213,'el'), (12865,'Gujarati','default',213,'gu'), (12866,'Hawaiian','default',213,'haw'), (12867,'Hazaragi','default',213,'haz'), (12868,'Hebrew','default',213,'he'), (12869,'Hindi','default',213,'hi'), (12870,'Hungarian','default',213,'hu'), (12871,'Icelandic','default',213,'is'), (12872,'Indonesian','default',213,'id'), (12873,'Irish','default',213,'ga'), (12874,'Italian','default',213,'it'), (12875,'Japanese','default',213,'ja'), (12876,'Javanese','default',213,'jv'), (12877,'Kannada','default',213,'kn'), (12878,'Kazakh','default',213,'kk'), (12879,'Khmer','default',213,'km'), (12880,'Kirghiz','default',213,'ky'), (12881,'Korean','default',213,'ko'), (12882,'Kurdish','default',213,'ckb'), (12883,'Kurdish (Kurmanji)','default',213,'ku'), (12884,'Lao','default',213,'lo'), (12885,'Latin','default',213,'la'), (12886,'Latvian','default',213,'lv'), (12887,'Limburgish','default',213,'li'), (12888,'Lithuanian','default',213,'lt'), (12889,'Luxembourgish','default',213,'lb'), (12890,'Macedonian','default',213,'mk'), (12891,'Malagasy','default',213,'mg'), (12892,'Malay','default',213,'ms'), (12893,'Malayalam','default',213,'ml'), (12895,'Marathi','default',213,'mr'), (12896,'Mongolian','default',213,'mn'), (12897,'Montenegrin','default',213,'me'), (12898,'Nepali','default',213,'ne'), (12899,'Norwegian (BokmÃ¥l)','default',213,'nb'), (12900,'Norwegian (Nynorsk)','default',213,'nn'), (12901,'Ossetic','default',213,'os'), (12902,'Pashto','default',213,'ps'), (12903,'Persian','default',213,'fa'), (12904,'Persian (Afghanistan)','default',213,'fa-af'), (12905,'Peruvian Spanish','default',213,'es-pe'), (12906,'Polish','default',213,'pl'), (12907,'Portuguese','default',213,'pt'), (12908,'Portuguese Informal','informal',213,'pt'), (12909,'Punjabi','default',213,'pa'), (12910,'Rohingya','default',213,'rhg'), (12911,'Romanian','default',213,'ro'), (12912,'Russian','default',213,'ru'), (12913,'Sanskrit','default',213,'sa-in'), (12914,'Sardinian','default',213,'srd'), (12915,'Scottish Gaelic','default',213,'gd'), (12916,'Serbian','default',213,'sr'), (12917,'Sinhala','default',213,'si'), (12918,'Slovak','default',213,'sk'), (12919,'Slovenian','default',213,'sl'), (12920,'Somali','default',213,'so'), (12921,'South Azerbaijani','default',213,'azb'), (12922,'Spanish','default',213,'es'), (12923,'Spanish (Argentina)','default',213,'es-ar'), (12924,'Spanish (Mexico)','default',213,'es-mx'), (12925,'Sundanese','default',213,'su'), (12926,'Swahili','default',213,'sw'), (12927,'Swedish','default',213,'sv'), (12928,'Swiss German','default',213,'gsw'), (12929,'Swiss German (Formal)','formal',213,'gsw'), (12930,'Tagalog','default',213,'tl'), (12931,'Tajik','default',213,'tg'), (12932,'Tamazight (Central Atlas)','default',213,'tzm'), (12933,'Tamil','default',213,'ta'), (12934,'Tamil (Sri Lanka)','default',213,'ta-lk'), (12935,'Telugu','default',213,'te'), (12936,'Thai','default',213,'th'), (12937,'Tibetan','default',213,'bo'), (12938,'Turkish','default',213,'tr'), (12939,'Turkmen','default',213,'tuk'), (12940,'Uighur','default',213,'ug'), (12941,'Ukrainian','default',213,'uk'), (12942,'Urdu','default',213,'ur'), (12943,'Uzbek','default',213,'uz'), (12944,'Venezuelan Spanish','default',213,'es-ve'), (12945,'Vietnamese','default',213,'vi'), (12946,'Welsh','default',213,'cy'), (12948,'Afrikaans','default',214,'af'), (12949,'Albanian','default',214,'sq'), (12950,'Amharic','default',214,'am'), (12951,'Arabic','default',214,'ar'), (12952,'Aragonese','default',214,'an'), (12953,'Armenian','default',214,'hy'), (12954,'Assamese','default',214,'as'), (12955,'Azerbaijani','default',214,'az'), (12956,'Azerbaijani (Turkey)','default',214,'az-tr'), (12957,'Basque','default',214,'eu'), (12958,'Belarusian','default',214,'bel'), (12960,'Bengali','default',214,'bn'), (12961,'Bosnian','default',214,'bs'), (12962,'Brazilian Portuguese','default',214,'pt-br'), (12963,'Breton','default',214,'br'), (12964,'Bulgarian','default',214,'bg'), (12965,'Burmese','default',214,'mya'), (12966,'Catalan','default',214,'ca'), (12967,'Catalan (Balear)','default',214,'bal'), (12968,'Chilean Spanish','default',214,'es-cl'), (12969,'Chinese (China)','default',214,'zh-cn'), (12970,'Chinese (Taiwan)','default',214,'zh-tw'), (12971,'Corsican','default',214,'co'), (12972,'Croatian','default',214,'hr'), (12973,'Czech','default',214,'cs'), (12974,'Danish','default',214,'da'), (12975,'Divehi','default',214,'dv'), (12976,'Dutch','default',214,'nl'), (12977,'Dzongkha','default',214,'dzo'), (12978,'English (Australia)','default',214,'en-au'), (12979,'English (Canada)','default',214,'en-ca'), (12980,'English (UK)','default',214,'en-gb'), (12981,'Esperanto','default',214,'eo'), (12982,'Estonian','default',214,'et'), (12983,'Faroese','default',214,'fo'), (12984,'Finnish','default',214,'fi'), (12985,'French','default',214,'fr'), (12986,'Frisian','default',214,'fy'), (12987,'Fulah','default',214,'fuc'), (12988,'Galician','default',214,'gl'), (12989,'Georgian','default',214,'ka'), (12990,'German','default',214,'de'), (12991,'German (Formal)','formal',214,'de'), (12992,'Greek','default',214,'el'), (12993,'Gujarati','default',214,'gu'), (12994,'Hawaiian','default',214,'haw'), (12995,'Hazaragi','default',214,'haz'), (12996,'Hebrew','default',214,'he'), (12997,'Hindi','default',214,'hi'), (12998,'Hungarian','default',214,'hu'), (12999,'Icelandic','default',214,'is'), (13000,'Indonesian','default',214,'id'), (13001,'Irish','default',214,'ga'), (13002,'Italian','default',214,'it'), (13003,'Japanese','default',214,'ja'), (13004,'Javanese','default',214,'jv'), (13005,'Kannada','default',214,'kn'), (13006,'Kazakh','default',214,'kk'), (13007,'Khmer','default',214,'km'), (13008,'Kirghiz','default',214,'ky'), (13009,'Korean','default',214,'ko'), (13010,'Kurdish','default',214,'ckb'), (13011,'Kurdish (Kurmanji)','default',214,'ku'), (13012,'Lao','default',214,'lo'), (13013,'Latin','default',214,'la'), (13014,'Latvian','default',214,'lv'), (13015,'Limburgish','default',214,'li'), (13016,'Lithuanian','default',214,'lt'), (13017,'Luxembourgish','default',214,'lb'), (13018,'Macedonian','default',214,'mk'), (13019,'Malagasy','default',214,'mg'), (13020,'Malay','default',214,'ms'), (13021,'Malayalam','default',214,'ml'), (13023,'Marathi','default',214,'mr'), (13024,'Mongolian','default',214,'mn'), (13025,'Montenegrin','default',214,'me'), (13026,'Nepali','default',214,'ne'), (13027,'Norwegian (BokmÃ¥l)','default',214,'nb'), (13028,'Norwegian (Nynorsk)','default',214,'nn'), (13029,'Ossetic','default',214,'os'), (13030,'Pashto','default',214,'ps'), (13031,'Persian','default',214,'fa'), (13032,'Persian (Afghanistan)','default',214,'fa-af'), (13033,'Peruvian Spanish','default',214,'es-pe'), (13034,'Polish','default',214,'pl'), (13035,'Portuguese','default',214,'pt'), (13036,'Portuguese Informal','informal',214,'pt'), (13037,'Punjabi','default',214,'pa'), (13038,'Rohingya','default',214,'rhg'), (13039,'Romanian','default',214,'ro'), (13040,'Russian','default',214,'ru'), (13041,'Sanskrit','default',214,'sa-in'), (13042,'Sardinian','default',214,'srd'), (13043,'Scottish Gaelic','default',214,'gd'), (13044,'Serbian','default',214,'sr'), (13045,'Sinhala','default',214,'si'), (13046,'Slovak','default',214,'sk'), (13047,'Slovenian','default',214,'sl'), (13048,'Somali','default',214,'so'), (13049,'South Azerbaijani','default',214,'azb'), (13050,'Spanish','default',214,'es'), (13051,'Spanish (Argentina)','default',214,'es-ar'), (13052,'Spanish (Mexico)','default',214,'es-mx'), (13053,'Sundanese','default',214,'su'), (13054,'Swahili','default',214,'sw'), (13055,'Swedish','default',214,'sv'), (13056,'Swiss German','default',214,'gsw'), (13057,'Swiss German (Formal)','formal',214,'gsw'), (13058,'Tagalog','default',214,'tl'), (13059,'Tajik','default',214,'tg'), (13060,'Tamazight (Central Atlas)','default',214,'tzm'), (13061,'Tamil','default',214,'ta'), (13062,'Tamil (Sri Lanka)','default',214,'ta-lk'), (13063,'Telugu','default',214,'te'), (13064,'Thai','default',214,'th'), (13065,'Tibetan','default',214,'bo'), (13066,'Turkish','default',214,'tr'), (13067,'Turkmen','default',214,'tuk'), (13068,'Uighur','default',214,'ug'), (13069,'Ukrainian','default',214,'uk'), (13070,'Urdu','default',214,'ur'), (13071,'Uzbek','default',214,'uz'), (13072,'Venezuelan Spanish','default',214,'es-ve'), (13073,'Vietnamese','default',214,'vi'), (13074,'Welsh','default',214,'cy'), (13075,'Arabic','default',215,'ar'), (13076,'Azerbaijani','default',215,'az'), (13077,'Bosnian','default',215,'bs'), (13078,'Bulgarian','default',215,'bg'), (13079,'Burmese','default',215,'mya'), (13080,'Catalan','default',215,'ca'), (13081,'Chinese (China)','default',215,'zh-cn'), (13082,'Chinese (Taiwan)','default',215,'zh-tw'), (13083,'Croatian','default',215,'hr'), (13084,'Czech','default',215,'cs'), (13085,'Danish','default',215,'da'), (13086,'Dutch','default',215,'nl'), (13087,'English (Australia)','default',215,'en-au'), (13088,'English (UK)','default',215,'en-gb'), (13089,'Finnish','default',215,'fi'), (13090,'French (France)','default',215,'fr'), (13091,'Galician','default',215,'gl'), (13092,'Georgian','default',215,'ka'), (13093,'German','default',215,'de'), (13094,'Greek','default',215,'el'), (13096,'Hebrew','default',215,'he'), (13097,'Hindi','default',215,'hi'), (13098,'Hungarian','default',215,'hu'), (13099,'Indonesian','default',215,'id'), (13100,'Italian','default',215,'it'), (13101,'Japanese','default',215,'ja'), (13102,'Kannada','default',215,'kn'), (13103,'Korean','default',215,'ko'), (13104,'Kurdish (Kurmanji)','default',215,'ku'), (13105,'Kurdish (Sorani)','default',215,'ckb'), (13106,'Latvian','default',215,'lv'), (13107,'Macedonian','default',215,'mk'), (13108,'Malay','default',215,'ms'), (13109,'Norwegian (BokmÃ¥l)','default',215,'nb'), (13110,'Persian','default',215,'fa'), (13111,'Polish','default',215,'pl'), (13112,'Portuguese (Brazil)','default',215,'pt-br'), (13113,'Portuguese (Portugal)','default',215,'pt'), (13114,'Rohingya','default',215,'rhg'), (13115,'Romanian','default',215,'ro'), (13116,'Russian','default',215,'ru'), (13117,'Serbian','default',215,'sr'), (13118,'Slovak','default',215,'sk'), (13119,'Slovenian','default',215,'sl'), (13120,'Spanish (Mexico)','default',215,'es-mx'), (13121,'Spanish (Spain)','default',215,'es'), (13122,'Swedish','default',215,'sv'), (13123,'Tamil','default',215,'ta'), (13124,'Tamil (Sri Lanka)','default',215,'ta-lk'), (13125,'Thai','default',215,'th'), (13126,'Turkish','default',215,'tr'), (13128,'Afrikaans','default',217,'af'), (13129,'Albanian','default',217,'sq'), (13130,'Amharic','default',217,'am'), (13131,'Arabic','default',217,'ar'), (13132,'Aragonese','default',217,'an'), (13133,'Armenian','default',217,'hy'), (13134,'Assamese','default',217,'as'), (13135,'Azerbaijani','default',217,'az'), (13136,'Azerbaijani (Turkey)','default',217,'az-tr'), (13137,'Basque','default',217,'eu'), (13138,'Belarusian','default',217,'bel'), (13140,'Bengali','default',217,'bn'), (13141,'Bosnian','default',217,'bs'), (13142,'Brazilian Portuguese','default',217,'pt-br'), (13143,'Breton','default',217,'br'), (13144,'Bulgarian','default',217,'bg'), (13145,'Burmese','default',217,'mya'), (13146,'Catalan','default',217,'ca'), (13147,'Catalan (Balear)','default',217,'bal'), (13148,'Chilean Spanish','default',217,'es-cl'), (13149,'Chinese (China)','default',217,'zh-cn'), (13150,'Chinese (Taiwan)','default',217,'zh-tw'), (13151,'Corsican','default',217,'co'), (13152,'Croatian','default',217,'hr'), (13153,'Czech','default',217,'cs'), (13154,'Danish','default',217,'da'), (13155,'Divehi','default',217,'dv'), (13156,'Dutch','default',217,'nl'), (13157,'Dzongkha','default',217,'dzo'), (13158,'English (Australia)','default',217,'en-au'), (13159,'English (Canada)','default',217,'en-ca'), (13160,'English (UK)','default',217,'en-gb'), (13161,'Esperanto','default',217,'eo'), (13162,'Estonian','default',217,'et'), (13163,'Faroese','default',217,'fo'), (13164,'Finnish','default',217,'fi'), (13165,'French','default',217,'fr'), (13166,'Frisian','default',217,'fy'), (13167,'Fulah','default',217,'fuc'), (13168,'Galician','default',217,'gl'), (13169,'Georgian','default',217,'ka'), (13170,'German','default',217,'de'), (13171,'German (Formal)','formal',217,'de'), (13172,'Greek','default',217,'el'), (13173,'Gujarati','default',217,'gu'), (13174,'Hawaiian','default',217,'haw'), (13175,'Hazaragi','default',217,'haz'), (13176,'Hebrew','default',217,'he'), (13177,'Hindi','default',217,'hi'), (13178,'Hungarian','default',217,'hu'), (13179,'Icelandic','default',217,'is'), (13180,'Indonesian','default',217,'id'), (13181,'Irish','default',217,'ga'), (13182,'Italian','default',217,'it'), (13183,'Japanese','default',217,'ja'), (13184,'Javanese','default',217,'jv'), (13185,'Kannada','default',217,'kn'), (13186,'Kazakh','default',217,'kk'), (13187,'Khmer','default',217,'km'), (13188,'Kirghiz','default',217,'ky'), (13189,'Korean','default',217,'ko'), (13190,'Kurdish','default',217,'ckb'), (13191,'Kurdish (Kurmanji)','default',217,'ku'), (13192,'Lao','default',217,'lo'), (13193,'Latin','default',217,'la'), (13194,'Latvian','default',217,'lv'), (13195,'Limburgish','default',217,'li'), (13196,'Lithuanian','default',217,'lt'), (13197,'Luxembourgish','default',217,'lb'), (13198,'Macedonian','default',217,'mk'), (13199,'Malagasy','default',217,'mg'), (13200,'Malay','default',217,'ms'), (13201,'Malayalam','default',217,'ml'), (13203,'Marathi','default',217,'mr'), (13204,'Mongolian','default',217,'mn'), (13205,'Montenegrin','default',217,'me'), (13206,'Nepali','default',217,'ne'), (13207,'Norwegian (BokmÃ¥l)','default',217,'nb'), (13208,'Norwegian (Nynorsk)','default',217,'nn'), (13209,'Ossetic','default',217,'os'), (13210,'Pashto','default',217,'ps'), (13211,'Persian','default',217,'fa'), (13212,'Persian (Afghanistan)','default',217,'fa-af'), (13213,'Peruvian Spanish','default',217,'es-pe'), (13214,'Polish','default',217,'pl'), (13215,'Portuguese','default',217,'pt'), (13216,'Portuguese Informal','informal',217,'pt'), (13217,'Punjabi','default',217,'pa'), (13218,'Rohingya','default',217,'rhg'), (13219,'Romanian','default',217,'ro'), (13220,'Russian','default',217,'ru'), (13221,'Sanskrit','default',217,'sa-in'), (13222,'Sardinian','default',217,'srd'), (13223,'Scottish Gaelic','default',217,'gd'), (13224,'Serbian','default',217,'sr'), (13225,'Sinhala','default',217,'si'), (13226,'Slovak','default',217,'sk'), (13227,'Slovenian','default',217,'sl'), (13228,'Somali','default',217,'so'), (13229,'South Azerbaijani','default',217,'azb'), (13230,'Spanish','default',217,'es'), (13231,'Spanish (Argentina)','default',217,'es-ar'), (13232,'Spanish (Mexico)','default',217,'es-mx'), (13233,'Sundanese','default',217,'su'), (13234,'Swahili','default',217,'sw'), (13235,'Swedish','default',217,'sv'), (13236,'Swiss German','default',217,'gsw'), (13237,'Swiss German (Formal)','formal',217,'gsw'), (13238,'Tagalog','default',217,'tl'), (13239,'Tajik','default',217,'tg'), (13240,'Tamazight (Central Atlas)','default',217,'tzm'), (13241,'Tamil','default',217,'ta'), (13242,'Tamil (Sri Lanka)','default',217,'ta-lk'), (13243,'Telugu','default',217,'te'), (13244,'Thai','default',217,'th'), (13245,'Tibetan','default',217,'bo'), (13246,'Turkish','default',217,'tr'), (13247,'Turkmen','default',217,'tuk'), (13248,'Uighur','default',217,'ug'), (13249,'Ukrainian','default',217,'uk'), (13250,'Urdu','default',217,'ur'), (13251,'Uzbek','default',217,'uz'), (13252,'Venezuelan Spanish','default',217,'es-ve'), (13253,'Vietnamese','default',217,'vi'), (13254,'Welsh','default',217,'cy'), (13255,'English (UK)','default',101,'en-gb'), (13256,'English (UK)','default',80,'en-gb'), (18857,'English (UK)','default',81,'en-gb'), (18858,'Ido','default',2,'ido'), (18859,'Ido','default',130,'ido'), (18860,'Ido','default',101,'ido'), (18861,'Ido','default',80,'ido'), (18862,'Ido','default',64,'ido'), (18863,'Ido','default',55,'ido'), (18864,'Ido','default',78,'ido'), (18865,'Ido','default',79,'ido'), (18866,'Ido','default',15,'ido'), (18867,'Albanian','default',263,'sq'), (18868,'Arabic','default',263,'ar'), (18869,'Azerbaijani','default',263,'az'), (18870,'Basque','default',263,'eu'), (18871,'Bosnian','default',263,'bs'), (18872,'Bulgarian','default',263,'bg'), (18873,'Burmese','default',263,'mya'), (18874,'Catalan','default',263,'ca'), (18875,'Chinese','default',263,'zh'), (18876,'Chinese (China)','default',263,'zh-cn'), (18877,'Chinese (Taiwan)','default',263,'zh-tw'), (18878,'Croatian','default',263,'hr'), (18879,'Czech','default',263,'cs'), (18880,'Danish','default',263,'da'), (18881,'Dutch','default',263,'nl'), (18882,'English (UK)','default',263,'en-gb'), (18883,'Finnish','default',263,'fi'), (18884,'French (France)','default',263,'fr'), (18885,'Galician','default',263,'gl'), (18886,'Georgian','default',263,'ka'), (18887,'German','default',263,'de'), (18888,'Greek','default',263,'el'), (18890,'Hebrew','default',263,'he'), (18891,'Hindi','default',263,'hi'), (18892,'Hungarian','default',263,'hu'), (18893,'Indonesian','default',263,'id'), (18894,'Italian','default',263,'it'), (18895,'Japanese','default',263,'ja'), (18896,'Kannada','default',263,'kn'), (18897,'Korean','default',263,'ko'), (18898,'Kurdish (Kurmanji)','default',263,'ku'), (18899,'Kurdish (Sorani)','default',263,'ckb'), (18900,'Limburgish','default',263,'li'), (18901,'Macedonian','default',263,'mk'), (18902,'Marathi','default',263,'mr'), (18903,'Mongolian','default',263,'mn'), (18905,'Norwegian (BokmÃ¥l)','default',263,'nb'), (18906,'Persian','default',263,'fa'), (18907,'Polish','default',263,'pl'), (18908,'Portuguese (Brazil)','default',263,'pt-br'), (18909,'Portuguese (Portugal)','default',263,'pt'), (18910,'Rohingya','default',263,'rhg'), (18911,'Russian','default',263,'ru'), (18912,'Scottish Gaelic','default',263,'gd'), (18913,'Slovak','default',263,'sk'), (18914,'Slovenian','default',263,'sl'), (18915,'Somali','default',263,'so'), (18916,'Spanish (Chile)','default',263,'es-cl'), (18917,'Spanish (Colombia)','default',263,'es-co'), (18918,'Spanish (Peru)','default',263,'es-pe'), (18919,'Spanish (Spain)','default',263,'es'), (18920,'Spanish (Venezuela)','default',263,'es-ve'), (18921,'Swedish','default',263,'sv'), (18922,'Tamil','default',263,'ta'), (18923,'Tamil (Sri Lanka)','default',263,'ta-lk'), (18924,'Telugu','default',263,'te'), (18925,'Thai','default',263,'th'), (18926,'Turkish','default',263,'tr'), (18927,'Uzbek','default',263,'uz'), (18928,'Vietnamese','default',263,'vi'), (18929,'Arabic','default',264,'ar'), (18930,'Azerbaijani','default',264,'az'), (18931,'Bosnian','default',264,'bs'), (18932,'Bulgarian','default',264,'bg'), (18933,'Catalan','default',264,'ca'), (18934,'Chinese (Simplified)','default',264,'zh-cn'), (18935,'Chinese (Taiwan)','default',264,'zh-tw'), (18936,'Croatian','default',264,'hr'), (18937,'Danish','default',264,'da'), (18938,'Dutch','default',264,'nl'), (18939,'English (UK)','default',264,'en-gb'), (18940,'Finnish','default',264,'fi'), (18941,'French (France)','default',264,'fr'), (18942,'German','default',264,'de'), (18943,'Greek','default',264,'el'), (18945,'Hebrew','default',264,'he'), (18946,'Hindi','default',264,'hi'), (18947,'Hungarian','default',264,'hu'), (18948,'Indonesian','default',264,'id'), (18949,'Irish','default',264,'ga'), (18950,'Italian','default',264,'it'), (18951,'Japanese','default',264,'ja'), (18952,'Kannada','default',264,'kn'), (18953,'Korean','default',264,'ko'), (18954,'Kurdish (Kurmanji)','default',264,'ku'), (18955,'Kurdish (Sorani)','default',264,'ckb'), (18956,'Macedonian','default',264,'mk'), (18957,'Norwegian (BokmÃ¥l)','default',264,'nb'), (18958,'Persian','default',264,'fa'), (18959,'Polish','default',264,'pl'), (18960,'Portuguese (Brazil)','default',264,'pt-br'), (18961,'Portuguese (Portugal)','default',264,'pt'), (18962,'Rohingya','default',264,'rhg'), (18963,'Russian','default',264,'ru'), (18964,'Scottish Gaelic','default',264,'gd'), (18965,'Slovak','default',264,'sk'), (18966,'Spanish (Spain)','default',264,'es'), (18967,'Swedish','default',264,'sv'), (18968,'Tamil','default',264,'ta'), (18969,'Tamil (Sri Lanka)','default',264,'ta-lk'), (18970,'Telugu','default',264,'te'), (18971,'Thai','default',264,'th'), (18972,'Turkish','default',264,'tr'), (18973,'German (Switzerland) Informal','informal',2,'de-ch'), (18974,'German (Switzerland) Informal','informal',130,'de-ch'), (18975,'German (Switzerland) Informal','informal',101,'de-ch'), (18976,'German (Switzerland) Informal','informal',80,'de-ch'), (18977,'German (Switzerland) Informal','informal',64,'de-ch'), (18978,'German (Switzerland) Informal','informal',55,'de-ch'), (18979,'German (Switzerland) Informal','informal',78,'de-ch'), (18980,'German (Switzerland) Informal','informal',79,'de-ch'), (18981,'German (Switzerland) Informal','informal',15,'de-ch'), (18982,'German (Switzerland)','default',66,'de-ch'), (18983,'German (Switzerland)','default',2,'de-ch'), (18984,'German (Switzerland)','default',130,'de-ch'), (18985,'German (Switzerland)','default',101,'de-ch'), (18986,'German (Switzerland)','default',80,'de-ch'), (18987,'German (Switzerland)','default',64,'de-ch'), (18988,'German (Switzerland)','default',55,'de-ch'), (18989,'German (Switzerland)','default',78,'de-ch'), (18990,'German (Switzerland)','default',79,'de-ch'), (18991,'German (Switzerland)','default',15,'de-ch'), (18994,'Sakha','default',2,'sah'), (18995,'Sakha','default',130,'sah'), (18996,'Sakha','default',101,'sah'), (18997,'Sakha','default',80,'sah'), (18998,'Sakha','default',64,'sah'), (18999,'Sakha','default',55,'sah'), (19000,'Sakha','default',78,'sah'), (19001,'Sakha','default',79,'sah'), (19002,'Sakha','default',15,'sah'), (19003,'Sakha','default',66,'sah'), (19004,'Malay','default',263,'ms'), (19005,'Malay','default',7,'ms'), (19006,'Tatar','default',2,'tt'), (19007,'Tatar','default',130,'tt'), (19008,'Tatar','default',101,'tt'), (19009,'Tatar','default',80,'tt'), (19010,'Tatar','default',64,'tt'), (19011,'Tatar','default',55,'tt'), (19012,'Tatar','default',78,'tt'), (19013,'Tatar','default',79,'tt'), (19014,'Tatar','default',15,'tt'), (19015,'Tatar','default',66,'tt'), (19094,'Afrikaans','default',270,'af'), (19095,'Albanian','default',270,'sq'), (19096,'Amharic','default',270,'am'), (19097,'Arabic','default',270,'ar'), (19098,'Aragonese','default',270,'an'), (19099,'Armenian','default',270,'hy'), (19100,'Assamese','default',270,'as'), (19101,'Azerbaijani','default',270,'az'), (19102,'Azerbaijani (Turkey)','default',270,'az-tr'), (19103,'Basque','default',270,'eu'), (19105,'Belarusian','default',270,'bel'), (19106,'Bengali','default',270,'bn'), (19107,'Bosnian','default',270,'bs'), (19108,'Brazilian Portuguese','default',270,'pt-br'), (19109,'Breton','default',270,'br'), (19110,'Bulgarian','default',270,'bg'), (19111,'Burmese','default',270,'mya'), (19112,'Catalan','default',270,'ca'), (19113,'Catalan (Balear)','default',270,'bal'), (19114,'Chilean Spanish','default',270,'es-cl'), (19115,'Chinese (China)','default',270,'zh-cn'), (19116,'Chinese (Taiwan)','default',270,'zh-tw'), (19117,'Corsican','default',270,'co'), (19118,'Croatian','default',270,'hr'), (19119,'Czech','default',270,'cs'), (19120,'Danish','default',270,'da'), (19121,'Divehi','default',270,'dv'), (19122,'Dutch','default',270,'nl'), (19123,'Dzongkha','default',270,'dzo'), (19124,'English (Australia)','default',270,'en-au'), (19125,'English (Canada)','default',270,'en-ca'), (19126,'English (UK)','default',270,'en-gb'), (19127,'Esperanto','default',270,'eo'), (19128,'Estonian','default',270,'et'), (19129,'Faroese','default',270,'fo'), (19130,'Finnish','default',270,'fi'), (19131,'French','default',270,'fr'), (19132,'Frisian','default',270,'fy'), (19133,'Fulah','default',270,'fuc'), (19134,'Galician','default',270,'gl'), (19135,'Georgian','default',270,'ka'), (19136,'German','default',270,'de'), (19137,'German (Formal)','formal',270,'de'), (19138,'German (Switzerland)','default',270,'de-ch'), (19140,'Greek','default',270,'el'), (19141,'Gujarati','default',270,'gu'), (19142,'Hawaiian','default',270,'haw'), (19143,'Hazaragi','default',270,'haz'), (19144,'Hebrew','default',270,'he'), (19145,'Hindi','default',270,'hi'), (19146,'Hungarian','default',270,'hu'), (19147,'Icelandic','default',270,'is'), (19148,'Ido','default',270,'ido'), (19149,'Indonesian','default',270,'id'), (19150,'Irish','default',270,'ga'), (19151,'Italian','default',270,'it'), (19152,'Japanese','default',270,'ja'), (19153,'Javanese','default',270,'jv'), (19154,'Kannada','default',270,'kn'), (19155,'Kazakh','default',270,'kk'), (19156,'Khmer','default',270,'km'), (19157,'Kirghiz','default',270,'ky'), (19158,'Korean','default',270,'ko'), (19159,'Kurdish','default',270,'ckb'), (19160,'Kurdish (Kurmanji)','default',270,'ku'), (19161,'Lao','default',270,'lo'), (19162,'Latin','default',270,'la'), (19163,'Latvian','default',270,'lv'), (19164,'Limburgish','default',270,'li'), (19165,'Lithuanian','default',270,'lt'), (19166,'Luxembourgish','default',270,'lb'), (19167,'Macedonian','default',270,'mk'), (19168,'Malagasy','default',270,'mg'), (19169,'Malay','default',270,'ms'), (19170,'Malayalam','default',270,'ml'), (19172,'Marathi','default',270,'mr'), (19173,'Mongolian','default',270,'mn'), (19174,'Montenegrin','default',270,'me'), (19175,'Nepali','default',270,'ne'), (19176,'Norwegian (BokmÃ¥l)','default',270,'nb'), (19177,'Norwegian (Nynorsk)','default',270,'nn'), (19178,'Ossetic','default',270,'os'), (19179,'Pashto','default',270,'ps'), (19180,'Persian','default',270,'fa'), (19181,'Persian (Afghanistan)','default',270,'fa-af'), (19182,'Peruvian Spanish','default',270,'es-pe'), (19183,'Polish','default',270,'pl'), (19184,'Portuguese','default',270,'pt'), (19185,'Portuguese Informal','informal',270,'pt'), (19186,'Punjabi','default',270,'pa'), (19187,'Rohingya','default',270,'rhg'), (19188,'Romanian','default',270,'ro'), (19189,'Russian','default',270,'ru'), (19190,'Sakha','default',270,'sah'), (19191,'Sanskrit','default',270,'sa-in'), (19192,'Sardinian','default',270,'srd'), (19193,'Scottish Gaelic','default',270,'gd'), (19194,'Serbian','default',270,'sr'), (19195,'Sinhala','default',270,'si'), (19196,'Slovak','default',270,'sk'), (19197,'Slovenian','default',270,'sl'), (19198,'Somali','default',270,'so'), (19199,'South Azerbaijani','default',270,'azb'), (19200,'Spanish','default',270,'es'), (19201,'Spanish (Argentina)','default',270,'es-ar'), (19202,'Spanish (Mexico)','default',270,'es-mx'), (19203,'Sundanese','default',270,'su'), (19204,'Swahili','default',270,'sw'), (19205,'Swedish','default',270,'sv'), (19206,'Swiss German','default',270,'gsw'), (19207,'Swiss German (Formal)','formal',270,'gsw'), (19208,'Tagalog','default',270,'tl'), (19209,'Tajik','default',270,'tg'), (19210,'Tamazight (Central Atlas)','default',270,'tzm'), (19211,'Tamil','default',270,'ta'), (19212,'Tamil (Sri Lanka)','default',270,'ta-lk'), (19213,'Tatar','default',270,'tt'), (19214,'Telugu','default',270,'te'), (19215,'Thai','default',270,'th'), (19216,'Tibetan','default',270,'bo'), (19217,'Turkish','default',270,'tr'), (19218,'Turkmen','default',270,'tuk'), (19219,'Uighur','default',270,'ug'), (19220,'Ukrainian','default',270,'uk'), (19221,'Urdu','default',270,'ur'), (19222,'Uzbek','default',270,'uz'), (19223,'Venezuelan Spanish','default',270,'es-ve'), (19224,'Vietnamese','default',270,'vi'), (19225,'Welsh','default',270,'cy'), (19227,'Afrikaans','default',272,'af'), (19228,'Albanian','default',272,'sq'), (19229,'Amharic','default',272,'am'), (19230,'Arabic','default',272,'ar'), (19231,'Aragonese','default',272,'an'), (19232,'Armenian','default',272,'hy'), (19233,'Assamese','default',272,'as'), (19234,'Azerbaijani','default',272,'az'), (19235,'Azerbaijani (Turkey)','default',272,'az-tr'), (19236,'Basque','default',272,'eu'), (19238,'Belarusian','default',272,'bel'), (19239,'Bengali','default',272,'bn'), (19240,'Bosnian','default',272,'bs'), (19241,'Brazilian Portuguese','default',272,'pt-br'), (19242,'Breton','default',272,'br'), (19243,'Bulgarian','default',272,'bg'), (19244,'Burmese','default',272,'mya'), (19245,'Catalan','default',272,'ca'), (19246,'Catalan (Balear)','default',272,'bal'), (19247,'Chilean Spanish','default',272,'es-cl'), (19248,'Chinese (China)','default',272,'zh-cn'), (19249,'Chinese (Taiwan)','default',272,'zh-tw'), (19250,'Corsican','default',272,'co'), (19251,'Croatian','default',272,'hr'), (19252,'Czech','default',272,'cs'), (19253,'Danish','default',272,'da'), (19254,'Divehi','default',272,'dv'), (19255,'Dutch','default',272,'nl'), (19256,'Dzongkha','default',272,'dzo'), (19257,'English (Australia)','default',272,'en-au'), (19258,'English (Canada)','default',272,'en-ca'), (19259,'English (UK)','default',272,'en-gb'), (19260,'Esperanto','default',272,'eo'), (19261,'Estonian','default',272,'et'), (19262,'Faroese','default',272,'fo'), (19263,'Finnish','default',272,'fi'), (19264,'French','default',272,'fr'), (19265,'Frisian','default',272,'fy'), (19266,'Fulah','default',272,'fuc'), (19267,'Galician','default',272,'gl'), (19268,'Georgian','default',272,'ka'), (19269,'German','default',272,'de'), (19270,'German (Formal)','formal',272,'de'), (19271,'German (Switzerland)','default',272,'de-ch'), (19273,'Greek','default',272,'el'), (19274,'Gujarati','default',272,'gu'), (19275,'Hawaiian','default',272,'haw'), (19276,'Hazaragi','default',272,'haz'), (19277,'Hebrew','default',272,'he'), (19278,'Hindi','default',272,'hi'), (19279,'Hungarian','default',272,'hu'), (19280,'Icelandic','default',272,'is'), (19281,'Ido','default',272,'ido'), (19282,'Indonesian','default',272,'id'), (19283,'Irish','default',272,'ga'), (19284,'Italian','default',272,'it'), (19285,'Japanese','default',272,'ja'), (19286,'Javanese','default',272,'jv'), (19287,'Kannada','default',272,'kn'), (19288,'Kazakh','default',272,'kk'), (19289,'Khmer','default',272,'km'), (19290,'Kirghiz','default',272,'ky'), (19291,'Korean','default',272,'ko'), (19292,'Kurdish','default',272,'ckb'), (19293,'Kurdish (Kurmanji)','default',272,'ku'), (19294,'Lao','default',272,'lo'), (19295,'Latin','default',272,'la'), (19296,'Latvian','default',272,'lv'), (19297,'Limburgish','default',272,'li'), (19298,'Lithuanian','default',272,'lt'), (19299,'Luxembourgish','default',272,'lb'), (19300,'Macedonian','default',272,'mk'), (19301,'Malagasy','default',272,'mg'), (19302,'Malay','default',272,'ms'), (19303,'Malayalam','default',272,'ml'), (19305,'Marathi','default',272,'mr'), (19306,'Mongolian','default',272,'mn'), (19307,'Montenegrin','default',272,'me'), (19308,'Nepali','default',272,'ne'), (19309,'Norwegian (BokmÃ¥l)','default',272,'nb'), (19310,'Norwegian (Nynorsk)','default',272,'nn'), (19311,'Ossetic','default',272,'os'), (19312,'Pashto','default',272,'ps'), (19313,'Persian','default',272,'fa'), (19314,'Persian (Afghanistan)','default',272,'fa-af'), (19315,'Peruvian Spanish','default',272,'es-pe'), (19316,'Polish','default',272,'pl'), (19317,'Portuguese','default',272,'pt'), (19318,'Portuguese Informal','informal',272,'pt'), (19319,'Punjabi','default',272,'pa'), (19320,'Rohingya','default',272,'rhg'), (19321,'Romanian','default',272,'ro'), (19322,'Russian','default',272,'ru'), (19323,'Sakha','default',272,'sah'), (19324,'Sanskrit','default',272,'sa-in'), (19325,'Sardinian','default',272,'srd'), (19326,'Scottish Gaelic','default',272,'gd'), (19327,'Serbian','default',272,'sr'), (19328,'Sinhala','default',272,'si'), (19329,'Slovak','default',272,'sk'), (19330,'Slovenian','default',272,'sl'), (19331,'Somali','default',272,'so'), (19332,'South Azerbaijani','default',272,'azb'), (19333,'Spanish','default',272,'es'), (19334,'Spanish (Argentina)','default',272,'es-ar'), (19335,'Spanish (Mexico)','default',272,'es-mx'), (19336,'Sundanese','default',272,'su'), (19337,'Swahili','default',272,'sw'), (19338,'Swedish','default',272,'sv'), (19339,'Swiss German','default',272,'gsw'), (19340,'Swiss German (Formal)','formal',272,'gsw'), (19341,'Tagalog','default',272,'tl'), (19342,'Tajik','default',272,'tg'), (19343,'Tamazight (Central Atlas)','default',272,'tzm'), (19344,'Tamil','default',272,'ta'), (19345,'Tamil (Sri Lanka)','default',272,'ta-lk'), (19346,'Tatar','default',272,'tt'), (19347,'Telugu','default',272,'te'), (19348,'Thai','default',272,'th'), (19349,'Tibetan','default',272,'bo'), (19350,'Turkish','default',272,'tr'), (19351,'Turkmen','default',272,'tuk'), (19352,'Uighur','default',272,'ug'), (19353,'Ukrainian','default',272,'uk'), (19354,'Urdu','default',272,'ur'), (19355,'Uzbek','default',272,'uz'), (19356,'Venezuelan Spanish','default',272,'es-ve'), (19357,'Vietnamese','default',272,'vi'), (19358,'Welsh','default',272,'cy'), (19360,'Afrikaans','default',271,'af'), (19361,'Albanian','default',271,'sq'), (19362,'Amharic','default',271,'am'), (19363,'Arabic','default',271,'ar'), (19364,'Aragonese','default',271,'an'), (19365,'Armenian','default',271,'hy'), (19366,'Assamese','default',271,'as'), (19367,'Azerbaijani','default',271,'az'), (19368,'Azerbaijani (Turkey)','default',271,'az-tr'), (19369,'Basque','default',271,'eu'), (19371,'Belarusian','default',271,'bel'), (19372,'Bengali','default',271,'bn'), (19373,'Bosnian','default',271,'bs'), (19374,'Brazilian Portuguese','default',271,'pt-br'), (19375,'Breton','default',271,'br'), (19376,'Bulgarian','default',271,'bg'), (19377,'Burmese','default',271,'mya'), (19378,'Catalan','default',271,'ca'), (19379,'Catalan (Balear)','default',271,'bal'), (19380,'Chilean Spanish','default',271,'es-cl'), (19381,'Chinese (China)','default',271,'zh-cn'), (19382,'Chinese (Taiwan)','default',271,'zh-tw'), (19383,'Corsican','default',271,'co'), (19384,'Croatian','default',271,'hr'), (19385,'Czech','default',271,'cs'), (19386,'Danish','default',271,'da'), (19387,'Divehi','default',271,'dv'), (19388,'Dutch','default',271,'nl'), (19389,'Dzongkha','default',271,'dzo'), (19390,'English (Australia)','default',271,'en-au'), (19391,'English (Canada)','default',271,'en-ca'), (19392,'English (UK)','default',271,'en-gb'), (19393,'Esperanto','default',271,'eo'), (19394,'Estonian','default',271,'et'), (19395,'Faroese','default',271,'fo'), (19396,'Finnish','default',271,'fi'), (19397,'French','default',271,'fr'), (19398,'Frisian','default',271,'fy'), (19399,'Fulah','default',271,'fuc'), (19400,'Galician','default',271,'gl'), (19401,'Georgian','default',271,'ka'), (19402,'German','default',271,'de'), (19403,'German (Formal)','formal',271,'de'), (19404,'German (Switzerland)','default',271,'de-ch'), (19406,'Greek','default',271,'el'), (19407,'Gujarati','default',271,'gu'), (19408,'Hawaiian','default',271,'haw'), (19409,'Hazaragi','default',271,'haz'), (19410,'Hebrew','default',271,'he'), (19411,'Hindi','default',271,'hi'), (19412,'Hungarian','default',271,'hu'), (19413,'Icelandic','default',271,'is'), (19414,'Ido','default',271,'ido'), (19415,'Indonesian','default',271,'id'), (19416,'Irish','default',271,'ga'), (19417,'Italian','default',271,'it'), (19418,'Japanese','default',271,'ja'), (19419,'Javanese','default',271,'jv'), (19420,'Kannada','default',271,'kn'), (19421,'Kazakh','default',271,'kk'), (19422,'Khmer','default',271,'km'), (19423,'Kirghiz','default',271,'ky'), (19424,'Korean','default',271,'ko'), (19425,'Kurdish','default',271,'ckb'), (19426,'Kurdish (Kurmanji)','default',271,'ku'), (19427,'Lao','default',271,'lo'), (19428,'Latin','default',271,'la'), (19429,'Latvian','default',271,'lv'), (19430,'Limburgish','default',271,'li'), (19431,'Lithuanian','default',271,'lt'), (19432,'Luxembourgish','default',271,'lb'), (19433,'Macedonian','default',271,'mk'), (19434,'Malagasy','default',271,'mg'), (19435,'Malay','default',271,'ms'), (19436,'Malayalam','default',271,'ml'), (19438,'Marathi','default',271,'mr'), (19439,'Mongolian','default',271,'mn'), (19440,'Montenegrin','default',271,'me'), (19441,'Nepali','default',271,'ne'), (19442,'Norwegian (BokmÃ¥l)','default',271,'nb'), (19443,'Norwegian (Nynorsk)','default',271,'nn'), (19444,'Ossetic','default',271,'os'), (19445,'Pashto','default',271,'ps'), (19446,'Persian','default',271,'fa'), (19447,'Persian (Afghanistan)','default',271,'fa-af'), (19448,'Peruvian Spanish','default',271,'es-pe'), (19449,'Polish','default',271,'pl'), (19450,'Portuguese','default',271,'pt'), (19451,'Portuguese Informal','informal',271,'pt'), (19452,'Punjabi','default',271,'pa'), (19453,'Rohingya','default',271,'rhg'), (19454,'Romanian','default',271,'ro'), (19455,'Russian','default',271,'ru'), (19456,'Sakha','default',271,'sah'), (19457,'Sanskrit','default',271,'sa-in'), (19458,'Sardinian','default',271,'srd'), (19459,'Scottish Gaelic','default',271,'gd'), (19460,'Serbian','default',271,'sr'), (19461,'Sinhala','default',271,'si'), (19462,'Slovak','default',271,'sk'), (19463,'Slovenian','default',271,'sl'), (19464,'Somali','default',271,'so'), (19465,'South Azerbaijani','default',271,'azb'), (19466,'Spanish','default',271,'es'), (19467,'Spanish (Argentina)','default',271,'es-ar'), (19468,'Spanish (Mexico)','default',271,'es-mx'), (19469,'Sundanese','default',271,'su'), (19470,'Swahili','default',271,'sw'), (19471,'Swedish','default',271,'sv'), (19472,'Swiss German','default',271,'gsw'), (19473,'Swiss German (Formal)','formal',271,'gsw'), (19474,'Tagalog','default',271,'tl'), (19475,'Tajik','default',271,'tg'), (19476,'Tamazight (Central Atlas)','default',271,'tzm'), (19477,'Tamil','default',271,'ta'), (19478,'Tamil (Sri Lanka)','default',271,'ta-lk'), (19479,'Tatar','default',271,'tt'), (19480,'Telugu','default',271,'te'), (19481,'Thai','default',271,'th'), (19482,'Tibetan','default',271,'bo'), (19483,'Turkish','default',271,'tr'), (19484,'Turkmen','default',271,'tuk'), (19485,'Uighur','default',271,'ug'), (19486,'Ukrainian','default',271,'uk'), (19487,'Urdu','default',271,'ur'), (19488,'Uzbek','default',271,'uz'), (19489,'Venezuelan Spanish','default',271,'es-ve'), (19490,'Vietnamese','default',271,'vi'), (19491,'Welsh','default',271,'cy'), (19493,'Afrikaans','default',273,'af'), (19494,'Albanian','default',273,'sq'), (19495,'Amharic','default',273,'am'), (19496,'Arabic','default',273,'ar'), (19497,'Aragonese','default',273,'an'), (19498,'Armenian','default',273,'hy'), (19499,'Assamese','default',273,'as'), (19500,'Azerbaijani','default',273,'az'), (19501,'Azerbaijani (Turkey)','default',273,'az-tr'), (19502,'Basque','default',273,'eu'), (19504,'Belarusian','default',273,'bel'), (19505,'Bengali','default',273,'bn'), (19506,'Bosnian','default',273,'bs'), (19507,'Brazilian Portuguese','default',273,'pt-br'), (19508,'Breton','default',273,'br'), (19509,'Bulgarian','default',273,'bg'), (19510,'Burmese','default',273,'mya'), (19511,'Catalan','default',273,'ca'), (19512,'Catalan (Balear)','default',273,'bal'), (19513,'Chilean Spanish','default',273,'es-cl'), (19514,'Chinese (China)','default',273,'zh-cn'), (19515,'Chinese (Taiwan)','default',273,'zh-tw'), (19516,'Corsican','default',273,'co'), (19517,'Croatian','default',273,'hr'), (19518,'Czech','default',273,'cs'), (19519,'Danish','default',273,'da'), (19520,'Divehi','default',273,'dv'), (19521,'Dutch','default',273,'nl'), (19522,'Dzongkha','default',273,'dzo'), (19523,'English (Australia)','default',273,'en-au'), (19524,'English (Canada)','default',273,'en-ca'), (19525,'English (UK)','default',273,'en-gb'), (19526,'Esperanto','default',273,'eo'), (19527,'Estonian','default',273,'et'), (19528,'Faroese','default',273,'fo'), (19529,'Finnish','default',273,'fi'), (19530,'French','default',273,'fr'), (19531,'Frisian','default',273,'fy'), (19532,'Fulah','default',273,'fuc'), (19533,'Galician','default',273,'gl'), (19534,'Georgian','default',273,'ka'), (19535,'German','default',273,'de'), (19536,'German (Formal)','formal',273,'de'), (19537,'German (Switzerland)','default',273,'de-ch'), (19539,'Greek','default',273,'el'), (19540,'Gujarati','default',273,'gu'), (19541,'Hawaiian','default',273,'haw'), (19542,'Hazaragi','default',273,'haz'), (19543,'Hebrew','default',273,'he'), (19544,'Hindi','default',273,'hi'), (19545,'Hungarian','default',273,'hu'), (19546,'Icelandic','default',273,'is'), (19547,'Ido','default',273,'ido'), (19548,'Indonesian','default',273,'id'), (19549,'Irish','default',273,'ga'), (19550,'Italian','default',273,'it'), (19551,'Japanese','default',273,'ja'), (19552,'Javanese','default',273,'jv'), (19553,'Kannada','default',273,'kn'), (19554,'Kazakh','default',273,'kk'), (19555,'Khmer','default',273,'km'), (19556,'Kirghiz','default',273,'ky'), (19557,'Korean','default',273,'ko'), (19558,'Kurdish','default',273,'ckb'), (19559,'Kurdish (Kurmanji)','default',273,'ku'), (19560,'Lao','default',273,'lo'), (19561,'Latin','default',273,'la'), (19562,'Latvian','default',273,'lv'), (19563,'Limburgish','default',273,'li'), (19564,'Lithuanian','default',273,'lt'), (19565,'Luxembourgish','default',273,'lb'), (19566,'Macedonian','default',273,'mk'), (19567,'Malagasy','default',273,'mg'), (19568,'Malay','default',273,'ms'), (19569,'Malayalam','default',273,'ml'), (19571,'Marathi','default',273,'mr'), (19572,'Mongolian','default',273,'mn'), (19573,'Montenegrin','default',273,'me'), (19574,'Nepali','default',273,'ne'), (19575,'Norwegian (BokmÃ¥l)','default',273,'nb'), (19576,'Norwegian (Nynorsk)','default',273,'nn'), (19577,'Ossetic','default',273,'os'), (19578,'Pashto','default',273,'ps'), (19579,'Persian','default',273,'fa'), (19580,'Persian (Afghanistan)','default',273,'fa-af'), (19581,'Peruvian Spanish','default',273,'es-pe'), (19582,'Polish','default',273,'pl'), (19583,'Portuguese','default',273,'pt'), (19584,'Portuguese Informal','informal',273,'pt'), (19585,'Punjabi','default',273,'pa'), (19586,'Rohingya','default',273,'rhg'), (19587,'Romanian','default',273,'ro'), (19588,'Russian','default',273,'ru'), (19589,'Sakha','default',273,'sah'), (19590,'Sanskrit','default',273,'sa-in'), (19591,'Sardinian','default',273,'srd'), (19592,'Scottish Gaelic','default',273,'gd'), (19593,'Serbian','default',273,'sr'), (19594,'Sinhala','default',273,'si'), (19595,'Slovak','default',273,'sk'), (19596,'Slovenian','default',273,'sl'), (19597,'Somali','default',273,'so'), (19598,'South Azerbaijani','default',273,'azb'), (19599,'Spanish','default',273,'es'), (19600,'Spanish (Argentina)','default',273,'es-ar'), (19601,'Spanish (Mexico)','default',273,'es-mx'), (19602,'Sundanese','default',273,'su'), (19603,'Swahili','default',273,'sw'), (19604,'Swedish','default',273,'sv'), (19605,'Swiss German','default',273,'gsw'), (19606,'Swiss German (Formal)','formal',273,'gsw'), (19607,'Tagalog','default',273,'tl'), (19608,'Tajik','default',273,'tg'), (19609,'Tamazight (Central Atlas)','default',273,'tzm'), (19610,'Tamil','default',273,'ta'), (19611,'Tamil (Sri Lanka)','default',273,'ta-lk'), (19612,'Tatar','default',273,'tt'), (19613,'Telugu','default',273,'te'), (19614,'Thai','default',273,'th'), (19615,'Tibetan','default',273,'bo'), (19616,'Turkish','default',273,'tr'), (19617,'Turkmen','default',273,'tuk'), (19618,'Uighur','default',273,'ug'), (19619,'Ukrainian','default',273,'uk'), (19620,'Urdu','default',273,'ur'), (19621,'Uzbek','default',273,'uz'), (19622,'Venezuelan Spanish','default',273,'es-ve'), (19623,'Vietnamese','default',273,'vi'), (19624,'Welsh','default',273,'cy'), (19626,'Afrikaans','default',276,'af'), (19627,'Albanian','default',276,'sq'), (19628,'Amharic','default',276,'am'), (19629,'Arabic','default',276,'ar'), (19630,'Aragonese','default',276,'an'), (19631,'Armenian','default',276,'hy'), (19632,'Assamese','default',276,'as'), (19633,'Azerbaijani','default',276,'az'), (19634,'Azerbaijani (Turkey)','default',276,'az-tr'), (19635,'Basque','default',276,'eu'), (19636,'Belarusian','default',276,'bel'), (19638,'Bengali','default',276,'bn'), (19639,'Bosnian','default',276,'bs'), (19640,'Brazilian Portuguese','default',276,'pt-br'), (19641,'Breton','default',276,'br'), (19642,'Bulgarian','default',276,'bg'), (19643,'Burmese','default',276,'mya'), (19644,'Catalan','default',276,'ca'), (19646,'Chilean Spanish','default',276,'es-cl'), (19647,'Chinese (China)','default',276,'zh-cn'), (19648,'Chinese (Taiwan)','default',276,'zh-tw'), (19649,'Corsican','default',276,'co'), (19650,'Croatian','default',276,'hr'), (19651,'Czech','default',276,'cs'), (19652,'Danish','default',276,'da'), (19653,'Divehi','default',276,'dv'), (19654,'Dutch','default',276,'nl'), (19655,'Dzongkha','default',276,'dzo'), (19656,'English (Australia)','default',276,'en-au'), (19657,'English (Canada)','default',276,'en-ca'), (19658,'English (UK)','default',276,'en-gb'), (19659,'Esperanto','default',276,'eo'), (19660,'Estonian','default',276,'et'), (19661,'Faroese','default',276,'fo'), (19662,'Finnish','default',276,'fi'), (19663,'French','default',276,'fr'), (19664,'Frisian','default',276,'fy'), (19665,'Fulah','default',276,'fuc'), (19666,'Galician','default',276,'gl'), (19667,'Georgian','default',276,'ka'), (19668,'German','default',276,'de'), (19669,'German (Formal)','formal',276,'de'), (19670,'Greek','default',276,'el'), (19671,'Gujarati','default',276,'gu'), (19673,'Hazaragi','default',276,'haz'), (19674,'Hebrew','default',276,'he'), (19675,'Hindi','default',276,'hi'), (19676,'Hungarian','default',276,'hu'), (19677,'Icelandic','default',276,'is'), (19678,'Indonesian','default',276,'id'), (19679,'Irish','default',276,'ga'), (19680,'Italian','default',276,'it'), (19681,'Japanese','default',276,'ja'), (19682,'Javanese','default',276,'jv'), (19683,'Kannada','default',276,'kn'), (19684,'Kazakh','default',276,'kk'), (19685,'Khmer','default',276,'km'), (19686,'Kirghiz','default',276,'ky'), (19687,'Korean','default',276,'ko'), (19688,'Kurdish','default',276,'ckb'), (19690,'Lao','default',276,'lo'), (19691,'Latin','default',276,'la'), (19692,'Latvian','default',276,'lv'), (19693,'Limburgish','default',276,'li'), (19694,'Lithuanian','default',276,'lt'), (19696,'Macedonian','default',276,'mk'), (19698,'Malay','default',276,'ms'), (19699,'Malayalam','default',276,'ml'), (19701,'Marathi','default',276,'mr'), (19702,'Mongolian','default',276,'mn'), (19703,'Montenegrin','default',276,'me'), (19704,'Nepali','default',276,'ne'), (19705,'Norwegian (BokmÃ¥l)','default',276,'nb'), (19706,'Norwegian (Nynorsk)','default',276,'nn'), (19707,'Ossetic','default',276,'os'), (19708,'Pashto','default',276,'ps'), (19709,'Persian','default',276,'fa'), (19710,'Persian (Afghanistan)','default',276,'fa-af'), (19711,'Peruvian Spanish','default',276,'es-pe'), (19712,'Polish','default',276,'pl'), (19713,'Portuguese','default',276,'pt'), (19714,'Portuguese Informal','informal',276,'pt'), (19715,'Punjabi','default',276,'pa'), (19716,'Rohingya','default',276,'rhg'), (19717,'Romanian','default',276,'ro'), (19718,'Russian','default',276,'ru'), (19719,'Sanskrit','default',276,'sa-in'), (19720,'Sardinian','default',276,'srd'), (19721,'Scottish Gaelic','default',276,'gd'), (19722,'Serbian','default',276,'sr'), (19723,'Sinhala','default',276,'si'), (19724,'Slovak','default',276,'sk'), (19725,'Slovenian','default',276,'sl'), (19726,'Somali','default',276,'so'), (19727,'South Azerbaijani','default',276,'azb'), (19728,'Spanish','default',276,'es'), (19729,'Spanish (Argentina)','default',276,'es-ar'), (19730,'Spanish (Mexico)','default',276,'es-mx'), (19731,'Sundanese','default',276,'su'), (19732,'Swahili','default',276,'sw'), (19733,'Swedish','default',276,'sv'), (19734,'Swiss German','default',276,'gsw'), (19735,'Swiss German (Formal)','formal',276,'gsw'), (19736,'Tagalog','default',276,'tl'), (19737,'Tajik','default',276,'tg'), (19738,'Tamazight (Central Atlas)','default',276,'tzm'), (19740,'Tamil (Sri Lanka)','default',276,'ta-lk'), (19741,'Telugu','default',276,'te'), (19742,'Thai','default',276,'th'), (19743,'Tibetan','default',276,'bo'), (19744,'Turkish','default',276,'tr'), (19745,'Turkmen','default',276,'tuk'), (19746,'Uighur','default',276,'ug'), (19747,'Ukrainian','default',276,'uk'), (19749,'Uzbek','default',276,'uz'), (19750,'Venezuelan Spanish','default',276,'es-ve'), (19751,'Vietnamese','default',276,'vi'), (19752,'Welsh','default',276,'cy'), (19754,'Afrikaans','default',275,'af'), (19755,'Albanian','default',275,'sq'), (19756,'Amharic','default',275,'am'), (19757,'Arabic','default',275,'ar'), (19758,'Aragonese','default',275,'an'), (19759,'Armenian','default',275,'hy'), (19760,'Assamese','default',275,'as'), (19761,'Azerbaijani','default',275,'az'), (19762,'Azerbaijani (Turkey)','default',275,'az-tr'), (19763,'Basque','default',275,'eu'), (19764,'Belarusian','default',275,'bel'), (19766,'Bengali','default',275,'bn'), (19767,'Bosnian','default',275,'bs'), (19768,'Brazilian Portuguese','default',275,'pt-br'), (19769,'Breton','default',275,'br'), (19770,'Bulgarian','default',275,'bg'), (19771,'Burmese','default',275,'mya'), (19772,'Catalan','default',275,'ca'), (19773,'Chilean Spanish','default',275,'es-cl'), (19774,'Chinese (China)','default',275,'zh-cn'), (19775,'Chinese (Taiwan)','default',275,'zh-tw'), (19776,'Corsican','default',275,'co'), (19777,'Croatian','default',275,'hr'), (19778,'Czech','default',275,'cs'), (19779,'Danish','default',275,'da'), (19780,'Divehi','default',275,'dv'), (19781,'Dutch','default',275,'nl'), (19782,'Dzongkha','default',275,'dzo'), (19783,'English (Australia)','default',275,'en-au'), (19784,'English (Canada)','default',275,'en-ca'), (19785,'Esperanto','default',275,'eo'), (19786,'Estonian','default',275,'et'), (19787,'Faroese','default',275,'fo'), (19788,'Finnish','default',275,'fi'), (19789,'French','default',275,'fr'), (19790,'Frisian','default',275,'fy'), (19791,'Fulah','default',275,'fuc'), (19792,'Galician','default',275,'gl'), (19793,'Georgian','default',275,'ka'), (19794,'German','default',275,'de'), (19795,'German (Formal)','formal',275,'de'), (19796,'German (Switzerland)','default',275,'de-ch'), (19798,'Greek','default',275,'el'), (19799,'Gujarati','default',275,'gu'), (19800,'Hazaragi','default',275,'haz'), (19801,'Hebrew','default',275,'he'), (19802,'Hindi','default',275,'hi'), (19803,'Hungarian','default',275,'hu'), (19804,'Icelandic','default',275,'is'), (19805,'Ido','default',275,'ido'), (19806,'Indonesian','default',275,'id'), (19807,'Irish','default',275,'ga'), (19808,'Italian','default',275,'it'), (19809,'Japanese','default',275,'ja'), (19810,'Javanese','default',275,'jv'), (19811,'Kannada','default',275,'kn'), (19812,'Kazakh','default',275,'kk'), (19813,'Khmer','default',275,'km'), (19814,'Kirghiz','default',275,'ky'), (19815,'Korean','default',275,'ko'), (19816,'Kurdish','default',275,'ckb'), (19817,'Lao','default',275,'lo'), (19818,'Latin','default',275,'la'), (19819,'Latvian','default',275,'lv'), (19820,'Limburgish','default',275,'li'), (19821,'Lithuanian','default',275,'lt'), (19822,'Macedonian','default',275,'mk'), (19823,'Malay','default',275,'ms'), (19824,'Malayalam','default',275,'ml'), (19826,'Marathi','default',275,'mr'), (19827,'Mongolian','default',275,'mn'), (19828,'Montenegrin','default',275,'me'), (19829,'Nepali','default',275,'ne'), (19830,'Norwegian (BokmÃ¥l)','default',275,'nb'), (19831,'Norwegian (Nynorsk)','default',275,'nn'), (19832,'Ossetic','default',275,'os'), (19833,'Pashto','default',275,'ps'), (19834,'Persian','default',275,'fa'), (19835,'Persian (Afghanistan)','default',275,'fa-af'), (19836,'Peruvian Spanish','default',275,'es-pe'), (19837,'Polish','default',275,'pl'), (19838,'Portuguese','default',275,'pt'), (19839,'Portuguese (Informal)','informal',275,'pt'), (19840,'Punjabi','default',275,'pa'), (19841,'Rohingya','default',275,'rhg'), (19842,'Romanian','default',275,'ro'), (19843,'Russian','default',275,'ru'), (19844,'Sakha','default',275,'sah'), (19845,'Sanskrit','default',275,'sa-in'), (19846,'Sardinian','default',275,'srd'), (19847,'Scottish Gaelic','default',275,'gd'), (19848,'Serbian','default',275,'sr'), (19849,'Sinhala','default',275,'si'), (19850,'Slovak','default',275,'sk'), (19851,'Slovenian','default',275,'sl'), (19852,'Somali','default',275,'so'), (19853,'South Azerbaijani','default',275,'azb'), (19854,'Spanish','default',275,'es'), (19855,'Spanish (Argentina)','default',275,'es-ar'), (19856,'Spanish (Mexico)','default',275,'es-mx'), (19857,'Sundanese','default',275,'su'), (19858,'Swahili','default',275,'sw'), (19859,'Swedish','default',275,'sv'), (19860,'Swiss German','default',275,'gsw'), (19861,'Swiss German (Formal)','formal',275,'gsw'), (19862,'Tagalog','default',275,'tl'), (19863,'Tajik','default',275,'tg'), (19864,'Tamazight (Central Atlas)','default',275,'tzm'), (19865,'Tamil (Sri Lanka)','default',275,'ta-lk'), (19866,'Tatar','default',275,'tt'), (19867,'Telugu','default',275,'te'), (19868,'Thai','default',275,'th'), (19869,'Tibetan','default',275,'bo'), (19870,'Turkish','default',275,'tr'), (19871,'Turkmen','default',275,'tuk'), (19872,'Uighur','default',275,'ug'), (19873,'Ukrainian','default',275,'uk'), (19874,'Uzbek','default',275,'uz'), (19875,'Venezuelan Spanish','default',275,'es-ve'), (19876,'Vietnamese','default',275,'vi'), (19877,'Welsh','default',275,'cy'), (19878,'German (Switzerland)','default',276,'de-ch'), (19880,'Ido','default',276,'ido'), (19881,'Sakha','default',276,'sah'), (19882,'Tatar','default',276,'tt'), (19884,'Afrikaans','default',274,'af'), (19885,'Albanian','default',274,'sq'), (19886,'Amharic','default',274,'am'), (19887,'Arabic','default',274,'ar'), (19888,'Aragonese','default',274,'an'), (19889,'Armenian','default',274,'hy'), (19890,'Assamese','default',274,'as'), (19891,'Azerbaijani','default',274,'az'), (19892,'Azerbaijani (Turkey)','default',274,'az-tr'), (19893,'Basque','default',274,'eu'), (19894,'Belarusian','default',274,'bel'), (19896,'Bengali','default',274,'bn'), (19897,'Bosnian','default',274,'bs'), (19898,'Brazilian Portuguese','default',274,'pt-br'), (19899,'Breton','default',274,'br'), (19900,'Bulgarian','default',274,'bg'), (19901,'Burmese','default',274,'mya'), (19902,'Catalan','default',274,'ca'), (19903,'Chilean Spanish','default',274,'es-cl'), (19904,'Chinese (China)','default',274,'zh-cn'), (19905,'Chinese (Taiwan)','default',274,'zh-tw'), (19906,'Corsican','default',274,'co'), (19907,'Croatian','default',274,'hr'), (19908,'Czech','default',274,'cs'), (19909,'Danish','default',274,'da'), (19910,'Divehi','default',274,'dv'), (19911,'Dutch','default',274,'nl'), (19912,'Dzongkha','default',274,'dzo'), (19913,'English (Australia)','default',274,'en-au'), (19914,'English (Canada)','default',274,'en-ca'), (19915,'Esperanto','default',274,'eo'), (19916,'Estonian','default',274,'et'), (19917,'Faroese','default',274,'fo'), (19918,'Finnish','default',274,'fi'), (19919,'French','default',274,'fr'), (19920,'Frisian','default',274,'fy'), (19921,'Fulah','default',274,'fuc'), (19922,'Galician','default',274,'gl'), (19923,'Georgian','default',274,'ka'), (19924,'German','default',274,'de'), (19925,'German (Formal)','formal',274,'de'), (19926,'German (Switzerland)','default',274,'de-ch'), (19928,'Greek','default',274,'el'), (19929,'Gujarati','default',274,'gu'), (19930,'Hazaragi','default',274,'haz'), (19931,'Hebrew','default',274,'he'), (19932,'Hindi','default',274,'hi'), (19933,'Hungarian','default',274,'hu'), (19934,'Icelandic','default',274,'is'), (19935,'Ido','default',274,'ido'), (19936,'Indonesian','default',274,'id'), (19937,'Irish','default',274,'ga'), (19938,'Italian','default',274,'it'), (19939,'Japanese','default',274,'ja'), (19940,'Javanese','default',274,'jv'), (19941,'Kannada','default',274,'kn'), (19942,'Kazakh','default',274,'kk'), (19943,'Khmer','default',274,'km'), (19944,'Kirghiz','default',274,'ky'), (19945,'Korean','default',274,'ko'), (19946,'Kurdish','default',274,'ckb'), (19947,'Lao','default',274,'lo'), (19948,'Latin','default',274,'la'), (19949,'Latvian','default',274,'lv'), (19950,'Limburgish','default',274,'li'), (19951,'Lithuanian','default',274,'lt'), (19952,'Macedonian','default',274,'mk'), (19953,'Malay','default',274,'ms'), (19954,'Malayalam','default',274,'ml'), (19956,'Marathi','default',274,'mr'), (19957,'Mongolian','default',274,'mn'), (19958,'Montenegrin','default',274,'me'), (19959,'Nepali','default',274,'ne'), (19960,'Norwegian (BokmÃ¥l)','default',274,'nb'), (19961,'Norwegian (Nynorsk)','default',274,'nn'), (19962,'Ossetic','default',274,'os'), (19963,'Pashto','default',274,'ps'), (19964,'Persian','default',274,'fa'), (19965,'Persian (Afghanistan)','default',274,'fa-af'), (19966,'Peruvian Spanish','default',274,'es-pe'), (19967,'Polish','default',274,'pl'), (19968,'Portuguese','default',274,'pt'), (19969,'Portuguese (Informal)','informal',274,'pt'), (19970,'Punjabi','default',274,'pa'), (19971,'Rohingya','default',274,'rhg'), (19972,'Romanian','default',274,'ro'), (19973,'Russian','default',274,'ru'), (19974,'Sakha','default',274,'sah'), (19975,'Sanskrit','default',274,'sa-in'), (19976,'Sardinian','default',274,'srd'), (19977,'Scottish Gaelic','default',274,'gd'), (19978,'Serbian','default',274,'sr'), (19979,'Sinhala','default',274,'si'), (19980,'Slovak','default',274,'sk'), (19981,'Slovenian','default',274,'sl'), (19982,'Somali','default',274,'so'), (19983,'South Azerbaijani','default',274,'azb'), (19984,'Spanish','default',274,'es'), (19985,'Spanish (Argentina)','default',274,'es-ar'), (19986,'Spanish (Mexico)','default',274,'es-mx'), (19987,'Sundanese','default',274,'su'), (19988,'Swahili','default',274,'sw'), (19989,'Swedish','default',274,'sv'), (19990,'Swiss German','default',274,'gsw'), (19991,'Swiss German (Formal)','formal',274,'gsw'), (19992,'Tagalog','default',274,'tl'), (19993,'Tajik','default',274,'tg'), (19994,'Tamazight (Central Atlas)','default',274,'tzm'), (19995,'Tamil (Sri Lanka)','default',274,'ta-lk'), (19996,'Tatar','default',274,'tt'), (19997,'Telugu','default',274,'te'), (19998,'Thai','default',274,'th'), (19999,'Tibetan','default',274,'bo'), (20000,'Turkish','default',274,'tr'), (20001,'Turkmen','default',274,'tuk'), (20002,'Uighur','default',274,'ug'), (20003,'Ukrainian','default',274,'uk'), (20004,'Uzbek','default',274,'uz'), (20005,'Venezuelan Spanish','default',274,'es-ve'), (20006,'Vietnamese','default',274,'vi'), (20007,'Welsh','default',274,'cy'), (20009,'Afrikaans','default',277,'af'), (20010,'Albanian','default',277,'sq'), (20011,'Amharic','default',277,'am'), (20012,'Arabic','default',277,'ar'), (20013,'Aragonese','default',277,'an'), (20014,'Armenian','default',277,'hy'), (20015,'Assamese','default',277,'as'), (20016,'Azerbaijani','default',277,'az'), (20017,'Azerbaijani (Turkey)','default',277,'az-tr'), (20018,'Basque','default',277,'eu'), (20019,'Belarusian','default',277,'bel'), (20021,'Bengali','default',277,'bn'), (20022,'Bosnian','default',277,'bs'), (20023,'Brazilian Portuguese','default',277,'pt-br'), (20024,'Breton','default',277,'br'), (20025,'Bulgarian','default',277,'bg'), (20026,'Burmese','default',277,'mya'), (20027,'Catalan','default',277,'ca'), (20028,'Chilean Spanish','default',277,'es-cl'), (20029,'Chinese (China)','default',277,'zh-cn'), (20030,'Chinese (Taiwan)','default',277,'zh-tw'), (20031,'Corsican','default',277,'co'), (20032,'Croatian','default',277,'hr'), (20033,'Czech','default',277,'cs'), (20034,'Danish','default',277,'da'), (20035,'Divehi','default',277,'dv'), (20036,'Dutch','default',277,'nl'), (20037,'Dzongkha','default',277,'dzo'), (20038,'English (Australia)','default',277,'en-au'), (20039,'English (Canada)','default',277,'en-ca'), (20040,'English (UK)','default',277,'en-gb'), (20041,'Esperanto','default',277,'eo'), (20042,'Estonian','default',277,'et'), (20043,'Faroese','default',277,'fo'), (20044,'Finnish','default',277,'fi'), (20045,'French','default',277,'fr'), (20046,'Frisian','default',277,'fy'), (20047,'Fulah','default',277,'fuc'), (20048,'Galician','default',277,'gl'), (20049,'Georgian','default',277,'ka'), (20050,'German','default',277,'de'), (20051,'German (Formal)','formal',277,'de'), (20052,'German (Switzerland)','default',277,'de-ch'), (20054,'Greek','default',277,'el'), (20055,'Gujarati','default',277,'gu'), (20056,'Hazaragi','default',277,'haz'), (20057,'Hebrew','default',277,'he'), (20058,'Hindi','default',277,'hi'), (20059,'Hungarian','default',277,'hu'), (20060,'Icelandic','default',277,'is'), (20061,'Ido','default',277,'ido'), (20062,'Indonesian','default',277,'id'), (20063,'Irish','default',277,'ga'), (20064,'Italian','default',277,'it'), (20065,'Japanese','default',277,'ja'), (20066,'Javanese','default',277,'jv'), (20067,'Kannada','default',277,'kn'), (20068,'Kazakh','default',277,'kk'), (20069,'Khmer','default',277,'km'), (20070,'Kirghiz','default',277,'ky'), (20071,'Korean','default',277,'ko'), (20072,'Kurdish','default',277,'ckb'), (20073,'Lao','default',277,'lo'), (20074,'Latin','default',277,'la'), (20075,'Latvian','default',277,'lv'), (20076,'Limburgish','default',277,'li'), (20077,'Lithuanian','default',277,'lt'), (20078,'Macedonian','default',277,'mk'), (20079,'Malay','default',277,'ms'), (20080,'Malayalam','default',277,'ml'), (20082,'Marathi','default',277,'mr'), (20083,'Mongolian','default',277,'mn'), (20084,'Montenegrin','default',277,'me'), (20085,'Nepali','default',277,'ne'), (20086,'Norwegian (BokmÃ¥l)','default',277,'nb'), (20087,'Norwegian (Nynorsk)','default',277,'nn'), (20088,'Ossetic','default',277,'os'), (20089,'Pashto','default',277,'ps'), (20090,'Persian','default',277,'fa'), (20091,'Persian (Afghanistan)','default',277,'fa-af'), (20092,'Peruvian Spanish','default',277,'es-pe'), (20093,'Polish','default',277,'pl'), (20094,'Portuguese','default',277,'pt'), (20095,'Portuguese (Informal)','informal',277,'pt'), (20096,'Punjabi','default',277,'pa'), (20097,'Rohingya','default',277,'rhg'), (20098,'Romanian','default',277,'ro'), (20099,'Russian','default',277,'ru'), (20100,'Sakha','default',277,'sah'), (20101,'Sanskrit','default',277,'sa-in'), (20102,'Sardinian','default',277,'srd'), (20103,'Scottish Gaelic','default',277,'gd'), (20104,'Serbian','default',277,'sr'), (20105,'Sinhala','default',277,'si'), (20106,'Slovak','default',277,'sk'), (20107,'Slovenian','default',277,'sl'), (20108,'Somali','default',277,'so'), (20109,'South Azerbaijani','default',277,'azb'), (20110,'Spanish','default',277,'es'), (20111,'Spanish (Argentina)','default',277,'es-ar'), (20112,'Spanish (Mexico)','default',277,'es-mx'), (20113,'Sundanese','default',277,'su'), (20114,'Swahili','default',277,'sw'), (20115,'Swedish','default',277,'sv'), (20116,'Swiss German','default',277,'gsw'), (20117,'Swiss German (Formal)','formal',277,'gsw'), (20118,'Tagalog','default',277,'tl'), (20119,'Tajik','default',277,'tg'), (20120,'Tamazight (Central Atlas)','default',277,'tzm'), (20121,'Tamil (Sri Lanka)','default',277,'ta-lk'), (20122,'Tatar','default',277,'tt'), (20123,'Telugu','default',277,'te'), (20124,'Thai','default',277,'th'), (20125,'Tibetan','default',277,'bo'), (20126,'Turkish','default',277,'tr'), (20127,'Turkmen','default',277,'tuk'), (20128,'Uighur','default',277,'ug'), (20129,'Ukrainian','default',277,'uk'), (20130,'Uzbek','default',277,'uz'), (20131,'Venezuelan Spanish','default',277,'es-ve'), (20132,'Vietnamese','default',277,'vi'), (20133,'Welsh','default',277,'cy'), (20135,'Afrikaans','default',278,'af'), (20136,'Albanian','default',278,'sq'), (20137,'Amharic','default',278,'am'), (20138,'Arabic','default',278,'ar'), (20139,'Aragonese','default',278,'an'), (20140,'Armenian','default',278,'hy'), (20141,'Assamese','default',278,'as'), (20142,'Azerbaijani','default',278,'az'), (20143,'Azerbaijani (Turkey)','default',278,'az-tr'), (20144,'Basque','default',278,'eu'), (20146,'Belarusian','default',278,'bel'), (20147,'Bengali','default',278,'bn'), (20148,'Bosnian','default',278,'bs'), (20149,'Brazilian Portuguese','default',278,'pt-br'), (20150,'Breton','default',278,'br'), (20151,'Bulgarian','default',278,'bg'), (20152,'Burmese','default',278,'mya'), (20153,'Catalan','default',278,'ca'), (20154,'Catalan (Balear)','default',278,'bal'), (20155,'Chilean Spanish','default',278,'es-cl'), (20156,'Chinese (China)','default',278,'zh-cn'), (20157,'Chinese (Taiwan)','default',278,'zh-tw'), (20158,'Corsican','default',278,'co'), (20159,'Croatian','default',278,'hr'), (20160,'Czech','default',278,'cs'), (20161,'Danish','default',278,'da'), (20162,'Divehi','default',278,'dv'), (20163,'Dutch','default',278,'nl'), (20164,'Dzongkha','default',278,'dzo'), (20165,'English (Australia)','default',278,'en-au'), (20166,'English (Canada)','default',278,'en-ca'), (20167,'English (UK)','default',278,'en-gb'), (20168,'Esperanto','default',278,'eo'), (20169,'Estonian','default',278,'et'), (20170,'Faroese','default',278,'fo'), (20171,'Finnish','default',278,'fi'), (20172,'French','default',278,'fr'), (20173,'Frisian','default',278,'fy'), (20174,'Fulah','default',278,'fuc'), (20175,'Galician','default',278,'gl'), (20176,'Georgian','default',278,'ka'), (20177,'German','default',278,'de'), (20178,'German (Formal)','formal',278,'de'), (20179,'German (Switzerland)','default',278,'de-ch'), (20181,'Greek','default',278,'el'), (20182,'Gujarati','default',278,'gu'), (20183,'Hawaiian','default',278,'haw'), (20184,'Hazaragi','default',278,'haz'), (20185,'Hebrew','default',278,'he'), (20186,'Hindi','default',278,'hi'), (20187,'Hungarian','default',278,'hu'), (20188,'Icelandic','default',278,'is'), (20189,'Ido','default',278,'ido'), (20190,'Indonesian','default',278,'id'), (20191,'Irish','default',278,'ga'), (20192,'Italian','default',278,'it'), (20193,'Japanese','default',278,'ja'), (20194,'Javanese','default',278,'jv'), (20195,'Kannada','default',278,'kn'), (20196,'Kazakh','default',278,'kk'), (20197,'Khmer','default',278,'km'), (20198,'Kirghiz','default',278,'ky'), (20199,'Korean','default',278,'ko'), (20200,'Kurdish','default',278,'ckb'), (20201,'Kurdish (Kurmanji)','default',278,'ku'), (20202,'Lao','default',278,'lo'), (20203,'Latin','default',278,'la'), (20204,'Latvian','default',278,'lv'), (20205,'Limburgish','default',278,'li'), (20206,'Lithuanian','default',278,'lt'), (20207,'Luxembourgish','default',278,'lb'), (20208,'Macedonian','default',278,'mk'), (20209,'Malagasy','default',278,'mg'), (20210,'Malay','default',278,'ms'), (20211,'Malayalam','default',278,'ml'), (20213,'Marathi','default',278,'mr'), (20214,'Mongolian','default',278,'mn'), (20215,'Montenegrin','default',278,'me'), (20216,'Nepali','default',278,'ne'), (20217,'Norwegian (BokmÃ¥l)','default',278,'nb'), (20218,'Norwegian (Nynorsk)','default',278,'nn'), (20219,'Ossetic','default',278,'os'), (20220,'Pashto','default',278,'ps'), (20221,'Persian','default',278,'fa'), (20222,'Persian (Afghanistan)','default',278,'fa-af'), (20223,'Peruvian Spanish','default',278,'es-pe'), (20224,'Polish','default',278,'pl'), (20225,'Portuguese','default',278,'pt'), (20226,'Portuguese Informal','informal',278,'pt'), (20227,'Punjabi','default',278,'pa'), (20228,'Rohingya','default',278,'rhg'), (20229,'Romanian','default',278,'ro'), (20230,'Russian','default',278,'ru'), (20231,'Sakha','default',278,'sah'), (20232,'Sanskrit','default',278,'sa-in'), (20233,'Sardinian','default',278,'srd'), (20234,'Scottish Gaelic','default',278,'gd'), (20235,'Serbian','default',278,'sr'), (20236,'Sinhala','default',278,'si'), (20237,'Slovak','default',278,'sk'), (20238,'Slovenian','default',278,'sl'), (20239,'Somali','default',278,'so'), (20240,'South Azerbaijani','default',278,'azb'), (20241,'Spanish','default',278,'es'), (20242,'Spanish (Argentina)','default',278,'es-ar'), (20243,'Spanish (Mexico)','default',278,'es-mx'), (20244,'Sundanese','default',278,'su'), (20245,'Swahili','default',278,'sw'), (20246,'Swedish','default',278,'sv'), (20247,'Swiss German','default',278,'gsw'), (20248,'Swiss German (Formal)','formal',278,'gsw'), (20249,'Tagalog','default',278,'tl'), (20250,'Tajik','default',278,'tg'), (20251,'Tamazight (Central Atlas)','default',278,'tzm'), (20252,'Tamil','default',278,'ta'), (20253,'Tamil (Sri Lanka)','default',278,'ta-lk'), (20254,'Tatar','default',278,'tt'), (20255,'Telugu','default',278,'te'), (20256,'Thai','default',278,'th'), (20257,'Tibetan','default',278,'bo'), (20258,'Turkish','default',278,'tr'), (20259,'Turkmen','default',278,'tuk'), (20260,'Uighur','default',278,'ug'), (20261,'Ukrainian','default',278,'uk'), (20262,'Urdu','default',278,'ur'), (20263,'Uzbek','default',278,'uz'), (20264,'Venezuelan Spanish','default',278,'es-ve'), (20265,'Vietnamese','default',278,'vi'), (20266,'Welsh','default',278,'cy'), (20268,'Arabic','default',279,'ar'), (20269,'Azerbaijani','default',279,'az'), (20270,'Basque','default',279,'eu'), (20271,'Bengali','default',279,'bn'), (20272,'Bosnian','default',279,'bs'), (20273,'Bulgarian','default',279,'bg'), (20274,'Burmese','default',279,'mya'), (20275,'Catalan','default',279,'ca'), (20276,'Chinese (China)','default',279,'zh-cn'), (20277,'Chinese (Taiwan)','default',279,'zh-tw'), (20278,'Croatian','default',279,'hr'), (20279,'Czech','default',279,'cs'), (20280,'Danish','default',279,'da'), (20281,'Dutch','default',279,'nl'), (20282,'English (Australia)','default',279,'en-au'), (20283,'English (UK)','default',279,'en-gb'), (20284,'Estonian','default',279,'et'), (20285,'Finnish','default',279,'fi'), (20286,'French (France)','default',279,'fr'), (20287,'Frisian','default',279,'fy'), (20288,'Galician','default',279,'gl'), (20289,'Georgian','default',279,'ka'), (20290,'German','default',279,'de'), (20291,'Greek','default',279,'el'), (20293,'Hebrew','default',279,'he'), (20294,'Hindi','default',279,'hi'), (20295,'Hungarian','default',279,'hu'), (20296,'Icelandic','default',279,'is'), (20297,'Indonesian','default',279,'id'), (20298,'Italian','default',279,'it'), (20299,'Japanese','default',279,'ja'), (20300,'Kannada','default',279,'kn'), (20301,'Korean','default',279,'ko'), (20302,'Latvian','default',279,'lv'), (20303,'Limburgish','default',279,'li'), (20304,'Macedonian','default',279,'mk'), (20305,'Norwegian (BokmÃ¥l)','default',279,'nb'), (20306,'Persian','default',279,'fa'), (20307,'Polish','default',279,'pl'), (20308,'Portuguese (Brazil)','default',279,'pt-br'), (20309,'Portuguese (Portugal)','default',279,'pt'), (20310,'Rohingya','default',279,'rhg'), (20311,'Romanian','default',279,'ro'), (20312,'Russian','default',279,'ru'), (20313,'Serbian','default',279,'sr'), (20314,'Slovak','default',279,'sk'), (20315,'Somali','default',279,'so'), (20316,'Spanish (Spain)','default',279,'es'), (20317,'Swahili','default',279,'sw'), (20318,'Swedish','default',279,'sv'), (20319,'Tagalog','default',279,'tl'), (20320,'Thai','default',279,'th'), (20321,'Turkish','default',279,'tr'), (20322,'Ukrainian','default',279,'uk'), (20323,'Vietnamese','default',279,'vi'), (20324,'Welsh','default',279,'cy'), (20370,'Albanian','default',281,'sq'), (20371,'Amharic','default',281,'am'), (20372,'Arabic','default',281,'ar'), (20373,'Aragonese','default',281,'an'), (20374,'Armenian','default',281,'hy'), (20375,'Assamese','default',281,'as'), (20376,'Azerbaijani','default',281,'az'), (20377,'Basque','default',281,'eu'), (20379,'Belarusian','default',281,'bel'), (20380,'Bengali','default',281,'bn'), (20381,'Bosnian','default',281,'bs'), (20382,'Brazilian Portuguese','default',281,'pt-br'), (20383,'Breton','default',281,'br'), (20384,'Bulgarian','default',281,'bg'), (20385,'Burmese','default',281,'mya'), (20386,'Catalan','default',281,'ca'), (20387,'Catalan (Balear)','default',281,'bal'), (20388,'Chilean Spanish','default',281,'es-cl'), (20389,'Chinese (China)','default',281,'zh-cn'), (20390,'Chinese (Taiwan)','default',281,'zh-tw'), (20391,'Corsican','default',281,'co'), (20392,'Croatian','default',281,'hr'), (20393,'Czech','default',281,'cs'), (20394,'Danish','default',281,'da'), (20395,'Divehi','default',281,'dv'), (20396,'Dutch','default',281,'nl'), (20397,'Dzongkha','default',281,'dzo'), (20398,'English (Australia)','default',281,'en-au'), (20399,'English (Canada)','default',281,'en-ca'), (20400,'English (UK)','default',281,'en-gb'), (20401,'Esperanto','default',281,'eo'), (20402,'Estonian','default',281,'et'), (20403,'Faroese','default',281,'fo'), (20404,'Finnish','default',281,'fi'), (20405,'French','default',281,'fr'), (20406,'Frisian','default',281,'fy'), (20407,'Fulah','default',281,'fuc'), (20408,'Galician','default',281,'gl'), (20409,'Georgian','default',281,'ka'), (20410,'German','default',281,'de'), (20411,'German (Switzerland)','default',281,'de-ch'), (20413,'Greek','default',281,'el'), (20414,'Hawaiian','default',281,'haw'), (20415,'Hazaragi','default',281,'haz'), (20416,'Hebrew','default',281,'he'), (20417,'Hindi','default',281,'hi'), (20418,'Hungarian','default',281,'hu'), (20419,'Icelandic','default',281,'is'), (20420,'Indonesian','default',281,'id'), (20421,'Irish','default',281,'ga'), (20422,'Italian','default',281,'it'), (20423,'Japanese','default',281,'ja'), (20424,'Javanese','default',281,'jv'), (20425,'Kannada','default',281,'kn'), (20426,'Kazakh','default',281,'kk'), (20427,'Khmer','default',281,'km'), (20428,'Kirghiz','default',281,'ky'), (20429,'Korean','default',281,'ko'), (20430,'Kurdish','default',281,'ckb'), (20431,'Kurdish (Kurmanji)','default',281,'ku'), (20432,'Lao','default',281,'lo'), (20433,'Latin','default',281,'la'), (20434,'Latvian','default',281,'lv'), (20435,'Limburgish','default',281,'li'), (20436,'Lithuanian','default',281,'lt'), (20437,'Luxembourgish','default',281,'lb'), (20438,'Macedonian','default',281,'mk'), (20439,'Malagasy','default',281,'mg'), (20440,'Malay','default',281,'ms'), (20441,'Malayalam','default',281,'ml'), (20443,'Mongolian','default',281,'mn'), (20444,'Montenegrin','default',281,'me'), (20445,'Nepali','default',281,'ne'), (20446,'Norwegian (BokmÃ¥l)','default',281,'nb'), (20447,'Norwegian (Nynorsk)','default',281,'nn'), (20448,'Ossetic','default',281,'os'), (20449,'Pashto','default',281,'ps'), (20450,'Persian','default',281,'fa'), (20451,'Persian (Afghanistan)','default',281,'fa-af'), (20452,'Peruvian Spanish','default',281,'es-pe'), (20453,'Polish','default',281,'pl'), (20454,'Portuguese','default',281,'pt'), (20455,'Punjabi','default',281,'pa'), (20456,'Rohingya','default',281,'rhg'), (20457,'Romanian','default',281,'ro'), (20458,'Russian','default',281,'ru'), (20459,'Sakha','default',281,'sah'), (20460,'Sanskrit','default',281,'sa-in'), (20461,'Sardinian','default',281,'srd'), (20462,'Scottish Gaelic','default',281,'gd'), (20463,'Serbian','default',281,'sr'), (20464,'Sinhala','default',281,'si'), (20465,'Slovak','default',281,'sk'), (20466,'Slovenian','default',281,'sl'), (20467,'Somali','default',281,'so'), (20468,'South Azerbaijani','default',281,'azb'), (20469,'Spanish','default',281,'es'), (20470,'Spanish (Argentina)','default',281,'es-ar'), (20471,'Spanish (Mexico)','default',281,'es-mx'), (20472,'Sundanese','default',281,'su'), (20473,'Swahili','default',281,'sw'), (20474,'Swedish','default',281,'sv'), (20475,'Swiss German','default',281,'gsw'), (20476,'Tagalog','default',281,'tl'), (20477,'Tamazight (Central Atlas)','default',281,'tzm'), (20478,'Tamil','default',281,'ta'), (20479,'Tamil (Sri Lanka)','default',281,'ta-lk'), (20480,'Tatar','default',281,'tt'), (20481,'Telugu','default',281,'te'), (20482,'Thai','default',281,'th'), (20483,'Turkish','default',281,'tr'), (20484,'Turkmen','default',281,'tuk'), (20485,'Uighur','default',281,'ug'), (20486,'Ukrainian','default',281,'uk'), (20487,'Urdu','default',281,'ur'), (20488,'Uzbek','default',281,'uz'), (20489,'Venezuelan Spanish','default',281,'es-ve'), (20490,'Vietnamese','default',281,'vi'), (20491,'Welsh','default',281,'cy'), (23352,'Lithuanian','default',14,'lt'), (23353,'Lithuanian','default',59,'lt'), (23354,'Lithuanian','default',21,'lt'), (23355,'Lithuanian','default',19,'lt'), (23356,'Lithuanian','default',23,'lt'), (23357,'Lithuanian','default',25,'lt'), (23358,'Lithuanian','default',27,'lt'), (23359,'Lithuanian','default',29,'lt'), (23360,'Lithuanian','default',33,'lt'), (23361,'Lithuanian','default',35,'lt'), (23362,'Lithuanian','default',43,'lt'), (23363,'Lithuanian','default',41,'lt'), (23364,'Lithuanian','default',7,'lt'), (23365,'Lithuanian','default',57,'lt'), (23366,'Lithuanian','default',264,'lt'), (23369,'English (Australia)','default',57,'en-au'), (23370,'English (Australia)','default',264,'en-au'), (23372,'English (Australia)','default',7,'en-au'), (23373,'English (Australia)','default',263,'en-au'), (23375,'Burmese','default',57,'mya'), (23376,'Burmese','default',264,'mya'), (23378,'Welsh','default',7,'cy'), (23382,'Oriya','default',2,'ory'), (23383,'Oriya','default',78,'ory'), (23384,'Oriya','default',79,'ory'), (23386,'Kinyarwanda','default',2,'kin'), (23387,'Kinyarwanda','default',78,'kin'), (23388,'Kinyarwanda','default',79,'kin'), (23389,'Kinyarwanda','default',130,'kin'), (23390,'Kinyarwanda','default',101,'kin'), (23391,'Kinyarwanda','default',80,'kin'), (23392,'French (France)','default',363,'fr'), (24694,'Afrikaans','default',394,'af'), (24695,'Albanian','default',394,'sq'), (24696,'Amharic','default',394,'am'), (24697,'Arabic','default',394,'ar'), (24698,'Aragonese','default',394,'an'), (24699,'Armenian','default',394,'hy'), (24700,'Assamese','default',394,'as'), (24701,'Azerbaijani','default',394,'az'), (24702,'Azerbaijani (Turkey)','default',394,'az-tr'), (24703,'Basque','default',394,'eu'), (24705,'Belarusian','default',394,'bel'), (24706,'Bengali','default',394,'bn'), (24707,'Bosnian','default',394,'bs'), (24708,'Brazilian Portuguese','default',394,'pt-br'), (24709,'Breton','default',394,'br'), (24710,'Bulgarian','default',394,'bg'), (24711,'Burmese','default',394,'mya'), (24712,'Catalan','default',394,'ca'), (24713,'Catalan (Balear)','default',394,'bal'), (24714,'Chilean Spanish','default',394,'es-cl'), (24715,'Chinese (China)','default',394,'zh-cn'), (24716,'Chinese (Taiwan)','default',394,'zh-tw'), (24717,'Corsican','default',394,'co'), (24718,'Croatian','default',394,'hr'), (24719,'Czech','default',394,'cs'), (24720,'Danish','default',394,'da'), (24721,'Divehi','default',394,'dv'), (24722,'Dutch','default',394,'nl'), (24723,'Dzongkha','default',394,'dzo'), (24724,'English (Australia)','default',394,'en-au'), (24725,'English (Canada)','default',394,'en-ca'), (24726,'English (UK)','default',394,'en-gb'), (24727,'Esperanto','default',394,'eo'), (24728,'Estonian','default',394,'et'), (24729,'Faroese','default',394,'fo'), (24730,'Finnish','default',394,'fi'), (24731,'French','default',394,'fr'), (24732,'Frisian','default',394,'fy'), (24733,'Fulah','default',394,'fuc'), (24734,'Galician','default',394,'gl'), (24735,'Georgian','default',394,'ka'), (24736,'German','default',394,'de'), (24737,'German (Formal)','formal',394,'de'), (24738,'German (Switzerland)','default',394,'de-ch'), (24740,'Greek','default',394,'el'), (24741,'Gujarati','default',394,'gu'), (24742,'Hawaiian','default',394,'haw'), (24743,'Hazaragi','default',394,'haz'), (24744,'Hebrew','default',394,'he'), (24745,'Hindi','default',394,'hi'), (24746,'Hungarian','default',394,'hu'), (24747,'Icelandic','default',394,'is'), (24748,'Ido','default',394,'ido'), (24749,'Indonesian','default',394,'id'), (24750,'Irish','default',394,'ga'), (24751,'Italian','default',394,'it'), (24752,'Japanese','default',394,'ja'), (24753,'Javanese','default',394,'jv'), (24754,'Kannada','default',394,'kn'), (24755,'Kazakh','default',394,'kk'), (24756,'Khmer','default',394,'km'), (24757,'Kirghiz','default',394,'ky'), (24758,'Korean','default',394,'ko'), (24759,'Kurdish','default',394,'ckb'), (24760,'Kurdish (Kurmanji)','default',394,'ku'), (24761,'Lao','default',394,'lo'), (24762,'Latin','default',394,'la'), (24763,'Latvian','default',394,'lv'), (24764,'Limburgish','default',394,'li'), (24765,'Lithuanian','default',394,'lt'), (24766,'Luxembourgish','default',394,'lb'), (24767,'Macedonian','default',394,'mk'), (24768,'Malagasy','default',394,'mg'), (24769,'Malay','default',394,'ms'), (24770,'Malayalam','default',394,'ml'), (24772,'Marathi','default',394,'mr'), (24773,'Mongolian','default',394,'mn'), (24774,'Montenegrin','default',394,'me'), (24775,'Nepali','default',394,'ne'), (24776,'Norwegian (BokmÃ¥l)','default',394,'nb'), (24777,'Norwegian (Nynorsk)','default',394,'nn'), (24778,'Ossetic','default',394,'os'), (24779,'Pashto','default',394,'ps'), (24780,'Persian','default',394,'fa'), (24781,'Persian (Afghanistan)','default',394,'fa-af'), (24782,'Peruvian Spanish','default',394,'es-pe'), (24783,'Polish','default',394,'pl'), (24784,'Portuguese','default',394,'pt'), (24785,'Portuguese Informal','informal',394,'pt'), (24786,'Punjabi','default',394,'pa'), (24787,'Rohingya','default',394,'rhg'), (24788,'Romanian','default',394,'ro'), (24789,'Russian','default',394,'ru'), (24790,'Sakha','default',394,'sah'), (24791,'Sanskrit','default',394,'sa-in'), (24792,'Sardinian','default',394,'srd'), (24793,'Scottish Gaelic','default',394,'gd'), (24794,'Serbian','default',394,'sr'), (24795,'Sinhala','default',394,'si'), (24796,'Slovak','default',394,'sk'), (24797,'Slovenian','default',394,'sl'), (24798,'Somali','default',394,'so'), (24799,'South Azerbaijani','default',394,'azb'), (24800,'Spanish','default',394,'es'), (24801,'Spanish (Argentina)','default',394,'es-ar'), (24802,'Spanish (Mexico)','default',394,'es-mx'), (24803,'Sundanese','default',394,'su'), (24804,'Swahili','default',394,'sw'), (24805,'Swedish','default',394,'sv'), (24806,'Swiss German','default',394,'gsw'), (24807,'Swiss German (Formal)','formal',394,'gsw'), (24808,'Tagalog','default',394,'tl'), (24809,'Tajik','default',394,'tg'), (24810,'Tamazight (Central Atlas)','default',394,'tzm'), (24811,'Tamil','default',394,'ta'), (24812,'Tamil (Sri Lanka)','default',394,'ta-lk'), (24813,'Tatar','default',394,'tt'), (24814,'Telugu','default',394,'te'), (24815,'Thai','default',394,'th'), (24816,'Tibetan','default',394,'bo'), (24817,'Turkish','default',394,'tr'), (24818,'Turkmen','default',394,'tuk'), (24819,'Uighur','default',394,'ug'), (24820,'Ukrainian','default',394,'uk'), (24821,'Urdu','default',394,'ur'), (24822,'Uzbek','default',394,'uz'), (24823,'Venezuelan Spanish','default',394,'es-ve'), (24824,'Vietnamese','default',394,'vi'), (24825,'Welsh','default',394,'cy'), (24827,'Afrikaans','default',395,'af'), (24828,'Albanian','default',395,'sq'), (24829,'Amharic','default',395,'am'), (24830,'Arabic','default',395,'ar'), (24831,'Aragonese','default',395,'an'), (24832,'Armenian','default',395,'hy'), (24833,'Assamese','default',395,'as'), (24834,'Azerbaijani','default',395,'az'), (24835,'Azerbaijani (Turkey)','default',395,'az-tr'), (24836,'Basque','default',395,'eu'), (24838,'Belarusian','default',395,'bel'), (24839,'Bengali','default',395,'bn'), (24840,'Bosnian','default',395,'bs'), (24841,'Brazilian Portuguese','default',395,'pt-br'), (24842,'Breton','default',395,'br'), (24843,'Bulgarian','default',395,'bg'), (24844,'Burmese','default',395,'mya'), (24845,'Catalan','default',395,'ca'), (24846,'Catalan (Balear)','default',395,'bal'), (24847,'Chilean Spanish','default',395,'es-cl'), (24848,'Chinese (China)','default',395,'zh-cn'), (24849,'Chinese (Taiwan)','default',395,'zh-tw'), (24850,'Corsican','default',395,'co'), (24851,'Croatian','default',395,'hr'), (24852,'Czech','default',395,'cs'), (24853,'Danish','default',395,'da'), (24854,'Divehi','default',395,'dv'), (24855,'Dutch','default',395,'nl'), (24856,'Dzongkha','default',395,'dzo'), (24857,'English (Australia)','default',395,'en-au'), (24858,'English (Canada)','default',395,'en-ca'), (24859,'English (UK)','default',395,'en-gb'), (24860,'Esperanto','default',395,'eo'), (24861,'Estonian','default',395,'et'), (24862,'Faroese','default',395,'fo'), (24863,'Finnish','default',395,'fi'), (24864,'French','default',395,'fr'), (24865,'Frisian','default',395,'fy'), (24866,'Fulah','default',395,'fuc'), (24867,'Galician','default',395,'gl'), (24868,'Georgian','default',395,'ka'), (24869,'German','default',395,'de'), (24870,'German (Formal)','formal',395,'de'), (24871,'German (Switzerland)','default',395,'de-ch'), (24873,'Greek','default',395,'el'), (24874,'Gujarati','default',395,'gu'), (24875,'Hawaiian','default',395,'haw'), (24876,'Hazaragi','default',395,'haz'), (24877,'Hebrew','default',395,'he'), (24878,'Hindi','default',395,'hi'), (24879,'Hungarian','default',395,'hu'), (24880,'Icelandic','default',395,'is'), (24881,'Ido','default',395,'ido'), (24882,'Indonesian','default',395,'id'), (24883,'Irish','default',395,'ga'), (24884,'Italian','default',395,'it'), (24885,'Japanese','default',395,'ja'), (24886,'Javanese','default',395,'jv'), (24887,'Kannada','default',395,'kn'), (24888,'Kazakh','default',395,'kk'), (24889,'Khmer','default',395,'km'), (24890,'Kirghiz','default',395,'ky'), (24891,'Korean','default',395,'ko'), (24892,'Kurdish','default',395,'ckb'), (24893,'Kurdish (Kurmanji)','default',395,'ku'), (24894,'Lao','default',395,'lo'), (24895,'Latin','default',395,'la'), (24896,'Latvian','default',395,'lv'), (24897,'Limburgish','default',395,'li'), (24898,'Lithuanian','default',395,'lt'), (24899,'Luxembourgish','default',395,'lb'), (24900,'Macedonian','default',395,'mk'), (24901,'Malagasy','default',395,'mg'), (24902,'Malay','default',395,'ms'), (24903,'Malayalam','default',395,'ml'), (24905,'Marathi','default',395,'mr'), (24906,'Mongolian','default',395,'mn'), (24907,'Montenegrin','default',395,'me'), (24908,'Nepali','default',395,'ne'), (24909,'Norwegian (BokmÃ¥l)','default',395,'nb'), (24910,'Norwegian (Nynorsk)','default',395,'nn'), (24911,'Ossetic','default',395,'os'), (24912,'Pashto','default',395,'ps'), (24913,'Persian','default',395,'fa'), (24914,'Persian (Afghanistan)','default',395,'fa-af'), (24915,'Peruvian Spanish','default',395,'es-pe'), (24916,'Polish','default',395,'pl'), (24917,'Portuguese','default',395,'pt'), (24918,'Portuguese Informal','informal',395,'pt'), (24919,'Punjabi','default',395,'pa'), (24920,'Rohingya','default',395,'rhg'), (24921,'Romanian','default',395,'ro'), (24922,'Russian','default',395,'ru'), (24923,'Sakha','default',395,'sah'), (24924,'Sanskrit','default',395,'sa-in'), (24925,'Sardinian','default',395,'srd'), (24926,'Scottish Gaelic','default',395,'gd'), (24927,'Serbian','default',395,'sr'), (24928,'Sinhala','default',395,'si'), (24929,'Slovak','default',395,'sk'), (24930,'Slovenian','default',395,'sl'), (24931,'Somali','default',395,'so'), (24932,'South Azerbaijani','default',395,'azb'), (24933,'Spanish','default',395,'es'), (24934,'Spanish (Argentina)','default',395,'es-ar'), (24935,'Spanish (Mexico)','default',395,'es-mx'), (24936,'Sundanese','default',395,'su'), (24937,'Swahili','default',395,'sw'), (24938,'Swedish','default',395,'sv'), (24939,'Swiss German','default',395,'gsw'), (24940,'Swiss German (Formal)','formal',395,'gsw'), (24941,'Tagalog','default',395,'tl'), (24942,'Tajik','default',395,'tg'), (24943,'Tamazight (Central Atlas)','default',395,'tzm'), (24944,'Tamil','default',395,'ta'), (24945,'Tamil (Sri Lanka)','default',395,'ta-lk'), (24946,'Tatar','default',395,'tt'), (24947,'Telugu','default',395,'te'), (24948,'Thai','default',395,'th'), (24949,'Tibetan','default',395,'bo'), (24950,'Turkish','default',395,'tr'), (24951,'Turkmen','default',395,'tuk'), (24952,'Uighur','default',395,'ug'), (24953,'Ukrainian','default',395,'uk'), (24954,'Urdu','default',395,'ur'), (24955,'Uzbek','default',395,'uz'), (24956,'Venezuelan Spanish','default',395,'es-ve'), (24957,'Vietnamese','default',395,'vi'), (24958,'Welsh','default',395,'cy'), (24960,'Afrikaans','default',396,'af'), (24961,'Albanian','default',396,'sq'), (24962,'Amharic','default',396,'am'), (24963,'Arabic','default',396,'ar'), (24964,'Aragonese','default',396,'an'), (24965,'Armenian','default',396,'hy'), (24966,'Assamese','default',396,'as'), (24967,'Azerbaijani','default',396,'az'), (24968,'Azerbaijani (Turkey)','default',396,'az-tr'), (24969,'Basque','default',396,'eu'), (24971,'Belarusian','default',396,'bel'), (24972,'Bengali','default',396,'bn'), (24973,'Bosnian','default',396,'bs'), (24974,'Brazilian Portuguese','default',396,'pt-br'), (24975,'Breton','default',396,'br'), (24976,'Bulgarian','default',396,'bg'), (24977,'Burmese','default',396,'mya'), (24978,'Catalan','default',396,'ca'), (24979,'Catalan (Balear)','default',396,'bal'), (24980,'Chilean Spanish','default',396,'es-cl'), (24981,'Chinese (China)','default',396,'zh-cn'), (24982,'Chinese (Taiwan)','default',396,'zh-tw'), (24983,'Corsican','default',396,'co'), (24984,'Croatian','default',396,'hr'), (24985,'Czech','default',396,'cs'), (24986,'Danish','default',396,'da'), (24987,'Divehi','default',396,'dv'), (24988,'Dutch','default',396,'nl'), (24989,'Dzongkha','default',396,'dzo'), (24990,'English (Australia)','default',396,'en-au'), (24991,'English (Canada)','default',396,'en-ca'), (24992,'English (UK)','default',396,'en-gb'), (24993,'Esperanto','default',396,'eo'), (24994,'Estonian','default',396,'et'), (24995,'Faroese','default',396,'fo'), (24996,'Finnish','default',396,'fi'), (24997,'French','default',396,'fr'), (24998,'Frisian','default',396,'fy'), (24999,'Fulah','default',396,'fuc'), (25000,'Galician','default',396,'gl'), (25001,'Georgian','default',396,'ka'), (25002,'German','default',396,'de'), (25003,'German (Formal)','formal',396,'de'), (25004,'German (Switzerland)','default',396,'de-ch'), (25006,'Greek','default',396,'el'), (25007,'Gujarati','default',396,'gu'), (25008,'Hawaiian','default',396,'haw'), (25009,'Hazaragi','default',396,'haz'), (25010,'Hebrew','default',396,'he'), (25011,'Hindi','default',396,'hi'), (25012,'Hungarian','default',396,'hu'), (25013,'Icelandic','default',396,'is'), (25014,'Ido','default',396,'ido'), (25015,'Indonesian','default',396,'id'), (25016,'Irish','default',396,'ga'), (25017,'Italian','default',396,'it'), (25018,'Japanese','default',396,'ja'), (25019,'Javanese','default',396,'jv'), (25020,'Kannada','default',396,'kn'), (25021,'Kazakh','default',396,'kk'), (25022,'Khmer','default',396,'km'), (25023,'Kirghiz','default',396,'ky'), (25024,'Korean','default',396,'ko'), (25025,'Kurdish','default',396,'ckb'), (25026,'Kurdish (Kurmanji)','default',396,'ku'), (25027,'Lao','default',396,'lo'), (25028,'Latin','default',396,'la'), (25029,'Latvian','default',396,'lv'), (25030,'Limburgish','default',396,'li'), (25031,'Lithuanian','default',396,'lt'), (25032,'Luxembourgish','default',396,'lb'), (25033,'Macedonian','default',396,'mk'), (25034,'Malagasy','default',396,'mg'), (25035,'Malay','default',396,'ms'), (25036,'Malayalam','default',396,'ml'), (25038,'Marathi','default',396,'mr'), (25039,'Mongolian','default',396,'mn'), (25040,'Montenegrin','default',396,'me'), (25041,'Nepali','default',396,'ne'), (25042,'Norwegian (BokmÃ¥l)','default',396,'nb'), (25043,'Norwegian (Nynorsk)','default',396,'nn'), (25044,'Ossetic','default',396,'os'), (25045,'Pashto','default',396,'ps'), (25046,'Persian','default',396,'fa'), (25047,'Persian (Afghanistan)','default',396,'fa-af'), (25048,'Peruvian Spanish','default',396,'es-pe'), (25049,'Polish','default',396,'pl'), (25050,'Portuguese','default',396,'pt'), (25051,'Portuguese Informal','informal',396,'pt'), (25052,'Punjabi','default',396,'pa'), (25053,'Rohingya','default',396,'rhg'), (25054,'Romanian','default',396,'ro'), (25055,'Russian','default',396,'ru'), (25056,'Sakha','default',396,'sah'), (25057,'Sanskrit','default',396,'sa-in'), (25058,'Sardinian','default',396,'srd'), (25059,'Scottish Gaelic','default',396,'gd'), (25060,'Serbian','default',396,'sr'), (25061,'Sinhala','default',396,'si'), (25062,'Slovak','default',396,'sk'), (25063,'Slovenian','default',396,'sl'), (25064,'Somali','default',396,'so'), (25065,'South Azerbaijani','default',396,'azb'), (25066,'Spanish','default',396,'es'), (25067,'Spanish (Argentina)','default',396,'es-ar'), (25068,'Spanish (Mexico)','default',396,'es-mx'), (25069,'Sundanese','default',396,'su'), (25070,'Swahili','default',396,'sw'), (25071,'Swedish','default',396,'sv'), (25072,'Swiss German','default',396,'gsw'), (25073,'Swiss German (Formal)','formal',396,'gsw'), (25074,'Tagalog','default',396,'tl'), (25075,'Tajik','default',396,'tg'), (25076,'Tamazight (Central Atlas)','default',396,'tzm'), (25077,'Tamil','default',396,'ta'), (25078,'Tamil (Sri Lanka)','default',396,'ta-lk'), (25079,'Tatar','default',396,'tt'), (25080,'Telugu','default',396,'te'), (25081,'Thai','default',396,'th'), (25082,'Tibetan','default',396,'bo'), (25083,'Turkish','default',396,'tr'), (25084,'Turkmen','default',396,'tuk'), (25085,'Uighur','default',396,'ug'), (25086,'Ukrainian','default',396,'uk'), (25087,'Urdu','default',396,'ur'), (25088,'Uzbek','default',396,'uz'), (25089,'Venezuelan Spanish','default',396,'es-ve'), (25090,'Vietnamese','default',396,'vi'), (25091,'Welsh','default',396,'cy'), (25093,'Afrikaans','default',397,'af'), (25094,'Albanian','default',397,'sq'), (25095,'Amharic','default',397,'am'), (25096,'Arabic','default',397,'ar'), (25097,'Aragonese','default',397,'an'), (25098,'Armenian','default',397,'hy'), (25099,'Assamese','default',397,'as'), (25100,'Azerbaijani','default',397,'az'), (25101,'Azerbaijani (Turkey)','default',397,'az-tr'), (25102,'Basque','default',397,'eu'), (25104,'Belarusian','default',397,'bel'), (25105,'Bengali','default',397,'bn'), (25106,'Bosnian','default',397,'bs'), (25107,'Brazilian Portuguese','default',397,'pt-br'), (25108,'Breton','default',397,'br'), (25109,'Bulgarian','default',397,'bg'), (25110,'Burmese','default',397,'mya'), (25111,'Catalan','default',397,'ca'), (25112,'Catalan (Balear)','default',397,'bal'), (25113,'Chilean Spanish','default',397,'es-cl'), (25114,'Chinese (China)','default',397,'zh-cn'), (25115,'Chinese (Taiwan)','default',397,'zh-tw'), (25116,'Corsican','default',397,'co'), (25117,'Croatian','default',397,'hr'), (25118,'Czech','default',397,'cs'), (25119,'Danish','default',397,'da'), (25120,'Divehi','default',397,'dv'), (25121,'Dutch','default',397,'nl'), (25122,'Dzongkha','default',397,'dzo'), (25123,'English (Australia)','default',397,'en-au'), (25124,'English (Canada)','default',397,'en-ca'), (25125,'English (UK)','default',397,'en-gb'), (25126,'Esperanto','default',397,'eo'), (25127,'Estonian','default',397,'et'), (25128,'Faroese','default',397,'fo'), (25129,'Finnish','default',397,'fi'), (25130,'French','default',397,'fr'), (25131,'Frisian','default',397,'fy'), (25132,'Fulah','default',397,'fuc'), (25133,'Galician','default',397,'gl'), (25134,'Georgian','default',397,'ka'), (25135,'German','default',397,'de'), (25136,'German (Formal)','formal',397,'de'), (25137,'German (Switzerland)','default',397,'de-ch'), (25139,'Greek','default',397,'el'), (25140,'Gujarati','default',397,'gu'), (25141,'Hawaiian','default',397,'haw'), (25142,'Hazaragi','default',397,'haz'), (25143,'Hebrew','default',397,'he'), (25144,'Hindi','default',397,'hi'), (25145,'Hungarian','default',397,'hu'), (25146,'Icelandic','default',397,'is'), (25147,'Ido','default',397,'ido'), (25148,'Indonesian','default',397,'id'), (25149,'Irish','default',397,'ga'), (25150,'Italian','default',397,'it'), (25151,'Japanese','default',397,'ja'), (25152,'Javanese','default',397,'jv'), (25153,'Kannada','default',397,'kn'), (25154,'Kazakh','default',397,'kk'), (25155,'Khmer','default',397,'km'), (25156,'Kirghiz','default',397,'ky'), (25157,'Korean','default',397,'ko'), (25158,'Kurdish','default',397,'ckb'), (25159,'Kurdish (Kurmanji)','default',397,'ku'), (25160,'Lao','default',397,'lo'), (25161,'Latin','default',397,'la'), (25162,'Latvian','default',397,'lv'), (25163,'Limburgish','default',397,'li'), (25164,'Lithuanian','default',397,'lt'), (25165,'Luxembourgish','default',397,'lb'), (25166,'Macedonian','default',397,'mk'), (25167,'Malagasy','default',397,'mg'), (25168,'Malay','default',397,'ms'), (25169,'Malayalam','default',397,'ml'), (25171,'Marathi','default',397,'mr'), (25172,'Mongolian','default',397,'mn'), (25173,'Montenegrin','default',397,'me'), (25174,'Nepali','default',397,'ne'), (25175,'Norwegian (BokmÃ¥l)','default',397,'nb'), (25176,'Norwegian (Nynorsk)','default',397,'nn'), (25177,'Ossetic','default',397,'os'), (25178,'Pashto','default',397,'ps'), (25179,'Persian','default',397,'fa'), (25180,'Persian (Afghanistan)','default',397,'fa-af'), (25181,'Peruvian Spanish','default',397,'es-pe'), (25182,'Polish','default',397,'pl'), (25183,'Portuguese','default',397,'pt'), (25184,'Portuguese Informal','informal',397,'pt'), (25185,'Punjabi','default',397,'pa'), (25186,'Rohingya','default',397,'rhg'), (25187,'Romanian','default',397,'ro'), (25188,'Russian','default',397,'ru'), (25189,'Sakha','default',397,'sah'), (25190,'Sanskrit','default',397,'sa-in'), (25191,'Sardinian','default',397,'srd'), (25192,'Scottish Gaelic','default',397,'gd'), (25193,'Serbian','default',397,'sr'), (25194,'Sinhala','default',397,'si'), (25195,'Slovak','default',397,'sk'), (25196,'Slovenian','default',397,'sl'), (25197,'Somali','default',397,'so'), (25198,'South Azerbaijani','default',397,'azb'), (25199,'Spanish','default',397,'es'), (25200,'Spanish (Argentina)','default',397,'es-ar'), (25201,'Spanish (Mexico)','default',397,'es-mx'), (25202,'Sundanese','default',397,'su'), (25203,'Swahili','default',397,'sw'), (25204,'Swedish','default',397,'sv'), (25205,'Swiss German','default',397,'gsw'), (25206,'Swiss German (Formal)','formal',397,'gsw'), (25207,'Tagalog','default',397,'tl'), (25208,'Tajik','default',397,'tg'), (25209,'Tamazight (Central Atlas)','default',397,'tzm'), (25210,'Tamil','default',397,'ta'), (25211,'Tamil (Sri Lanka)','default',397,'ta-lk'), (25212,'Tatar','default',397,'tt'), (25213,'Telugu','default',397,'te'), (25214,'Thai','default',397,'th'), (25215,'Tibetan','default',397,'bo'), (25216,'Turkish','default',397,'tr'), (25217,'Turkmen','default',397,'tuk'), (25218,'Uighur','default',397,'ug'), (25219,'Ukrainian','default',397,'uk'), (25220,'Urdu','default',397,'ur'), (25221,'Uzbek','default',397,'uz'), (25222,'Venezuelan Spanish','default',397,'es-ve'), (25223,'Vietnamese','default',397,'vi'), (25224,'Welsh','default',397,'cy'), (25226,'Afrikaans','default',398,'af'), (25227,'Albanian','default',398,'sq'), (25228,'Amharic','default',398,'am'), (25229,'Arabic','default',398,'ar'), (25230,'Aragonese','default',398,'an'), (25231,'Armenian','default',398,'hy'), (25232,'Assamese','default',398,'as'), (25233,'Azerbaijani','default',398,'az'), (25234,'Azerbaijani (Turkey)','default',398,'az-tr'), (25235,'Basque','default',398,'eu'), (25236,'Belarusian','default',398,'bel'), (25238,'Bengali','default',398,'bn'), (25239,'Bosnian','default',398,'bs'), (25240,'Brazilian Portuguese','default',398,'pt-br'), (25241,'Breton','default',398,'br'), (25242,'Bulgarian','default',398,'bg'), (25243,'Burmese','default',398,'mya'), (25244,'Catalan','default',398,'ca'), (25245,'Chilean Spanish','default',398,'es-cl'), (25246,'Chinese (China)','default',398,'zh-cn'), (25247,'Chinese (Taiwan)','default',398,'zh-tw'), (25248,'Corsican','default',398,'co'), (25249,'Croatian','default',398,'hr'), (25250,'Czech','default',398,'cs'), (25251,'Danish','default',398,'da'), (25252,'Divehi','default',398,'dv'), (25253,'Dutch','default',398,'nl'), (25254,'Dzongkha','default',398,'dzo'), (25255,'English (Australia)','default',398,'en-au'), (25256,'English (Canada)','default',398,'en-ca'), (25257,'Esperanto','default',398,'eo'), (25258,'Estonian','default',398,'et'), (25259,'Faroese','default',398,'fo'), (25260,'Finnish','default',398,'fi'), (25261,'French','default',398,'fr'), (25262,'Frisian','default',398,'fy'), (25263,'Fulah','default',398,'fuc'), (25264,'Galician','default',398,'gl'), (25265,'Georgian','default',398,'ka'), (25266,'German','default',398,'de'), (25267,'German (Formal)','formal',398,'de'), (25268,'German (Switzerland)','default',398,'de-ch'), (25270,'Greek','default',398,'el'), (25271,'Gujarati','default',398,'gu'), (25272,'Hazaragi','default',398,'haz'), (25273,'Hebrew','default',398,'he'), (25274,'Hindi','default',398,'hi'), (25275,'Hungarian','default',398,'hu'), (25276,'Icelandic','default',398,'is'), (25277,'Ido','default',398,'ido'), (25278,'Indonesian','default',398,'id'), (25279,'Irish','default',398,'ga'), (25280,'Italian','default',398,'it'), (25281,'Japanese','default',398,'ja'), (25282,'Javanese','default',398,'jv'), (25283,'Kannada','default',398,'kn'), (25284,'Kazakh','default',398,'kk'), (25285,'Khmer','default',398,'km'), (25286,'Kirghiz','default',398,'ky'), (25287,'Korean','default',398,'ko'), (25288,'Kurdish','default',398,'ckb'), (25289,'Lao','default',398,'lo'), (25290,'Latin','default',398,'la'), (25291,'Latvian','default',398,'lv'), (25292,'Limburgish','default',398,'li'), (25293,'Lithuanian','default',398,'lt'), (25294,'Macedonian','default',398,'mk'), (25295,'Malay','default',398,'ms'), (25296,'Malayalam','default',398,'ml'), (25298,'Marathi','default',398,'mr'), (25299,'Mongolian','default',398,'mn'), (25300,'Montenegrin','default',398,'me'), (25301,'Nepali','default',398,'ne'), (25302,'Norwegian (BokmÃ¥l)','default',398,'nb'), (25303,'Norwegian (Nynorsk)','default',398,'nn'), (25304,'Ossetic','default',398,'os'), (25305,'Pashto','default',398,'ps'), (25306,'Persian','default',398,'fa'), (25307,'Persian (Afghanistan)','default',398,'fa-af'), (25308,'Peruvian Spanish','default',398,'es-pe'), (25309,'Polish','default',398,'pl'), (25310,'Portuguese','default',398,'pt'), (25311,'Portuguese (Informal)','informal',398,'pt'), (25312,'Punjabi','default',398,'pa'), (25313,'Rohingya','default',398,'rhg'), (25314,'Romanian','default',398,'ro'), (25315,'Russian','default',398,'ru'), (25316,'Sakha','default',398,'sah'), (25317,'Sanskrit','default',398,'sa-in'), (25318,'Sardinian','default',398,'srd'), (25319,'Scottish Gaelic','default',398,'gd'), (25320,'Serbian','default',398,'sr'), (25321,'Sinhala','default',398,'si'), (25322,'Slovak','default',398,'sk'), (25323,'Slovenian','default',398,'sl'), (25324,'Somali','default',398,'so'), (25325,'South Azerbaijani','default',398,'azb'), (25326,'Spanish','default',398,'es'), (25327,'Spanish (Argentina)','default',398,'es-ar'), (25328,'Spanish (Mexico)','default',398,'es-mx'), (25329,'Sundanese','default',398,'su'), (25330,'Swahili','default',398,'sw'), (25331,'Swedish','default',398,'sv'), (25332,'Swiss German','default',398,'gsw'), (25333,'Swiss German (Formal)','formal',398,'gsw'), (25334,'Tagalog','default',398,'tl'), (25335,'Tajik','default',398,'tg'), (25336,'Tamazight (Central Atlas)','default',398,'tzm'), (25337,'Tamil (Sri Lanka)','default',398,'ta-lk'), (25338,'Tatar','default',398,'tt'), (25339,'Telugu','default',398,'te'), (25340,'Thai','default',398,'th'), (25341,'Tibetan','default',398,'bo'), (25342,'Turkish','default',398,'tr'), (25343,'Turkmen','default',398,'tuk'), (25344,'Uighur','default',398,'ug'), (25345,'Ukrainian','default',398,'uk'), (25346,'Uzbek','default',398,'uz'), (25347,'Venezuelan Spanish','default',398,'es-ve'), (25348,'Vietnamese','default',398,'vi'), (25349,'Welsh','default',398,'cy'), (25351,'Afrikaans','default',399,'af'), (25352,'Albanian','default',399,'sq'), (25353,'Amharic','default',399,'am'), (25354,'Arabic','default',399,'ar'), (25355,'Aragonese','default',399,'an'), (25356,'Armenian','default',399,'hy'), (25357,'Assamese','default',399,'as'), (25358,'Azerbaijani','default',399,'az'), (25359,'Azerbaijani (Turkey)','default',399,'az-tr'), (25360,'Basque','default',399,'eu'), (25361,'Belarusian','default',399,'bel'), (25363,'Bengali','default',399,'bn'), (25364,'Bosnian','default',399,'bs'), (25365,'Brazilian Portuguese','default',399,'pt-br'), (25366,'Breton','default',399,'br'), (25367,'Bulgarian','default',399,'bg'), (25368,'Burmese','default',399,'mya'), (25369,'Catalan','default',399,'ca'), (25370,'Chilean Spanish','default',399,'es-cl'), (25371,'Chinese (China)','default',399,'zh-cn'), (25372,'Chinese (Taiwan)','default',399,'zh-tw'), (25373,'Corsican','default',399,'co'), (25374,'Croatian','default',399,'hr'), (25375,'Czech','default',399,'cs'), (25376,'Danish','default',399,'da'), (25377,'Divehi','default',399,'dv'), (25378,'Dutch','default',399,'nl'), (25379,'Dzongkha','default',399,'dzo'), (25380,'English (Australia)','default',399,'en-au'), (25381,'English (Canada)','default',399,'en-ca'), (25382,'Esperanto','default',399,'eo'), (25383,'Estonian','default',399,'et'), (25384,'Faroese','default',399,'fo'), (25385,'Finnish','default',399,'fi'), (25386,'French','default',399,'fr'), (25387,'Frisian','default',399,'fy'), (25388,'Fulah','default',399,'fuc'), (25389,'Galician','default',399,'gl'), (25390,'Georgian','default',399,'ka'), (25391,'German','default',399,'de'), (25392,'German (Formal)','formal',399,'de'), (25393,'German (Switzerland)','default',399,'de-ch'), (25395,'Greek','default',399,'el'), (25396,'Gujarati','default',399,'gu'), (25397,'Hazaragi','default',399,'haz'), (25398,'Hebrew','default',399,'he'), (25399,'Hindi','default',399,'hi'), (25400,'Hungarian','default',399,'hu'), (25401,'Icelandic','default',399,'is'), (25402,'Ido','default',399,'ido'), (25403,'Indonesian','default',399,'id'), (25404,'Irish','default',399,'ga'), (25405,'Italian','default',399,'it'), (25406,'Japanese','default',399,'ja'), (25407,'Javanese','default',399,'jv'), (25408,'Kannada','default',399,'kn'), (25409,'Kazakh','default',399,'kk'), (25410,'Khmer','default',399,'km'), (25411,'Kirghiz','default',399,'ky'), (25412,'Korean','default',399,'ko'), (25413,'Kurdish','default',399,'ckb'), (25414,'Lao','default',399,'lo'), (25415,'Latin','default',399,'la'), (25416,'Latvian','default',399,'lv'), (25417,'Limburgish','default',399,'li'), (25418,'Lithuanian','default',399,'lt'), (25419,'Macedonian','default',399,'mk'), (25420,'Malay','default',399,'ms'), (25421,'Malayalam','default',399,'ml'), (25423,'Marathi','default',399,'mr'), (25424,'Mongolian','default',399,'mn'), (25425,'Montenegrin','default',399,'me'), (25426,'Nepali','default',399,'ne'), (25427,'Norwegian (BokmÃ¥l)','default',399,'nb'), (25428,'Norwegian (Nynorsk)','default',399,'nn'), (25429,'Ossetic','default',399,'os'), (25430,'Pashto','default',399,'ps'), (25431,'Persian','default',399,'fa'), (25432,'Persian (Afghanistan)','default',399,'fa-af'), (25433,'Peruvian Spanish','default',399,'es-pe'), (25434,'Polish','default',399,'pl'), (25435,'Portuguese','default',399,'pt'), (25436,'Portuguese (Informal)','informal',399,'pt'), (25437,'Punjabi','default',399,'pa'), (25438,'Rohingya','default',399,'rhg'), (25439,'Romanian','default',399,'ro'), (25440,'Russian','default',399,'ru'), (25441,'Sakha','default',399,'sah'), (25442,'Sanskrit','default',399,'sa-in'), (25443,'Sardinian','default',399,'srd'), (25444,'Scottish Gaelic','default',399,'gd'), (25445,'Serbian','default',399,'sr'), (25446,'Sinhala','default',399,'si'), (25447,'Slovak','default',399,'sk'), (25448,'Slovenian','default',399,'sl'), (25449,'Somali','default',399,'so'), (25450,'South Azerbaijani','default',399,'azb'), (25451,'Spanish','default',399,'es'), (25452,'Spanish (Argentina)','default',399,'es-ar'), (25453,'Spanish (Mexico)','default',399,'es-mx'), (25454,'Sundanese','default',399,'su'), (25455,'Swahili','default',399,'sw'), (25456,'Swedish','default',399,'sv'), (25457,'Swiss German','default',399,'gsw'), (25458,'Swiss German (Formal)','formal',399,'gsw'), (25459,'Tagalog','default',399,'tl'), (25460,'Tajik','default',399,'tg'), (25461,'Tamazight (Central Atlas)','default',399,'tzm'), (25462,'Tamil (Sri Lanka)','default',399,'ta-lk'), (25463,'Tatar','default',399,'tt'), (25464,'Telugu','default',399,'te'), (25465,'Thai','default',399,'th'), (25466,'Tibetan','default',399,'bo'), (25467,'Turkish','default',399,'tr'), (25468,'Turkmen','default',399,'tuk'), (25469,'Uighur','default',399,'ug'), (25470,'Ukrainian','default',399,'uk'), (25471,'Uzbek','default',399,'uz'), (25472,'Venezuelan Spanish','default',399,'es-ve'), (25473,'Vietnamese','default',399,'vi'), (25474,'Welsh','default',399,'cy'), (25476,'Afrikaans','default',400,'af'), (25477,'Albanian','default',400,'sq'), (25478,'Amharic','default',400,'am'), (25479,'Arabic','default',400,'ar'), (25480,'Aragonese','default',400,'an'), (25481,'Armenian','default',400,'hy'), (25482,'Assamese','default',400,'as'), (25483,'Azerbaijani','default',400,'az'), (25484,'Azerbaijani (Turkey)','default',400,'az-tr'), (25485,'Basque','default',400,'eu'), (25486,'Belarusian','default',400,'bel'), (25488,'Bengali','default',400,'bn'), (25489,'Bosnian','default',400,'bs'), (25490,'Brazilian Portuguese','default',400,'pt-br'), (25491,'Breton','default',400,'br'), (25492,'Bulgarian','default',400,'bg'), (25493,'Burmese','default',400,'mya'), (25494,'Catalan','default',400,'ca'), (25495,'Chilean Spanish','default',400,'es-cl'), (25496,'Chinese (China)','default',400,'zh-cn'), (25497,'Chinese (Taiwan)','default',400,'zh-tw'), (25498,'Corsican','default',400,'co'), (25499,'Croatian','default',400,'hr'), (25500,'Czech','default',400,'cs'), (25501,'Danish','default',400,'da'), (25502,'Divehi','default',400,'dv'), (25503,'Dutch','default',400,'nl'), (25504,'Dzongkha','default',400,'dzo'), (25505,'English (Australia)','default',400,'en-au'), (25506,'English (Canada)','default',400,'en-ca'), (25507,'English (UK)','default',400,'en-gb'), (25508,'Esperanto','default',400,'eo'), (25509,'Estonian','default',400,'et'), (25510,'Faroese','default',400,'fo'), (25511,'Finnish','default',400,'fi'), (25512,'French','default',400,'fr'), (25513,'Frisian','default',400,'fy'), (25514,'Fulah','default',400,'fuc'), (25515,'Galician','default',400,'gl'), (25516,'Georgian','default',400,'ka'), (25517,'German','default',400,'de'), (25518,'German (Formal)','formal',400,'de'), (25519,'German (Switzerland)','default',400,'de-ch'), (25521,'Greek','default',400,'el'), (25522,'Gujarati','default',400,'gu'), (25523,'Hazaragi','default',400,'haz'), (25524,'Hebrew','default',400,'he'), (25525,'Hindi','default',400,'hi'), (25526,'Hungarian','default',400,'hu'), (25527,'Icelandic','default',400,'is'), (25528,'Ido','default',400,'ido'), (25529,'Indonesian','default',400,'id'), (25530,'Irish','default',400,'ga'), (25531,'Italian','default',400,'it'), (25532,'Japanese','default',400,'ja'), (25533,'Javanese','default',400,'jv'), (25534,'Kannada','default',400,'kn'), (25535,'Kazakh','default',400,'kk'), (25536,'Khmer','default',400,'km'), (25537,'Kirghiz','default',400,'ky'), (25538,'Korean','default',400,'ko'), (25539,'Kurdish','default',400,'ckb'), (25540,'Lao','default',400,'lo'), (25541,'Latin','default',400,'la'), (25542,'Latvian','default',400,'lv'), (25543,'Limburgish','default',400,'li'), (25544,'Lithuanian','default',400,'lt'), (25545,'Macedonian','default',400,'mk'), (25546,'Malay','default',400,'ms'), (25547,'Malayalam','default',400,'ml'), (25549,'Marathi','default',400,'mr'), (25550,'Mongolian','default',400,'mn'), (25551,'Montenegrin','default',400,'me'), (25552,'Nepali','default',400,'ne'), (25553,'Norwegian (BokmÃ¥l)','default',400,'nb'), (25554,'Norwegian (Nynorsk)','default',400,'nn'), (25555,'Ossetic','default',400,'os'), (25556,'Pashto','default',400,'ps'), (25557,'Persian','default',400,'fa'), (25558,'Persian (Afghanistan)','default',400,'fa-af'), (25559,'Peruvian Spanish','default',400,'es-pe'), (25560,'Polish','default',400,'pl'), (25561,'Portuguese','default',400,'pt'), (25562,'Portuguese Informal','informal',400,'pt'), (25563,'Punjabi','default',400,'pa'), (25564,'Rohingya','default',400,'rhg'), (25565,'Romanian','default',400,'ro'), (25566,'Russian','default',400,'ru'), (25567,'Sakha','default',400,'sah'), (25568,'Sanskrit','default',400,'sa-in'), (25569,'Sardinian','default',400,'srd'), (25570,'Scottish Gaelic','default',400,'gd'), (25571,'Serbian','default',400,'sr'), (25572,'Sinhala','default',400,'si'), (25573,'Slovak','default',400,'sk'), (25574,'Slovenian','default',400,'sl'), (25575,'Somali','default',400,'so'), (25576,'South Azerbaijani','default',400,'azb'), (25577,'Spanish','default',400,'es'), (25578,'Spanish (Argentina)','default',400,'es-ar'), (25579,'Spanish (Mexico)','default',400,'es-mx'), (25580,'Sundanese','default',400,'su'), (25581,'Swahili','default',400,'sw'), (25582,'Swedish','default',400,'sv'), (25583,'Swiss German','default',400,'gsw'), (25584,'Swiss German (Formal)','formal',400,'gsw'), (25585,'Tagalog','default',400,'tl'), (25586,'Tajik','default',400,'tg'), (25587,'Tamazight (Central Atlas)','default',400,'tzm'), (25588,'Tamil (Sri Lanka)','default',400,'ta-lk'), (25589,'Tatar','default',400,'tt'), (25590,'Telugu','default',400,'te'), (25591,'Thai','default',400,'th'), (25592,'Tibetan','default',400,'bo'), (25593,'Turkish','default',400,'tr'), (25594,'Turkmen','default',400,'tuk'), (25595,'Uighur','default',400,'ug'), (25596,'Ukrainian','default',400,'uk'), (25597,'Uzbek','default',400,'uz'), (25598,'Venezuelan Spanish','default',400,'es-ve'), (25599,'Vietnamese','default',400,'vi'), (25600,'Welsh','default',400,'cy'), (25602,'Afrikaans','default',401,'af'), (25603,'Albanian','default',401,'sq'), (25604,'Amharic','default',401,'am'), (25605,'Arabic','default',401,'ar'), (25606,'Aragonese','default',401,'an'), (25607,'Armenian','default',401,'hy'), (25608,'Assamese','default',401,'as'), (25609,'Azerbaijani','default',401,'az'), (25610,'Azerbaijani (Turkey)','default',401,'az-tr'), (25611,'Basque','default',401,'eu'), (25612,'Belarusian','default',401,'bel'), (25614,'Bengali','default',401,'bn'), (25615,'Bosnian','default',401,'bs'), (25616,'Brazilian Portuguese','default',401,'pt-br'), (25617,'Breton','default',401,'br'), (25618,'Bulgarian','default',401,'bg'), (25619,'Burmese','default',401,'mya'), (25620,'Catalan','default',401,'ca'), (25621,'Chilean Spanish','default',401,'es-cl'), (25622,'Chinese (China)','default',401,'zh-cn'), (25623,'Chinese (Taiwan)','default',401,'zh-tw'), (25624,'Corsican','default',401,'co'), (25625,'Croatian','default',401,'hr'), (25626,'Czech','default',401,'cs'), (25627,'Danish','default',401,'da'), (25628,'Divehi','default',401,'dv'), (25629,'Dutch','default',401,'nl'), (25630,'Dzongkha','default',401,'dzo'), (25631,'English (Australia)','default',401,'en-au'), (25632,'English (Canada)','default',401,'en-ca'), (25633,'English (UK)','default',401,'en-gb'), (25634,'Esperanto','default',401,'eo'), (25635,'Estonian','default',401,'et'), (25636,'Faroese','default',401,'fo'), (25637,'Finnish','default',401,'fi'), (25638,'French','default',401,'fr'), (25639,'Frisian','default',401,'fy'), (25640,'Fulah','default',401,'fuc'), (25641,'Galician','default',401,'gl'), (25642,'Georgian','default',401,'ka'), (25643,'German','default',401,'de'), (25644,'German (Formal)','formal',401,'de'), (25645,'German (Switzerland)','default',401,'de-ch'), (25647,'Greek','default',401,'el'), (25648,'Gujarati','default',401,'gu'), (25649,'Hazaragi','default',401,'haz'), (25650,'Hebrew','default',401,'he'), (25651,'Hindi','default',401,'hi'), (25652,'Hungarian','default',401,'hu'), (25653,'Icelandic','default',401,'is'), (25654,'Ido','default',401,'ido'), (25655,'Indonesian','default',401,'id'), (25656,'Irish','default',401,'ga'), (25657,'Italian','default',401,'it'), (25658,'Japanese','default',401,'ja'), (25659,'Javanese','default',401,'jv'), (25660,'Kannada','default',401,'kn'), (25661,'Kazakh','default',401,'kk'), (25662,'Khmer','default',401,'km'), (25663,'Kirghiz','default',401,'ky'), (25664,'Korean','default',401,'ko'), (25665,'Kurdish','default',401,'ckb'), (25666,'Lao','default',401,'lo'), (25667,'Latin','default',401,'la'), (25668,'Latvian','default',401,'lv'), (25669,'Limburgish','default',401,'li'), (25670,'Lithuanian','default',401,'lt'), (25671,'Macedonian','default',401,'mk'), (25672,'Malay','default',401,'ms'), (25673,'Malayalam','default',401,'ml'), (25675,'Marathi','default',401,'mr'), (25676,'Mongolian','default',401,'mn'), (25677,'Montenegrin','default',401,'me'), (25678,'Nepali','default',401,'ne'), (25679,'Norwegian (BokmÃ¥l)','default',401,'nb'), (25680,'Norwegian (Nynorsk)','default',401,'nn'), (25681,'Ossetic','default',401,'os'), (25682,'Pashto','default',401,'ps'), (25683,'Persian','default',401,'fa'), (25684,'Persian (Afghanistan)','default',401,'fa-af'), (25685,'Peruvian Spanish','default',401,'es-pe'), (25686,'Polish','default',401,'pl'), (25687,'Portuguese','default',401,'pt'), (25688,'Portuguese (Informal)','informal',401,'pt'), (25689,'Punjabi','default',401,'pa'), (25690,'Rohingya','default',401,'rhg'), (25691,'Romanian','default',401,'ro'), (25692,'Russian','default',401,'ru'), (25693,'Sakha','default',401,'sah'), (25694,'Sanskrit','default',401,'sa-in'), (25695,'Sardinian','default',401,'srd'), (25696,'Scottish Gaelic','default',401,'gd'), (25697,'Serbian','default',401,'sr'), (25698,'Sinhala','default',401,'si'), (25699,'Slovak','default',401,'sk'), (25700,'Slovenian','default',401,'sl'), (25701,'Somali','default',401,'so'), (25702,'South Azerbaijani','default',401,'azb'), (25703,'Spanish','default',401,'es'), (25704,'Spanish (Argentina)','default',401,'es-ar'), (25705,'Spanish (Mexico)','default',401,'es-mx'), (25706,'Sundanese','default',401,'su'), (25707,'Swahili','default',401,'sw'), (25708,'Swedish','default',401,'sv'), (25709,'Swiss German','default',401,'gsw'), (25710,'Swiss German (Formal)','formal',401,'gsw'), (25711,'Tagalog','default',401,'tl'), (25712,'Tajik','default',401,'tg'), (25713,'Tamazight (Central Atlas)','default',401,'tzm'), (25714,'Tamil (Sri Lanka)','default',401,'ta-lk'), (25715,'Tatar','default',401,'tt'), (25716,'Telugu','default',401,'te'), (25717,'Thai','default',401,'th'), (25718,'Tibetan','default',401,'bo'), (25719,'Turkish','default',401,'tr'), (25720,'Turkmen','default',401,'tuk'), (25721,'Uighur','default',401,'ug'), (25722,'Ukrainian','default',401,'uk'), (25723,'Uzbek','default',401,'uz'), (25724,'Venezuelan Spanish','default',401,'es-ve'), (25725,'Vietnamese','default',401,'vi'), (25726,'Welsh','default',401,'cy'), (25728,'Afrikaans','default',402,'af'), (25729,'Albanian','default',402,'sq'), (25730,'Amharic','default',402,'am'), (25731,'Arabic','default',402,'ar'), (25732,'Aragonese','default',402,'an'), (25733,'Armenian','default',402,'hy'), (25734,'Assamese','default',402,'as'), (25735,'Azerbaijani','default',402,'az'), (25736,'Azerbaijani (Turkey)','default',402,'az-tr'), (25737,'Basque','default',402,'eu'), (25739,'Belarusian','default',402,'bel'), (25740,'Bengali','default',402,'bn'), (25741,'Bosnian','default',402,'bs'), (25742,'Brazilian Portuguese','default',402,'pt-br'), (25743,'Breton','default',402,'br'), (25744,'Bulgarian','default',402,'bg'), (25745,'Burmese','default',402,'mya'), (25746,'Catalan','default',402,'ca'), (25747,'Catalan (Balear)','default',402,'bal'), (25748,'Chilean Spanish','default',402,'es-cl'), (25749,'Chinese (China)','default',402,'zh-cn'), (25750,'Chinese (Taiwan)','default',402,'zh-tw'), (25751,'Corsican','default',402,'co'), (25752,'Croatian','default',402,'hr'), (25753,'Czech','default',402,'cs'), (25754,'Danish','default',402,'da'), (25755,'Divehi','default',402,'dv'), (25756,'Dutch','default',402,'nl'), (25757,'Dzongkha','default',402,'dzo'), (25758,'English (Australia)','default',402,'en-au'), (25759,'English (Canada)','default',402,'en-ca'), (25760,'English (UK)','default',402,'en-gb'), (25761,'Esperanto','default',402,'eo'), (25762,'Estonian','default',402,'et'), (25763,'Faroese','default',402,'fo'), (25764,'Finnish','default',402,'fi'), (25765,'French','default',402,'fr'), (25766,'Frisian','default',402,'fy'), (25767,'Fulah','default',402,'fuc'), (25768,'Galician','default',402,'gl'), (25769,'Georgian','default',402,'ka'), (25770,'German','default',402,'de'), (25771,'German (Formal)','formal',402,'de'), (25772,'German (Switzerland)','default',402,'de-ch'), (25774,'Greek','default',402,'el'), (25775,'Gujarati','default',402,'gu'), (25776,'Hawaiian','default',402,'haw'), (25777,'Hazaragi','default',402,'haz'), (25778,'Hebrew','default',402,'he'), (25779,'Hindi','default',402,'hi'), (25780,'Hungarian','default',402,'hu'), (25781,'Icelandic','default',402,'is'), (25782,'Ido','default',402,'ido'), (25783,'Indonesian','default',402,'id'), (25784,'Irish','default',402,'ga'), (25785,'Italian','default',402,'it'), (25786,'Japanese','default',402,'ja'), (25787,'Javanese','default',402,'jv'), (25788,'Kannada','default',402,'kn'), (25789,'Kazakh','default',402,'kk'), (25790,'Khmer','default',402,'km'), (25791,'Kirghiz','default',402,'ky'), (25792,'Korean','default',402,'ko'), (25793,'Kurdish','default',402,'ckb'), (25794,'Kurdish (Kurmanji)','default',402,'ku'), (25795,'Lao','default',402,'lo'), (25796,'Latin','default',402,'la'), (25797,'Latvian','default',402,'lv'), (25798,'Limburgish','default',402,'li'), (25799,'Lithuanian','default',402,'lt'), (25800,'Luxembourgish','default',402,'lb'), (25801,'Macedonian','default',402,'mk'), (25802,'Malagasy','default',402,'mg'), (25803,'Malay','default',402,'ms'), (25804,'Malayalam','default',402,'ml'), (25806,'Marathi','default',402,'mr'), (25807,'Mongolian','default',402,'mn'), (25808,'Montenegrin','default',402,'me'), (25809,'Nepali','default',402,'ne'), (25810,'Norwegian (BokmÃ¥l)','default',402,'nb'), (25811,'Norwegian (Nynorsk)','default',402,'nn'), (25812,'Ossetic','default',402,'os'), (25813,'Pashto','default',402,'ps'), (25814,'Persian','default',402,'fa'), (25815,'Persian (Afghanistan)','default',402,'fa-af'), (25816,'Peruvian Spanish','default',402,'es-pe'), (25817,'Polish','default',402,'pl'), (25818,'Portuguese','default',402,'pt'), (25819,'Portuguese Informal','informal',402,'pt'), (25820,'Punjabi','default',402,'pa'), (25821,'Rohingya','default',402,'rhg'), (25822,'Romanian','default',402,'ro'), (25823,'Russian','default',402,'ru'), (25824,'Sakha','default',402,'sah'), (25825,'Sanskrit','default',402,'sa-in'), (25826,'Sardinian','default',402,'srd'), (25827,'Scottish Gaelic','default',402,'gd'), (25828,'Serbian','default',402,'sr'), (25829,'Sinhala','default',402,'si'), (25830,'Slovak','default',402,'sk'), (25831,'Slovenian','default',402,'sl'), (25832,'Somali','default',402,'so'), (25833,'South Azerbaijani','default',402,'azb'), (25834,'Spanish','default',402,'es'), (25835,'Spanish (Argentina)','default',402,'es-ar'), (25836,'Spanish (Mexico)','default',402,'es-mx'), (25837,'Sundanese','default',402,'su'), (25838,'Swahili','default',402,'sw'), (25839,'Swedish','default',402,'sv'), (25840,'Swiss German','default',402,'gsw'), (25841,'Swiss German (Formal)','formal',402,'gsw'), (25842,'Tagalog','default',402,'tl'), (25843,'Tajik','default',402,'tg'), (25844,'Tamazight (Central Atlas)','default',402,'tzm'), (25845,'Tamil','default',402,'ta'), (25846,'Tamil (Sri Lanka)','default',402,'ta-lk'), (25847,'Tatar','default',402,'tt'), (25848,'Telugu','default',402,'te'), (25849,'Thai','default',402,'th'), (25850,'Tibetan','default',402,'bo'), (25851,'Turkish','default',402,'tr'), (25852,'Turkmen','default',402,'tuk'), (25853,'Uighur','default',402,'ug'), (25854,'Ukrainian','default',402,'uk'), (25855,'Urdu','default',402,'ur'), (25856,'Uzbek','default',402,'uz'), (25857,'Venezuelan Spanish','default',402,'es-ve'), (25858,'Vietnamese','default',402,'vi'), (25859,'Welsh','default',402,'cy'), (25861,'Afrikaans','default',421,'af'), (25862,'Albanian','default',421,'sq'), (25863,'Amharic','default',421,'am'), (25864,'Arabic','default',421,'ar'), (25865,'Aragonese','default',421,'an'), (25866,'Armenian','default',421,'hy'), (25867,'Assamese','default',421,'as'), (25868,'Azerbaijani','default',421,'az'), (25869,'Azerbaijani (Turkey)','default',421,'az-tr'), (25870,'Basque','default',421,'eu'), (25872,'Belarusian','default',421,'bel'), (25873,'Bengali','default',421,'bn'), (25874,'Bosnian','default',421,'bs'), (25875,'Brazilian Portuguese','default',421,'pt-br'), (25876,'Breton','default',421,'br'), (25877,'Bulgarian','default',421,'bg'), (25878,'Burmese','default',421,'mya'), (25879,'Catalan','default',421,'ca'), (25880,'Catalan (Balear)','default',421,'bal'), (25881,'Chilean Spanish','default',421,'es-cl'), (25882,'Chinese (China)','default',421,'zh-cn'), (25883,'Chinese (Taiwan)','default',421,'zh-tw'), (25884,'Corsican','default',421,'co'), (25885,'Croatian','default',421,'hr'), (25886,'Czech','default',421,'cs'), (25887,'Danish','default',421,'da'), (25888,'Divehi','default',421,'dv'), (25889,'Dutch','default',421,'nl'), (25890,'Dzongkha','default',421,'dzo'), (25891,'English (Australia)','default',421,'en-au'), (25892,'English (Canada)','default',421,'en-ca'), (25893,'English (UK)','default',421,'en-gb'), (25894,'Esperanto','default',421,'eo'), (25895,'Estonian','default',421,'et'), (25896,'Faroese','default',421,'fo'), (25897,'Finnish','default',421,'fi'), (25898,'French','default',421,'fr'), (25899,'Frisian','default',421,'fy'), (25900,'Fulah','default',421,'fuc'), (25901,'Galician','default',421,'gl'), (25902,'Georgian','default',421,'ka'), (25903,'German','default',421,'de'), (25904,'German (Formal)','formal',421,'de'), (25905,'German (Switzerland) Informal','informal',421,'de-ch'), (25906,'German (Switzerland)','default',421,'de-ch'), (25907,'Greek','default',421,'el'), (25908,'Gujarati','default',421,'gu'), (25909,'Hawaiian','default',421,'haw'), (25910,'Hazaragi','default',421,'haz'), (25911,'Hebrew','default',421,'he'), (25912,'Hindi','default',421,'hi'), (25913,'Hungarian','default',421,'hu'), (25914,'Icelandic','default',421,'is'), (25915,'Ido','default',421,'ido'), (25916,'Indonesian','default',421,'id'), (25917,'Irish','default',421,'ga'), (25918,'Italian','default',421,'it'), (25919,'Japanese','default',421,'ja'), (25920,'Javanese','default',421,'jv'), (25921,'Kannada','default',421,'kn'), (25922,'Kazakh','default',421,'kk'), (25923,'Khmer','default',421,'km'), (25924,'Kirghiz','default',421,'ky'), (25925,'Korean','default',421,'ko'), (25926,'Kurdish','default',421,'ckb'), (25927,'Kurdish (Kurmanji)','default',421,'ku'), (25928,'Lao','default',421,'lo'), (25929,'Latin','default',421,'la'), (25930,'Latvian','default',421,'lv'), (25931,'Limburgish','default',421,'li'), (25932,'Lithuanian','default',421,'lt'), (25933,'Luxembourgish','default',421,'lb'), (25934,'Macedonian','default',421,'mk'), (25935,'Malagasy','default',421,'mg'), (25936,'Malay','default',421,'ms'), (25937,'Malayalam','default',421,'ml'), (25939,'Marathi','default',421,'mr'), (25940,'Mongolian','default',421,'mn'), (25941,'Montenegrin','default',421,'me'), (25942,'Nepali','default',421,'ne'), (25943,'Norwegian (BokmÃ¥l)','default',421,'nb'), (25944,'Norwegian (Nynorsk)','default',421,'nn'), (25945,'Ossetic','default',421,'os'), (25946,'Pashto','default',421,'ps'), (25947,'Persian','default',421,'fa'), (25948,'Persian (Afghanistan)','default',421,'fa-af'), (25949,'Peruvian Spanish','default',421,'es-pe'), (25950,'Polish','default',421,'pl'), (25951,'Portuguese','default',421,'pt'), (25952,'Portuguese Informal','informal',421,'pt'), (25953,'Punjabi','default',421,'pa'), (25954,'Rohingya','default',421,'rhg'), (25955,'Romanian','default',421,'ro'), (25956,'Russian','default',421,'ru'), (25957,'Sakha','default',421,'sah'), (25958,'Sanskrit','default',421,'sa-in'), (25959,'Sardinian','default',421,'srd'), (25960,'Scottish Gaelic','default',421,'gd'), (25961,'Serbian','default',421,'sr'), (25962,'Sinhala','default',421,'si'), (25963,'Slovak','default',421,'sk'), (25964,'Slovenian','default',421,'sl'), (25965,'Somali','default',421,'so'), (25966,'South Azerbaijani','default',421,'azb'), (25967,'Spanish','default',421,'es'), (25968,'Spanish (Argentina)','default',421,'es-ar'), (25969,'Spanish (Mexico)','default',421,'es-mx'), (25970,'Sundanese','default',421,'su'), (25971,'Swahili','default',421,'sw'), (25972,'Swedish','default',421,'sv'), (25973,'Swiss German','default',421,'gsw'), (25974,'Swiss German (Formal)','formal',421,'gsw'), (25975,'Tagalog','default',421,'tl'), (25976,'Tajik','default',421,'tg'), (25977,'Tamazight (Central Atlas)','default',421,'tzm'), (25978,'Tamil','default',421,'ta'), (25979,'Tamil (Sri Lanka)','default',421,'ta-lk'), (25980,'Tatar','default',421,'tt'), (25981,'Telugu','default',421,'te'), (25982,'Thai','default',421,'th'), (25983,'Tibetan','default',421,'bo'), (25984,'Turkish','default',421,'tr'), (25985,'Turkmen','default',421,'tuk'), (25986,'Uighur','default',421,'ug'), (25987,'Ukrainian','default',421,'uk'), (25988,'Urdu','default',421,'ur'), (25989,'Uzbek','default',421,'uz'), (25990,'Venezuelan Spanish','default',421,'es-ve'), (25991,'Vietnamese','default',421,'vi'), (25992,'Welsh','default',421,'cy'), (25994,'Arabic','default',422,'ar'), (25995,'Azerbaijani','default',422,'az'), (25996,'Basque','default',422,'eu'), (25997,'Bengali','default',422,'bn'), (25998,'Bosnian','default',422,'bs'), (25999,'Bulgarian','default',422,'bg'), (26000,'Burmese','default',422,'mya'), (26001,'Catalan','default',422,'ca'), (26002,'Chinese (China)','default',422,'zh-cn'), (26003,'Chinese (Taiwan)','default',422,'zh-tw'), (26004,'Croatian','default',422,'hr'), (26005,'Czech','default',422,'cs'), (26006,'Danish','default',422,'da'), (26007,'Dutch','default',422,'nl'), (26008,'English (Australia)','default',422,'en-au'), (26009,'English (UK)','default',422,'en-gb'), (26010,'Estonian','default',422,'et'), (26011,'Finnish','default',422,'fi'), (26012,'French (France)','default',422,'fr'), (26013,'Frisian','default',422,'fy'), (26014,'Galician','default',422,'gl'), (26015,'Georgian','default',422,'ka'), (26016,'German','default',422,'de'), (26017,'Greek','default',422,'el'), (26019,'Hebrew','default',422,'he'), (26020,'Hindi','default',422,'hi'), (26021,'Hungarian','default',422,'hu'), (26022,'Icelandic','default',422,'is'), (26023,'Indonesian','default',422,'id'), (26024,'Italian','default',422,'it'), (26025,'Japanese','default',422,'ja'), (26026,'Kannada','default',422,'kn'), (26027,'Korean','default',422,'ko'), (26028,'Latvian','default',422,'lv'), (26029,'Limburgish','default',422,'li'), (26030,'Lithuanian','default',422,'lt'), (26031,'Macedonian','default',422,'mk'), (26032,'Norwegian (BokmÃ¥l)','default',422,'nb'), (26033,'Persian','default',422,'fa'), (26034,'Polish','default',422,'pl'), (26035,'Portuguese (Brazil)','default',422,'pt-br'), (26036,'Portuguese (Portugal)','default',422,'pt'), (26037,'Rohingya','default',422,'rhg'), (26038,'Romanian','default',422,'ro'), (26039,'Russian','default',422,'ru'), (26040,'Serbian','default',422,'sr'), (26041,'Slovak','default',422,'sk'), (26042,'Somali','default',422,'so'), (26043,'Spanish (Spain)','default',422,'es'), (26044,'Swahili','default',422,'sw'), (26045,'Swedish','default',422,'sv'), (26046,'Tagalog','default',422,'tl'), (26047,'Thai','default',422,'th'), (26048,'Turkish','default',422,'tr'), (26049,'Ukrainian','default',422,'uk'), (26050,'Vietnamese','default',422,'vi'), (26051,'Welsh','default',422,'cy'), (26052,'French (France)','default',423,'fr'), (26053,'French (France)','default',424,'fr'), (26054,'French (France)','default',425,'fr'), (26129,'Albanian','default',428,'sq'), (26130,'Arabic','default',428,'ar'), (26131,'Azerbaijani','default',428,'az'), (26132,'Basque','default',428,'eu'), (26133,'Bengali','default',428,'bn'), (26134,'Bosnian','default',428,'bs'), (26135,'Brazilian Portuguese','default',428,'pt-br'), (26136,'Bulgarian','default',428,'bg'), (26137,'Burmese','default',428,'mya'), (26138,'Catalan','default',428,'ca'), (26139,'Chilean Spanish','default',428,'es-cl'), (26140,'Chinese (China)','default',428,'zh-cn'), (26141,'Chinese (Taiwan)','default',428,'zh-tw'), (26142,'Croatian','default',428,'hr'), (26143,'Czech','default',428,'cs'), (26144,'Danish','default',428,'da'), (26145,'Dutch','default',428,'nl'), (26146,'English (UK)','default',428,'en-gb'), (26147,'Esperanto','default',428,'eo'), (26148,'Estonian','default',428,'et'), (26149,'Faroese','default',428,'fo'), (26150,'Finnish','default',428,'fi'), (26151,'French','default',428,'fr'), (26152,'Frisian','default',428,'fy'), (26153,'Fulah','default',428,'fuc'), (26154,'Galician','default',428,'gl'), (26155,'Georgian','default',428,'ka'), (26156,'German','default',428,'de'), (26157,'Greek','default',428,'el'), (26158,'Hebrew','default',428,'he'), (26159,'Hindi','default',428,'hi'), (26160,'Hungarian','default',428,'hu'), (26161,'Indonesian','default',428,'id'), (26162,'Italian','default',428,'it'), (26163,'Japanese','default',428,'ja'), (26164,'Javanese','default',428,'jv'), (26165,'Kannada','default',428,'kn'), (26166,'Kirghiz','default',428,'ky'), (26167,'Korean','default',428,'ko'), (26168,'Kurdish','default',428,'ckb'), (26169,'Latvian','default',428,'lv'), (26170,'Lithuanian','default',428,'lt'), (26171,'Macedonian','default',428,'mk'), (26172,'Malay','default',428,'ms'), (26173,'Malayalam','default',428,'ml'), (26174,'Mongolian','default',428,'mn'), (26175,'Nepali','default',428,'ne'), (26176,'Norwegian (BokmÃ¥l)','default',428,'nb'), (26177,'Norwegian (Nynorsk)','default',428,'nn'), (26178,'Persian','default',428,'fa'), (26179,'Peruvian Spanish','default',428,'es-pe'), (26180,'Polish','default',428,'pl'), (26181,'Portuguese','default',428,'pt'), (26182,'Punjabi','default',428,'pa'), (26183,'Romanian','default',428,'ro'), (26184,'Russian','default',428,'ru'), (26185,'Serbian','default',428,'sr'), (26186,'Sinhala','default',428,'si'), (26187,'Slovak','default',428,'sk'), (26188,'Spanish','default',428,'es'), (26189,'Sundanese','default',428,'su'), (26190,'Swahili','default',428,'sw'), (26191,'Swedish','default',428,'sv'), (26192,'Tamil (Sri Lanka)','default',428,'ta-lk'), (26193,'Thai','default',428,'th'), (26194,'Turkish','default',428,'tr'), (26195,'Uighur','default',428,'ug'), (26196,'Ukrainian','default',428,'uk'), (26197,'Uzbek','default',428,'uz'), (26198,'Venezuelan Spanish','default',428,'es-ve'), (26199,'Vietnamese','default',428,'vi'), (26200,'Welsh','default',428,'cy'), (26275,'Albanian','default',430,'sq'), (26276,'Arabic','default',430,'ar'), (26277,'Azerbaijani','default',430,'az'), (26278,'Basque','default',430,'eu'), (26279,'Bengali','default',430,'bn'), (26280,'Bosnian','default',430,'bs'), (26281,'Brazilian Portuguese','default',430,'pt-br'), (26282,'Bulgarian','default',430,'bg'), (26283,'Burmese','default',430,'mya'), (26284,'Catalan','default',430,'ca'), (26285,'Chilean Spanish','default',430,'es-cl'), (26286,'Chinese (China)','default',430,'zh-cn'), (26287,'Chinese (Taiwan)','default',430,'zh-tw'), (26288,'Croatian','default',430,'hr'), (26289,'Czech','default',430,'cs'), (26290,'Danish','default',430,'da'), (26291,'Dutch','default',430,'nl'), (26292,'English (UK)','default',430,'en-gb'), (26293,'Esperanto','default',430,'eo'), (26294,'Estonian','default',430,'et'), (26295,'Faroese','default',430,'fo'), (26296,'Finnish','default',430,'fi'), (26297,'French','default',430,'fr'), (26298,'Frisian','default',430,'fy'), (26299,'Fulah','default',430,'fuc'), (26300,'Galician','default',430,'gl'), (26301,'Georgian','default',430,'ka'), (26302,'German','default',430,'de'), (26303,'Greek','default',430,'el'), (26304,'Hebrew','default',430,'he'), (26305,'Hindi','default',430,'hi'), (26306,'Hungarian','default',430,'hu'), (26307,'Indonesian','default',430,'id'), (26308,'Italian','default',430,'it'), (26309,'Japanese','default',430,'ja'), (26310,'Javanese','default',430,'jv'), (26311,'Kannada','default',430,'kn'), (26312,'Kirghiz','default',430,'ky'), (26313,'Korean','default',430,'ko'), (26314,'Kurdish','default',430,'ckb'), (26315,'Latvian','default',430,'lv'), (26316,'Lithuanian','default',430,'lt'), (26317,'Macedonian','default',430,'mk'), (26318,'Malay','default',430,'ms'), (26319,'Malayalam','default',430,'ml'), (26320,'Mongolian','default',430,'mn'), (26321,'Nepali','default',430,'ne'), (26322,'Norwegian (BokmÃ¥l)','default',430,'nb'), (26323,'Norwegian (Nynorsk)','default',430,'nn'), (26324,'Persian','default',430,'fa'), (26325,'Peruvian Spanish','default',430,'es-pe'), (26326,'Polish','default',430,'pl'), (26327,'Portuguese','default',430,'pt'), (26328,'Punjabi','default',430,'pa'), (26329,'Romanian','default',430,'ro'), (26330,'Russian','default',430,'ru'), (26331,'Serbian','default',430,'sr'), (26332,'Sinhala','default',430,'si'), (26333,'Slovak','default',430,'sk'), (26334,'Spanish','default',430,'es'), (26335,'Sundanese','default',430,'su'), (26336,'Swahili','default',430,'sw'), (26337,'Swedish','default',430,'sv'), (26338,'Tamil (Sri Lanka)','default',430,'ta-lk'), (26339,'Thai','default',430,'th'), (26340,'Turkish','default',430,'tr'), (26341,'Uighur','default',430,'ug'), (26342,'Ukrainian','default',430,'uk'), (26343,'Uzbek','default',430,'uz'), (26344,'Venezuelan Spanish','default',430,'es-ve'), (26345,'Vietnamese','default',430,'vi'), (26346,'Welsh','default',430,'cy'), (26348,'Albanian','default',363,'sq'), (26349,'Arabic','default',363,'ar'), (26350,'Azerbaijani','default',363,'az'), (26351,'Basque','default',363,'eu'), (26352,'Bengali','default',363,'bn'), (26353,'Bosnian','default',363,'bs'), (26354,'Brazilian Portuguese','default',363,'pt-br'), (26355,'Bulgarian','default',363,'bg'), (26356,'Burmese','default',363,'mya'), (26357,'Catalan','default',363,'ca'), (26358,'Chilean Spanish','default',363,'es-cl'), (26359,'Chinese (China)','default',363,'zh-cn'), (26360,'Chinese (Taiwan)','default',363,'zh-tw'), (26361,'Croatian','default',363,'hr'), (26362,'Czech','default',363,'cs'), (26363,'Danish','default',363,'da'), (26364,'Dutch','default',363,'nl'), (26365,'English (UK)','default',363,'en-gb'), (26366,'Esperanto','default',363,'eo'), (26367,'Estonian','default',363,'et'), (26368,'Faroese','default',363,'fo'), (26369,'Finnish','default',363,'fi'), (26370,'Frisian','default',363,'fy'), (26371,'Fulah','default',363,'fuc'), (26372,'Galician','default',363,'gl'), (26373,'Georgian','default',363,'ka'), (26374,'German','default',363,'de'), (26375,'Greek','default',363,'el'), (26376,'Hebrew','default',363,'he'), (26377,'Hindi','default',363,'hi'), (26378,'Hungarian','default',363,'hu'), (26379,'Indonesian','default',363,'id'), (26380,'Italian','default',363,'it'), (26381,'Japanese','default',363,'ja'), (26382,'Javanese','default',363,'jv'), (26383,'Kannada','default',363,'kn'), (26384,'Kirghiz','default',363,'ky'), (26385,'Korean','default',363,'ko'), (26386,'Kurdish','default',363,'ckb'), (26387,'Latvian','default',363,'lv'), (26388,'Lithuanian','default',363,'lt'), (26389,'Macedonian','default',363,'mk'), (26390,'Malay','default',363,'ms'), (26391,'Malayalam','default',363,'ml'), (26392,'Mongolian','default',363,'mn'), (26393,'Nepali','default',363,'ne'), (26394,'Norwegian (BokmÃ¥l)','default',363,'nb'), (26395,'Norwegian (Nynorsk)','default',363,'nn'), (26396,'Persian','default',363,'fa'), (26397,'Peruvian Spanish','default',363,'es-pe'), (26398,'Polish','default',363,'pl'), (26399,'Portuguese','default',363,'pt'), (26400,'Punjabi','default',363,'pa'), (26401,'Romanian','default',363,'ro'), (26402,'Russian','default',363,'ru'), (26403,'Serbian','default',363,'sr'), (26404,'Sinhala','default',363,'si'), (26405,'Slovak','default',363,'sk'), (26406,'Spanish','default',363,'es'), (26407,'Sundanese','default',363,'su'), (26408,'Swahili','default',363,'sw'), (26409,'Swedish','default',363,'sv'), (26410,'Tamil (Sri Lanka)','default',363,'ta-lk'), (26411,'Thai','default',363,'th'), (26412,'Turkish','default',363,'tr'), (26413,'Uighur','default',363,'ug'), (26414,'Ukrainian','default',363,'uk'), (26415,'Uzbek','default',363,'uz'), (26416,'Venezuelan Spanish','default',363,'es-ve'), (26417,'Vietnamese','default',363,'vi'), (26418,'Welsh','default',363,'cy'), (26420,'Albanian','default',423,'sq'), (26421,'Arabic','default',423,'ar'), (26422,'Azerbaijani','default',423,'az'), (26423,'Basque','default',423,'eu'), (26424,'Bengali','default',423,'bn'), (26425,'Bosnian','default',423,'bs'), (26426,'Brazilian Portuguese','default',423,'pt-br'), (26427,'Bulgarian','default',423,'bg'), (26428,'Burmese','default',423,'mya'), (26429,'Catalan','default',423,'ca'), (26430,'Chilean Spanish','default',423,'es-cl'), (26431,'Chinese (China)','default',423,'zh-cn'), (26432,'Chinese (Taiwan)','default',423,'zh-tw'), (26433,'Croatian','default',423,'hr'), (26434,'Czech','default',423,'cs'), (26435,'Danish','default',423,'da'), (26436,'Dutch','default',423,'nl'), (26437,'English (UK)','default',423,'en-gb'), (26438,'Esperanto','default',423,'eo'), (26439,'Estonian','default',423,'et'), (26440,'Faroese','default',423,'fo'), (26441,'Finnish','default',423,'fi'), (26442,'Frisian','default',423,'fy'), (26443,'Fulah','default',423,'fuc'), (26444,'Galician','default',423,'gl'), (26445,'Georgian','default',423,'ka'), (26446,'German','default',423,'de'), (26447,'Greek','default',423,'el'), (26448,'Hebrew','default',423,'he'), (26449,'Hindi','default',423,'hi'), (26450,'Hungarian','default',423,'hu'), (26451,'Indonesian','default',423,'id'), (26452,'Italian','default',423,'it'), (26453,'Japanese','default',423,'ja'), (26454,'Javanese','default',423,'jv'), (26455,'Kannada','default',423,'kn'), (26456,'Kirghiz','default',423,'ky'), (26457,'Korean','default',423,'ko'), (26458,'Kurdish','default',423,'ckb'), (26459,'Latvian','default',423,'lv'), (26460,'Lithuanian','default',423,'lt'), (26461,'Macedonian','default',423,'mk'), (26462,'Malay','default',423,'ms'), (26463,'Malayalam','default',423,'ml'), (26464,'Mongolian','default',423,'mn'), (26465,'Nepali','default',423,'ne'), (26466,'Norwegian (BokmÃ¥l)','default',423,'nb'), (26467,'Norwegian (Nynorsk)','default',423,'nn'), (26468,'Persian','default',423,'fa'), (26469,'Peruvian Spanish','default',423,'es-pe'), (26470,'Polish','default',423,'pl'), (26471,'Portuguese','default',423,'pt'), (26472,'Punjabi','default',423,'pa'), (26473,'Romanian','default',423,'ro'), (26474,'Russian','default',423,'ru'), (26475,'Serbian','default',423,'sr'), (26476,'Sinhala','default',423,'si'), (26477,'Slovak','default',423,'sk'), (26478,'Spanish','default',423,'es'), (26479,'Sundanese','default',423,'su'), (26480,'Swahili','default',423,'sw'), (26481,'Swedish','default',423,'sv'), (26482,'Tamil (Sri Lanka)','default',423,'ta-lk'), (26483,'Thai','default',423,'th'), (26484,'Turkish','default',423,'tr'), (26485,'Uighur','default',423,'ug'), (26486,'Ukrainian','default',423,'uk'), (26487,'Uzbek','default',423,'uz'), (26488,'Venezuelan Spanish','default',423,'es-ve'), (26489,'Vietnamese','default',423,'vi'), (26490,'Welsh','default',423,'cy'), (26492,'Albanian','default',424,'sq'), (26493,'Arabic','default',424,'ar'), (26494,'Azerbaijani','default',424,'az'), (26495,'Basque','default',424,'eu'), (26496,'Bengali','default',424,'bn'), (26497,'Bosnian','default',424,'bs'), (26498,'Brazilian Portuguese','default',424,'pt-br'), (26499,'Bulgarian','default',424,'bg'), (26500,'Burmese','default',424,'mya'), (26501,'Catalan','default',424,'ca'), (26502,'Chilean Spanish','default',424,'es-cl'), (26503,'Chinese (China)','default',424,'zh-cn'), (26504,'Chinese (Taiwan)','default',424,'zh-tw'), (26505,'Croatian','default',424,'hr'), (26506,'Czech','default',424,'cs'), (26507,'Danish','default',424,'da'), (26508,'Dutch','default',424,'nl'), (26509,'English (UK)','default',424,'en-gb'), (26510,'Esperanto','default',424,'eo'), (26511,'Estonian','default',424,'et'), (26512,'Faroese','default',424,'fo'), (26513,'Finnish','default',424,'fi'), (26514,'Frisian','default',424,'fy'), (26515,'Fulah','default',424,'fuc'), (26516,'Galician','default',424,'gl'), (26517,'Georgian','default',424,'ka'), (26518,'German','default',424,'de'), (26519,'Greek','default',424,'el'), (26520,'Hebrew','default',424,'he'), (26521,'Hindi','default',424,'hi'), (26522,'Hungarian','default',424,'hu'), (26523,'Indonesian','default',424,'id'), (26524,'Italian','default',424,'it'), (26525,'Japanese','default',424,'ja'), (26526,'Javanese','default',424,'jv'), (26527,'Kannada','default',424,'kn'), (26528,'Kirghiz','default',424,'ky'), (26529,'Korean','default',424,'ko'), (26530,'Kurdish','default',424,'ckb'), (26531,'Latvian','default',424,'lv'), (26532,'Lithuanian','default',424,'lt'), (26533,'Macedonian','default',424,'mk'), (26534,'Malay','default',424,'ms'), (26535,'Malayalam','default',424,'ml'), (26536,'Mongolian','default',424,'mn'), (26537,'Nepali','default',424,'ne'), (26538,'Norwegian (BokmÃ¥l)','default',424,'nb'), (26539,'Norwegian (Nynorsk)','default',424,'nn'), (26540,'Persian','default',424,'fa'), (26541,'Peruvian Spanish','default',424,'es-pe'), (26542,'Polish','default',424,'pl'), (26543,'Portuguese','default',424,'pt'), (26544,'Punjabi','default',424,'pa'), (26545,'Romanian','default',424,'ro'), (26546,'Russian','default',424,'ru'), (26547,'Serbian','default',424,'sr'), (26548,'Sinhala','default',424,'si'), (26549,'Slovak','default',424,'sk'), (26550,'Spanish','default',424,'es'), (26551,'Sundanese','default',424,'su'), (26552,'Swahili','default',424,'sw'), (26553,'Swedish','default',424,'sv'), (26554,'Tamil (Sri Lanka)','default',424,'ta-lk'), (26555,'Thai','default',424,'th'), (26556,'Turkish','default',424,'tr'), (26557,'Uighur','default',424,'ug'), (26558,'Ukrainian','default',424,'uk'), (26559,'Uzbek','default',424,'uz'), (26560,'Venezuelan Spanish','default',424,'es-ve'), (26561,'Vietnamese','default',424,'vi'), (26562,'Welsh','default',424,'cy'), (26564,'Albanian','default',425,'sq'), (26565,'Arabic','default',425,'ar'), (26566,'Azerbaijani','default',425,'az'), (26567,'Basque','default',425,'eu'), (26568,'Bengali','default',425,'bn'), (26569,'Bosnian','default',425,'bs'), (26570,'Brazilian Portuguese','default',425,'pt-br'), (26571,'Bulgarian','default',425,'bg'), (26572,'Burmese','default',425,'mya'), (26573,'Catalan','default',425,'ca'), (26574,'Chilean Spanish','default',425,'es-cl'), (26575,'Chinese (China)','default',425,'zh-cn'), (26576,'Chinese (Taiwan)','default',425,'zh-tw'), (26577,'Croatian','default',425,'hr'), (26578,'Czech','default',425,'cs'), (26579,'Danish','default',425,'da'), (26580,'Dutch','default',425,'nl'), (26581,'English (UK)','default',425,'en-gb'), (26582,'Esperanto','default',425,'eo'), (26583,'Estonian','default',425,'et'), (26584,'Faroese','default',425,'fo'), (26585,'Finnish','default',425,'fi'), (26586,'Frisian','default',425,'fy'), (26587,'Fulah','default',425,'fuc'), (26588,'Galician','default',425,'gl'), (26589,'Georgian','default',425,'ka'), (26590,'German','default',425,'de'), (26591,'Greek','default',425,'el'), (26592,'Hebrew','default',425,'he'), (26593,'Hindi','default',425,'hi'), (26594,'Hungarian','default',425,'hu'), (26595,'Indonesian','default',425,'id'), (26596,'Italian','default',425,'it'), (26597,'Japanese','default',425,'ja'), (26598,'Javanese','default',425,'jv'), (26599,'Kannada','default',425,'kn'), (26600,'Kirghiz','default',425,'ky'), (26601,'Korean','default',425,'ko'), (26602,'Kurdish','default',425,'ckb'), (26603,'Latvian','default',425,'lv'), (26604,'Lithuanian','default',425,'lt'), (26605,'Macedonian','default',425,'mk'), (26606,'Malay','default',425,'ms'), (26607,'Malayalam','default',425,'ml'), (26608,'Mongolian','default',425,'mn'), (26609,'Nepali','default',425,'ne'), (26610,'Norwegian (BokmÃ¥l)','default',425,'nb'), (26611,'Norwegian (Nynorsk)','default',425,'nn'), (26612,'Persian','default',425,'fa'), (26613,'Peruvian Spanish','default',425,'es-pe'), (26614,'Polish','default',425,'pl'), (26615,'Portuguese','default',425,'pt'), (26616,'Punjabi','default',425,'pa'), (26617,'Romanian','default',425,'ro'), (26618,'Russian','default',425,'ru'), (26619,'Serbian','default',425,'sr'), (26620,'Sinhala','default',425,'si'), (26621,'Slovak','default',425,'sk'), (26622,'Spanish','default',425,'es'), (26623,'Sundanese','default',425,'su'), (26624,'Swahili','default',425,'sw'), (26625,'Swedish','default',425,'sv'), (26626,'Tamil (Sri Lanka)','default',425,'ta-lk'), (26627,'Thai','default',425,'th'), (26628,'Turkish','default',425,'tr'), (26629,'Uighur','default',425,'ug'), (26630,'Ukrainian','default',425,'uk'), (26631,'Uzbek','default',425,'uz'), (26632,'Venezuelan Spanish','default',425,'es-ve'), (26633,'Vietnamese','default',425,'vi'), (26634,'Welsh','default',425,'cy'), (26635,'Lithuanian','default',39,'lt'), (26637,'Albanian','default',431,'sq'), (26638,'Arabic','default',431,'ar'), (26639,'Azerbaijani','default',431,'az'), (26640,'Basque','default',431,'eu'), (26641,'Bengali','default',431,'bn'), (26642,'Bosnian','default',431,'bs'), (26643,'Brazilian Portuguese','default',431,'pt-br'), (26644,'Bulgarian','default',431,'bg'), (26645,'Burmese','default',431,'mya'), (26646,'Catalan','default',431,'ca'), (26647,'Chilean Spanish','default',431,'es-cl'), (26648,'Chinese (China)','default',431,'zh-cn'), (26649,'Chinese (Taiwan)','default',431,'zh-tw'), (26650,'Croatian','default',431,'hr'), (26651,'Czech','default',431,'cs'), (26652,'Danish','default',431,'da'), (26653,'Dutch','default',431,'nl'), (26654,'English (UK)','default',431,'en-gb'), (26655,'Esperanto','default',431,'eo'), (26656,'Estonian','default',431,'et'), (26657,'Faroese','default',431,'fo'), (26658,'Finnish','default',431,'fi'), (26659,'French','default',431,'fr'), (26660,'Frisian','default',431,'fy'), (26661,'Fulah','default',431,'fuc'), (26662,'Galician','default',431,'gl'), (26663,'Georgian','default',431,'ka'), (26664,'German','default',431,'de'), (26665,'Greek','default',431,'el'), (26666,'Hebrew','default',431,'he'), (26667,'Hindi','default',431,'hi'), (26668,'Hungarian','default',431,'hu'), (26669,'Indonesian','default',431,'id'), (26670,'Italian','default',431,'it'), (26671,'Japanese','default',431,'ja'), (26672,'Javanese','default',431,'jv'), (26673,'Kannada','default',431,'kn'), (26674,'Kirghiz','default',431,'ky'), (26675,'Korean','default',431,'ko'), (26676,'Kurdish','default',431,'ckb'), (26677,'Latvian','default',431,'lv'), (26678,'Lithuanian','default',431,'lt'), (26679,'Macedonian','default',431,'mk'), (26680,'Malay','default',431,'ms'), (26681,'Malayalam','default',431,'ml'), (26682,'Mongolian','default',431,'mn'), (26683,'Nepali','default',431,'ne'), (26684,'Norwegian (BokmÃ¥l)','default',431,'nb'), (26685,'Norwegian (Nynorsk)','default',431,'nn'), (26686,'Persian','default',431,'fa'), (26687,'Peruvian Spanish','default',431,'es-pe'), (26688,'Polish','default',431,'pl'), (26689,'Portuguese','default',431,'pt'), (26690,'Punjabi','default',431,'pa'), (26691,'Romanian','default',431,'ro'), (26692,'Russian','default',431,'ru'), (26693,'Serbian','default',431,'sr'), (26694,'Sinhala','default',431,'si'), (26695,'Slovak','default',431,'sk'), (26696,'Spanish','default',431,'es'), (26697,'Sundanese','default',431,'su'), (26698,'Swahili','default',431,'sw'), (26699,'Swedish','default',431,'sv'), (26700,'Tamil (Sri Lanka)','default',431,'ta-lk'), (26701,'Thai','default',431,'th'), (26702,'Turkish','default',431,'tr'), (26703,'Uighur','default',431,'ug'), (26704,'Ukrainian','default',431,'uk'), (26705,'Uzbek','default',431,'uz'), (26706,'Venezuelan Spanish','default',431,'es-ve'), (26707,'Vietnamese','default',431,'vi'), (26708,'Welsh','default',431,'cy'), (26710,'Albanian','default',432,'sq'), (26711,'Arabic','default',432,'ar'), (26712,'Azerbaijani','default',432,'az'), (26713,'Basque','default',432,'eu'), (26714,'Bengali','default',432,'bn'), (26715,'Bosnian','default',432,'bs'), (26716,'Brazilian Portuguese','default',432,'pt-br'), (26717,'Bulgarian','default',432,'bg'), (26718,'Burmese','default',432,'mya'), (26719,'Catalan','default',432,'ca'), (26720,'Chilean Spanish','default',432,'es-cl'), (26721,'Chinese (China)','default',432,'zh-cn'), (26722,'Chinese (Taiwan)','default',432,'zh-tw'), (26723,'Croatian','default',432,'hr'), (26724,'Czech','default',432,'cs'), (26725,'Danish','default',432,'da'), (26726,'Dutch','default',432,'nl'), (26727,'English (UK)','default',432,'en-gb'), (26728,'Esperanto','default',432,'eo'), (26729,'Estonian','default',432,'et'), (26730,'Faroese','default',432,'fo'), (26731,'Finnish','default',432,'fi'), (26732,'French','default',432,'fr'), (26733,'Frisian','default',432,'fy'), (26734,'Fulah','default',432,'fuc'), (26735,'Galician','default',432,'gl'), (26736,'Georgian','default',432,'ka'), (26737,'German','default',432,'de'), (26738,'Greek','default',432,'el'), (26739,'Hebrew','default',432,'he'), (26740,'Hindi','default',432,'hi'), (26741,'Hungarian','default',432,'hu'), (26742,'Indonesian','default',432,'id'), (26743,'Italian','default',432,'it'), (26744,'Japanese','default',432,'ja'), (26745,'Javanese','default',432,'jv'), (26746,'Kannada','default',432,'kn'), (26747,'Kirghiz','default',432,'ky'), (26748,'Korean','default',432,'ko'), (26749,'Kurdish','default',432,'ckb'), (26750,'Latvian','default',432,'lv'), (26751,'Lithuanian','default',432,'lt'), (26752,'Macedonian','default',432,'mk'), (26753,'Malay','default',432,'ms'), (26754,'Malayalam','default',432,'ml'), (26755,'Mongolian','default',432,'mn'), (26756,'Nepali','default',432,'ne'), (26757,'Norwegian (BokmÃ¥l)','default',432,'nb'), (26758,'Norwegian (Nynorsk)','default',432,'nn'), (26759,'Persian','default',432,'fa'), (26760,'Peruvian Spanish','default',432,'es-pe'), (26761,'Polish','default',432,'pl'), (26762,'Portuguese','default',432,'pt'), (26763,'Punjabi','default',432,'pa'), (26764,'Romanian','default',432,'ro'), (26765,'Russian','default',432,'ru'), (26766,'Serbian','default',432,'sr'), (26767,'Sinhala','default',432,'si'), (26768,'Slovak','default',432,'sk'), (26769,'Spanish','default',432,'es'), (26770,'Sundanese','default',432,'su'), (26771,'Swahili','default',432,'sw'), (26772,'Swedish','default',432,'sv'), (26773,'Tamil (Sri Lanka)','default',432,'ta-lk'), (26774,'Thai','default',432,'th'), (26775,'Turkish','default',432,'tr'), (26776,'Uighur','default',432,'ug'), (26777,'Ukrainian','default',432,'uk'), (26778,'Uzbek','default',432,'uz'), (26779,'Venezuelan Spanish','default',432,'es-ve'), (26780,'Vietnamese','default',432,'vi'), (26781,'Welsh','default',432,'cy'), (26783,'Albanian','default',433,'sq'), (26784,'Arabic','default',433,'ar'), (26785,'Azerbaijani','default',433,'az'), (26786,'Basque','default',433,'eu'), (26787,'Bengali','default',433,'bn'), (26788,'Bosnian','default',433,'bs'), (26789,'Brazilian Portuguese','default',433,'pt-br'), (26790,'Bulgarian','default',433,'bg'), (26791,'Burmese','default',433,'mya'), (26792,'Catalan','default',433,'ca'), (26793,'Chilean Spanish','default',433,'es-cl'), (26794,'Chinese (China)','default',433,'zh-cn'), (26795,'Chinese (Taiwan)','default',433,'zh-tw'), (26796,'Croatian','default',433,'hr'), (26797,'Czech','default',433,'cs'), (26798,'Danish','default',433,'da'), (26799,'Dutch','default',433,'nl'), (26800,'English (UK)','default',433,'en-gb'), (26801,'Esperanto','default',433,'eo'), (26802,'Estonian','default',433,'et'), (26803,'Faroese','default',433,'fo'), (26804,'Finnish','default',433,'fi'), (26805,'French','default',433,'fr'), (26806,'Frisian','default',433,'fy'), (26807,'Fulah','default',433,'fuc'), (26808,'Galician','default',433,'gl'), (26809,'Georgian','default',433,'ka'), (26810,'German','default',433,'de'), (26811,'Greek','default',433,'el'), (26812,'Hebrew','default',433,'he'), (26813,'Hindi','default',433,'hi'), (26814,'Hungarian','default',433,'hu'), (26815,'Indonesian','default',433,'id'), (26816,'Italian','default',433,'it'), (26817,'Japanese','default',433,'ja'), (26818,'Javanese','default',433,'jv'), (26819,'Kannada','default',433,'kn'), (26820,'Kirghiz','default',433,'ky'), (26821,'Korean','default',433,'ko'), (26822,'Kurdish','default',433,'ckb'), (26823,'Latvian','default',433,'lv'), (26824,'Lithuanian','default',433,'lt'), (26825,'Macedonian','default',433,'mk'), (26826,'Malay','default',433,'ms'), (26827,'Malayalam','default',433,'ml'), (26828,'Mongolian','default',433,'mn'), (26829,'Nepali','default',433,'ne'), (26830,'Norwegian (BokmÃ¥l)','default',433,'nb'), (26831,'Norwegian (Nynorsk)','default',433,'nn'), (26832,'Persian','default',433,'fa'), (26833,'Peruvian Spanish','default',433,'es-pe'), (26834,'Polish','default',433,'pl'), (26835,'Portuguese','default',433,'pt'), (26836,'Punjabi','default',433,'pa'), (26837,'Romanian','default',433,'ro'), (26838,'Russian','default',433,'ru'), (26839,'Serbian','default',433,'sr'), (26840,'Sinhala','default',433,'si'), (26841,'Slovak','default',433,'sk'), (26842,'Spanish','default',433,'es'), (26843,'Sundanese','default',433,'su'), (26844,'Swahili','default',433,'sw'), (26845,'Swedish','default',433,'sv'), (26846,'Tamil (Sri Lanka)','default',433,'ta-lk'), (26847,'Thai','default',433,'th'), (26848,'Turkish','default',433,'tr'), (26849,'Uighur','default',433,'ug'), (26850,'Ukrainian','default',433,'uk'), (26851,'Uzbek','default',433,'uz'), (26852,'Venezuelan Spanish','default',433,'es-ve'), (26853,'Vietnamese','default',433,'vi'), (26854,'Welsh','default',433,'cy'), (26856,'Albanian','default',434,'sq'), (26857,'Arabic','default',434,'ar'), (26858,'Azerbaijani','default',434,'az'), (26859,'Basque','default',434,'eu'), (26860,'Bengali','default',434,'bn'), (26861,'Bosnian','default',434,'bs'), (26862,'Brazilian Portuguese','default',434,'pt-br'), (26863,'Bulgarian','default',434,'bg'), (26864,'Burmese','default',434,'mya'), (26865,'Catalan','default',434,'ca'), (26866,'Chilean Spanish','default',434,'es-cl'), (26867,'Chinese (China)','default',434,'zh-cn'), (26868,'Chinese (Taiwan)','default',434,'zh-tw'), (26869,'Croatian','default',434,'hr'), (26870,'Czech','default',434,'cs'), (26871,'Danish','default',434,'da'), (26872,'Dutch','default',434,'nl'), (26873,'English (UK)','default',434,'en-gb'), (26874,'Esperanto','default',434,'eo'), (26875,'Estonian','default',434,'et'), (26876,'Faroese','default',434,'fo'), (26877,'Finnish','default',434,'fi'), (26878,'French','default',434,'fr'), (26879,'Frisian','default',434,'fy'), (26880,'Fulah','default',434,'fuc'), (26881,'Galician','default',434,'gl'), (26882,'Georgian','default',434,'ka'), (26883,'German','default',434,'de'), (26884,'Greek','default',434,'el'), (26885,'Hebrew','default',434,'he'), (26886,'Hindi','default',434,'hi'), (26887,'Hungarian','default',434,'hu'), (26888,'Indonesian','default',434,'id'), (26889,'Italian','default',434,'it'), (26890,'Japanese','default',434,'ja'), (26891,'Javanese','default',434,'jv'), (26892,'Kannada','default',434,'kn'), (26893,'Kirghiz','default',434,'ky'), (26894,'Korean','default',434,'ko'), (26895,'Kurdish','default',434,'ckb'), (26896,'Latvian','default',434,'lv'), (26897,'Lithuanian','default',434,'lt'), (26898,'Macedonian','default',434,'mk'), (26899,'Malay','default',434,'ms'), (26900,'Malayalam','default',434,'ml'), (26901,'Mongolian','default',434,'mn'), (26902,'Nepali','default',434,'ne'), (26903,'Norwegian (BokmÃ¥l)','default',434,'nb'), (26904,'Norwegian (Nynorsk)','default',434,'nn'), (26905,'Persian','default',434,'fa'), (26906,'Peruvian Spanish','default',434,'es-pe'), (26907,'Polish','default',434,'pl'), (26908,'Portuguese','default',434,'pt'), (26909,'Punjabi','default',434,'pa'), (26910,'Romanian','default',434,'ro'), (26911,'Russian','default',434,'ru'), (26912,'Serbian','default',434,'sr'), (26913,'Sinhala','default',434,'si'), (26914,'Slovak','default',434,'sk'), (26915,'Spanish','default',434,'es'), (26916,'Sundanese','default',434,'su'), (26917,'Swahili','default',434,'sw'), (26918,'Swedish','default',434,'sv'), (26919,'Tamil (Sri Lanka)','default',434,'ta-lk'), (26920,'Thai','default',434,'th'), (26921,'Turkish','default',434,'tr'), (26922,'Uighur','default',434,'ug'), (26923,'Ukrainian','default',434,'uk'), (26924,'Uzbek','default',434,'uz'), (26925,'Venezuelan Spanish','default',434,'es-ve'), (26926,'Vietnamese','default',434,'vi'), (26927,'Welsh','default',434,'cy'), (26929,'Albanian','default',435,'sq'), (26930,'Arabic','default',435,'ar'), (26931,'Azerbaijani','default',435,'az'), (26932,'Basque','default',435,'eu'), (26933,'Bengali','default',435,'bn'), (26934,'Bosnian','default',435,'bs'), (26935,'Brazilian Portuguese','default',435,'pt-br'), (26936,'Bulgarian','default',435,'bg'), (26937,'Burmese','default',435,'mya'), (26938,'Catalan','default',435,'ca'), (26939,'Chilean Spanish','default',435,'es-cl'), (26940,'Chinese (China)','default',435,'zh-cn'), (26941,'Chinese (Taiwan)','default',435,'zh-tw'), (26942,'Croatian','default',435,'hr'), (26943,'Czech','default',435,'cs'), (26944,'Danish','default',435,'da'), (26945,'Dutch','default',435,'nl'), (26946,'English (UK)','default',435,'en-gb'), (26947,'Esperanto','default',435,'eo'), (26948,'Estonian','default',435,'et'), (26949,'Faroese','default',435,'fo'), (26950,'Finnish','default',435,'fi'), (26951,'French','default',435,'fr'), (26952,'Frisian','default',435,'fy'), (26953,'Fulah','default',435,'fuc'), (26954,'Galician','default',435,'gl'), (26955,'Georgian','default',435,'ka'), (26956,'German','default',435,'de'), (26957,'Greek','default',435,'el'), (26958,'Hebrew','default',435,'he'), (26959,'Hindi','default',435,'hi'), (26960,'Hungarian','default',435,'hu'), (26961,'Indonesian','default',435,'id'), (26962,'Italian','default',435,'it'), (26963,'Japanese','default',435,'ja'), (26964,'Javanese','default',435,'jv'), (26965,'Kannada','default',435,'kn'), (26966,'Kirghiz','default',435,'ky'), (26967,'Korean','default',435,'ko'), (26968,'Kurdish','default',435,'ckb'), (26969,'Latvian','default',435,'lv'), (26970,'Lithuanian','default',435,'lt'), (26971,'Macedonian','default',435,'mk'), (26972,'Malay','default',435,'ms'), (26973,'Malayalam','default',435,'ml'), (26974,'Mongolian','default',435,'mn'), (26975,'Nepali','default',435,'ne'), (26976,'Norwegian (BokmÃ¥l)','default',435,'nb'), (26977,'Norwegian (Nynorsk)','default',435,'nn'), (26978,'Persian','default',435,'fa'), (26979,'Peruvian Spanish','default',435,'es-pe'), (26980,'Polish','default',435,'pl'), (26981,'Portuguese','default',435,'pt'), (26982,'Punjabi','default',435,'pa'), (26983,'Romanian','default',435,'ro'), (26984,'Russian','default',435,'ru'), (26985,'Serbian','default',435,'sr'), (26986,'Sinhala','default',435,'si'), (26987,'Slovak','default',435,'sk'), (26988,'Spanish','default',435,'es'), (26989,'Sundanese','default',435,'su'), (26990,'Swahili','default',435,'sw'), (26991,'Swedish','default',435,'sv'), (26992,'Tamil (Sri Lanka)','default',435,'ta-lk'), (26993,'Thai','default',435,'th'), (26994,'Turkish','default',435,'tr'), (26995,'Uighur','default',435,'ug'), (26996,'Ukrainian','default',435,'uk'), (26997,'Uzbek','default',435,'uz'), (26998,'Venezuelan Spanish','default',435,'es-ve'), (26999,'Vietnamese','default',435,'vi'), (27000,'Welsh','default',435,'cy'), (27002,'Albanian','default',436,'sq'), (27003,'Arabic','default',436,'ar'), (27004,'Azerbaijani','default',436,'az'), (27005,'Basque','default',436,'eu'), (27006,'Bengali','default',436,'bn'), (27007,'Bosnian','default',436,'bs'), (27008,'Brazilian Portuguese','default',436,'pt-br'), (27009,'Bulgarian','default',436,'bg'), (27010,'Burmese','default',436,'mya'), (27011,'Catalan','default',436,'ca'), (27012,'Chilean Spanish','default',436,'es-cl'), (27013,'Chinese (China)','default',436,'zh-cn'), (27014,'Chinese (Taiwan)','default',436,'zh-tw'), (27015,'Croatian','default',436,'hr'), (27016,'Czech','default',436,'cs'), (27017,'Danish','default',436,'da'), (27018,'Dutch','default',436,'nl'), (27019,'English (UK)','default',436,'en-gb'), (27020,'Esperanto','default',436,'eo'), (27021,'Estonian','default',436,'et'), (27022,'Faroese','default',436,'fo'), (27023,'Finnish','default',436,'fi'), (27024,'French','default',436,'fr'), (27025,'Frisian','default',436,'fy'), (27026,'Fulah','default',436,'fuc'), (27027,'Galician','default',436,'gl'), (27028,'Georgian','default',436,'ka'), (27029,'German','default',436,'de'), (27030,'Greek','default',436,'el'), (27031,'Hebrew','default',436,'he'), (27032,'Hindi','default',436,'hi'), (27033,'Hungarian','default',436,'hu'), (27034,'Indonesian','default',436,'id'), (27035,'Italian','default',436,'it'), (27036,'Japanese','default',436,'ja'), (27037,'Javanese','default',436,'jv'), (27038,'Kannada','default',436,'kn'), (27039,'Kirghiz','default',436,'ky'), (27040,'Korean','default',436,'ko'), (27041,'Kurdish','default',436,'ckb'), (27042,'Latvian','default',436,'lv'), (27043,'Lithuanian','default',436,'lt'), (27044,'Macedonian','default',436,'mk'), (27045,'Malay','default',436,'ms'), (27046,'Malayalam','default',436,'ml'), (27047,'Mongolian','default',436,'mn'), (27048,'Nepali','default',436,'ne'), (27049,'Norwegian (BokmÃ¥l)','default',436,'nb'), (27050,'Norwegian (Nynorsk)','default',436,'nn'), (27051,'Persian','default',436,'fa'), (27052,'Peruvian Spanish','default',436,'es-pe'), (27053,'Polish','default',436,'pl'), (27054,'Portuguese','default',436,'pt'), (27055,'Punjabi','default',436,'pa'), (27056,'Romanian','default',436,'ro'), (27057,'Russian','default',436,'ru'), (27058,'Serbian','default',436,'sr'), (27059,'Sinhala','default',436,'si'), (27060,'Slovak','default',436,'sk'), (27061,'Spanish','default',436,'es'), (27062,'Sundanese','default',436,'su'), (27063,'Swahili','default',436,'sw'), (27064,'Swedish','default',436,'sv'), (27065,'Tamil (Sri Lanka)','default',436,'ta-lk'), (27066,'Thai','default',436,'th'); INSERT INTO `translate_translation_sets` (`id`, `name`, `slug`, `project_id`, `locale`) VALUES (27067,'Turkish','default',436,'tr'), (27068,'Uighur','default',436,'ug'), (27069,'Ukrainian','default',436,'uk'), (27070,'Uzbek','default',436,'uz'), (27071,'Venezuelan Spanish','default',436,'es-ve'), (27072,'Vietnamese','default',436,'vi'), (27073,'Welsh','default',436,'cy'), (27075,'Albanian','default',437,'sq'), (27076,'Arabic','default',437,'ar'), (27077,'Azerbaijani','default',437,'az'), (27078,'Basque','default',437,'eu'), (27079,'Bengali','default',437,'bn'), (27080,'Bosnian','default',437,'bs'), (27081,'Brazilian Portuguese','default',437,'pt-br'), (27082,'Bulgarian','default',437,'bg'), (27083,'Burmese','default',437,'mya'), (27084,'Catalan','default',437,'ca'), (27085,'Chilean Spanish','default',437,'es-cl'), (27086,'Chinese (China)','default',437,'zh-cn'), (27087,'Chinese (Taiwan)','default',437,'zh-tw'), (27088,'Croatian','default',437,'hr'), (27089,'Czech','default',437,'cs'), (27090,'Danish','default',437,'da'), (27091,'Dutch','default',437,'nl'), (27092,'English (UK)','default',437,'en-gb'), (27093,'Esperanto','default',437,'eo'), (27094,'Estonian','default',437,'et'), (27095,'Faroese','default',437,'fo'), (27096,'Finnish','default',437,'fi'), (27097,'French','default',437,'fr'), (27098,'Frisian','default',437,'fy'), (27099,'Fulah','default',437,'fuc'), (27100,'Galician','default',437,'gl'), (27101,'Georgian','default',437,'ka'), (27102,'German','default',437,'de'), (27103,'Greek','default',437,'el'), (27104,'Hebrew','default',437,'he'), (27105,'Hindi','default',437,'hi'), (27106,'Hungarian','default',437,'hu'), (27107,'Indonesian','default',437,'id'), (27108,'Italian','default',437,'it'), (27109,'Japanese','default',437,'ja'), (27110,'Javanese','default',437,'jv'), (27111,'Kannada','default',437,'kn'), (27112,'Kirghiz','default',437,'ky'), (27113,'Korean','default',437,'ko'), (27114,'Kurdish','default',437,'ckb'), (27115,'Latvian','default',437,'lv'), (27116,'Lithuanian','default',437,'lt'), (27117,'Macedonian','default',437,'mk'), (27118,'Malay','default',437,'ms'), (27119,'Malayalam','default',437,'ml'), (27120,'Mongolian','default',437,'mn'), (27121,'Nepali','default',437,'ne'), (27122,'Norwegian (BokmÃ¥l)','default',437,'nb'), (27123,'Norwegian (Nynorsk)','default',437,'nn'), (27124,'Persian','default',437,'fa'), (27125,'Peruvian Spanish','default',437,'es-pe'), (27126,'Polish','default',437,'pl'), (27127,'Portuguese','default',437,'pt'), (27128,'Punjabi','default',437,'pa'), (27129,'Romanian','default',437,'ro'), (27130,'Russian','default',437,'ru'), (27131,'Serbian','default',437,'sr'), (27132,'Sinhala','default',437,'si'), (27133,'Slovak','default',437,'sk'), (27134,'Spanish','default',437,'es'), (27135,'Sundanese','default',437,'su'), (27136,'Swahili','default',437,'sw'), (27137,'Swedish','default',437,'sv'), (27138,'Tamil (Sri Lanka)','default',437,'ta-lk'), (27139,'Thai','default',437,'th'), (27140,'Turkish','default',437,'tr'), (27141,'Uighur','default',437,'ug'), (27142,'Ukrainian','default',437,'uk'), (27143,'Uzbek','default',437,'uz'), (27144,'Venezuelan Spanish','default',437,'es-ve'), (27145,'Vietnamese','default',437,'vi'), (27146,'Welsh','default',437,'cy'), (27148,'Albanian','default',438,'sq'), (27149,'Arabic','default',438,'ar'), (27150,'Azerbaijani','default',438,'az'), (27151,'Basque','default',438,'eu'), (27152,'Bengali','default',438,'bn'), (27153,'Bosnian','default',438,'bs'), (27154,'Brazilian Portuguese','default',438,'pt-br'), (27155,'Bulgarian','default',438,'bg'), (27156,'Burmese','default',438,'mya'), (27157,'Catalan','default',438,'ca'), (27158,'Chilean Spanish','default',438,'es-cl'), (27159,'Chinese (China)','default',438,'zh-cn'), (27160,'Chinese (Taiwan)','default',438,'zh-tw'), (27161,'Croatian','default',438,'hr'), (27162,'Czech','default',438,'cs'), (27163,'Danish','default',438,'da'), (27164,'Dutch','default',438,'nl'), (27165,'English (UK)','default',438,'en-gb'), (27166,'Esperanto','default',438,'eo'), (27167,'Estonian','default',438,'et'), (27168,'Faroese','default',438,'fo'), (27169,'Finnish','default',438,'fi'), (27170,'French','default',438,'fr'), (27171,'Frisian','default',438,'fy'), (27172,'Fulah','default',438,'fuc'), (27173,'Galician','default',438,'gl'), (27174,'Georgian','default',438,'ka'), (27175,'German','default',438,'de'), (27176,'Greek','default',438,'el'), (27177,'Hebrew','default',438,'he'), (27178,'Hindi','default',438,'hi'), (27179,'Hungarian','default',438,'hu'), (27180,'Indonesian','default',438,'id'), (27181,'Italian','default',438,'it'), (27182,'Japanese','default',438,'ja'), (27183,'Javanese','default',438,'jv'), (27184,'Kannada','default',438,'kn'), (27185,'Kirghiz','default',438,'ky'), (27186,'Korean','default',438,'ko'), (27187,'Kurdish','default',438,'ckb'), (27188,'Latvian','default',438,'lv'), (27189,'Lithuanian','default',438,'lt'), (27190,'Macedonian','default',438,'mk'), (27191,'Malay','default',438,'ms'), (27192,'Malayalam','default',438,'ml'), (27193,'Mongolian','default',438,'mn'), (27194,'Nepali','default',438,'ne'), (27195,'Norwegian (BokmÃ¥l)','default',438,'nb'), (27196,'Norwegian (Nynorsk)','default',438,'nn'), (27197,'Persian','default',438,'fa'), (27198,'Peruvian Spanish','default',438,'es-pe'), (27199,'Polish','default',438,'pl'), (27200,'Portuguese','default',438,'pt'), (27201,'Punjabi','default',438,'pa'), (27202,'Romanian','default',438,'ro'), (27203,'Russian','default',438,'ru'), (27204,'Serbian','default',438,'sr'), (27205,'Sinhala','default',438,'si'), (27206,'Slovak','default',438,'sk'), (27207,'Spanish','default',438,'es'), (27208,'Sundanese','default',438,'su'), (27209,'Swahili','default',438,'sw'), (27210,'Swedish','default',438,'sv'), (27211,'Tamil (Sri Lanka)','default',438,'ta-lk'), (27212,'Thai','default',438,'th'), (27213,'Turkish','default',438,'tr'), (27214,'Uighur','default',438,'ug'), (27215,'Ukrainian','default',438,'uk'), (27216,'Uzbek','default',438,'uz'), (27217,'Venezuelan Spanish','default',438,'es-ve'), (27218,'Vietnamese','default',438,'vi'), (27219,'Welsh','default',438,'cy'), (27221,'Albanian','default',439,'sq'), (27222,'Arabic','default',439,'ar'), (27223,'Azerbaijani','default',439,'az'), (27224,'Basque','default',439,'eu'), (27225,'Bengali','default',439,'bn'), (27226,'Bosnian','default',439,'bs'), (27227,'Brazilian Portuguese','default',439,'pt-br'), (27228,'Bulgarian','default',439,'bg'), (27229,'Burmese','default',439,'mya'), (27230,'Catalan','default',439,'ca'), (27231,'Chilean Spanish','default',439,'es-cl'), (27232,'Chinese (China)','default',439,'zh-cn'), (27233,'Chinese (Taiwan)','default',439,'zh-tw'), (27234,'Croatian','default',439,'hr'), (27235,'Czech','default',439,'cs'), (27236,'Danish','default',439,'da'), (27237,'Dutch','default',439,'nl'), (27238,'English (UK)','default',439,'en-gb'), (27239,'Esperanto','default',439,'eo'), (27240,'Estonian','default',439,'et'), (27241,'Faroese','default',439,'fo'), (27242,'Finnish','default',439,'fi'), (27243,'French','default',439,'fr'), (27244,'Frisian','default',439,'fy'), (27245,'Fulah','default',439,'fuc'), (27246,'Galician','default',439,'gl'), (27247,'Georgian','default',439,'ka'), (27248,'German','default',439,'de'), (27249,'Greek','default',439,'el'), (27250,'Hebrew','default',439,'he'), (27251,'Hindi','default',439,'hi'), (27252,'Hungarian','default',439,'hu'), (27253,'Indonesian','default',439,'id'), (27254,'Italian','default',439,'it'), (27255,'Japanese','default',439,'ja'), (27256,'Javanese','default',439,'jv'), (27257,'Kannada','default',439,'kn'), (27258,'Kirghiz','default',439,'ky'), (27259,'Korean','default',439,'ko'), (27260,'Kurdish','default',439,'ckb'), (27261,'Latvian','default',439,'lv'), (27262,'Lithuanian','default',439,'lt'), (27263,'Macedonian','default',439,'mk'), (27264,'Malay','default',439,'ms'), (27265,'Malayalam','default',439,'ml'), (27266,'Mongolian','default',439,'mn'), (27267,'Nepali','default',439,'ne'), (27268,'Norwegian (BokmÃ¥l)','default',439,'nb'), (27269,'Norwegian (Nynorsk)','default',439,'nn'), (27270,'Persian','default',439,'fa'), (27271,'Peruvian Spanish','default',439,'es-pe'), (27272,'Polish','default',439,'pl'), (27273,'Portuguese','default',439,'pt'), (27274,'Punjabi','default',439,'pa'), (27275,'Romanian','default',439,'ro'), (27276,'Russian','default',439,'ru'), (27277,'Serbian','default',439,'sr'), (27278,'Sinhala','default',439,'si'), (27279,'Slovak','default',439,'sk'), (27280,'Spanish','default',439,'es'), (27281,'Sundanese','default',439,'su'), (27282,'Swahili','default',439,'sw'), (27283,'Swedish','default',439,'sv'), (27284,'Tamil (Sri Lanka)','default',439,'ta-lk'), (27285,'Thai','default',439,'th'), (27286,'Turkish','default',439,'tr'), (27287,'Uighur','default',439,'ug'), (27288,'Ukrainian','default',439,'uk'), (27289,'Uzbek','default',439,'uz'), (27290,'Venezuelan Spanish','default',439,'es-ve'), (27291,'Vietnamese','default',439,'vi'), (27292,'Welsh','default',439,'cy'), (27294,'Albanian','default',440,'sq'), (27295,'Arabic','default',440,'ar'), (27296,'Azerbaijani','default',440,'az'), (27297,'Basque','default',440,'eu'), (27298,'Bengali','default',440,'bn'), (27299,'Bosnian','default',440,'bs'), (27300,'Brazilian Portuguese','default',440,'pt-br'), (27301,'Bulgarian','default',440,'bg'), (27302,'Burmese','default',440,'mya'), (27303,'Catalan','default',440,'ca'), (27304,'Chilean Spanish','default',440,'es-cl'), (27305,'Chinese (China)','default',440,'zh-cn'), (27306,'Chinese (Taiwan)','default',440,'zh-tw'), (27307,'Croatian','default',440,'hr'), (27308,'Czech','default',440,'cs'), (27309,'Danish','default',440,'da'), (27310,'Dutch','default',440,'nl'), (27311,'English (UK)','default',440,'en-gb'), (27312,'Esperanto','default',440,'eo'), (27313,'Estonian','default',440,'et'), (27314,'Faroese','default',440,'fo'), (27315,'Finnish','default',440,'fi'), (27316,'French','default',440,'fr'), (27317,'Frisian','default',440,'fy'), (27318,'Fulah','default',440,'fuc'), (27319,'Galician','default',440,'gl'), (27320,'Georgian','default',440,'ka'), (27321,'German','default',440,'de'), (27322,'Greek','default',440,'el'), (27323,'Hebrew','default',440,'he'), (27324,'Hindi','default',440,'hi'), (27325,'Hungarian','default',440,'hu'), (27326,'Indonesian','default',440,'id'), (27327,'Italian','default',440,'it'), (27328,'Japanese','default',440,'ja'), (27329,'Javanese','default',440,'jv'), (27330,'Kannada','default',440,'kn'), (27331,'Kirghiz','default',440,'ky'), (27332,'Korean','default',440,'ko'), (27333,'Kurdish','default',440,'ckb'), (27334,'Latvian','default',440,'lv'), (27335,'Lithuanian','default',440,'lt'), (27336,'Macedonian','default',440,'mk'), (27337,'Malay','default',440,'ms'), (27338,'Malayalam','default',440,'ml'), (27339,'Mongolian','default',440,'mn'), (27340,'Nepali','default',440,'ne'), (27341,'Norwegian (BokmÃ¥l)','default',440,'nb'), (27342,'Norwegian (Nynorsk)','default',440,'nn'), (27343,'Persian','default',440,'fa'), (27344,'Peruvian Spanish','default',440,'es-pe'), (27345,'Polish','default',440,'pl'), (27346,'Portuguese','default',440,'pt'), (27347,'Punjabi','default',440,'pa'), (27348,'Romanian','default',440,'ro'), (27349,'Russian','default',440,'ru'), (27350,'Serbian','default',440,'sr'), (27351,'Sinhala','default',440,'si'), (27352,'Slovak','default',440,'sk'), (27353,'Spanish','default',440,'es'), (27354,'Sundanese','default',440,'su'), (27355,'Swahili','default',440,'sw'), (27356,'Swedish','default',440,'sv'), (27357,'Tamil (Sri Lanka)','default',440,'ta-lk'), (27358,'Thai','default',440,'th'), (27359,'Turkish','default',440,'tr'), (27360,'Uighur','default',440,'ug'), (27361,'Ukrainian','default',440,'uk'), (27362,'Uzbek','default',440,'uz'), (27363,'Venezuelan Spanish','default',440,'es-ve'), (27364,'Vietnamese','default',440,'vi'), (27365,'Welsh','default',440,'cy'), (27367,'Albanian','default',441,'sq'), (27368,'Arabic','default',441,'ar'), (27369,'Azerbaijani','default',441,'az'), (27370,'Basque','default',441,'eu'), (27371,'Bengali','default',441,'bn'), (27372,'Bosnian','default',441,'bs'), (27373,'Brazilian Portuguese','default',441,'pt-br'), (27374,'Bulgarian','default',441,'bg'), (27375,'Burmese','default',441,'mya'), (27376,'Catalan','default',441,'ca'), (27377,'Chilean Spanish','default',441,'es-cl'), (27378,'Chinese (China)','default',441,'zh-cn'), (27379,'Chinese (Taiwan)','default',441,'zh-tw'), (27380,'Croatian','default',441,'hr'), (27381,'Czech','default',441,'cs'), (27382,'Danish','default',441,'da'), (27383,'Dutch','default',441,'nl'), (27384,'English (UK)','default',441,'en-gb'), (27385,'Esperanto','default',441,'eo'), (27386,'Estonian','default',441,'et'), (27387,'Faroese','default',441,'fo'), (27388,'Finnish','default',441,'fi'), (27389,'French','default',441,'fr'), (27390,'Frisian','default',441,'fy'), (27391,'Fulah','default',441,'fuc'), (27392,'Galician','default',441,'gl'), (27393,'Georgian','default',441,'ka'), (27394,'German','default',441,'de'), (27395,'Greek','default',441,'el'), (27396,'Hebrew','default',441,'he'), (27397,'Hindi','default',441,'hi'), (27398,'Hungarian','default',441,'hu'), (27399,'Indonesian','default',441,'id'), (27400,'Italian','default',441,'it'), (27401,'Japanese','default',441,'ja'), (27402,'Javanese','default',441,'jv'), (27403,'Kannada','default',441,'kn'), (27404,'Kirghiz','default',441,'ky'), (27405,'Korean','default',441,'ko'), (27406,'Kurdish','default',441,'ckb'), (27407,'Latvian','default',441,'lv'), (27408,'Lithuanian','default',441,'lt'), (27409,'Macedonian','default',441,'mk'), (27410,'Malay','default',441,'ms'), (27411,'Malayalam','default',441,'ml'), (27412,'Mongolian','default',441,'mn'), (27413,'Nepali','default',441,'ne'), (27414,'Norwegian (BokmÃ¥l)','default',441,'nb'), (27415,'Norwegian (Nynorsk)','default',441,'nn'), (27416,'Persian','default',441,'fa'), (27417,'Peruvian Spanish','default',441,'es-pe'), (27418,'Polish','default',441,'pl'), (27419,'Portuguese','default',441,'pt'), (27420,'Punjabi','default',441,'pa'), (27421,'Romanian','default',441,'ro'), (27422,'Russian','default',441,'ru'), (27423,'Serbian','default',441,'sr'), (27424,'Sinhala','default',441,'si'), (27425,'Slovak','default',441,'sk'), (27426,'Spanish','default',441,'es'), (27427,'Sundanese','default',441,'su'), (27428,'Swahili','default',441,'sw'), (27429,'Swedish','default',441,'sv'), (27430,'Tamil (Sri Lanka)','default',441,'ta-lk'), (27431,'Thai','default',441,'th'), (27432,'Turkish','default',441,'tr'), (27433,'Uighur','default',441,'ug'), (27434,'Ukrainian','default',441,'uk'), (27435,'Uzbek','default',441,'uz'), (27436,'Venezuelan Spanish','default',441,'es-ve'), (27437,'Vietnamese','default',441,'vi'), (27438,'Welsh','default',441,'cy'), (27440,'Albanian','default',442,'sq'), (27441,'Arabic','default',442,'ar'), (27442,'Azerbaijani','default',442,'az'), (27443,'Basque','default',442,'eu'), (27444,'Bengali','default',442,'bn'), (27445,'Bosnian','default',442,'bs'), (27446,'Brazilian Portuguese','default',442,'pt-br'), (27447,'Bulgarian','default',442,'bg'), (27448,'Burmese','default',442,'mya'), (27449,'Catalan','default',442,'ca'), (27450,'Chilean Spanish','default',442,'es-cl'), (27451,'Chinese (China)','default',442,'zh-cn'), (27452,'Chinese (Taiwan)','default',442,'zh-tw'), (27453,'Croatian','default',442,'hr'), (27454,'Czech','default',442,'cs'), (27455,'Danish','default',442,'da'), (27456,'Dutch','default',442,'nl'), (27457,'English (UK)','default',442,'en-gb'), (27458,'Esperanto','default',442,'eo'), (27459,'Estonian','default',442,'et'), (27460,'Faroese','default',442,'fo'), (27461,'Finnish','default',442,'fi'), (27462,'French','default',442,'fr'), (27463,'Frisian','default',442,'fy'), (27464,'Fulah','default',442,'fuc'), (27465,'Galician','default',442,'gl'), (27466,'Georgian','default',442,'ka'), (27467,'German','default',442,'de'), (27468,'Greek','default',442,'el'), (27469,'Hebrew','default',442,'he'), (27470,'Hindi','default',442,'hi'), (27471,'Hungarian','default',442,'hu'), (27472,'Indonesian','default',442,'id'), (27473,'Italian','default',442,'it'), (27474,'Japanese','default',442,'ja'), (27475,'Javanese','default',442,'jv'), (27476,'Kannada','default',442,'kn'), (27477,'Kirghiz','default',442,'ky'), (27478,'Korean','default',442,'ko'), (27479,'Kurdish','default',442,'ckb'), (27480,'Latvian','default',442,'lv'), (27481,'Lithuanian','default',442,'lt'), (27482,'Macedonian','default',442,'mk'), (27483,'Malay','default',442,'ms'), (27484,'Malayalam','default',442,'ml'), (27485,'Mongolian','default',442,'mn'), (27486,'Nepali','default',442,'ne'), (27487,'Norwegian (BokmÃ¥l)','default',442,'nb'), (27488,'Norwegian (Nynorsk)','default',442,'nn'), (27489,'Persian','default',442,'fa'), (27490,'Peruvian Spanish','default',442,'es-pe'), (27491,'Polish','default',442,'pl'), (27492,'Portuguese','default',442,'pt'), (27493,'Punjabi','default',442,'pa'), (27494,'Romanian','default',442,'ro'), (27495,'Russian','default',442,'ru'), (27496,'Serbian','default',442,'sr'), (27497,'Sinhala','default',442,'si'), (27498,'Slovak','default',442,'sk'), (27499,'Spanish','default',442,'es'), (27500,'Sundanese','default',442,'su'), (27501,'Swahili','default',442,'sw'), (27502,'Swedish','default',442,'sv'), (27503,'Tamil (Sri Lanka)','default',442,'ta-lk'), (27504,'Thai','default',442,'th'), (27505,'Turkish','default',442,'tr'), (27506,'Uighur','default',442,'ug'), (27507,'Ukrainian','default',442,'uk'), (27508,'Uzbek','default',442,'uz'), (27509,'Venezuelan Spanish','default',442,'es-ve'), (27510,'Vietnamese','default',442,'vi'), (27511,'Welsh','default',442,'cy'), (27513,'Albanian','default',443,'sq'), (27514,'Arabic','default',443,'ar'), (27515,'Azerbaijani','default',443,'az'), (27516,'Basque','default',443,'eu'), (27517,'Bengali','default',443,'bn'), (27518,'Bosnian','default',443,'bs'), (27519,'Brazilian Portuguese','default',443,'pt-br'), (27520,'Bulgarian','default',443,'bg'), (27521,'Burmese','default',443,'mya'), (27522,'Catalan','default',443,'ca'), (27523,'Chilean Spanish','default',443,'es-cl'), (27524,'Chinese (China)','default',443,'zh-cn'), (27525,'Chinese (Taiwan)','default',443,'zh-tw'), (27526,'Croatian','default',443,'hr'), (27527,'Czech','default',443,'cs'), (27528,'Danish','default',443,'da'), (27529,'Dutch','default',443,'nl'), (27530,'English (UK)','default',443,'en-gb'), (27531,'Esperanto','default',443,'eo'), (27532,'Estonian','default',443,'et'), (27533,'Faroese','default',443,'fo'), (27534,'Finnish','default',443,'fi'), (27535,'French','default',443,'fr'), (27536,'Frisian','default',443,'fy'), (27537,'Fulah','default',443,'fuc'), (27538,'Galician','default',443,'gl'), (27539,'Georgian','default',443,'ka'), (27540,'German','default',443,'de'), (27541,'Greek','default',443,'el'), (27542,'Hebrew','default',443,'he'), (27543,'Hindi','default',443,'hi'), (27544,'Hungarian','default',443,'hu'), (27545,'Indonesian','default',443,'id'), (27546,'Italian','default',443,'it'), (27547,'Japanese','default',443,'ja'), (27548,'Javanese','default',443,'jv'), (27549,'Kannada','default',443,'kn'), (27550,'Kirghiz','default',443,'ky'), (27551,'Korean','default',443,'ko'), (27552,'Kurdish','default',443,'ckb'), (27553,'Latvian','default',443,'lv'), (27554,'Lithuanian','default',443,'lt'), (27555,'Macedonian','default',443,'mk'), (27556,'Malay','default',443,'ms'), (27557,'Malayalam','default',443,'ml'), (27558,'Mongolian','default',443,'mn'), (27559,'Nepali','default',443,'ne'), (27560,'Norwegian (BokmÃ¥l)','default',443,'nb'), (27561,'Norwegian (Nynorsk)','default',443,'nn'), (27562,'Persian','default',443,'fa'), (27563,'Peruvian Spanish','default',443,'es-pe'), (27564,'Polish','default',443,'pl'), (27565,'Portuguese','default',443,'pt'), (27566,'Punjabi','default',443,'pa'), (27567,'Romanian','default',443,'ro'), (27568,'Russian','default',443,'ru'), (27569,'Serbian','default',443,'sr'), (27570,'Sinhala','default',443,'si'), (27571,'Slovak','default',443,'sk'), (27572,'Spanish','default',443,'es'), (27573,'Sundanese','default',443,'su'), (27574,'Swahili','default',443,'sw'), (27575,'Swedish','default',443,'sv'), (27576,'Tamil (Sri Lanka)','default',443,'ta-lk'), (27577,'Thai','default',443,'th'), (27578,'Turkish','default',443,'tr'), (27579,'Uighur','default',443,'ug'), (27580,'Ukrainian','default',443,'uk'), (27581,'Uzbek','default',443,'uz'), (27582,'Venezuelan Spanish','default',443,'es-ve'), (27583,'Vietnamese','default',443,'vi'), (27584,'Welsh','default',443,'cy'), (27586,'Albanian','default',444,'sq'), (27587,'Arabic','default',444,'ar'), (27588,'Azerbaijani','default',444,'az'), (27589,'Basque','default',444,'eu'), (27590,'Bengali','default',444,'bn'), (27591,'Bosnian','default',444,'bs'), (27592,'Brazilian Portuguese','default',444,'pt-br'), (27593,'Bulgarian','default',444,'bg'), (27594,'Burmese','default',444,'mya'), (27595,'Catalan','default',444,'ca'), (27596,'Chilean Spanish','default',444,'es-cl'), (27597,'Chinese (China)','default',444,'zh-cn'), (27598,'Chinese (Taiwan)','default',444,'zh-tw'), (27599,'Croatian','default',444,'hr'), (27600,'Czech','default',444,'cs'), (27601,'Danish','default',444,'da'), (27602,'Dutch','default',444,'nl'), (27603,'English (UK)','default',444,'en-gb'), (27604,'Esperanto','default',444,'eo'), (27605,'Estonian','default',444,'et'), (27606,'Faroese','default',444,'fo'), (27607,'Finnish','default',444,'fi'), (27608,'French','default',444,'fr'), (27609,'Frisian','default',444,'fy'), (27610,'Fulah','default',444,'fuc'), (27611,'Galician','default',444,'gl'), (27612,'Georgian','default',444,'ka'), (27613,'German','default',444,'de'), (27614,'Greek','default',444,'el'), (27615,'Hebrew','default',444,'he'), (27616,'Hindi','default',444,'hi'), (27617,'Hungarian','default',444,'hu'), (27618,'Indonesian','default',444,'id'), (27619,'Italian','default',444,'it'), (27620,'Japanese','default',444,'ja'), (27621,'Javanese','default',444,'jv'), (27622,'Kannada','default',444,'kn'), (27623,'Kirghiz','default',444,'ky'), (27624,'Korean','default',444,'ko'), (27625,'Kurdish','default',444,'ckb'), (27626,'Latvian','default',444,'lv'), (27627,'Lithuanian','default',444,'lt'), (27628,'Macedonian','default',444,'mk'), (27629,'Malay','default',444,'ms'), (27630,'Malayalam','default',444,'ml'), (27631,'Mongolian','default',444,'mn'), (27632,'Nepali','default',444,'ne'), (27633,'Norwegian (BokmÃ¥l)','default',444,'nb'), (27634,'Norwegian (Nynorsk)','default',444,'nn'), (27635,'Persian','default',444,'fa'), (27636,'Peruvian Spanish','default',444,'es-pe'), (27637,'Polish','default',444,'pl'), (27638,'Portuguese','default',444,'pt'), (27639,'Punjabi','default',444,'pa'), (27640,'Romanian','default',444,'ro'), (27641,'Russian','default',444,'ru'), (27642,'Serbian','default',444,'sr'), (27643,'Sinhala','default',444,'si'), (27644,'Slovak','default',444,'sk'), (27645,'Spanish','default',444,'es'), (27646,'Sundanese','default',444,'su'), (27647,'Swahili','default',444,'sw'), (27648,'Swedish','default',444,'sv'), (27649,'Tamil (Sri Lanka)','default',444,'ta-lk'), (27650,'Thai','default',444,'th'), (27651,'Turkish','default',444,'tr'), (27652,'Uighur','default',444,'ug'), (27653,'Ukrainian','default',444,'uk'), (27654,'Uzbek','default',444,'uz'), (27655,'Venezuelan Spanish','default',444,'es-ve'), (27656,'Vietnamese','default',444,'vi'), (27657,'Welsh','default',444,'cy'), (27658,'Lithuanian','default',31,'lt'), (27660,'Albanian','default',445,'sq'), (27661,'Arabic','default',445,'ar'), (27662,'Azerbaijani','default',445,'az'), (27663,'Basque','default',445,'eu'), (27664,'Bengali','default',445,'bn'), (27665,'Bosnian','default',445,'bs'), (27666,'Brazilian Portuguese','default',445,'pt-br'), (27667,'Bulgarian','default',445,'bg'), (27668,'Burmese','default',445,'mya'), (27669,'Catalan','default',445,'ca'), (27670,'Chilean Spanish','default',445,'es-cl'), (27671,'Chinese (China)','default',445,'zh-cn'), (27672,'Chinese (Taiwan)','default',445,'zh-tw'), (27673,'Croatian','default',445,'hr'), (27674,'Czech','default',445,'cs'), (27675,'Danish','default',445,'da'), (27676,'Dutch','default',445,'nl'), (27677,'English (UK)','default',445,'en-gb'), (27678,'Esperanto','default',445,'eo'), (27679,'Estonian','default',445,'et'), (27680,'Faroese','default',445,'fo'), (27681,'Finnish','default',445,'fi'), (27682,'French','default',445,'fr'), (27683,'Frisian','default',445,'fy'), (27684,'Fulah','default',445,'fuc'), (27685,'Galician','default',445,'gl'), (27686,'Georgian','default',445,'ka'), (27687,'German','default',445,'de'), (27688,'Greek','default',445,'el'), (27689,'Hebrew','default',445,'he'), (27690,'Hindi','default',445,'hi'), (27691,'Hungarian','default',445,'hu'), (27692,'Indonesian','default',445,'id'), (27693,'Italian','default',445,'it'), (27694,'Japanese','default',445,'ja'), (27695,'Javanese','default',445,'jv'), (27696,'Kannada','default',445,'kn'), (27697,'Kirghiz','default',445,'ky'), (27698,'Korean','default',445,'ko'), (27699,'Kurdish','default',445,'ckb'), (27700,'Latvian','default',445,'lv'), (27701,'Lithuanian','default',445,'lt'), (27702,'Macedonian','default',445,'mk'), (27703,'Malay','default',445,'ms'), (27704,'Malayalam','default',445,'ml'), (27705,'Mongolian','default',445,'mn'), (27706,'Nepali','default',445,'ne'), (27707,'Norwegian (BokmÃ¥l)','default',445,'nb'), (27708,'Norwegian (Nynorsk)','default',445,'nn'), (27709,'Persian','default',445,'fa'), (27710,'Peruvian Spanish','default',445,'es-pe'), (27711,'Polish','default',445,'pl'), (27712,'Portuguese','default',445,'pt'), (27713,'Punjabi','default',445,'pa'), (27714,'Romanian','default',445,'ro'), (27715,'Russian','default',445,'ru'), (27716,'Serbian','default',445,'sr'), (27717,'Sinhala','default',445,'si'), (27718,'Slovak','default',445,'sk'), (27719,'Spanish','default',445,'es'), (27720,'Sundanese','default',445,'su'), (27721,'Swahili','default',445,'sw'), (27722,'Swedish','default',445,'sv'), (27723,'Tamil (Sri Lanka)','default',445,'ta-lk'), (27724,'Thai','default',445,'th'), (27725,'Turkish','default',445,'tr'), (27726,'Uighur','default',445,'ug'), (27727,'Ukrainian','default',445,'uk'), (27728,'Uzbek','default',445,'uz'), (27729,'Venezuelan Spanish','default',445,'es-ve'), (27730,'Vietnamese','default',445,'vi'), (27731,'Welsh','default',445,'cy'), (27733,'Albanian','default',446,'sq'), (27734,'Arabic','default',446,'ar'), (27735,'Azerbaijani','default',446,'az'), (27736,'Basque','default',446,'eu'), (27737,'Bengali','default',446,'bn'), (27738,'Bosnian','default',446,'bs'), (27739,'Brazilian Portuguese','default',446,'pt-br'), (27740,'Bulgarian','default',446,'bg'), (27741,'Burmese','default',446,'mya'), (27742,'Catalan','default',446,'ca'), (27743,'Chilean Spanish','default',446,'es-cl'), (27744,'Chinese (China)','default',446,'zh-cn'), (27745,'Chinese (Taiwan)','default',446,'zh-tw'), (27746,'Croatian','default',446,'hr'), (27747,'Czech','default',446,'cs'), (27748,'Danish','default',446,'da'), (27749,'Dutch','default',446,'nl'), (27750,'English (UK)','default',446,'en-gb'), (27751,'Esperanto','default',446,'eo'), (27752,'Estonian','default',446,'et'), (27753,'Faroese','default',446,'fo'), (27754,'Finnish','default',446,'fi'), (27755,'French','default',446,'fr'), (27756,'Frisian','default',446,'fy'), (27757,'Fulah','default',446,'fuc'), (27758,'Galician','default',446,'gl'), (27759,'Georgian','default',446,'ka'), (27760,'German','default',446,'de'), (27761,'Greek','default',446,'el'), (27762,'Hebrew','default',446,'he'), (27763,'Hindi','default',446,'hi'), (27764,'Hungarian','default',446,'hu'), (27765,'Indonesian','default',446,'id'), (27766,'Italian','default',446,'it'), (27767,'Japanese','default',446,'ja'), (27768,'Javanese','default',446,'jv'), (27769,'Kannada','default',446,'kn'), (27770,'Kirghiz','default',446,'ky'), (27771,'Korean','default',446,'ko'), (27772,'Kurdish','default',446,'ckb'), (27773,'Latvian','default',446,'lv'), (27774,'Lithuanian','default',446,'lt'), (27775,'Macedonian','default',446,'mk'), (27776,'Malay','default',446,'ms'), (27777,'Malayalam','default',446,'ml'), (27778,'Mongolian','default',446,'mn'), (27779,'Nepali','default',446,'ne'), (27780,'Norwegian (BokmÃ¥l)','default',446,'nb'), (27781,'Norwegian (Nynorsk)','default',446,'nn'), (27782,'Persian','default',446,'fa'), (27783,'Peruvian Spanish','default',446,'es-pe'), (27784,'Polish','default',446,'pl'), (27785,'Portuguese','default',446,'pt'), (27786,'Punjabi','default',446,'pa'), (27787,'Romanian','default',446,'ro'), (27788,'Russian','default',446,'ru'), (27789,'Serbian','default',446,'sr'), (27790,'Sinhala','default',446,'si'), (27791,'Slovak','default',446,'sk'), (27792,'Spanish','default',446,'es'), (27793,'Sundanese','default',446,'su'), (27794,'Swahili','default',446,'sw'), (27795,'Swedish','default',446,'sv'), (27796,'Tamil (Sri Lanka)','default',446,'ta-lk'), (27797,'Thai','default',446,'th'), (27798,'Turkish','default',446,'tr'), (27799,'Uighur','default',446,'ug'), (27800,'Ukrainian','default',446,'uk'), (27801,'Uzbek','default',446,'uz'), (27802,'Venezuelan Spanish','default',446,'es-ve'), (27803,'Vietnamese','default',446,'vi'), (27804,'Welsh','default',446,'cy'), (27806,'Albanian','default',447,'sq'), (27807,'Arabic','default',447,'ar'), (27808,'Azerbaijani','default',447,'az'), (27809,'Basque','default',447,'eu'), (27810,'Bengali','default',447,'bn'), (27811,'Bosnian','default',447,'bs'), (27812,'Brazilian Portuguese','default',447,'pt-br'), (27813,'Bulgarian','default',447,'bg'), (27814,'Burmese','default',447,'mya'), (27815,'Catalan','default',447,'ca'), (27816,'Chilean Spanish','default',447,'es-cl'), (27817,'Chinese (China)','default',447,'zh-cn'), (27818,'Chinese (Taiwan)','default',447,'zh-tw'), (27819,'Croatian','default',447,'hr'), (27820,'Czech','default',447,'cs'), (27821,'Danish','default',447,'da'), (27822,'Dutch','default',447,'nl'), (27823,'English (UK)','default',447,'en-gb'), (27824,'Esperanto','default',447,'eo'), (27825,'Estonian','default',447,'et'), (27826,'Faroese','default',447,'fo'), (27827,'Finnish','default',447,'fi'), (27828,'French','default',447,'fr'), (27829,'Frisian','default',447,'fy'), (27830,'Fulah','default',447,'fuc'), (27831,'Galician','default',447,'gl'), (27832,'Georgian','default',447,'ka'), (27833,'German','default',447,'de'), (27834,'Greek','default',447,'el'), (27835,'Hebrew','default',447,'he'), (27836,'Hindi','default',447,'hi'), (27837,'Hungarian','default',447,'hu'), (27838,'Indonesian','default',447,'id'), (27839,'Italian','default',447,'it'), (27840,'Japanese','default',447,'ja'), (27841,'Javanese','default',447,'jv'), (27842,'Kannada','default',447,'kn'), (27843,'Kirghiz','default',447,'ky'), (27844,'Korean','default',447,'ko'), (27845,'Kurdish','default',447,'ckb'), (27846,'Latvian','default',447,'lv'), (27847,'Lithuanian','default',447,'lt'), (27848,'Macedonian','default',447,'mk'), (27849,'Malay','default',447,'ms'), (27850,'Malayalam','default',447,'ml'), (27851,'Mongolian','default',447,'mn'), (27852,'Nepali','default',447,'ne'), (27853,'Norwegian (BokmÃ¥l)','default',447,'nb'), (27854,'Norwegian (Nynorsk)','default',447,'nn'), (27855,'Persian','default',447,'fa'), (27856,'Peruvian Spanish','default',447,'es-pe'), (27857,'Polish','default',447,'pl'), (27858,'Portuguese','default',447,'pt'), (27859,'Punjabi','default',447,'pa'), (27860,'Romanian','default',447,'ro'), (27861,'Russian','default',447,'ru'), (27862,'Serbian','default',447,'sr'), (27863,'Sinhala','default',447,'si'), (27864,'Slovak','default',447,'sk'), (27865,'Spanish','default',447,'es'), (27866,'Sundanese','default',447,'su'), (27867,'Swahili','default',447,'sw'), (27868,'Swedish','default',447,'sv'), (27869,'Tamil (Sri Lanka)','default',447,'ta-lk'), (27870,'Thai','default',447,'th'), (27871,'Turkish','default',447,'tr'), (27872,'Uighur','default',447,'ug'), (27873,'Ukrainian','default',447,'uk'), (27874,'Uzbek','default',447,'uz'), (27875,'Venezuelan Spanish','default',447,'es-ve'), (27876,'Vietnamese','default',447,'vi'), (27877,'Welsh','default',447,'cy'), (27879,'Albanian','default',448,'sq'), (27880,'Arabic','default',448,'ar'), (27881,'Azerbaijani','default',448,'az'), (27882,'Basque','default',448,'eu'), (27883,'Bengali','default',448,'bn'), (27884,'Bosnian','default',448,'bs'), (27885,'Brazilian Portuguese','default',448,'pt-br'), (27886,'Bulgarian','default',448,'bg'), (27887,'Burmese','default',448,'mya'), (27888,'Catalan','default',448,'ca'), (27889,'Chilean Spanish','default',448,'es-cl'), (27890,'Chinese (China)','default',448,'zh-cn'), (27891,'Chinese (Taiwan)','default',448,'zh-tw'), (27892,'Croatian','default',448,'hr'), (27893,'Czech','default',448,'cs'), (27894,'Danish','default',448,'da'), (27895,'Dutch','default',448,'nl'), (27896,'English (UK)','default',448,'en-gb'), (27897,'Esperanto','default',448,'eo'), (27898,'Estonian','default',448,'et'), (27899,'Faroese','default',448,'fo'), (27900,'Finnish','default',448,'fi'), (27901,'French','default',448,'fr'), (27902,'Frisian','default',448,'fy'), (27903,'Fulah','default',448,'fuc'), (27904,'Galician','default',448,'gl'), (27905,'Georgian','default',448,'ka'), (27906,'German','default',448,'de'), (27907,'Greek','default',448,'el'), (27908,'Hebrew','default',448,'he'), (27909,'Hindi','default',448,'hi'), (27910,'Hungarian','default',448,'hu'), (27911,'Indonesian','default',448,'id'), (27912,'Italian','default',448,'it'), (27913,'Japanese','default',448,'ja'), (27914,'Javanese','default',448,'jv'), (27915,'Kannada','default',448,'kn'), (27916,'Kirghiz','default',448,'ky'), (27917,'Korean','default',448,'ko'), (27918,'Kurdish','default',448,'ckb'), (27919,'Latvian','default',448,'lv'), (27920,'Lithuanian','default',448,'lt'), (27921,'Macedonian','default',448,'mk'), (27922,'Malay','default',448,'ms'), (27923,'Malayalam','default',448,'ml'), (27924,'Mongolian','default',448,'mn'), (27925,'Nepali','default',448,'ne'), (27926,'Norwegian (BokmÃ¥l)','default',448,'nb'), (27927,'Norwegian (Nynorsk)','default',448,'nn'), (27928,'Persian','default',448,'fa'), (27929,'Peruvian Spanish','default',448,'es-pe'), (27930,'Polish','default',448,'pl'), (27931,'Portuguese','default',448,'pt'), (27932,'Punjabi','default',448,'pa'), (27933,'Romanian','default',448,'ro'), (27934,'Russian','default',448,'ru'), (27935,'Serbian','default',448,'sr'), (27936,'Sinhala','default',448,'si'), (27937,'Slovak','default',448,'sk'), (27938,'Spanish','default',448,'es'), (27939,'Sundanese','default',448,'su'), (27940,'Swahili','default',448,'sw'), (27941,'Swedish','default',448,'sv'), (27942,'Tamil (Sri Lanka)','default',448,'ta-lk'), (27943,'Thai','default',448,'th'), (27944,'Turkish','default',448,'tr'), (27945,'Uighur','default',448,'ug'), (27946,'Ukrainian','default',448,'uk'), (27947,'Uzbek','default',448,'uz'), (27948,'Venezuelan Spanish','default',448,'es-ve'), (27949,'Vietnamese','default',448,'vi'), (27950,'Welsh','default',448,'cy'), (27951,'Lithuanian','default',37,'lt'), (27953,'Albanian','default',449,'sq'), (27954,'Arabic','default',449,'ar'), (27955,'Azerbaijani','default',449,'az'), (27956,'Basque','default',449,'eu'), (27957,'Bengali','default',449,'bn'), (27958,'Bosnian','default',449,'bs'), (27959,'Brazilian Portuguese','default',449,'pt-br'), (27960,'Bulgarian','default',449,'bg'), (27961,'Burmese','default',449,'mya'), (27962,'Catalan','default',449,'ca'), (27963,'Chilean Spanish','default',449,'es-cl'), (27964,'Chinese (China)','default',449,'zh-cn'), (27965,'Chinese (Taiwan)','default',449,'zh-tw'), (27966,'Croatian','default',449,'hr'), (27967,'Czech','default',449,'cs'), (27968,'Danish','default',449,'da'), (27969,'Dutch','default',449,'nl'), (27970,'English (UK)','default',449,'en-gb'), (27971,'Esperanto','default',449,'eo'), (27972,'Estonian','default',449,'et'), (27973,'Faroese','default',449,'fo'), (27974,'Finnish','default',449,'fi'), (27975,'French','default',449,'fr'), (27976,'Frisian','default',449,'fy'), (27977,'Fulah','default',449,'fuc'), (27978,'Galician','default',449,'gl'), (27979,'Georgian','default',449,'ka'), (27980,'German','default',449,'de'), (27981,'Greek','default',449,'el'), (27982,'Hebrew','default',449,'he'), (27983,'Hindi','default',449,'hi'), (27984,'Hungarian','default',449,'hu'), (27985,'Indonesian','default',449,'id'), (27986,'Italian','default',449,'it'), (27987,'Japanese','default',449,'ja'), (27988,'Javanese','default',449,'jv'), (27989,'Kannada','default',449,'kn'), (27990,'Kirghiz','default',449,'ky'), (27991,'Korean','default',449,'ko'), (27992,'Kurdish','default',449,'ckb'), (27993,'Latvian','default',449,'lv'), (27994,'Lithuanian','default',449,'lt'), (27995,'Macedonian','default',449,'mk'), (27996,'Malay','default',449,'ms'), (27997,'Malayalam','default',449,'ml'), (27998,'Mongolian','default',449,'mn'), (27999,'Nepali','default',449,'ne'), (28000,'Norwegian (BokmÃ¥l)','default',449,'nb'), (28001,'Norwegian (Nynorsk)','default',449,'nn'), (28002,'Persian','default',449,'fa'), (28003,'Peruvian Spanish','default',449,'es-pe'), (28004,'Polish','default',449,'pl'), (28005,'Portuguese','default',449,'pt'), (28006,'Punjabi','default',449,'pa'), (28007,'Romanian','default',449,'ro'), (28008,'Russian','default',449,'ru'), (28009,'Serbian','default',449,'sr'), (28010,'Sinhala','default',449,'si'), (28011,'Slovak','default',449,'sk'), (28012,'Spanish','default',449,'es'), (28013,'Sundanese','default',449,'su'), (28014,'Swahili','default',449,'sw'), (28015,'Swedish','default',449,'sv'), (28016,'Tamil (Sri Lanka)','default',449,'ta-lk'), (28017,'Thai','default',449,'th'), (28018,'Turkish','default',449,'tr'), (28019,'Uighur','default',449,'ug'), (28020,'Ukrainian','default',449,'uk'), (28021,'Uzbek','default',449,'uz'), (28022,'Venezuelan Spanish','default',449,'es-ve'), (28023,'Vietnamese','default',449,'vi'), (28024,'Welsh','default',449,'cy'), (28026,'Albanian','default',450,'sq'), (28027,'Arabic','default',450,'ar'), (28028,'Azerbaijani','default',450,'az'), (28029,'Basque','default',450,'eu'), (28030,'Bengali','default',450,'bn'), (28031,'Bosnian','default',450,'bs'), (28032,'Brazilian Portuguese','default',450,'pt-br'), (28033,'Bulgarian','default',450,'bg'), (28034,'Burmese','default',450,'mya'), (28035,'Catalan','default',450,'ca'), (28036,'Chilean Spanish','default',450,'es-cl'), (28037,'Chinese (China)','default',450,'zh-cn'), (28038,'Chinese (Taiwan)','default',450,'zh-tw'), (28039,'Croatian','default',450,'hr'), (28040,'Czech','default',450,'cs'), (28041,'Danish','default',450,'da'), (28042,'Dutch','default',450,'nl'), (28043,'English (UK)','default',450,'en-gb'), (28044,'Esperanto','default',450,'eo'), (28045,'Estonian','default',450,'et'), (28046,'Faroese','default',450,'fo'), (28047,'Finnish','default',450,'fi'), (28048,'French','default',450,'fr'), (28049,'Frisian','default',450,'fy'), (28050,'Fulah','default',450,'fuc'), (28051,'Galician','default',450,'gl'), (28052,'Georgian','default',450,'ka'), (28053,'German','default',450,'de'), (28054,'Greek','default',450,'el'), (28055,'Hebrew','default',450,'he'), (28056,'Hindi','default',450,'hi'), (28057,'Hungarian','default',450,'hu'), (28058,'Indonesian','default',450,'id'), (28059,'Italian','default',450,'it'), (28060,'Japanese','default',450,'ja'), (28061,'Javanese','default',450,'jv'), (28062,'Kannada','default',450,'kn'), (28063,'Kirghiz','default',450,'ky'), (28064,'Korean','default',450,'ko'), (28065,'Kurdish','default',450,'ckb'), (28066,'Latvian','default',450,'lv'), (28067,'Lithuanian','default',450,'lt'), (28068,'Macedonian','default',450,'mk'), (28069,'Malay','default',450,'ms'), (28070,'Malayalam','default',450,'ml'), (28071,'Mongolian','default',450,'mn'), (28072,'Nepali','default',450,'ne'), (28073,'Norwegian (BokmÃ¥l)','default',450,'nb'), (28074,'Norwegian (Nynorsk)','default',450,'nn'), (28075,'Persian','default',450,'fa'), (28076,'Peruvian Spanish','default',450,'es-pe'), (28077,'Polish','default',450,'pl'), (28078,'Portuguese','default',450,'pt'), (28079,'Punjabi','default',450,'pa'), (28080,'Romanian','default',450,'ro'), (28081,'Russian','default',450,'ru'), (28082,'Serbian','default',450,'sr'), (28083,'Sinhala','default',450,'si'), (28084,'Slovak','default',450,'sk'), (28085,'Spanish','default',450,'es'), (28086,'Sundanese','default',450,'su'), (28087,'Swahili','default',450,'sw'), (28088,'Swedish','default',450,'sv'), (28089,'Tamil (Sri Lanka)','default',450,'ta-lk'), (28090,'Thai','default',450,'th'), (28091,'Turkish','default',450,'tr'), (28092,'Uighur','default',450,'ug'), (28093,'Ukrainian','default',450,'uk'), (28094,'Uzbek','default',450,'uz'), (28095,'Venezuelan Spanish','default',450,'es-ve'), (28096,'Vietnamese','default',450,'vi'), (28097,'Welsh','default',450,'cy'), (28099,'Albanian','default',451,'sq'), (28100,'Arabic','default',451,'ar'), (28101,'Azerbaijani','default',451,'az'), (28102,'Basque','default',451,'eu'), (28103,'Bengali','default',451,'bn'), (28104,'Bosnian','default',451,'bs'), (28105,'Brazilian Portuguese','default',451,'pt-br'), (28106,'Bulgarian','default',451,'bg'), (28107,'Burmese','default',451,'mya'), (28108,'Catalan','default',451,'ca'), (28109,'Chilean Spanish','default',451,'es-cl'), (28110,'Chinese (China)','default',451,'zh-cn'), (28111,'Chinese (Taiwan)','default',451,'zh-tw'), (28112,'Croatian','default',451,'hr'), (28113,'Czech','default',451,'cs'), (28114,'Danish','default',451,'da'), (28115,'Dutch','default',451,'nl'), (28116,'English (UK)','default',451,'en-gb'), (28117,'Esperanto','default',451,'eo'), (28118,'Estonian','default',451,'et'), (28119,'Faroese','default',451,'fo'), (28120,'Finnish','default',451,'fi'), (28121,'French','default',451,'fr'), (28122,'Frisian','default',451,'fy'), (28123,'Fulah','default',451,'fuc'), (28124,'Galician','default',451,'gl'), (28125,'Georgian','default',451,'ka'), (28126,'German','default',451,'de'), (28127,'Greek','default',451,'el'), (28128,'Hebrew','default',451,'he'), (28129,'Hindi','default',451,'hi'), (28130,'Hungarian','default',451,'hu'), (28131,'Indonesian','default',451,'id'), (28132,'Italian','default',451,'it'), (28133,'Japanese','default',451,'ja'), (28134,'Javanese','default',451,'jv'), (28135,'Kannada','default',451,'kn'), (28136,'Kirghiz','default',451,'ky'), (28137,'Korean','default',451,'ko'), (28138,'Kurdish','default',451,'ckb'), (28139,'Latvian','default',451,'lv'), (28140,'Lithuanian','default',451,'lt'), (28141,'Macedonian','default',451,'mk'), (28142,'Malay','default',451,'ms'), (28143,'Malayalam','default',451,'ml'), (28144,'Mongolian','default',451,'mn'), (28145,'Nepali','default',451,'ne'), (28146,'Norwegian (BokmÃ¥l)','default',451,'nb'), (28147,'Norwegian (Nynorsk)','default',451,'nn'), (28148,'Persian','default',451,'fa'), (28149,'Peruvian Spanish','default',451,'es-pe'), (28150,'Polish','default',451,'pl'), (28151,'Portuguese','default',451,'pt'), (28152,'Punjabi','default',451,'pa'), (28153,'Romanian','default',451,'ro'), (28154,'Russian','default',451,'ru'), (28155,'Serbian','default',451,'sr'), (28156,'Sinhala','default',451,'si'), (28157,'Slovak','default',451,'sk'), (28158,'Spanish','default',451,'es'), (28159,'Sundanese','default',451,'su'), (28160,'Swahili','default',451,'sw'), (28161,'Swedish','default',451,'sv'), (28162,'Tamil (Sri Lanka)','default',451,'ta-lk'), (28163,'Thai','default',451,'th'), (28164,'Turkish','default',451,'tr'), (28165,'Uighur','default',451,'ug'), (28166,'Ukrainian','default',451,'uk'), (28167,'Uzbek','default',451,'uz'), (28168,'Venezuelan Spanish','default',451,'es-ve'), (28169,'Vietnamese','default',451,'vi'), (28170,'Welsh','default',451,'cy'), (28172,'Albanian','default',452,'sq'), (28173,'Arabic','default',452,'ar'), (28174,'Azerbaijani','default',452,'az'), (28175,'Basque','default',452,'eu'), (28176,'Bengali','default',452,'bn'), (28177,'Bosnian','default',452,'bs'), (28178,'Brazilian Portuguese','default',452,'pt-br'), (28179,'Bulgarian','default',452,'bg'), (28180,'Burmese','default',452,'mya'), (28181,'Catalan','default',452,'ca'), (28182,'Chilean Spanish','default',452,'es-cl'), (28183,'Chinese (China)','default',452,'zh-cn'), (28184,'Chinese (Taiwan)','default',452,'zh-tw'), (28185,'Croatian','default',452,'hr'), (28186,'Czech','default',452,'cs'), (28187,'Danish','default',452,'da'), (28188,'Dutch','default',452,'nl'), (28189,'English (UK)','default',452,'en-gb'), (28190,'Esperanto','default',452,'eo'), (28191,'Estonian','default',452,'et'), (28192,'Faroese','default',452,'fo'), (28193,'Finnish','default',452,'fi'), (28194,'French','default',452,'fr'), (28195,'Frisian','default',452,'fy'), (28196,'Fulah','default',452,'fuc'), (28197,'Galician','default',452,'gl'), (28198,'Georgian','default',452,'ka'), (28199,'German','default',452,'de'), (28200,'Greek','default',452,'el'), (28201,'Hebrew','default',452,'he'), (28202,'Hindi','default',452,'hi'), (28203,'Hungarian','default',452,'hu'), (28204,'Indonesian','default',452,'id'), (28205,'Italian','default',452,'it'), (28206,'Japanese','default',452,'ja'), (28207,'Javanese','default',452,'jv'), (28208,'Kannada','default',452,'kn'), (28209,'Kirghiz','default',452,'ky'), (28210,'Korean','default',452,'ko'), (28211,'Kurdish','default',452,'ckb'), (28212,'Latvian','default',452,'lv'), (28213,'Lithuanian','default',452,'lt'), (28214,'Macedonian','default',452,'mk'), (28215,'Malay','default',452,'ms'), (28216,'Malayalam','default',452,'ml'), (28217,'Mongolian','default',452,'mn'), (28218,'Nepali','default',452,'ne'), (28219,'Norwegian (BokmÃ¥l)','default',452,'nb'), (28220,'Norwegian (Nynorsk)','default',452,'nn'), (28221,'Persian','default',452,'fa'), (28222,'Peruvian Spanish','default',452,'es-pe'), (28223,'Polish','default',452,'pl'), (28224,'Portuguese','default',452,'pt'), (28225,'Punjabi','default',452,'pa'), (28226,'Romanian','default',452,'ro'), (28227,'Russian','default',452,'ru'), (28228,'Serbian','default',452,'sr'), (28229,'Sinhala','default',452,'si'), (28230,'Slovak','default',452,'sk'), (28231,'Spanish','default',452,'es'), (28232,'Sundanese','default',452,'su'), (28233,'Swahili','default',452,'sw'), (28234,'Swedish','default',452,'sv'), (28235,'Tamil (Sri Lanka)','default',452,'ta-lk'), (28236,'Thai','default',452,'th'), (28237,'Turkish','default',452,'tr'), (28238,'Uighur','default',452,'ug'), (28239,'Ukrainian','default',452,'uk'), (28240,'Uzbek','default',452,'uz'), (28241,'Venezuelan Spanish','default',452,'es-ve'), (28242,'Vietnamese','default',452,'vi'), (28243,'Welsh','default',452,'cy'), (28245,'Albanian','default',453,'sq'), (28246,'Arabic','default',453,'ar'), (28247,'Azerbaijani','default',453,'az'), (28248,'Basque','default',453,'eu'), (28249,'Bengali','default',453,'bn'), (28250,'Bosnian','default',453,'bs'), (28251,'Brazilian Portuguese','default',453,'pt-br'), (28252,'Bulgarian','default',453,'bg'), (28253,'Burmese','default',453,'mya'), (28254,'Catalan','default',453,'ca'), (28255,'Chilean Spanish','default',453,'es-cl'), (28256,'Chinese (China)','default',453,'zh-cn'), (28257,'Chinese (Taiwan)','default',453,'zh-tw'), (28258,'Croatian','default',453,'hr'), (28259,'Czech','default',453,'cs'), (28260,'Danish','default',453,'da'), (28261,'Dutch','default',453,'nl'), (28262,'English (UK)','default',453,'en-gb'), (28263,'Esperanto','default',453,'eo'), (28264,'Estonian','default',453,'et'), (28265,'Faroese','default',453,'fo'), (28266,'Finnish','default',453,'fi'), (28267,'French','default',453,'fr'), (28268,'Frisian','default',453,'fy'), (28269,'Fulah','default',453,'fuc'), (28270,'Galician','default',453,'gl'), (28271,'Georgian','default',453,'ka'), (28272,'German','default',453,'de'), (28273,'Greek','default',453,'el'), (28274,'Hebrew','default',453,'he'), (28275,'Hindi','default',453,'hi'), (28276,'Hungarian','default',453,'hu'), (28277,'Indonesian','default',453,'id'), (28278,'Italian','default',453,'it'), (28279,'Japanese','default',453,'ja'), (28280,'Javanese','default',453,'jv'), (28281,'Kannada','default',453,'kn'), (28282,'Kirghiz','default',453,'ky'), (28283,'Korean','default',453,'ko'), (28284,'Kurdish','default',453,'ckb'), (28285,'Latvian','default',453,'lv'), (28286,'Lithuanian','default',453,'lt'), (28287,'Macedonian','default',453,'mk'), (28288,'Malay','default',453,'ms'), (28289,'Malayalam','default',453,'ml'), (28290,'Mongolian','default',453,'mn'), (28291,'Nepali','default',453,'ne'), (28292,'Norwegian (BokmÃ¥l)','default',453,'nb'), (28293,'Norwegian (Nynorsk)','default',453,'nn'), (28294,'Persian','default',453,'fa'), (28295,'Peruvian Spanish','default',453,'es-pe'), (28296,'Polish','default',453,'pl'), (28297,'Portuguese','default',453,'pt'), (28298,'Punjabi','default',453,'pa'), (28299,'Romanian','default',453,'ro'), (28300,'Russian','default',453,'ru'), (28301,'Serbian','default',453,'sr'), (28302,'Sinhala','default',453,'si'), (28303,'Slovak','default',453,'sk'), (28304,'Spanish','default',453,'es'), (28305,'Sundanese','default',453,'su'), (28306,'Swahili','default',453,'sw'), (28307,'Swedish','default',453,'sv'), (28308,'Tamil (Sri Lanka)','default',453,'ta-lk'), (28309,'Thai','default',453,'th'), (28310,'Turkish','default',453,'tr'), (28311,'Uighur','default',453,'ug'), (28312,'Ukrainian','default',453,'uk'), (28313,'Uzbek','default',453,'uz'), (28314,'Venezuelan Spanish','default',453,'es-ve'), (28315,'Vietnamese','default',453,'vi'), (28316,'Welsh','default',453,'cy'), (28318,'Albanian','default',454,'sq'), (28319,'Arabic','default',454,'ar'), (28320,'Azerbaijani','default',454,'az'), (28321,'Basque','default',454,'eu'), (28322,'Bengali','default',454,'bn'), (28323,'Bosnian','default',454,'bs'), (28324,'Brazilian Portuguese','default',454,'pt-br'), (28325,'Bulgarian','default',454,'bg'), (28326,'Burmese','default',454,'mya'), (28327,'Catalan','default',454,'ca'), (28328,'Chilean Spanish','default',454,'es-cl'), (28329,'Chinese (China)','default',454,'zh-cn'), (28330,'Chinese (Taiwan)','default',454,'zh-tw'), (28331,'Croatian','default',454,'hr'), (28332,'Czech','default',454,'cs'), (28333,'Danish','default',454,'da'), (28334,'Dutch','default',454,'nl'), (28335,'English (UK)','default',454,'en-gb'), (28336,'Esperanto','default',454,'eo'), (28337,'Estonian','default',454,'et'), (28338,'Faroese','default',454,'fo'), (28339,'Finnish','default',454,'fi'), (28340,'French','default',454,'fr'), (28341,'Frisian','default',454,'fy'), (28342,'Fulah','default',454,'fuc'), (28343,'Galician','default',454,'gl'), (28344,'Georgian','default',454,'ka'), (28345,'German','default',454,'de'), (28346,'Greek','default',454,'el'), (28347,'Hebrew','default',454,'he'), (28348,'Hindi','default',454,'hi'), (28349,'Hungarian','default',454,'hu'), (28350,'Indonesian','default',454,'id'), (28351,'Italian','default',454,'it'), (28352,'Japanese','default',454,'ja'), (28353,'Javanese','default',454,'jv'), (28354,'Kannada','default',454,'kn'), (28355,'Kirghiz','default',454,'ky'), (28356,'Korean','default',454,'ko'), (28357,'Kurdish','default',454,'ckb'), (28358,'Latvian','default',454,'lv'), (28359,'Lithuanian','default',454,'lt'), (28360,'Macedonian','default',454,'mk'), (28361,'Malay','default',454,'ms'), (28362,'Malayalam','default',454,'ml'), (28363,'Mongolian','default',454,'mn'), (28364,'Nepali','default',454,'ne'), (28365,'Norwegian (BokmÃ¥l)','default',454,'nb'), (28366,'Norwegian (Nynorsk)','default',454,'nn'), (28367,'Persian','default',454,'fa'), (28368,'Peruvian Spanish','default',454,'es-pe'), (28369,'Polish','default',454,'pl'), (28370,'Portuguese','default',454,'pt'), (28371,'Punjabi','default',454,'pa'), (28372,'Romanian','default',454,'ro'), (28373,'Russian','default',454,'ru'), (28374,'Serbian','default',454,'sr'), (28375,'Sinhala','default',454,'si'), (28376,'Slovak','default',454,'sk'), (28377,'Spanish','default',454,'es'), (28378,'Sundanese','default',454,'su'), (28379,'Swahili','default',454,'sw'), (28380,'Swedish','default',454,'sv'), (28381,'Tamil (Sri Lanka)','default',454,'ta-lk'), (28382,'Thai','default',454,'th'), (28383,'Turkish','default',454,'tr'), (28384,'Uighur','default',454,'ug'), (28385,'Ukrainian','default',454,'uk'), (28386,'Uzbek','default',454,'uz'), (28387,'Venezuelan Spanish','default',454,'es-ve'), (28388,'Vietnamese','default',454,'vi'), (28389,'Welsh','default',454,'cy'), (28391,'Albanian','default',455,'sq'), (28392,'Arabic','default',455,'ar'), (28393,'Azerbaijani','default',455,'az'), (28394,'Basque','default',455,'eu'), (28395,'Bengali','default',455,'bn'), (28396,'Bosnian','default',455,'bs'), (28397,'Brazilian Portuguese','default',455,'pt-br'), (28398,'Bulgarian','default',455,'bg'), (28399,'Burmese','default',455,'mya'), (28400,'Catalan','default',455,'ca'), (28401,'Chilean Spanish','default',455,'es-cl'), (28402,'Chinese (China)','default',455,'zh-cn'), (28403,'Chinese (Taiwan)','default',455,'zh-tw'), (28404,'Croatian','default',455,'hr'), (28405,'Czech','default',455,'cs'), (28406,'Danish','default',455,'da'), (28407,'Dutch','default',455,'nl'), (28408,'English (UK)','default',455,'en-gb'), (28409,'Esperanto','default',455,'eo'), (28410,'Estonian','default',455,'et'), (28411,'Faroese','default',455,'fo'), (28412,'Finnish','default',455,'fi'), (28413,'French','default',455,'fr'), (28414,'Frisian','default',455,'fy'), (28415,'Fulah','default',455,'fuc'), (28416,'Galician','default',455,'gl'), (28417,'Georgian','default',455,'ka'), (28418,'German','default',455,'de'), (28419,'Greek','default',455,'el'), (28420,'Hebrew','default',455,'he'), (28421,'Hindi','default',455,'hi'), (28422,'Hungarian','default',455,'hu'), (28423,'Indonesian','default',455,'id'), (28424,'Italian','default',455,'it'), (28425,'Japanese','default',455,'ja'), (28426,'Javanese','default',455,'jv'), (28427,'Kannada','default',455,'kn'), (28428,'Kirghiz','default',455,'ky'), (28429,'Korean','default',455,'ko'), (28430,'Kurdish','default',455,'ckb'), (28431,'Latvian','default',455,'lv'), (28432,'Lithuanian','default',455,'lt'), (28433,'Macedonian','default',455,'mk'), (28434,'Malay','default',455,'ms'), (28435,'Malayalam','default',455,'ml'), (28436,'Mongolian','default',455,'mn'), (28437,'Nepali','default',455,'ne'), (28438,'Norwegian (BokmÃ¥l)','default',455,'nb'), (28439,'Norwegian (Nynorsk)','default',455,'nn'), (28440,'Persian','default',455,'fa'), (28441,'Peruvian Spanish','default',455,'es-pe'), (28442,'Polish','default',455,'pl'), (28443,'Portuguese','default',455,'pt'), (28444,'Punjabi','default',455,'pa'), (28445,'Romanian','default',455,'ro'), (28446,'Russian','default',455,'ru'), (28447,'Serbian','default',455,'sr'), (28448,'Sinhala','default',455,'si'), (28449,'Slovak','default',455,'sk'), (28450,'Spanish','default',455,'es'), (28451,'Sundanese','default',455,'su'), (28452,'Swahili','default',455,'sw'), (28453,'Swedish','default',455,'sv'), (28454,'Tamil (Sri Lanka)','default',455,'ta-lk'), (28455,'Thai','default',455,'th'), (28456,'Turkish','default',455,'tr'), (28457,'Uighur','default',455,'ug'), (28458,'Ukrainian','default',455,'uk'), (28459,'Uzbek','default',455,'uz'), (28460,'Venezuelan Spanish','default',455,'es-ve'), (28461,'Vietnamese','default',455,'vi'), (28462,'Welsh','default',455,'cy'), (28463,'Balochi Southern','default',2,'bcc'), (28464,'Balochi Southern','default',78,'bcc'), (28465,'Balochi Southern','default',79,'bcc'), (28466,'Balochi Southern','default',80,'bcc'), (28467,'Catalan (Balear)','default',80,'bal'), (28468,'Hawaiian','default',80,'haw'), (28469,'Kurdish (Kurmanji)','default',80,'ku'), (28471,'Luxembourgish','default',80,'lb'), (28472,'Malagasy','default',80,'mg'), (28473,'Oriya','default',80,'ory'), (28474,'Tamil','default',80,'ta'), (28475,'Urdu','default',80,'ur'), (28476,'Balochi Southern','default',101,'bcc'), (28477,'Catalan (Balear)','default',101,'bal'), (28478,'Hawaiian','default',101,'haw'), (28479,'Kurdish (Kurmanji)','default',101,'ku'), (28481,'Luxembourgish','default',101,'lb'), (28482,'Malagasy','default',101,'mg'), (28483,'Oriya','default',101,'ory'), (28484,'Tamil','default',101,'ta'), (28485,'Urdu','default',101,'ur'), (28486,'Balochi Southern','default',130,'bcc'), (28488,'Oriya','default',130,'ory'), (28489,'Balochi Southern','default',421,'bcc'), (28490,'Kinyarwanda','default',421,'kin'), (28492,'Oriya','default',421,'ory'), (28493,'Balochi Southern','default',64,'bcc'), (28495,'Balochi Southern','default',217,'bcc'), (28497,'Albanian','default',457,'sq'), (28498,'Arabic','default',457,'ar'), (28499,'Azerbaijani','default',457,'az'), (28500,'Basque','default',457,'eu'), (28501,'Bengali','default',457,'bn'), (28502,'Bosnian','default',457,'bs'), (28503,'Brazilian Portuguese','default',457,'pt-br'), (28504,'Bulgarian','default',457,'bg'), (28505,'Burmese','default',457,'mya'), (28506,'Catalan','default',457,'ca'), (28507,'Chilean Spanish','default',457,'es-cl'), (28508,'Chinese (China)','default',457,'zh-cn'), (28509,'Chinese (Taiwan)','default',457,'zh-tw'), (28510,'Croatian','default',457,'hr'), (28511,'Czech','default',457,'cs'), (28512,'Danish','default',457,'da'), (28513,'Dutch','default',457,'nl'), (28514,'English (UK)','default',457,'en-gb'), (28515,'Esperanto','default',457,'eo'), (28516,'Estonian','default',457,'et'), (28517,'Faroese','default',457,'fo'), (28518,'Finnish','default',457,'fi'), (28519,'French','default',457,'fr'), (28520,'Frisian','default',457,'fy'), (28521,'Fulah','default',457,'fuc'), (28522,'Galician','default',457,'gl'), (28523,'Georgian','default',457,'ka'), (28524,'German','default',457,'de'), (28525,'Greek','default',457,'el'), (28526,'Hebrew','default',457,'he'), (28527,'Hindi','default',457,'hi'), (28528,'Hungarian','default',457,'hu'), (28529,'Indonesian','default',457,'id'), (28530,'Italian','default',457,'it'), (28531,'Japanese','default',457,'ja'), (28532,'Javanese','default',457,'jv'), (28533,'Kannada','default',457,'kn'), (28534,'Kirghiz','default',457,'ky'), (28535,'Korean','default',457,'ko'), (28536,'Kurdish','default',457,'ckb'), (28537,'Latvian','default',457,'lv'), (28538,'Lithuanian','default',457,'lt'), (28539,'Macedonian','default',457,'mk'), (28540,'Malay','default',457,'ms'), (28541,'Malayalam','default',457,'ml'), (28542,'Mongolian','default',457,'mn'), (28543,'Nepali','default',457,'ne'), (28544,'Norwegian (BokmÃ¥l)','default',457,'nb'), (28545,'Norwegian (Nynorsk)','default',457,'nn'), (28546,'Persian','default',457,'fa'), (28547,'Peruvian Spanish','default',457,'es-pe'), (28548,'Polish','default',457,'pl'), (28549,'Portuguese','default',457,'pt'), (28550,'Punjabi','default',457,'pa'), (28551,'Romanian','default',457,'ro'), (28552,'Russian','default',457,'ru'), (28553,'Serbian','default',457,'sr'), (28554,'Sinhala','default',457,'si'), (28555,'Slovak','default',457,'sk'), (28556,'Spanish','default',457,'es'), (28557,'Sundanese','default',457,'su'), (28558,'Swahili','default',457,'sw'), (28559,'Swedish','default',457,'sv'), (28560,'Tamil (Sri Lanka)','default',457,'ta-lk'), (28561,'Thai','default',457,'th'), (28562,'Turkish','default',457,'tr'), (28563,'Uighur','default',457,'ug'), (28564,'Ukrainian','default',457,'uk'), (28565,'Uzbek','default',457,'uz'), (28566,'Venezuelan Spanish','default',457,'es-ve'), (28567,'Vietnamese','default',457,'vi'), (28568,'Welsh','default',457,'cy'), (28570,'Albanian','default',458,'sq'), (28571,'Arabic','default',458,'ar'), (28572,'Azerbaijani','default',458,'az'), (28573,'Basque','default',458,'eu'), (28574,'Bengali','default',458,'bn'), (28575,'Bosnian','default',458,'bs'), (28576,'Brazilian Portuguese','default',458,'pt-br'), (28577,'Bulgarian','default',458,'bg'), (28578,'Burmese','default',458,'mya'), (28579,'Catalan','default',458,'ca'), (28580,'Chilean Spanish','default',458,'es-cl'), (28581,'Chinese (China)','default',458,'zh-cn'), (28582,'Chinese (Taiwan)','default',458,'zh-tw'), (28583,'Croatian','default',458,'hr'), (28584,'Czech','default',458,'cs'), (28585,'Danish','default',458,'da'), (28586,'Dutch','default',458,'nl'), (28587,'English (UK)','default',458,'en-gb'), (28588,'Esperanto','default',458,'eo'), (28589,'Estonian','default',458,'et'), (28590,'Faroese','default',458,'fo'), (28591,'Finnish','default',458,'fi'), (28592,'French','default',458,'fr'), (28593,'Frisian','default',458,'fy'), (28594,'Fulah','default',458,'fuc'), (28595,'Galician','default',458,'gl'), (28596,'Georgian','default',458,'ka'), (28597,'German','default',458,'de'), (28598,'Greek','default',458,'el'), (28599,'Hebrew','default',458,'he'), (28600,'Hindi','default',458,'hi'), (28601,'Hungarian','default',458,'hu'), (28602,'Indonesian','default',458,'id'), (28603,'Italian','default',458,'it'), (28604,'Japanese','default',458,'ja'), (28605,'Javanese','default',458,'jv'), (28606,'Kannada','default',458,'kn'), (28607,'Kirghiz','default',458,'ky'), (28608,'Korean','default',458,'ko'), (28609,'Kurdish','default',458,'ckb'), (28610,'Latvian','default',458,'lv'), (28611,'Lithuanian','default',458,'lt'), (28612,'Macedonian','default',458,'mk'), (28613,'Malay','default',458,'ms'), (28614,'Malayalam','default',458,'ml'), (28615,'Mongolian','default',458,'mn'), (28616,'Nepali','default',458,'ne'), (28617,'Norwegian (BokmÃ¥l)','default',458,'nb'), (28618,'Norwegian (Nynorsk)','default',458,'nn'), (28619,'Persian','default',458,'fa'), (28620,'Peruvian Spanish','default',458,'es-pe'), (28621,'Polish','default',458,'pl'), (28622,'Portuguese','default',458,'pt'), (28623,'Punjabi','default',458,'pa'), (28624,'Romanian','default',458,'ro'), (28625,'Russian','default',458,'ru'), (28626,'Serbian','default',458,'sr'), (28627,'Sinhala','default',458,'si'), (28628,'Slovak','default',458,'sk'), (28629,'Spanish','default',458,'es'), (28630,'Sundanese','default',458,'su'), (28631,'Swahili','default',458,'sw'), (28632,'Swedish','default',458,'sv'), (28633,'Tamil (Sri Lanka)','default',458,'ta-lk'), (28634,'Thai','default',458,'th'), (28635,'Turkish','default',458,'tr'), (28636,'Uighur','default',458,'ug'), (28637,'Ukrainian','default',458,'uk'), (28638,'Uzbek','default',458,'uz'), (28639,'Venezuelan Spanish','default',458,'es-ve'), (28640,'Vietnamese','default',458,'vi'), (28641,'Welsh','default',458,'cy'), (28643,'Albanian','default',459,'sq'), (28644,'Arabic','default',459,'ar'), (28645,'Azerbaijani','default',459,'az'), (28646,'Basque','default',459,'eu'), (28647,'Bengali','default',459,'bn'), (28648,'Bosnian','default',459,'bs'), (28649,'Brazilian Portuguese','default',459,'pt-br'), (28650,'Bulgarian','default',459,'bg'), (28651,'Burmese','default',459,'mya'), (28652,'Catalan','default',459,'ca'), (28653,'Chilean Spanish','default',459,'es-cl'), (28654,'Chinese (China)','default',459,'zh-cn'), (28655,'Chinese (Taiwan)','default',459,'zh-tw'), (28656,'Croatian','default',459,'hr'), (28657,'Czech','default',459,'cs'), (28658,'Danish','default',459,'da'), (28659,'Dutch','default',459,'nl'), (28660,'English (UK)','default',459,'en-gb'), (28661,'Esperanto','default',459,'eo'), (28662,'Estonian','default',459,'et'), (28663,'Faroese','default',459,'fo'), (28664,'Finnish','default',459,'fi'), (28665,'French','default',459,'fr'), (28666,'Frisian','default',459,'fy'), (28667,'Fulah','default',459,'fuc'), (28668,'Galician','default',459,'gl'), (28669,'Georgian','default',459,'ka'), (28670,'German','default',459,'de'), (28671,'Greek','default',459,'el'), (28672,'Hebrew','default',459,'he'), (28673,'Hindi','default',459,'hi'), (28674,'Hungarian','default',459,'hu'), (28675,'Indonesian','default',459,'id'), (28676,'Italian','default',459,'it'), (28677,'Japanese','default',459,'ja'), (28678,'Javanese','default',459,'jv'), (28679,'Kannada','default',459,'kn'), (28680,'Kirghiz','default',459,'ky'), (28681,'Korean','default',459,'ko'), (28682,'Kurdish','default',459,'ckb'), (28683,'Latvian','default',459,'lv'), (28684,'Lithuanian','default',459,'lt'), (28685,'Macedonian','default',459,'mk'), (28686,'Malay','default',459,'ms'), (28687,'Malayalam','default',459,'ml'), (28688,'Mongolian','default',459,'mn'), (28689,'Nepali','default',459,'ne'), (28690,'Norwegian (BokmÃ¥l)','default',459,'nb'), (28691,'Norwegian (Nynorsk)','default',459,'nn'), (28692,'Persian','default',459,'fa'), (28693,'Peruvian Spanish','default',459,'es-pe'), (28694,'Polish','default',459,'pl'), (28695,'Portuguese','default',459,'pt'), (28696,'Punjabi','default',459,'pa'), (28697,'Romanian','default',459,'ro'), (28698,'Russian','default',459,'ru'), (28699,'Serbian','default',459,'sr'), (28700,'Sinhala','default',459,'si'), (28701,'Slovak','default',459,'sk'), (28702,'Spanish','default',459,'es'), (28703,'Sundanese','default',459,'su'), (28704,'Swahili','default',459,'sw'), (28705,'Swedish','default',459,'sv'), (28706,'Tamil (Sri Lanka)','default',459,'ta-lk'), (28707,'Thai','default',459,'th'), (28708,'Turkish','default',459,'tr'), (28709,'Uighur','default',459,'ug'), (28710,'Ukrainian','default',459,'uk'), (28711,'Uzbek','default',459,'uz'), (28712,'Venezuelan Spanish','default',459,'es-ve'), (28713,'Vietnamese','default',459,'vi'), (28714,'Welsh','default',459,'cy'), (28716,'Albanian','default',460,'sq'), (28717,'Arabic','default',460,'ar'), (28718,'Azerbaijani','default',460,'az'), (28719,'Basque','default',460,'eu'), (28720,'Bengali','default',460,'bn'), (28721,'Bosnian','default',460,'bs'), (28722,'Brazilian Portuguese','default',460,'pt-br'), (28723,'Bulgarian','default',460,'bg'), (28724,'Burmese','default',460,'mya'), (28725,'Catalan','default',460,'ca'), (28726,'Chilean Spanish','default',460,'es-cl'), (28727,'Chinese (China)','default',460,'zh-cn'), (28728,'Chinese (Taiwan)','default',460,'zh-tw'), (28729,'Croatian','default',460,'hr'), (28730,'Czech','default',460,'cs'), (28731,'Danish','default',460,'da'), (28732,'Dutch','default',460,'nl'), (28733,'English (UK)','default',460,'en-gb'), (28734,'Esperanto','default',460,'eo'), (28735,'Estonian','default',460,'et'), (28736,'Faroese','default',460,'fo'), (28737,'Finnish','default',460,'fi'), (28738,'French','default',460,'fr'), (28739,'Frisian','default',460,'fy'), (28740,'Fulah','default',460,'fuc'), (28741,'Galician','default',460,'gl'), (28742,'Georgian','default',460,'ka'), (28743,'German','default',460,'de'), (28744,'Greek','default',460,'el'), (28745,'Hebrew','default',460,'he'), (28746,'Hindi','default',460,'hi'), (28747,'Hungarian','default',460,'hu'), (28748,'Indonesian','default',460,'id'), (28749,'Italian','default',460,'it'), (28750,'Japanese','default',460,'ja'), (28751,'Javanese','default',460,'jv'), (28752,'Kannada','default',460,'kn'), (28753,'Kirghiz','default',460,'ky'), (28754,'Korean','default',460,'ko'), (28755,'Kurdish','default',460,'ckb'), (28756,'Latvian','default',460,'lv'), (28757,'Lithuanian','default',460,'lt'), (28758,'Macedonian','default',460,'mk'), (28759,'Malay','default',460,'ms'), (28760,'Malayalam','default',460,'ml'), (28761,'Mongolian','default',460,'mn'), (28762,'Nepali','default',460,'ne'), (28763,'Norwegian (BokmÃ¥l)','default',460,'nb'), (28764,'Norwegian (Nynorsk)','default',460,'nn'), (28765,'Persian','default',460,'fa'), (28766,'Peruvian Spanish','default',460,'es-pe'), (28767,'Polish','default',460,'pl'), (28768,'Portuguese','default',460,'pt'), (28769,'Punjabi','default',460,'pa'), (28770,'Romanian','default',460,'ro'), (28771,'Russian','default',460,'ru'), (28772,'Serbian','default',460,'sr'), (28773,'Sinhala','default',460,'si'), (28774,'Slovak','default',460,'sk'), (28775,'Spanish','default',460,'es'), (28776,'Sundanese','default',460,'su'), (28777,'Swahili','default',460,'sw'), (28778,'Swedish','default',460,'sv'), (28779,'Tamil (Sri Lanka)','default',460,'ta-lk'), (28780,'Thai','default',460,'th'), (28781,'Turkish','default',460,'tr'), (28782,'Uighur','default',460,'ug'), (28783,'Ukrainian','default',460,'uk'), (28784,'Uzbek','default',460,'uz'), (28785,'Venezuelan Spanish','default',460,'es-ve'), (28786,'Vietnamese','default',460,'vi'), (28787,'Welsh','default',460,'cy'), (28789,'Albanian','default',462,'sq'), (28790,'Arabic','default',462,'ar'), (28791,'Azerbaijani','default',462,'az'), (28792,'Basque','default',462,'eu'), (28793,'Bengali','default',462,'bn'), (28794,'Bosnian','default',462,'bs'), (28795,'Brazilian Portuguese','default',462,'pt-br'), (28796,'Bulgarian','default',462,'bg'), (28797,'Burmese','default',462,'mya'), (28798,'Catalan','default',462,'ca'), (28799,'Chilean Spanish','default',462,'es-cl'), (28800,'Chinese (China)','default',462,'zh-cn'), (28801,'Chinese (Taiwan)','default',462,'zh-tw'), (28802,'Croatian','default',462,'hr'), (28803,'Czech','default',462,'cs'), (28804,'Danish','default',462,'da'), (28805,'Dutch','default',462,'nl'), (28806,'English (UK)','default',462,'en-gb'), (28807,'Esperanto','default',462,'eo'), (28808,'Estonian','default',462,'et'), (28809,'Faroese','default',462,'fo'), (28810,'Finnish','default',462,'fi'), (28811,'French','default',462,'fr'), (28812,'Frisian','default',462,'fy'), (28813,'Fulah','default',462,'fuc'), (28814,'Galician','default',462,'gl'), (28815,'Georgian','default',462,'ka'), (28816,'German','default',462,'de'), (28817,'Greek','default',462,'el'), (28818,'Hebrew','default',462,'he'), (28819,'Hindi','default',462,'hi'), (28820,'Hungarian','default',462,'hu'), (28821,'Indonesian','default',462,'id'), (28822,'Italian','default',462,'it'), (28823,'Japanese','default',462,'ja'), (28824,'Javanese','default',462,'jv'), (28825,'Kannada','default',462,'kn'), (28826,'Kirghiz','default',462,'ky'), (28827,'Korean','default',462,'ko'), (28828,'Kurdish','default',462,'ckb'), (28829,'Latvian','default',462,'lv'), (28830,'Lithuanian','default',462,'lt'), (28831,'Macedonian','default',462,'mk'), (28832,'Malay','default',462,'ms'), (28833,'Malayalam','default',462,'ml'), (28834,'Mongolian','default',462,'mn'), (28835,'Nepali','default',462,'ne'), (28836,'Norwegian (BokmÃ¥l)','default',462,'nb'), (28837,'Norwegian (Nynorsk)','default',462,'nn'), (28838,'Persian','default',462,'fa'), (28839,'Peruvian Spanish','default',462,'es-pe'), (28840,'Polish','default',462,'pl'), (28841,'Portuguese','default',462,'pt'), (28842,'Punjabi','default',462,'pa'), (28843,'Romanian','default',462,'ro'), (28844,'Russian','default',462,'ru'), (28845,'Serbian','default',462,'sr'), (28846,'Sinhala','default',462,'si'), (28847,'Slovak','default',462,'sk'), (28848,'Spanish','default',462,'es'), (28849,'Sundanese','default',462,'su'), (28850,'Swahili','default',462,'sw'), (28851,'Swedish','default',462,'sv'), (28852,'Tamil (Sri Lanka)','default',462,'ta-lk'), (28853,'Thai','default',462,'th'), (28854,'Turkish','default',462,'tr'), (28855,'Uighur','default',462,'ug'), (28856,'Ukrainian','default',462,'uk'), (28857,'Uzbek','default',462,'uz'), (28858,'Venezuelan Spanish','default',462,'es-ve'), (28859,'Vietnamese','default',462,'vi'), (28860,'Welsh','default',462,'cy'), (28862,'Albanian','default',463,'sq'), (28863,'Arabic','default',463,'ar'), (28864,'Azerbaijani','default',463,'az'), (28865,'Basque','default',463,'eu'), (28866,'Bengali','default',463,'bn'), (28867,'Bosnian','default',463,'bs'), (28868,'Brazilian Portuguese','default',463,'pt-br'), (28869,'Bulgarian','default',463,'bg'), (28870,'Burmese','default',463,'mya'), (28871,'Catalan','default',463,'ca'), (28872,'Chilean Spanish','default',463,'es-cl'), (28873,'Chinese (China)','default',463,'zh-cn'), (28874,'Chinese (Taiwan)','default',463,'zh-tw'), (28875,'Croatian','default',463,'hr'), (28876,'Czech','default',463,'cs'), (28877,'Danish','default',463,'da'), (28878,'Dutch','default',463,'nl'), (28879,'English (UK)','default',463,'en-gb'), (28880,'Esperanto','default',463,'eo'), (28881,'Estonian','default',463,'et'), (28882,'Faroese','default',463,'fo'), (28883,'Finnish','default',463,'fi'), (28884,'French','default',463,'fr'), (28885,'Frisian','default',463,'fy'), (28886,'Fulah','default',463,'fuc'), (28887,'Galician','default',463,'gl'), (28888,'Georgian','default',463,'ka'), (28889,'German','default',463,'de'), (28890,'Greek','default',463,'el'), (28891,'Hebrew','default',463,'he'), (28892,'Hindi','default',463,'hi'), (28893,'Hungarian','default',463,'hu'), (28894,'Indonesian','default',463,'id'), (28895,'Italian','default',463,'it'), (28896,'Japanese','default',463,'ja'), (28897,'Javanese','default',463,'jv'), (28898,'Kannada','default',463,'kn'), (28899,'Kirghiz','default',463,'ky'), (28900,'Korean','default',463,'ko'), (28901,'Kurdish','default',463,'ckb'), (28902,'Latvian','default',463,'lv'), (28903,'Lithuanian','default',463,'lt'), (28904,'Macedonian','default',463,'mk'), (28905,'Malay','default',463,'ms'), (28906,'Malayalam','default',463,'ml'), (28907,'Mongolian','default',463,'mn'), (28908,'Nepali','default',463,'ne'), (28909,'Norwegian (BokmÃ¥l)','default',463,'nb'), (28910,'Norwegian (Nynorsk)','default',463,'nn'), (28911,'Persian','default',463,'fa'), (28912,'Peruvian Spanish','default',463,'es-pe'), (28913,'Polish','default',463,'pl'), (28914,'Portuguese','default',463,'pt'), (28915,'Punjabi','default',463,'pa'), (28916,'Romanian','default',463,'ro'), (28917,'Russian','default',463,'ru'), (28918,'Serbian','default',463,'sr'), (28919,'Sinhala','default',463,'si'), (28920,'Slovak','default',463,'sk'), (28921,'Spanish','default',463,'es'), (28922,'Sundanese','default',463,'su'), (28923,'Swahili','default',463,'sw'), (28924,'Swedish','default',463,'sv'), (28925,'Tamil (Sri Lanka)','default',463,'ta-lk'), (28926,'Thai','default',463,'th'), (28927,'Turkish','default',463,'tr'), (28928,'Uighur','default',463,'ug'), (28929,'Ukrainian','default',463,'uk'), (28930,'Uzbek','default',463,'uz'), (28931,'Venezuelan Spanish','default',463,'es-ve'), (28932,'Vietnamese','default',463,'vi'), (28933,'Welsh','default',463,'cy'), (28935,'Albanian','default',464,'sq'), (28936,'Arabic','default',464,'ar'), (28937,'Azerbaijani','default',464,'az'), (28938,'Basque','default',464,'eu'), (28939,'Bengali','default',464,'bn'), (28940,'Bosnian','default',464,'bs'), (28941,'Brazilian Portuguese','default',464,'pt-br'), (28942,'Bulgarian','default',464,'bg'), (28943,'Burmese','default',464,'mya'), (28944,'Catalan','default',464,'ca'), (28945,'Chilean Spanish','default',464,'es-cl'), (28946,'Chinese (China)','default',464,'zh-cn'), (28947,'Chinese (Taiwan)','default',464,'zh-tw'), (28948,'Croatian','default',464,'hr'), (28949,'Czech','default',464,'cs'), (28950,'Danish','default',464,'da'), (28951,'Dutch','default',464,'nl'), (28952,'English (UK)','default',464,'en-gb'), (28953,'Esperanto','default',464,'eo'), (28954,'Estonian','default',464,'et'), (28955,'Faroese','default',464,'fo'), (28956,'Finnish','default',464,'fi'), (28957,'French','default',464,'fr'), (28958,'Frisian','default',464,'fy'), (28959,'Fulah','default',464,'fuc'), (28960,'Galician','default',464,'gl'), (28961,'Georgian','default',464,'ka'), (28962,'German','default',464,'de'), (28963,'Greek','default',464,'el'), (28964,'Hebrew','default',464,'he'), (28965,'Hindi','default',464,'hi'), (28966,'Hungarian','default',464,'hu'), (28967,'Indonesian','default',464,'id'), (28968,'Italian','default',464,'it'), (28969,'Japanese','default',464,'ja'), (28970,'Javanese','default',464,'jv'), (28971,'Kannada','default',464,'kn'), (28972,'Kirghiz','default',464,'ky'), (28973,'Korean','default',464,'ko'), (28974,'Kurdish','default',464,'ckb'), (28975,'Latvian','default',464,'lv'), (28976,'Lithuanian','default',464,'lt'), (28977,'Macedonian','default',464,'mk'), (28978,'Malay','default',464,'ms'), (28979,'Malayalam','default',464,'ml'), (28980,'Mongolian','default',464,'mn'), (28981,'Nepali','default',464,'ne'), (28982,'Norwegian (BokmÃ¥l)','default',464,'nb'), (28983,'Norwegian (Nynorsk)','default',464,'nn'), (28984,'Persian','default',464,'fa'), (28985,'Peruvian Spanish','default',464,'es-pe'), (28986,'Polish','default',464,'pl'), (28987,'Portuguese','default',464,'pt'), (28988,'Punjabi','default',464,'pa'), (28989,'Romanian','default',464,'ro'), (28990,'Russian','default',464,'ru'), (28991,'Serbian','default',464,'sr'), (28992,'Sinhala','default',464,'si'), (28993,'Slovak','default',464,'sk'), (28994,'Spanish','default',464,'es'), (28995,'Sundanese','default',464,'su'), (28996,'Swahili','default',464,'sw'), (28997,'Swedish','default',464,'sv'), (28998,'Tamil (Sri Lanka)','default',464,'ta-lk'), (28999,'Thai','default',464,'th'), (29000,'Turkish','default',464,'tr'), (29001,'Uighur','default',464,'ug'), (29002,'Ukrainian','default',464,'uk'), (29003,'Uzbek','default',464,'uz'), (29004,'Venezuelan Spanish','default',464,'es-ve'), (29005,'Vietnamese','default',464,'vi'), (29006,'Welsh','default',464,'cy'), (29008,'Albanian','default',465,'sq'), (29009,'Arabic','default',465,'ar'), (29010,'Azerbaijani','default',465,'az'), (29011,'Basque','default',465,'eu'), (29012,'Bengali','default',465,'bn'), (29013,'Bosnian','default',465,'bs'), (29014,'Brazilian Portuguese','default',465,'pt-br'), (29015,'Bulgarian','default',465,'bg'), (29016,'Burmese','default',465,'mya'), (29017,'Catalan','default',465,'ca'), (29018,'Chilean Spanish','default',465,'es-cl'), (29019,'Chinese (China)','default',465,'zh-cn'), (29020,'Chinese (Taiwan)','default',465,'zh-tw'), (29021,'Croatian','default',465,'hr'), (29022,'Czech','default',465,'cs'), (29023,'Danish','default',465,'da'), (29024,'Dutch','default',465,'nl'), (29025,'English (UK)','default',465,'en-gb'), (29026,'Esperanto','default',465,'eo'), (29027,'Estonian','default',465,'et'), (29028,'Faroese','default',465,'fo'), (29029,'Finnish','default',465,'fi'), (29030,'French','default',465,'fr'), (29031,'Frisian','default',465,'fy'), (29032,'Fulah','default',465,'fuc'), (29033,'Galician','default',465,'gl'), (29034,'Georgian','default',465,'ka'), (29035,'German','default',465,'de'), (29036,'Greek','default',465,'el'), (29037,'Hebrew','default',465,'he'), (29038,'Hindi','default',465,'hi'), (29039,'Hungarian','default',465,'hu'), (29040,'Indonesian','default',465,'id'), (29041,'Italian','default',465,'it'), (29042,'Japanese','default',465,'ja'), (29043,'Javanese','default',465,'jv'), (29044,'Kannada','default',465,'kn'), (29045,'Kirghiz','default',465,'ky'), (29046,'Korean','default',465,'ko'), (29047,'Kurdish','default',465,'ckb'), (29048,'Latvian','default',465,'lv'), (29049,'Lithuanian','default',465,'lt'), (29050,'Macedonian','default',465,'mk'), (29051,'Malay','default',465,'ms'), (29052,'Malayalam','default',465,'ml'), (29053,'Mongolian','default',465,'mn'), (29054,'Nepali','default',465,'ne'), (29055,'Norwegian (BokmÃ¥l)','default',465,'nb'), (29056,'Norwegian (Nynorsk)','default',465,'nn'), (29057,'Persian','default',465,'fa'), (29058,'Peruvian Spanish','default',465,'es-pe'), (29059,'Polish','default',465,'pl'), (29060,'Portuguese','default',465,'pt'), (29061,'Punjabi','default',465,'pa'), (29062,'Romanian','default',465,'ro'), (29063,'Russian','default',465,'ru'), (29064,'Serbian','default',465,'sr'), (29065,'Sinhala','default',465,'si'), (29066,'Slovak','default',465,'sk'), (29067,'Spanish','default',465,'es'), (29068,'Sundanese','default',465,'su'), (29069,'Swahili','default',465,'sw'), (29070,'Swedish','default',465,'sv'), (29071,'Tamil (Sri Lanka)','default',465,'ta-lk'), (29072,'Thai','default',465,'th'), (29073,'Turkish','default',465,'tr'), (29074,'Uighur','default',465,'ug'), (29075,'Ukrainian','default',465,'uk'), (29076,'Uzbek','default',465,'uz'), (29077,'Venezuelan Spanish','default',465,'es-ve'), (29078,'Vietnamese','default',465,'vi'), (29079,'Welsh','default',465,'cy'), (29081,'Albanian','default',467,'sq'), (29082,'Arabic','default',467,'ar'), (29083,'Azerbaijani','default',467,'az'), (29084,'Basque','default',467,'eu'), (29085,'Bengali','default',467,'bn'), (29086,'Bosnian','default',467,'bs'), (29087,'Brazilian Portuguese','default',467,'pt-br'), (29088,'Bulgarian','default',467,'bg'), (29089,'Burmese','default',467,'mya'), (29090,'Catalan','default',467,'ca'), (29091,'Chilean Spanish','default',467,'es-cl'), (29092,'Chinese (China)','default',467,'zh-cn'), (29093,'Chinese (Taiwan)','default',467,'zh-tw'), (29094,'Croatian','default',467,'hr'), (29095,'Czech','default',467,'cs'), (29096,'Danish','default',467,'da'), (29097,'Dutch','default',467,'nl'), (29098,'English (UK)','default',467,'en-gb'), (29099,'Esperanto','default',467,'eo'), (29100,'Estonian','default',467,'et'), (29101,'Faroese','default',467,'fo'), (29102,'Finnish','default',467,'fi'), (29103,'French','default',467,'fr'), (29104,'Frisian','default',467,'fy'), (29105,'Fulah','default',467,'fuc'), (29106,'Galician','default',467,'gl'), (29107,'Georgian','default',467,'ka'), (29108,'German','default',467,'de'), (29109,'Greek','default',467,'el'), (29110,'Hebrew','default',467,'he'), (29111,'Hindi','default',467,'hi'), (29112,'Hungarian','default',467,'hu'), (29113,'Indonesian','default',467,'id'), (29114,'Italian','default',467,'it'), (29115,'Japanese','default',467,'ja'), (29116,'Javanese','default',467,'jv'), (29117,'Kannada','default',467,'kn'), (29118,'Kirghiz','default',467,'ky'), (29119,'Korean','default',467,'ko'), (29120,'Kurdish','default',467,'ckb'), (29121,'Latvian','default',467,'lv'), (29122,'Lithuanian','default',467,'lt'), (29123,'Macedonian','default',467,'mk'), (29124,'Malay','default',467,'ms'), (29125,'Malayalam','default',467,'ml'), (29126,'Mongolian','default',467,'mn'), (29127,'Nepali','default',467,'ne'), (29128,'Norwegian (BokmÃ¥l)','default',467,'nb'), (29129,'Norwegian (Nynorsk)','default',467,'nn'), (29130,'Persian','default',467,'fa'), (29131,'Peruvian Spanish','default',467,'es-pe'), (29132,'Polish','default',467,'pl'), (29133,'Portuguese','default',467,'pt'), (29134,'Punjabi','default',467,'pa'), (29135,'Romanian','default',467,'ro'), (29136,'Russian','default',467,'ru'), (29137,'Serbian','default',467,'sr'), (29138,'Sinhala','default',467,'si'), (29139,'Slovak','default',467,'sk'), (29140,'Spanish','default',467,'es'), (29141,'Sundanese','default',467,'su'), (29142,'Swahili','default',467,'sw'), (29143,'Swedish','default',467,'sv'), (29144,'Tamil (Sri Lanka)','default',467,'ta-lk'), (29145,'Thai','default',467,'th'), (29146,'Turkish','default',467,'tr'), (29147,'Uighur','default',467,'ug'), (29148,'Ukrainian','default',467,'uk'), (29149,'Uzbek','default',467,'uz'), (29150,'Venezuelan Spanish','default',467,'es-ve'), (29151,'Vietnamese','default',467,'vi'), (29152,'Welsh','default',467,'cy'), (29154,'Albanian','default',468,'sq'), (29155,'Arabic','default',468,'ar'), (29156,'Azerbaijani','default',468,'az'), (29157,'Basque','default',468,'eu'), (29158,'Bengali','default',468,'bn'), (29159,'Bosnian','default',468,'bs'), (29160,'Brazilian Portuguese','default',468,'pt-br'), (29161,'Bulgarian','default',468,'bg'), (29162,'Burmese','default',468,'mya'), (29163,'Catalan','default',468,'ca'), (29164,'Chilean Spanish','default',468,'es-cl'), (29165,'Chinese (China)','default',468,'zh-cn'), (29166,'Chinese (Taiwan)','default',468,'zh-tw'), (29167,'Croatian','default',468,'hr'), (29168,'Czech','default',468,'cs'), (29169,'Danish','default',468,'da'), (29170,'Dutch','default',468,'nl'), (29171,'English (UK)','default',468,'en-gb'), (29172,'Esperanto','default',468,'eo'), (29173,'Estonian','default',468,'et'), (29174,'Faroese','default',468,'fo'), (29175,'Finnish','default',468,'fi'), (29176,'French','default',468,'fr'), (29177,'Frisian','default',468,'fy'), (29178,'Fulah','default',468,'fuc'), (29179,'Galician','default',468,'gl'), (29180,'Georgian','default',468,'ka'), (29181,'German','default',468,'de'), (29182,'Greek','default',468,'el'), (29183,'Hebrew','default',468,'he'), (29184,'Hindi','default',468,'hi'), (29185,'Hungarian','default',468,'hu'), (29186,'Indonesian','default',468,'id'), (29187,'Italian','default',468,'it'), (29188,'Japanese','default',468,'ja'), (29189,'Javanese','default',468,'jv'), (29190,'Kannada','default',468,'kn'), (29191,'Kirghiz','default',468,'ky'), (29192,'Korean','default',468,'ko'), (29193,'Kurdish','default',468,'ckb'), (29194,'Latvian','default',468,'lv'), (29195,'Lithuanian','default',468,'lt'), (29196,'Macedonian','default',468,'mk'), (29197,'Malay','default',468,'ms'), (29198,'Malayalam','default',468,'ml'), (29199,'Mongolian','default',468,'mn'), (29200,'Nepali','default',468,'ne'), (29201,'Norwegian (BokmÃ¥l)','default',468,'nb'), (29202,'Norwegian (Nynorsk)','default',468,'nn'), (29203,'Persian','default',468,'fa'), (29204,'Peruvian Spanish','default',468,'es-pe'), (29205,'Polish','default',468,'pl'), (29206,'Portuguese','default',468,'pt'), (29207,'Punjabi','default',468,'pa'), (29208,'Romanian','default',468,'ro'), (29209,'Russian','default',468,'ru'), (29210,'Serbian','default',468,'sr'), (29211,'Sinhala','default',468,'si'), (29212,'Slovak','default',468,'sk'), (29213,'Spanish','default',468,'es'), (29214,'Sundanese','default',468,'su'), (29215,'Swahili','default',468,'sw'), (29216,'Swedish','default',468,'sv'), (29217,'Tamil (Sri Lanka)','default',468,'ta-lk'), (29218,'Thai','default',468,'th'), (29219,'Turkish','default',468,'tr'), (29220,'Uighur','default',468,'ug'), (29221,'Ukrainian','default',468,'uk'), (29222,'Uzbek','default',468,'uz'), (29223,'Venezuelan Spanish','default',468,'es-ve'), (29224,'Vietnamese','default',468,'vi'), (29225,'Welsh','default',468,'cy'), (29226,'Afrikaans','default',66,'af'), (29227,'Azerbaijani (Turkey)','default',66,'az-tr'), (29228,'Balochi Southern','default',66,'bcc'), (29229,'Gujarati','default',66,'gu'), (29230,'Ido','default',66,'ido'), (29231,'Kinyarwanda','default',66,'kin'), (29233,'Marathi','default',66,'mr'), (29234,'Oriya','default',66,'ory'), (29235,'Tajik','default',66,'tg'), (29236,'Tibetan','default',66,'bo'), (29238,'Arabic','default',469,'ar'), (29239,'Azerbaijani','default',469,'az'), (29240,'Basque','default',469,'eu'), (29241,'Bengali','default',469,'bn'), (29242,'Bosnian','default',469,'bs'), (29243,'Bulgarian','default',469,'bg'), (29244,'Burmese','default',469,'mya'), (29245,'Catalan','default',469,'ca'), (29246,'Chinese (China)','default',469,'zh-cn'), (29247,'Chinese (Taiwan)','default',469,'zh-tw'), (29248,'Croatian','default',469,'hr'), (29249,'Czech','default',469,'cs'), (29250,'Danish','default',469,'da'), (29251,'Dutch','default',469,'nl'), (29252,'English (Australia)','default',469,'en-au'), (29253,'English (UK)','default',469,'en-gb'), (29254,'Estonian','default',469,'et'), (29255,'Finnish','default',469,'fi'), (29256,'French (France)','default',469,'fr'), (29257,'Frisian','default',469,'fy'), (29258,'Galician','default',469,'gl'), (29259,'Georgian','default',469,'ka'), (29260,'German','default',469,'de'), (29261,'Greek','default',469,'el'), (29263,'Hebrew','default',469,'he'), (29264,'Hindi','default',469,'hi'), (29265,'Hungarian','default',469,'hu'), (29266,'Icelandic','default',469,'is'), (29267,'Indonesian','default',469,'id'), (29268,'Italian','default',469,'it'), (29269,'Japanese','default',469,'ja'), (29270,'Kannada','default',469,'kn'), (29271,'Korean','default',469,'ko'), (29272,'Latvian','default',469,'lv'), (29273,'Limburgish','default',469,'li'), (29274,'Lithuanian','default',469,'lt'), (29275,'Macedonian','default',469,'mk'), (29276,'Norwegian (BokmÃ¥l)','default',469,'nb'), (29277,'Persian','default',469,'fa'), (29278,'Polish','default',469,'pl'), (29279,'Portuguese (Brazil)','default',469,'pt-br'), (29280,'Portuguese (Portugal)','default',469,'pt'), (29281,'Rohingya','default',469,'rhg'), (29282,'Romanian','default',469,'ro'), (29283,'Russian','default',469,'ru'), (29284,'Serbian','default',469,'sr'), (29285,'Slovak','default',469,'sk'), (29286,'Somali','default',469,'so'), (29287,'Spanish (Spain)','default',469,'es'), (29288,'Swahili','default',469,'sw'), (29289,'Swedish','default',469,'sv'), (29290,'Tagalog','default',469,'tl'), (29291,'Thai','default',469,'th'), (29292,'Turkish','default',469,'tr'), (29293,'Ukrainian','default',469,'uk'), (29294,'Vietnamese','default',469,'vi'), (29295,'Welsh','default',469,'cy'), (29296,'Arpitan','default',2,'frp'), (29297,'Arpitan','default',78,'frp'), (29298,'Arpitan','default',79,'frp'), (29299,'Arpitan','default',64,'frp'), (29300,'Arpitan','default',101,'frp'), (29301,'Arpitan','default',130,'frp'), (29302,'Arpitan','default',421,'frp'), (29303,'Arpitan','default',15,'frp'), (29304,'Balochi Southern','default',15,'bcc'), (29305,'Catalan (Balear)','default',15,'bal'), (29306,'English (UK)','default',15,'en-gb'), (29307,'Hawaiian','default',15,'haw'), (29308,'Kinyarwanda','default',15,'kin'), (29309,'Kurdish (Kurmanji)','default',15,'ku'), (29311,'Luxembourgish','default',15,'lb'), (29312,'Malagasy','default',15,'mg'), (29313,'Oriya','default',15,'ory'), (29314,'Tamil','default',15,'ta'), (29315,'Urdu','default',15,'ur'), (29316,'Arpitan','default',55,'frp'), (29317,'Balochi Southern','default',55,'bcc'), (29318,'Catalan (Balear)','default',55,'bal'), (29319,'English (UK)','default',55,'en-gb'), (29320,'Hawaiian','default',55,'haw'), (29321,'Kinyarwanda','default',55,'kin'), (29322,'Kurdish (Kurmanji)','default',55,'ku'), (29324,'Luxembourgish','default',55,'lb'), (29325,'Malagasy','default',55,'mg'), (29326,'Oriya','default',55,'ory'), (29327,'Tamil','default',55,'ta'), (29328,'Urdu','default',55,'ur'), (29329,'Arpitan','default',80,'frp'), (29330,'Arpitan','default',66,'frp'), (29331,'Romanian','default',7,'ro'), (29332,'Lithuanian','default',263,'lt'), (29333,'Romanian','default',263,'ro'), (29334,'Welsh','default',263,'cy'), (29335,'Arpitan','default',217,'frp'), (29336,'German (Switzerland)','default',217,'de-ch'), (29337,'German (Switzerland) Informal','informal',217,'de-ch'), (29338,'Ido','default',217,'ido'), (29339,'Kinyarwanda','default',217,'kin'), (29341,'Oriya','default',217,'ory'), (29342,'Sakha','default',217,'sah'), (29343,'Tatar','default',217,'tt'), (29344,'Romanian','default',57,'ro'), (29345,'Romanian','default',264,'ro'), (29346,'Kinyarwanda','default',64,'kin'), (29348,'Oriya','default',64,'ory'), (29350,'Afrikaans','default',470,'af'), (29351,'Albanian','default',470,'sq'), (29352,'Amharic','default',470,'am'), (29353,'Arabic','default',470,'ar'), (29354,'Aragonese','default',470,'an'), (29355,'Armenian','default',470,'hy'), (29356,'Arpitan','default',470,'frp'), (29357,'Assamese','default',470,'as'), (29358,'Azerbaijani','default',470,'az'), (29359,'Azerbaijani (Turkey)','default',470,'az-tr'), (29360,'Balochi Southern','default',470,'bcc'), (29361,'Basque','default',470,'eu'), (29362,'Belarusian','default',470,'bel'), (29363,'Bengali','default',470,'bn'), (29364,'Bosnian','default',470,'bs'), (29365,'Brazilian Portuguese','default',470,'pt-br'), (29366,'Breton','default',470,'br'), (29367,'Bulgarian','default',470,'bg'), (29368,'Burmese','default',470,'mya'), (29369,'Catalan','default',470,'ca'), (29370,'Catalan (Balear)','default',470,'bal'), (29371,'Chilean Spanish','default',470,'es-cl'), (29372,'Chinese (China)','default',470,'zh-cn'), (29373,'Chinese (Taiwan)','default',470,'zh-tw'), (29374,'Corsican','default',470,'co'), (29375,'Croatian','default',470,'hr'), (29376,'Czech','default',470,'cs'), (29377,'Danish','default',470,'da'), (29378,'Divehi','default',470,'dv'), (29379,'Dutch','default',470,'nl'), (29380,'Dzongkha','default',470,'dzo'), (29381,'English (Australia)','default',470,'en-au'), (29382,'English (Canada)','default',470,'en-ca'), (29383,'English (UK)','default',470,'en-gb'), (29384,'Esperanto','default',470,'eo'), (29385,'Estonian','default',470,'et'), (29386,'Faroese','default',470,'fo'), (29387,'Finnish','default',470,'fi'), (29388,'French','default',470,'fr'), (29389,'Frisian','default',470,'fy'), (29390,'Fulah','default',470,'fuc'), (29391,'Galician','default',470,'gl'), (29392,'Georgian','default',470,'ka'), (29393,'German','default',470,'de'), (29394,'German (Switzerland)','default',470,'de-ch'), (29395,'Greek','default',470,'el'), (29396,'Gujarati','default',470,'gu'), (29397,'Hawaiian','default',470,'haw'), (29398,'Hazaragi','default',470,'haz'), (29399,'Hebrew','default',470,'he'), (29400,'Hindi','default',470,'hi'), (29401,'Hungarian','default',470,'hu'), (29402,'Icelandic','default',470,'is'), (29403,'Ido','default',470,'ido'), (29404,'Indonesian','default',470,'id'), (29405,'Irish','default',470,'ga'), (29406,'Italian','default',470,'it'), (29407,'Japanese','default',470,'ja'), (29408,'Javanese','default',470,'jv'), (29409,'Kannada','default',470,'kn'), (29410,'Kazakh','default',470,'kk'), (29411,'Khmer','default',470,'km'), (29412,'Kinyarwanda','default',470,'kin'), (29413,'Kirghiz','default',470,'ky'), (29414,'Korean','default',470,'ko'), (29415,'Kurdish','default',470,'ckb'), (29416,'Kurdish (Kurmanji)','default',470,'ku'), (29417,'Lao','default',470,'lo'), (29418,'Latin','default',470,'la'), (29419,'Latvian','default',470,'lv'), (29420,'Limburgish','default',470,'li'), (29422,'Lithuanian','default',470,'lt'), (29423,'Luxembourgish','default',470,'lb'), (29424,'Macedonian','default',470,'mk'), (29425,'Malagasy','default',470,'mg'), (29426,'Malay','default',470,'ms'), (29427,'Malayalam','default',470,'ml'), (29429,'Marathi','default',470,'mr'), (29430,'Mongolian','default',470,'mn'), (29431,'Montenegrin','default',470,'me'), (29432,'Nepali','default',470,'ne'), (29433,'Norwegian (BokmÃ¥l)','default',470,'nb'), (29434,'Norwegian (Nynorsk)','default',470,'nn'), (29435,'Oriya','default',470,'ory'), (29436,'Ossetic','default',470,'os'), (29437,'Pashto','default',470,'ps'), (29438,'Persian','default',470,'fa'), (29439,'Persian (Afghanistan)','default',470,'fa-af'), (29440,'Peruvian Spanish','default',470,'es-pe'), (29441,'Polish','default',470,'pl'), (29442,'Portuguese','default',470,'pt'), (29443,'Punjabi','default',470,'pa'), (29444,'Rohingya','default',470,'rhg'), (29445,'Romanian','default',470,'ro'), (29446,'Russian','default',470,'ru'), (29447,'Sakha','default',470,'sah'), (29448,'Sanskrit','default',470,'sa-in'), (29449,'Sardinian','default',470,'srd'), (29450,'Scottish Gaelic','default',470,'gd'), (29451,'Serbian','default',470,'sr'), (29452,'Sinhala','default',470,'si'), (29453,'Slovak','default',470,'sk'), (29454,'Slovenian','default',470,'sl'), (29455,'Somali','default',470,'so'), (29456,'South Azerbaijani','default',470,'azb'), (29457,'Spanish','default',470,'es'), (29458,'Spanish (Argentina)','default',470,'es-ar'), (29459,'Spanish (Mexico)','default',470,'es-mx'), (29460,'Sundanese','default',470,'su'), (29461,'Swahili','default',470,'sw'), (29462,'Swedish','default',470,'sv'), (29463,'Swiss German','default',470,'gsw'), (29464,'Tagalog','default',470,'tl'), (29465,'Tajik','default',470,'tg'), (29466,'Tamazight (Central Atlas)','default',470,'tzm'), (29467,'Tamil','default',470,'ta'), (29468,'Tamil (Sri Lanka)','default',470,'ta-lk'), (29469,'Tatar','default',470,'tt'), (29470,'Telugu','default',470,'te'), (29471,'Thai','default',470,'th'), (29472,'Tibetan','default',470,'bo'), (29473,'Turkish','default',470,'tr'), (29474,'Turkmen','default',470,'tuk'), (29475,'Uighur','default',470,'ug'), (29476,'Ukrainian','default',470,'uk'), (29477,'Urdu','default',470,'ur'), (29478,'Uzbek','default',470,'uz'), (29479,'Venezuelan Spanish','default',470,'es-ve'), (29480,'Vietnamese','default',470,'vi'), (29481,'Welsh','default',470,'cy'), (29482,'Algerian Arabic','default',2,'arq'), (29483,'Kabyle','default',2,'kab'), (29484,'Romansh Vallader','default',2,'roh'), (29485,'Algerian Arabic','default',78,'arq'), (29486,'Kabyle','default',78,'kab'), (29487,'Romansh Vallader','default',78,'roh'), (29488,'Algerian Arabic','default',79,'arq'), (29489,'Kabyle','default',79,'kab'), (29490,'Romansh Vallader','default',79,'roh'), (29491,'Algerian Arabic','default',101,'arq'), (29492,'Kabyle','default',101,'kab'), (29493,'Romansh Vallader','default',101,'roh'), (29494,'Algerian Arabic','default',130,'arq'), (29495,'Kabyle','default',130,'kab'), (29496,'Romansh Vallader','default',130,'roh'), (29497,'Algerian Arabic','default',421,'arq'), (29498,'Kabyle','default',421,'kab'), (29499,'Romansh Vallader','default',421,'roh'), (29500,'Algerian Arabic','default',15,'arq'), (29501,'Kabyle','default',15,'kab'), (29502,'Romansh Vallader','default',15,'roh'), (29503,'Algerian Arabic','default',55,'arq'), (29504,'Kabyle','default',55,'kab'), (29505,'Romansh Vallader','default',55,'roh'), (29506,'Algerian Arabic','default',80,'arq'), (29507,'Kabyle','default',80,'kab'), (29508,'Romansh Vallader','default',80,'roh'), (29509,'Romansh Vallader','default',64,'roh'), (29510,'Kabyle','default',64,'kab'), (29511,'Algerian Arabic','default',64,'arq'), (29512,'Algerian Arabic','default',66,'arq'), (29513,'Kabyle','default',66,'kab'), (29514,'Romansh Vallader','default',66,'roh'), (29515,'Afrikaans','default',281,'af'), (29516,'Algerian Arabic','default',281,'arq'), (29517,'Arpitan','default',281,'frp'), (29518,'Azerbaijani (Turkey)','default',281,'az-tr'), (29519,'Balochi Southern','default',281,'bcc'), (29520,'Gujarati','default',281,'gu'), (29521,'Ido','default',281,'ido'), (29522,'Kabyle','default',281,'kab'), (29523,'Kinyarwanda','default',281,'kin'), (29525,'Marathi','default',281,'mr'), (29526,'Oriya','default',281,'ory'), (29527,'Romansh Vallader','default',281,'roh'), (29528,'Tajik','default',281,'tg'), (29529,'Tibetan','default',281,'bo'), (29530,'Algerian Arabic','default',470,'arq'), (29531,'Kabyle','default',470,'kab'), (29532,'Romansh Vallader','default',470,'roh'), (29533,'Algerian Arabic','default',217,'arq'), (29534,'Kabyle','default',217,'kab'), (29535,'Romansh Vallader','default',217,'roh'), (29536,'Afrikaans','default',432,'af'), (29537,'Algerian Arabic','default',432,'arq'), (29538,'Amharic','default',432,'am'), (29539,'Aragonese','default',432,'an'), (29540,'Armenian','default',432,'hy'), (29541,'Arpitan','default',432,'frp'), (29542,'Assamese','default',432,'as'), (29543,'Azerbaijani (Turkey)','default',432,'az-tr'), (29544,'Balochi Southern','default',432,'bcc'), (29545,'Belarusian','default',432,'bel'), (29546,'Breton','default',432,'br'), (29547,'Catalan (Balear)','default',432,'bal'), (29548,'Corsican','default',432,'co'), (29549,'Divehi','default',432,'dv'), (29550,'Dzongkha','default',432,'dzo'), (29551,'English (Australia)','default',432,'en-au'), (29552,'English (Canada)','default',432,'en-ca'), (29553,'German (Switzerland)','default',432,'de-ch'), (29554,'German (Switzerland) Informal','informal',432,'de-ch'), (29555,'Gujarati','default',432,'gu'), (29556,'Hawaiian','default',432,'haw'), (29557,'Hazaragi','default',432,'haz'), (29558,'Icelandic','default',432,'is'), (29559,'Ido','default',432,'ido'), (29560,'Irish','default',432,'ga'), (29561,'Kabyle','default',432,'kab'), (29562,'Kazakh','default',432,'kk'), (29563,'Khmer','default',432,'km'), (29564,'Kinyarwanda','default',432,'kin'), (29565,'Kurdish (Kurmanji)','default',432,'ku'), (29566,'Lao','default',432,'lo'), (29567,'Latin','default',432,'la'), (29568,'Limburgish','default',432,'li'), (29570,'Luxembourgish','default',432,'lb'), (29571,'Malagasy','default',432,'mg'), (29573,'Marathi','default',432,'mr'), (29574,'Montenegrin','default',432,'me'), (29575,'Oriya','default',432,'ory'), (29576,'Ossetic','default',432,'os'), (29577,'Pashto','default',432,'ps'), (29578,'Persian (Afghanistan)','default',432,'fa-af'), (29579,'Rohingya','default',432,'rhg'), (29580,'Romansh Vallader','default',432,'roh'), (29581,'Sakha','default',432,'sah'), (29582,'Sanskrit','default',432,'sa-in'), (29583,'Sardinian','default',432,'srd'), (29584,'Scottish Gaelic','default',432,'gd'), (29585,'Slovenian','default',432,'sl'), (29586,'Somali','default',432,'so'), (29587,'South Azerbaijani','default',432,'azb'), (29588,'Spanish (Argentina)','default',432,'es-ar'), (29589,'Spanish (Mexico)','default',432,'es-mx'), (29590,'Swiss German','default',432,'gsw'), (29591,'Swiss German (Formal)','formal',432,'gsw'), (29592,'Tagalog','default',432,'tl'), (29593,'Tajik','default',432,'tg'), (29594,'Tamazight (Central Atlas)','default',432,'tzm'), (29595,'Tamil','default',432,'ta'), (29596,'Tatar','default',432,'tt'), (29597,'Telugu','default',432,'te'), (29598,'Tibetan','default',432,'bo'), (29599,'Turkmen','default',432,'tuk'), (29600,'Urdu','default',432,'ur'), (29601,'Pashto','default',82,'ps'), (29602,'Pashto','default',14,'ps'), (29603,'Pashto','default',57,'ps'), (29604,'Pashto','default',264,'ps'), (29605,'Pashto','default',7,'ps'), (29606,'Pashto','default',263,'ps'), (29607,'Pashto','default',92,'ps'), (29608,'Pashto','default',21,'ps'), (29609,'Pashto','default',59,'ps'), (29610,'Pashto','default',19,'ps'), (29611,'Pashto','default',43,'ps'), (29613,'Afrikaans','default',471,'af'), (29614,'Albanian','default',471,'sq'), (29615,'Algerian Arabic','default',471,'arq'), (29616,'Amharic','default',471,'am'), (29617,'Arabic','default',471,'ar'), (29618,'Aragonese','default',471,'an'), (29619,'Armenian','default',471,'hy'), (29620,'Arpitan','default',471,'frp'), (29621,'Assamese','default',471,'as'), (29622,'Azerbaijani','default',471,'az'), (29623,'Azerbaijani (Turkey)','default',471,'az-tr'), (29624,'Balochi Southern','default',471,'bcc'), (29625,'Basque','default',471,'eu'), (29626,'Belarusian','default',471,'bel'), (29627,'Bengali','default',471,'bn'), (29628,'Bosnian','default',471,'bs'), (29629,'Brazilian Portuguese','default',471,'pt-br'), (29630,'Breton','default',471,'br'), (29631,'Bulgarian','default',471,'bg'), (29632,'Burmese','default',471,'mya'), (29633,'Catalan','default',471,'ca'), (29634,'Catalan (Balear)','default',471,'bal'), (29635,'Chilean Spanish','default',471,'es-cl'), (29636,'Chinese (China)','default',471,'zh-cn'), (29637,'Chinese (Taiwan)','default',471,'zh-tw'), (29638,'Corsican','default',471,'co'), (29639,'Croatian','default',471,'hr'), (29640,'Czech','default',471,'cs'), (29641,'Danish','default',471,'da'), (29642,'Divehi','default',471,'dv'), (29643,'Dutch','default',471,'nl'), (29644,'Dzongkha','default',471,'dzo'), (29645,'English (Australia)','default',471,'en-au'), (29646,'English (Canada)','default',471,'en-ca'), (29647,'English (UK)','default',471,'en-gb'), (29648,'Esperanto','default',471,'eo'), (29649,'Estonian','default',471,'et'), (29650,'Faroese','default',471,'fo'), (29651,'Finnish','default',471,'fi'), (29652,'French','default',471,'fr'), (29653,'Frisian','default',471,'fy'), (29654,'Fulah','default',471,'fuc'), (29655,'Galician','default',471,'gl'), (29656,'Georgian','default',471,'ka'), (29657,'German','default',471,'de'), (29658,'German (Formal)','formal',471,'de'), (29659,'German (Switzerland)','default',471,'de-ch'), (29660,'German (Switzerland) Informal','informal',471,'de-ch'), (29661,'Greek','default',471,'el'), (29662,'Gujarati','default',471,'gu'), (29663,'Hawaiian','default',471,'haw'), (29664,'Hazaragi','default',471,'haz'), (29665,'Hebrew','default',471,'he'), (29666,'Hindi','default',471,'hi'), (29667,'Hungarian','default',471,'hu'), (29668,'Icelandic','default',471,'is'), (29669,'Ido','default',471,'ido'), (29670,'Indonesian','default',471,'id'), (29671,'Irish','default',471,'ga'), (29672,'Italian','default',471,'it'), (29673,'Japanese','default',471,'ja'), (29674,'Javanese','default',471,'jv'), (29675,'Kabyle','default',471,'kab'), (29676,'Kannada','default',471,'kn'), (29677,'Kazakh','default',471,'kk'), (29678,'Khmer','default',471,'km'), (29679,'Kinyarwanda','default',471,'kin'), (29680,'Kirghiz','default',471,'ky'), (29681,'Korean','default',471,'ko'), (29682,'Kurdish','default',471,'ckb'), (29683,'Kurdish (Kurmanji)','default',471,'ku'), (29684,'Lao','default',471,'lo'), (29685,'Latin','default',471,'la'), (29686,'Latvian','default',471,'lv'), (29687,'Limburgish','default',471,'li'), (29689,'Lithuanian','default',471,'lt'), (29690,'Luxembourgish','default',471,'lb'), (29691,'Macedonian','default',471,'mk'), (29692,'Malagasy','default',471,'mg'), (29693,'Malay','default',471,'ms'), (29694,'Malayalam','default',471,'ml'), (29696,'Marathi','default',471,'mr'), (29697,'Mongolian','default',471,'mn'), (29698,'Montenegrin','default',471,'me'), (29699,'Nepali','default',471,'ne'), (29700,'Norwegian (BokmÃ¥l)','default',471,'nb'), (29701,'Norwegian (Nynorsk)','default',471,'nn'), (29702,'Oriya','default',471,'ory'), (29703,'Ossetic','default',471,'os'), (29704,'Pashto','default',471,'ps'), (29705,'Persian','default',471,'fa'), (29706,'Persian (Afghanistan)','default',471,'fa-af'), (29707,'Peruvian Spanish','default',471,'es-pe'), (29708,'Polish','default',471,'pl'), (29709,'Portuguese','default',471,'pt'), (29710,'Portuguese Informal','informal',471,'pt'), (29711,'Punjabi','default',471,'pa'), (29712,'Rohingya','default',471,'rhg'), (29713,'Romanian','default',471,'ro'), (29714,'Romansh Vallader','default',471,'roh'), (29715,'Russian','default',471,'ru'), (29716,'Sakha','default',471,'sah'), (29717,'Sanskrit','default',471,'sa-in'), (29718,'Sardinian','default',471,'srd'), (29719,'Scottish Gaelic','default',471,'gd'), (29720,'Serbian','default',471,'sr'), (29721,'Sinhala','default',471,'si'), (29722,'Slovak','default',471,'sk'), (29723,'Slovenian','default',471,'sl'), (29724,'Somali','default',471,'so'), (29725,'South Azerbaijani','default',471,'azb'), (29726,'Spanish','default',471,'es'), (29727,'Spanish (Argentina)','default',471,'es-ar'), (29728,'Spanish (Mexico)','default',471,'es-mx'), (29729,'Sundanese','default',471,'su'), (29730,'Swahili','default',471,'sw'), (29731,'Swedish','default',471,'sv'), (29732,'Swiss German','default',471,'gsw'), (29733,'Swiss German (Formal)','formal',471,'gsw'), (29734,'Tagalog','default',471,'tl'), (29735,'Tajik','default',471,'tg'), (29736,'Tamazight (Central Atlas)','default',471,'tzm'), (29737,'Tamil','default',471,'ta'), (29738,'Tamil (Sri Lanka)','default',471,'ta-lk'), (29739,'Tatar','default',471,'tt'), (29740,'Telugu','default',471,'te'), (29741,'Thai','default',471,'th'), (29742,'Tibetan','default',471,'bo'), (29743,'Turkish','default',471,'tr'), (29744,'Turkmen','default',471,'tuk'), (29745,'Uighur','default',471,'ug'), (29746,'Ukrainian','default',471,'uk'), (29747,'Urdu','default',471,'ur'), (29748,'Uzbek','default',471,'uz'), (29749,'Venezuelan Spanish','default',471,'es-ve'), (29750,'Vietnamese','default',471,'vi'), (29751,'Welsh','default',471,'cy'), (29753,'Afrikaans','default',472,'af'), (29754,'Albanian','default',472,'sq'), (29755,'Algerian Arabic','default',472,'arq'), (29756,'Amharic','default',472,'am'), (29757,'Arabic','default',472,'ar'), (29758,'Aragonese','default',472,'an'), (29759,'Armenian','default',472,'hy'), (29760,'Arpitan','default',472,'frp'), (29761,'Assamese','default',472,'as'), (29762,'Azerbaijani','default',472,'az'), (29763,'Azerbaijani (Turkey)','default',472,'az-tr'), (29764,'Balochi Southern','default',472,'bcc'), (29765,'Basque','default',472,'eu'), (29766,'Belarusian','default',472,'bel'), (29767,'Bengali','default',472,'bn'), (29768,'Bosnian','default',472,'bs'), (29769,'Brazilian Portuguese','default',472,'pt-br'), (29770,'Breton','default',472,'br'), (29771,'Bulgarian','default',472,'bg'), (29772,'Burmese','default',472,'mya'), (29773,'Catalan','default',472,'ca'), (29774,'Catalan (Balear)','default',472,'bal'), (29775,'Chilean Spanish','default',472,'es-cl'), (29776,'Chinese (China)','default',472,'zh-cn'), (29777,'Chinese (Taiwan)','default',472,'zh-tw'), (29778,'Corsican','default',472,'co'), (29779,'Croatian','default',472,'hr'), (29780,'Czech','default',472,'cs'), (29781,'Danish','default',472,'da'), (29782,'Divehi','default',472,'dv'), (29783,'Dutch','default',472,'nl'), (29784,'Dzongkha','default',472,'dzo'), (29785,'English (Australia)','default',472,'en-au'), (29786,'English (Canada)','default',472,'en-ca'), (29787,'English (UK)','default',472,'en-gb'), (29788,'Esperanto','default',472,'eo'), (29789,'Estonian','default',472,'et'), (29790,'Faroese','default',472,'fo'), (29791,'Finnish','default',472,'fi'), (29792,'French','default',472,'fr'), (29793,'Frisian','default',472,'fy'), (29794,'Fulah','default',472,'fuc'), (29795,'Galician','default',472,'gl'), (29796,'Georgian','default',472,'ka'), (29797,'German','default',472,'de'), (29798,'German (Formal)','formal',472,'de'), (29799,'German (Switzerland)','default',472,'de-ch'), (29800,'German (Switzerland) Informal','informal',472,'de-ch'), (29801,'Greek','default',472,'el'), (29802,'Gujarati','default',472,'gu'), (29803,'Hawaiian','default',472,'haw'), (29804,'Hazaragi','default',472,'haz'), (29805,'Hebrew','default',472,'he'), (29806,'Hindi','default',472,'hi'), (29807,'Hungarian','default',472,'hu'), (29808,'Icelandic','default',472,'is'), (29809,'Ido','default',472,'ido'), (29810,'Indonesian','default',472,'id'), (29811,'Irish','default',472,'ga'), (29812,'Italian','default',472,'it'), (29813,'Japanese','default',472,'ja'), (29814,'Javanese','default',472,'jv'), (29815,'Kabyle','default',472,'kab'), (29816,'Kannada','default',472,'kn'), (29817,'Kazakh','default',472,'kk'), (29818,'Khmer','default',472,'km'), (29819,'Kinyarwanda','default',472,'kin'), (29820,'Kirghiz','default',472,'ky'), (29821,'Korean','default',472,'ko'), (29822,'Kurdish','default',472,'ckb'), (29823,'Kurdish (Kurmanji)','default',472,'ku'), (29824,'Lao','default',472,'lo'), (29825,'Latin','default',472,'la'), (29826,'Latvian','default',472,'lv'), (29827,'Limburgish','default',472,'li'), (29829,'Lithuanian','default',472,'lt'), (29830,'Luxembourgish','default',472,'lb'), (29831,'Macedonian','default',472,'mk'), (29832,'Malagasy','default',472,'mg'), (29833,'Malay','default',472,'ms'), (29834,'Malayalam','default',472,'ml'), (29836,'Marathi','default',472,'mr'), (29837,'Mongolian','default',472,'mn'), (29838,'Montenegrin','default',472,'me'), (29839,'Nepali','default',472,'ne'), (29840,'Norwegian (BokmÃ¥l)','default',472,'nb'), (29841,'Norwegian (Nynorsk)','default',472,'nn'), (29842,'Oriya','default',472,'ory'), (29843,'Ossetic','default',472,'os'), (29844,'Pashto','default',472,'ps'), (29845,'Persian','default',472,'fa'), (29846,'Persian (Afghanistan)','default',472,'fa-af'), (29847,'Peruvian Spanish','default',472,'es-pe'), (29848,'Polish','default',472,'pl'), (29849,'Portuguese','default',472,'pt'), (29850,'Portuguese (Portugal) - Informal','informal',472,'pt'), (29851,'Punjabi','default',472,'pa'), (29852,'Rohingya','default',472,'rhg'), (29853,'Romanian','default',472,'ro'), (29854,'Romansh Vallader','default',472,'roh'), (29855,'Russian','default',472,'ru'), (29856,'Sakha','default',472,'sah'), (29857,'Sanskrit','default',472,'sa-in'), (29858,'Sardinian','default',472,'srd'), (29859,'Scottish Gaelic','default',472,'gd'), (29860,'Serbian','default',472,'sr'), (29861,'Sinhala','default',472,'si'), (29862,'Slovak','default',472,'sk'), (29863,'Slovenian','default',472,'sl'), (29864,'Somali','default',472,'so'), (29865,'South Azerbaijani','default',472,'azb'), (29866,'Spanish','default',472,'es'), (29867,'Spanish (Argentina)','default',472,'es-ar'), (29868,'Spanish (Mexico)','default',472,'es-mx'), (29869,'Sundanese','default',472,'su'), (29870,'Swahili','default',472,'sw'), (29871,'Swedish','default',472,'sv'), (29872,'Swiss German','default',472,'gsw'), (29873,'Swiss German (Formal)','formal',472,'gsw'), (29874,'Tagalog','default',472,'tl'), (29875,'Tajik','default',472,'tg'), (29876,'Tamazight (Central Atlas)','default',472,'tzm'), (29877,'Tamil','default',472,'ta'), (29878,'Tamil (Sri Lanka)','default',472,'ta-lk'), (29879,'Tatar','default',472,'tt'), (29880,'Telugu','default',472,'te'), (29881,'Thai','default',472,'th'), (29882,'Tibetan','default',472,'bo'), (29883,'Turkish','default',472,'tr'), (29884,'Turkmen','default',472,'tuk'), (29885,'Uighur','default',472,'ug'), (29886,'Ukrainian','default',472,'uk'), (29887,'Urdu','default',472,'ur'), (29888,'Uzbek','default',472,'uz'), (29889,'Venezuelan Spanish','default',472,'es-ve'), (29890,'Vietnamese','default',472,'vi'), (29891,'Welsh','default',472,'cy'), (29893,'Afrikaans','default',473,'af'), (29894,'Albanian','default',473,'sq'), (29895,'Algerian Arabic','default',473,'arq'), (29896,'Amharic','default',473,'am'), (29897,'Arabic','default',473,'ar'), (29898,'Aragonese','default',473,'an'), (29899,'Armenian','default',473,'hy'), (29900,'Arpitan','default',473,'frp'), (29901,'Assamese','default',473,'as'), (29902,'Azerbaijani','default',473,'az'), (29903,'Azerbaijani (Turkey)','default',473,'az-tr'), (29904,'Balochi Southern','default',473,'bcc'), (29905,'Basque','default',473,'eu'), (29906,'Belarusian','default',473,'bel'), (29907,'Bengali','default',473,'bn'), (29908,'Bosnian','default',473,'bs'), (29909,'Brazilian Portuguese','default',473,'pt-br'), (29910,'Breton','default',473,'br'), (29911,'Bulgarian','default',473,'bg'), (29912,'Burmese','default',473,'mya'), (29913,'Catalan','default',473,'ca'), (29914,'Catalan (Balear)','default',473,'bal'), (29915,'Chilean Spanish','default',473,'es-cl'), (29916,'Chinese (China)','default',473,'zh-cn'), (29917,'Chinese (Taiwan)','default',473,'zh-tw'), (29918,'Corsican','default',473,'co'), (29919,'Croatian','default',473,'hr'), (29920,'Czech','default',473,'cs'), (29921,'Danish','default',473,'da'), (29922,'Divehi','default',473,'dv'), (29923,'Dutch','default',473,'nl'), (29924,'Dzongkha','default',473,'dzo'), (29925,'English (Australia)','default',473,'en-au'), (29926,'English (Canada)','default',473,'en-ca'), (29927,'English (UK)','default',473,'en-gb'), (29928,'Esperanto','default',473,'eo'), (29929,'Estonian','default',473,'et'), (29930,'Faroese','default',473,'fo'), (29931,'Finnish','default',473,'fi'), (29932,'French','default',473,'fr'), (29933,'Frisian','default',473,'fy'), (29934,'Fulah','default',473,'fuc'), (29935,'Galician','default',473,'gl'), (29936,'Georgian','default',473,'ka'), (29937,'German','default',473,'de'), (29938,'German (Formal)','formal',473,'de'), (29939,'German (Switzerland)','default',473,'de-ch'), (29940,'German (Switzerland) Informal','informal',473,'de-ch'), (29941,'Greek','default',473,'el'), (29942,'Gujarati','default',473,'gu'), (29943,'Hawaiian','default',473,'haw'), (29944,'Hazaragi','default',473,'haz'), (29945,'Hebrew','default',473,'he'), (29946,'Hindi','default',473,'hi'), (29947,'Hungarian','default',473,'hu'), (29948,'Icelandic','default',473,'is'), (29949,'Ido','default',473,'ido'), (29950,'Indonesian','default',473,'id'), (29951,'Irish','default',473,'ga'), (29952,'Italian','default',473,'it'), (29953,'Japanese','default',473,'ja'), (29954,'Javanese','default',473,'jv'), (29955,'Kabyle','default',473,'kab'), (29956,'Kannada','default',473,'kn'), (29957,'Kazakh','default',473,'kk'), (29958,'Khmer','default',473,'km'), (29959,'Kinyarwanda','default',473,'kin'), (29960,'Kirghiz','default',473,'ky'), (29961,'Korean','default',473,'ko'), (29962,'Kurdish','default',473,'ckb'), (29963,'Kurdish (Kurmanji)','default',473,'ku'), (29964,'Lao','default',473,'lo'), (29965,'Latin','default',473,'la'), (29966,'Latvian','default',473,'lv'), (29967,'Limburgish','default',473,'li'), (29969,'Lithuanian','default',473,'lt'), (29970,'Luxembourgish','default',473,'lb'), (29971,'Macedonian','default',473,'mk'), (29972,'Malagasy','default',473,'mg'), (29973,'Malay','default',473,'ms'), (29974,'Malayalam','default',473,'ml'), (29976,'Marathi','default',473,'mr'), (29977,'Mongolian','default',473,'mn'), (29978,'Montenegrin','default',473,'me'), (29979,'Nepali','default',473,'ne'), (29980,'Norwegian (BokmÃ¥l)','default',473,'nb'), (29981,'Norwegian (Nynorsk)','default',473,'nn'), (29982,'Oriya','default',473,'ory'), (29983,'Ossetic','default',473,'os'), (29984,'Pashto','default',473,'ps'), (29985,'Persian','default',473,'fa'), (29986,'Persian (Afghanistan)','default',473,'fa-af'), (29987,'Peruvian Spanish','default',473,'es-pe'), (29988,'Polish','default',473,'pl'), (29989,'Português (Informal)','informal',473,'pt'), (29990,'Portuguese','default',473,'pt'), (29991,'Punjabi','default',473,'pa'), (29992,'Rohingya','default',473,'rhg'), (29993,'Romanian','default',473,'ro'), (29994,'Romansh Vallader','default',473,'roh'), (29995,'Russian','default',473,'ru'), (29996,'Sakha','default',473,'sah'), (29997,'Sanskrit','default',473,'sa-in'), (29998,'Sardinian','default',473,'srd'), (29999,'Scottish Gaelic','default',473,'gd'), (30000,'Serbian','default',473,'sr'), (30001,'Sinhala','default',473,'si'), (30002,'Slovak','default',473,'sk'), (30003,'Slovenian','default',473,'sl'), (30004,'Somali','default',473,'so'), (30005,'South Azerbaijani','default',473,'azb'), (30006,'Spanish','default',473,'es'), (30007,'Spanish (Argentina)','default',473,'es-ar'), (30008,'Spanish (Mexico)','default',473,'es-mx'), (30009,'Sundanese','default',473,'su'), (30010,'Swahili','default',473,'sw'), (30011,'Swedish','default',473,'sv'), (30012,'Swiss German','default',473,'gsw'), (30013,'Swiss German (Formal)','formal',473,'gsw'), (30014,'Tagalog','default',473,'tl'), (30015,'Tajik','default',473,'tg'), (30016,'Tamazight (Central Atlas)','default',473,'tzm'), (30017,'Tamil','default',473,'ta'), (30018,'Tamil (Sri Lanka)','default',473,'ta-lk'), (30019,'Tatar','default',473,'tt'), (30020,'Telugu','default',473,'te'), (30021,'Thai','default',473,'th'), (30022,'Tibetan','default',473,'bo'), (30023,'Turkish','default',473,'tr'), (30024,'Turkmen','default',473,'tuk'), (30025,'Uighur','default',473,'ug'), (30026,'Ukrainian','default',473,'uk'), (30027,'Urdu','default',473,'ur'), (30028,'Uzbek','default',473,'uz'), (30029,'Venezuelan Spanish','default',473,'es-ve'), (30030,'Vietnamese','default',473,'vi'), (30031,'Welsh','default',473,'cy'), (30033,'Afrikaans','default',474,'af'), (30034,'Albanian','default',474,'sq'), (30035,'Algerian Arabic','default',474,'arq'), (30036,'Amharic','default',474,'am'), (30037,'Arabic','default',474,'ar'), (30038,'Aragonese','default',474,'an'), (30039,'Armenian','default',474,'hy'), (30040,'Arpitan','default',474,'frp'), (30041,'Assamese','default',474,'as'), (30042,'Azerbaijani','default',474,'az'), (30043,'Azerbaijani (Turkey)','default',474,'az-tr'), (30044,'Balochi Southern','default',474,'bcc'), (30045,'Basque','default',474,'eu'), (30046,'Belarusian','default',474,'bel'), (30047,'Bengali','default',474,'bn'), (30048,'Bosnian','default',474,'bs'), (30049,'Brazilian Portuguese','default',474,'pt-br'), (30050,'Breton','default',474,'br'), (30051,'Bulgarian','default',474,'bg'), (30052,'Burmese','default',474,'mya'), (30053,'Catalan','default',474,'ca'), (30054,'Catalan (Balear)','default',474,'bal'), (30055,'Chilean Spanish','default',474,'es-cl'), (30056,'Chinese (China)','default',474,'zh-cn'), (30057,'Chinese (Taiwan)','default',474,'zh-tw'), (30058,'Corsican','default',474,'co'), (30059,'Croatian','default',474,'hr'), (30060,'Czech','default',474,'cs'), (30061,'Danish','default',474,'da'), (30062,'Divehi','default',474,'dv'), (30063,'Dutch','default',474,'nl'), (30064,'Dzongkha','default',474,'dzo'), (30065,'English (Australia)','default',474,'en-au'), (30066,'English (Canada)','default',474,'en-ca'), (30067,'English (UK)','default',474,'en-gb'), (30068,'Esperanto','default',474,'eo'), (30069,'Estonian','default',474,'et'), (30070,'Faroese','default',474,'fo'), (30071,'Finnish','default',474,'fi'), (30072,'French','default',474,'fr'), (30073,'Frisian','default',474,'fy'), (30074,'Fulah','default',474,'fuc'), (30075,'Galician','default',474,'gl'), (30076,'Georgian','default',474,'ka'), (30077,'German','default',474,'de'), (30078,'German (Formal)','formal',474,'de'), (30079,'German (Switzerland)','default',474,'de-ch'), (30080,'German (Switzerland) Informal','informal',474,'de-ch'), (30081,'Greek','default',474,'el'), (30082,'Gujarati','default',474,'gu'), (30083,'Hawaiian','default',474,'haw'), (30084,'Hazaragi','default',474,'haz'), (30085,'Hebrew','default',474,'he'), (30086,'Hindi','default',474,'hi'), (30087,'Hungarian','default',474,'hu'), (30088,'Icelandic','default',474,'is'), (30089,'Ido','default',474,'ido'), (30090,'Indonesian','default',474,'id'), (30091,'Irish','default',474,'ga'), (30092,'Italian','default',474,'it'), (30093,'Japanese','default',474,'ja'), (30094,'Javanese','default',474,'jv'), (30095,'Kabyle','default',474,'kab'), (30096,'Kannada','default',474,'kn'), (30097,'Kazakh','default',474,'kk'), (30098,'Khmer','default',474,'km'), (30099,'Kinyarwanda','default',474,'kin'), (30100,'Kirghiz','default',474,'ky'), (30101,'Korean','default',474,'ko'), (30102,'Kurdish','default',474,'ckb'), (30103,'Kurdish (Kurmanji)','default',474,'ku'), (30104,'Lao','default',474,'lo'), (30105,'Latin','default',474,'la'), (30106,'Latvian','default',474,'lv'), (30107,'Limburgish','default',474,'li'), (30109,'Lithuanian','default',474,'lt'), (30110,'Luxembourgish','default',474,'lb'), (30111,'Macedonian','default',474,'mk'), (30112,'Malagasy','default',474,'mg'), (30113,'Malay','default',474,'ms'), (30114,'Malayalam','default',474,'ml'), (30116,'Marathi','default',474,'mr'), (30117,'Mongolian','default',474,'mn'), (30118,'Montenegrin','default',474,'me'), (30119,'Nepali','default',474,'ne'), (30120,'Norwegian (BokmÃ¥l)','default',474,'nb'), (30121,'Norwegian (Nynorsk)','default',474,'nn'), (30122,'Oriya','default',474,'ory'), (30123,'Ossetic','default',474,'os'), (30124,'Pashto','default',474,'ps'), (30125,'Persian','default',474,'fa'), (30126,'Persian (Afghanistan)','default',474,'fa-af'), (30127,'Peruvian Spanish','default',474,'es-pe'), (30128,'Polish','default',474,'pl'), (30129,'Portuguese','default',474,'pt'), (30130,'Portuguese (Informal)','informal',474,'pt'), (30131,'Punjabi','default',474,'pa'), (30132,'Rohingya','default',474,'rhg'), (30133,'Romanian','default',474,'ro'), (30134,'Romansh Vallader','default',474,'roh'), (30135,'Russian','default',474,'ru'), (30136,'Sakha','default',474,'sah'), (30137,'Sanskrit','default',474,'sa-in'), (30138,'Sardinian','default',474,'srd'), (30139,'Scottish Gaelic','default',474,'gd'), (30140,'Serbian','default',474,'sr'), (30141,'Sinhala','default',474,'si'), (30142,'Slovak','default',474,'sk'), (30143,'Slovenian','default',474,'sl'), (30144,'Somali','default',474,'so'), (30145,'South Azerbaijani','default',474,'azb'), (30146,'Spanish','default',474,'es'), (30147,'Spanish (Argentina)','default',474,'es-ar'), (30148,'Spanish (Mexico)','default',474,'es-mx'), (30149,'Sundanese','default',474,'su'), (30150,'Swahili','default',474,'sw'), (30151,'Swedish','default',474,'sv'), (30152,'Swiss German','default',474,'gsw'), (30153,'Swiss German (Formal)','formal',474,'gsw'), (30154,'Tagalog','default',474,'tl'), (30155,'Tajik','default',474,'tg'), (30156,'Tamazight (Central Atlas)','default',474,'tzm'), (30157,'Tamil','default',474,'ta'), (30158,'Tamil (Sri Lanka)','default',474,'ta-lk'), (30159,'Tatar','default',474,'tt'), (30160,'Telugu','default',474,'te'), (30161,'Thai','default',474,'th'), (30162,'Tibetan','default',474,'bo'), (30163,'Turkish','default',474,'tr'), (30164,'Turkmen','default',474,'tuk'), (30165,'Uighur','default',474,'ug'), (30166,'Ukrainian','default',474,'uk'), (30167,'Urdu','default',474,'ur'), (30168,'Uzbek','default',474,'uz'), (30169,'Venezuelan Spanish','default',474,'es-ve'), (30170,'Vietnamese','default',474,'vi'), (30171,'Welsh','default',474,'cy'), (30173,'Afrikaans','default',475,'af'), (30174,'Albanian','default',475,'sq'), (30175,'Algerian Arabic','default',475,'arq'), (30176,'Amharic','default',475,'am'), (30177,'Arabic','default',475,'ar'), (30178,'Aragonese','default',475,'an'), (30179,'Armenian','default',475,'hy'), (30180,'Arpitan','default',475,'frp'), (30181,'Assamese','default',475,'as'), (30182,'Azerbaijani','default',475,'az'), (30183,'Azerbaijani (Turkey)','default',475,'az-tr'), (30184,'Balochi Southern','default',475,'bcc'), (30185,'Basque','default',475,'eu'), (30186,'Belarusian','default',475,'bel'), (30187,'Bengali','default',475,'bn'), (30188,'Bosnian','default',475,'bs'), (30189,'Brazilian Portuguese','default',475,'pt-br'), (30190,'Breton','default',475,'br'), (30191,'Bulgarian','default',475,'bg'), (30192,'Burmese','default',475,'mya'), (30193,'Catalan','default',475,'ca'), (30194,'Catalan (Balear)','default',475,'bal'), (30195,'Chilean Spanish','default',475,'es-cl'), (30196,'Chinese (China)','default',475,'zh-cn'), (30197,'Chinese (Taiwan)','default',475,'zh-tw'), (30198,'Corsican','default',475,'co'), (30199,'Croatian','default',475,'hr'), (30200,'Czech','default',475,'cs'), (30201,'Danish','default',475,'da'), (30202,'Divehi','default',475,'dv'), (30203,'Dutch','default',475,'nl'), (30204,'Dzongkha','default',475,'dzo'), (30205,'English (Australia)','default',475,'en-au'), (30206,'English (Canada)','default',475,'en-ca'), (30207,'English (UK)','default',475,'en-gb'), (30208,'Esperanto','default',475,'eo'), (30209,'Estonian','default',475,'et'), (30210,'Faroese','default',475,'fo'), (30211,'Finnish','default',475,'fi'), (30212,'French','default',475,'fr'), (30213,'Frisian','default',475,'fy'), (30214,'Fulah','default',475,'fuc'), (30215,'Galician','default',475,'gl'), (30216,'Georgian','default',475,'ka'), (30217,'German','default',475,'de'), (30218,'German (Formal)','formal',475,'de'), (30219,'German (Switzerland)','default',475,'de-ch'), (30220,'German (Switzerland) Informal','informal',475,'de-ch'), (30221,'Greek','default',475,'el'), (30222,'Gujarati','default',475,'gu'), (30223,'Hawaiian','default',475,'haw'), (30224,'Hazaragi','default',475,'haz'), (30225,'Hebrew','default',475,'he'), (30226,'Hindi','default',475,'hi'), (30227,'Hungarian','default',475,'hu'), (30228,'Icelandic','default',475,'is'), (30229,'Ido','default',475,'ido'), (30230,'Indonesian','default',475,'id'), (30231,'Irish','default',475,'ga'), (30232,'Italian','default',475,'it'), (30233,'Japanese','default',475,'ja'), (30234,'Javanese','default',475,'jv'), (30235,'Kabyle','default',475,'kab'), (30236,'Kannada','default',475,'kn'), (30237,'Kazakh','default',475,'kk'), (30238,'Khmer','default',475,'km'), (30239,'Kinyarwanda','default',475,'kin'), (30240,'Kirghiz','default',475,'ky'), (30241,'Korean','default',475,'ko'), (30242,'Kurdish','default',475,'ckb'), (30243,'Kurdish (Kurmanji)','default',475,'ku'), (30244,'Lao','default',475,'lo'), (30245,'Latin','default',475,'la'), (30246,'Latvian','default',475,'lv'), (30247,'Limburgish','default',475,'li'), (30249,'Lithuanian','default',475,'lt'), (30250,'Luxembourgish','default',475,'lb'), (30251,'Macedonian','default',475,'mk'), (30252,'Malagasy','default',475,'mg'), (30253,'Malay','default',475,'ms'), (30254,'Malayalam','default',475,'ml'), (30256,'Marathi','default',475,'mr'), (30257,'Mongolian','default',475,'mn'), (30258,'Montenegrin','default',475,'me'), (30259,'Nepali','default',475,'ne'), (30260,'Norwegian (BokmÃ¥l)','default',475,'nb'), (30261,'Norwegian (Nynorsk)','default',475,'nn'), (30262,'Oriya','default',475,'ory'), (30263,'Ossetic','default',475,'os'), (30264,'Pashto','default',475,'ps'), (30265,'Persian','default',475,'fa'), (30266,'Persian (Afghanistan)','default',475,'fa-af'), (30267,'Peruvian Spanish','default',475,'es-pe'), (30268,'Polish','default',475,'pl'), (30269,'Portuguese','default',475,'pt'), (30270,'Portuguese Informal','informal',475,'pt'), (30271,'Punjabi','default',475,'pa'), (30272,'Rohingya','default',475,'rhg'), (30273,'Romanian','default',475,'ro'), (30274,'Romansh Vallader','default',475,'roh'), (30275,'Russian','default',475,'ru'), (30276,'Sakha','default',475,'sah'), (30277,'Sanskrit','default',475,'sa-in'), (30278,'Sardinian','default',475,'srd'), (30279,'Scottish Gaelic','default',475,'gd'), (30280,'Serbian','default',475,'sr'), (30281,'Sinhala','default',475,'si'), (30282,'Slovak','default',475,'sk'), (30283,'Slovenian','default',475,'sl'), (30284,'Somali','default',475,'so'), (30285,'South Azerbaijani','default',475,'azb'), (30286,'Spanish','default',475,'es'), (30287,'Spanish (Argentina)','default',475,'es-ar'), (30288,'Spanish (Mexico)','default',475,'es-mx'), (30289,'Sundanese','default',475,'su'), (30290,'Swahili','default',475,'sw'), (30291,'Swedish','default',475,'sv'), (30292,'Swiss German','default',475,'gsw'), (30293,'Swiss German (Formal)','formal',475,'gsw'), (30294,'Tagalog','default',475,'tl'), (30295,'Tajik','default',475,'tg'), (30296,'Tamazight (Central Atlas)','default',475,'tzm'), (30297,'Tamil','default',475,'ta'), (30298,'Tamil (Sri Lanka)','default',475,'ta-lk'), (30299,'Tatar','default',475,'tt'), (30300,'Telugu','default',475,'te'), (30301,'Thai','default',475,'th'), (30302,'Tibetan','default',475,'bo'), (30303,'Turkish','default',475,'tr'), (30304,'Turkmen','default',475,'tuk'), (30305,'Uighur','default',475,'ug'), (30306,'Ukrainian','default',475,'uk'), (30307,'Urdu','default',475,'ur'), (30308,'Uzbek','default',475,'uz'), (30309,'Venezuelan Spanish','default',475,'es-ve'), (30310,'Vietnamese','default',475,'vi'), (30311,'Welsh','default',475,'cy'), (30313,'Afrikaans','default',476,'af'), (30314,'Albanian','default',476,'sq'), (30315,'Algerian Arabic','default',476,'arq'), (30316,'Amharic','default',476,'am'), (30317,'Arabic','default',476,'ar'), (30318,'Aragonese','default',476,'an'), (30319,'Armenian','default',476,'hy'), (30320,'Arpitan','default',476,'frp'), (30321,'Assamese','default',476,'as'), (30322,'Azerbaijani','default',476,'az'), (30323,'Azerbaijani (Turkey)','default',476,'az-tr'), (30324,'Balochi Southern','default',476,'bcc'), (30325,'Basque','default',476,'eu'), (30326,'Belarusian','default',476,'bel'), (30327,'Bengali','default',476,'bn'), (30328,'Bosnian','default',476,'bs'), (30329,'Brazilian Portuguese','default',476,'pt-br'), (30330,'Breton','default',476,'br'), (30331,'Bulgarian','default',476,'bg'), (30332,'Burmese','default',476,'mya'), (30333,'Catalan','default',476,'ca'), (30334,'Catalan (Balear)','default',476,'bal'), (30335,'Chilean Spanish','default',476,'es-cl'), (30336,'Chinese (China)','default',476,'zh-cn'), (30337,'Chinese (Taiwan)','default',476,'zh-tw'), (30338,'Corsican','default',476,'co'), (30339,'Croatian','default',476,'hr'), (30340,'Czech','default',476,'cs'), (30341,'Danish','default',476,'da'), (30342,'Divehi','default',476,'dv'), (30343,'Dutch','default',476,'nl'), (30344,'Dzongkha','default',476,'dzo'), (30345,'English (Australia)','default',476,'en-au'), (30346,'English (Canada)','default',476,'en-ca'), (30347,'English (UK)','default',476,'en-gb'), (30348,'Esperanto','default',476,'eo'), (30349,'Estonian','default',476,'et'), (30350,'Faroese','default',476,'fo'), (30351,'Finnish','default',476,'fi'), (30352,'French','default',476,'fr'), (30353,'Frisian','default',476,'fy'), (30354,'Fulah','default',476,'fuc'), (30355,'Galician','default',476,'gl'), (30356,'Georgian','default',476,'ka'), (30357,'German','default',476,'de'), (30358,'German (Formal)','formal',476,'de'), (30359,'German (Switzerland)','default',476,'de-ch'), (30360,'German (Switzerland) Informal','informal',476,'de-ch'), (30361,'Greek','default',476,'el'), (30362,'Gujarati','default',476,'gu'), (30363,'Hawaiian','default',476,'haw'), (30364,'Hazaragi','default',476,'haz'), (30365,'Hebrew','default',476,'he'), (30366,'Hindi','default',476,'hi'), (30367,'Hungarian','default',476,'hu'), (30368,'Icelandic','default',476,'is'), (30369,'Ido','default',476,'ido'), (30370,'Indonesian','default',476,'id'), (30371,'Irish','default',476,'ga'), (30372,'Italian','default',476,'it'), (30373,'Japanese','default',476,'ja'), (30374,'Javanese','default',476,'jv'), (30375,'Kabyle','default',476,'kab'), (30376,'Kannada','default',476,'kn'), (30377,'Kazakh','default',476,'kk'), (30378,'Khmer','default',476,'km'), (30379,'Kinyarwanda','default',476,'kin'), (30380,'Kirghiz','default',476,'ky'), (30381,'Korean','default',476,'ko'), (30382,'Kurdish','default',476,'ckb'), (30383,'Kurdish (Kurmanji)','default',476,'ku'), (30384,'Lao','default',476,'lo'), (30385,'Latin','default',476,'la'), (30386,'Latvian','default',476,'lv'), (30387,'Limburgish','default',476,'li'), (30389,'Lithuanian','default',476,'lt'), (30390,'Luxembourgish','default',476,'lb'), (30391,'Macedonian','default',476,'mk'), (30392,'Malagasy','default',476,'mg'), (30393,'Malay','default',476,'ms'), (30394,'Malayalam','default',476,'ml'), (30396,'Marathi','default',476,'mr'), (30397,'Mongolian','default',476,'mn'), (30398,'Montenegrin','default',476,'me'), (30399,'Nepali','default',476,'ne'), (30400,'Norwegian (BokmÃ¥l)','default',476,'nb'), (30401,'Norwegian (Nynorsk)','default',476,'nn'), (30402,'Oriya','default',476,'ory'), (30403,'Ossetic','default',476,'os'), (30404,'Pashto','default',476,'ps'), (30405,'Persian','default',476,'fa'), (30406,'Persian (Afghanistan)','default',476,'fa-af'), (30407,'Peruvian Spanish','default',476,'es-pe'), (30408,'Polish','default',476,'pl'), (30409,'Portuguese','default',476,'pt'), (30410,'Portuguese Informal','informal',476,'pt'), (30411,'Punjabi','default',476,'pa'), (30412,'Rohingya','default',476,'rhg'), (30413,'Romanian','default',476,'ro'), (30414,'Romansh Vallader','default',476,'roh'), (30415,'Russian','default',476,'ru'), (30416,'Sakha','default',476,'sah'), (30417,'Sanskrit','default',476,'sa-in'), (30418,'Sardinian','default',476,'srd'), (30419,'Scottish Gaelic','default',476,'gd'), (30420,'Serbian','default',476,'sr'), (30421,'Sinhala','default',476,'si'), (30422,'Slovak','default',476,'sk'), (30423,'Slovenian','default',476,'sl'), (30424,'Somali','default',476,'so'), (30425,'South Azerbaijani','default',476,'azb'), (30426,'Spanish','default',476,'es'), (30427,'Spanish (Argentina)','default',476,'es-ar'), (30428,'Spanish (Mexico)','default',476,'es-mx'), (30429,'Sundanese','default',476,'su'), (30430,'Swahili','default',476,'sw'), (30431,'Swedish','default',476,'sv'), (30432,'Swiss German','default',476,'gsw'), (30433,'Swiss German (Formal)','formal',476,'gsw'), (30434,'Tagalog','default',476,'tl'), (30435,'Tajik','default',476,'tg'), (30436,'Tamazight (Central Atlas)','default',476,'tzm'), (30437,'Tamil','default',476,'ta'), (30438,'Tamil (Sri Lanka)','default',476,'ta-lk'), (30439,'Tatar','default',476,'tt'), (30440,'Telugu','default',476,'te'), (30441,'Thai','default',476,'th'), (30442,'Tibetan','default',476,'bo'), (30443,'Turkish','default',476,'tr'), (30444,'Turkmen','default',476,'tuk'), (30445,'Uighur','default',476,'ug'), (30446,'Ukrainian','default',476,'uk'), (30447,'Urdu','default',476,'ur'), (30448,'Uzbek','default',476,'uz'), (30449,'Venezuelan Spanish','default',476,'es-ve'), (30450,'Vietnamese','default',476,'vi'), (30451,'Welsh','default',476,'cy'), (30453,'Afrikaans','default',477,'af'), (30454,'Albanian','default',477,'sq'), (30455,'Algerian Arabic','default',477,'arq'), (30456,'Amharic','default',477,'am'), (30457,'Arabic','default',477,'ar'), (30458,'Aragonese','default',477,'an'), (30459,'Armenian','default',477,'hy'), (30460,'Arpitan','default',477,'frp'), (30461,'Assamese','default',477,'as'), (30462,'Azerbaijani','default',477,'az'), (30463,'Azerbaijani (Turkey)','default',477,'az-tr'), (30464,'Balochi Southern','default',477,'bcc'), (30465,'Basque','default',477,'eu'), (30466,'Belarusian','default',477,'bel'), (30467,'Bengali','default',477,'bn'), (30468,'Bosnian','default',477,'bs'), (30469,'Brazilian Portuguese','default',477,'pt-br'), (30470,'Breton','default',477,'br'), (30471,'Bulgarian','default',477,'bg'), (30472,'Burmese','default',477,'mya'), (30473,'Catalan','default',477,'ca'), (30474,'Catalan (Balear)','default',477,'bal'), (30475,'Chilean Spanish','default',477,'es-cl'), (30476,'Chinese (China)','default',477,'zh-cn'), (30477,'Chinese (Taiwan)','default',477,'zh-tw'), (30478,'Corsican','default',477,'co'), (30479,'Croatian','default',477,'hr'), (30480,'Czech','default',477,'cs'), (30481,'Danish','default',477,'da'), (30482,'Divehi','default',477,'dv'), (30483,'Dutch','default',477,'nl'), (30484,'Dzongkha','default',477,'dzo'), (30485,'English (Australia)','default',477,'en-au'), (30486,'English (Canada)','default',477,'en-ca'), (30487,'English (UK)','default',477,'en-gb'), (30488,'Esperanto','default',477,'eo'), (30489,'Estonian','default',477,'et'), (30490,'Faroese','default',477,'fo'), (30491,'Finnish','default',477,'fi'), (30492,'French','default',477,'fr'), (30493,'Frisian','default',477,'fy'), (30494,'Fulah','default',477,'fuc'), (30495,'Galician','default',477,'gl'), (30496,'Georgian','default',477,'ka'), (30497,'German','default',477,'de'), (30498,'German (Formal)','formal',477,'de'), (30499,'German (Switzerland)','default',477,'de-ch'), (30500,'German (Switzerland) Informal','informal',477,'de-ch'), (30501,'Greek','default',477,'el'), (30502,'Gujarati','default',477,'gu'), (30503,'Hawaiian','default',477,'haw'), (30504,'Hazaragi','default',477,'haz'), (30505,'Hebrew','default',477,'he'), (30506,'Hindi','default',477,'hi'), (30507,'Hungarian','default',477,'hu'), (30508,'Icelandic','default',477,'is'), (30509,'Ido','default',477,'ido'), (30510,'Indonesian','default',477,'id'), (30511,'Irish','default',477,'ga'), (30512,'Italian','default',477,'it'), (30513,'Japanese','default',477,'ja'), (30514,'Javanese','default',477,'jv'), (30515,'Kabyle','default',477,'kab'), (30516,'Kannada','default',477,'kn'), (30517,'Kazakh','default',477,'kk'), (30518,'Khmer','default',477,'km'), (30519,'Kinyarwanda','default',477,'kin'), (30520,'Kirghiz','default',477,'ky'), (30521,'Korean','default',477,'ko'), (30522,'Kurdish','default',477,'ckb'), (30523,'Kurdish (Kurmanji)','default',477,'ku'), (30524,'Lao','default',477,'lo'), (30525,'Latin','default',477,'la'), (30526,'Latvian','default',477,'lv'), (30527,'Limburgish','default',477,'li'), (30529,'Lithuanian','default',477,'lt'), (30530,'Luxembourgish','default',477,'lb'), (30531,'Macedonian','default',477,'mk'), (30532,'Malagasy','default',477,'mg'), (30533,'Malay','default',477,'ms'), (30534,'Malayalam','default',477,'ml'), (30536,'Marathi','default',477,'mr'), (30537,'Mongolian','default',477,'mn'), (30538,'Montenegrin','default',477,'me'), (30539,'Nepali','default',477,'ne'), (30540,'Norwegian (BokmÃ¥l)','default',477,'nb'), (30541,'Norwegian (Nynorsk)','default',477,'nn'), (30542,'Oriya','default',477,'ory'), (30543,'Ossetic','default',477,'os'), (30544,'Pashto','default',477,'ps'), (30545,'Persian','default',477,'fa'), (30546,'Persian (Afghanistan)','default',477,'fa-af'), (30547,'Peruvian Spanish','default',477,'es-pe'), (30548,'Polish','default',477,'pl'), (30549,'Portuguese','default',477,'pt'), (30550,'Portuguese (Informal)','informal',477,'pt'), (30551,'Punjabi','default',477,'pa'), (30552,'Rohingya','default',477,'rhg'), (30553,'Romanian','default',477,'ro'), (30554,'Romansh Vallader','default',477,'roh'), (30555,'Russian','default',477,'ru'), (30556,'Sakha','default',477,'sah'), (30557,'Sanskrit','default',477,'sa-in'), (30558,'Sardinian','default',477,'srd'), (30559,'Scottish Gaelic','default',477,'gd'), (30560,'Serbian','default',477,'sr'), (30561,'Sinhala','default',477,'si'), (30562,'Slovak','default',477,'sk'), (30563,'Slovenian','default',477,'sl'), (30564,'Somali','default',477,'so'), (30565,'South Azerbaijani','default',477,'azb'), (30566,'Spanish','default',477,'es'), (30567,'Spanish (Argentina)','default',477,'es-ar'), (30568,'Spanish (Mexico)','default',477,'es-mx'), (30569,'Sundanese','default',477,'su'), (30570,'Swahili','default',477,'sw'), (30571,'Swedish','default',477,'sv'), (30572,'Swiss German','default',477,'gsw'), (30573,'Swiss German (Formal)','formal',477,'gsw'), (30574,'Tagalog','default',477,'tl'), (30575,'Tajik','default',477,'tg'), (30576,'Tamazight (Central Atlas)','default',477,'tzm'), (30577,'Tamil','default',477,'ta'), (30578,'Tamil (Sri Lanka)','default',477,'ta-lk'), (30579,'Tatar','default',477,'tt'), (30580,'Telugu','default',477,'te'), (30581,'Thai','default',477,'th'), (30582,'Tibetan','default',477,'bo'), (30583,'Turkish','default',477,'tr'), (30584,'Turkmen','default',477,'tuk'), (30585,'Uighur','default',477,'ug'), (30586,'Ukrainian','default',477,'uk'), (30587,'Urdu','default',477,'ur'), (30588,'Uzbek','default',477,'uz'), (30589,'Venezuelan Spanish','default',477,'es-ve'), (30590,'Vietnamese','default',477,'vi'), (30591,'Welsh','default',477,'cy'), (30593,'Afrikaans','default',478,'af'), (30594,'Albanian','default',478,'sq'), (30595,'Algerian Arabic','default',478,'arq'), (30596,'Amharic','default',478,'am'), (30597,'Arabic','default',478,'ar'), (30598,'Aragonese','default',478,'an'), (30599,'Armenian','default',478,'hy'), (30600,'Arpitan','default',478,'frp'), (30601,'Assamese','default',478,'as'), (30602,'Azerbaijani','default',478,'az'), (30603,'Azerbaijani (Turkey)','default',478,'az-tr'), (30604,'Balochi Southern','default',478,'bcc'), (30605,'Basque','default',478,'eu'), (30606,'Belarusian','default',478,'bel'), (30607,'Bengali','default',478,'bn'), (30608,'Bosnian','default',478,'bs'), (30609,'Brazilian Portuguese','default',478,'pt-br'), (30610,'Breton','default',478,'br'), (30611,'Bulgarian','default',478,'bg'), (30612,'Burmese','default',478,'mya'), (30613,'Catalan','default',478,'ca'), (30614,'Catalan (Balear)','default',478,'bal'), (30615,'Chilean Spanish','default',478,'es-cl'), (30616,'Chinese (China)','default',478,'zh-cn'), (30617,'Chinese (Taiwan)','default',478,'zh-tw'), (30618,'Corsican','default',478,'co'), (30619,'Croatian','default',478,'hr'), (30620,'Czech','default',478,'cs'), (30621,'Danish','default',478,'da'), (30622,'Divehi','default',478,'dv'), (30623,'Dutch','default',478,'nl'), (30624,'Dzongkha','default',478,'dzo'), (30625,'English (Australia)','default',478,'en-au'), (30626,'English (Canada)','default',478,'en-ca'), (30627,'English (UK)','default',478,'en-gb'), (30628,'Esperanto','default',478,'eo'), (30629,'Estonian','default',478,'et'), (30630,'Faroese','default',478,'fo'), (30631,'Finnish','default',478,'fi'), (30632,'French','default',478,'fr'), (30633,'Frisian','default',478,'fy'), (30634,'Fulah','default',478,'fuc'), (30635,'Galician','default',478,'gl'), (30636,'Georgian','default',478,'ka'), (30637,'German','default',478,'de'), (30638,'German (Formal)','formal',478,'de'), (30639,'German (Switzerland)','default',478,'de-ch'), (30640,'German (Switzerland) Informal','informal',478,'de-ch'), (30641,'Greek','default',478,'el'), (30642,'Gujarati','default',478,'gu'), (30643,'Hawaiian','default',478,'haw'), (30644,'Hazaragi','default',478,'haz'), (30645,'Hebrew','default',478,'he'), (30646,'Hindi','default',478,'hi'), (30647,'Hungarian','default',478,'hu'), (30648,'Icelandic','default',478,'is'), (30649,'Ido','default',478,'ido'), (30650,'Indonesian','default',478,'id'), (30651,'Irish','default',478,'ga'), (30652,'Italian','default',478,'it'), (30653,'Japanese','default',478,'ja'), (30654,'Javanese','default',478,'jv'), (30655,'Kabyle','default',478,'kab'), (30656,'Kannada','default',478,'kn'), (30657,'Kazakh','default',478,'kk'), (30658,'Khmer','default',478,'km'), (30659,'Kinyarwanda','default',478,'kin'), (30660,'Kirghiz','default',478,'ky'), (30661,'Korean','default',478,'ko'), (30662,'Kurdish','default',478,'ckb'), (30663,'Kurdish (Kurmanji)','default',478,'ku'), (30664,'Lao','default',478,'lo'), (30665,'Latin','default',478,'la'), (30666,'Latvian','default',478,'lv'), (30667,'Limburgish','default',478,'li'), (30669,'Lithuanian','default',478,'lt'), (30670,'Luxembourgish','default',478,'lb'), (30671,'Macedonian','default',478,'mk'), (30672,'Malagasy','default',478,'mg'), (30673,'Malay','default',478,'ms'), (30674,'Malayalam','default',478,'ml'), (30676,'Marathi','default',478,'mr'), (30677,'Mongolian','default',478,'mn'), (30678,'Montenegrin','default',478,'me'), (30679,'Nepali','default',478,'ne'), (30680,'Norwegian (BokmÃ¥l)','default',478,'nb'), (30681,'Norwegian (Nynorsk)','default',478,'nn'), (30682,'Oriya','default',478,'ory'), (30683,'Ossetic','default',478,'os'), (30684,'Pashto','default',478,'ps'), (30685,'Persian','default',478,'fa'), (30686,'Persian (Afghanistan)','default',478,'fa-af'), (30687,'Peruvian Spanish','default',478,'es-pe'), (30688,'Polish','default',478,'pl'), (30689,'Portuguese','default',478,'pt'), (30690,'Portuguese (Informal)','informal',478,'pt'), (30691,'Punjabi','default',478,'pa'), (30692,'Rohingya','default',478,'rhg'), (30693,'Romanian','default',478,'ro'), (30694,'Romansh Vallader','default',478,'roh'), (30695,'Russian','default',478,'ru'), (30696,'Sakha','default',478,'sah'), (30697,'Sanskrit','default',478,'sa-in'), (30698,'Sardinian','default',478,'srd'), (30699,'Scottish Gaelic','default',478,'gd'), (30700,'Serbian','default',478,'sr'), (30701,'Sinhala','default',478,'si'), (30702,'Slovak','default',478,'sk'), (30703,'Slovenian','default',478,'sl'), (30704,'Somali','default',478,'so'), (30705,'South Azerbaijani','default',478,'azb'), (30706,'Spanish','default',478,'es'), (30707,'Spanish (Argentina)','default',478,'es-ar'), (30708,'Spanish (Mexico)','default',478,'es-mx'), (30709,'Sundanese','default',478,'su'), (30710,'Swahili','default',478,'sw'), (30711,'Swedish','default',478,'sv'), (30712,'Swiss German','default',478,'gsw'), (30713,'Swiss German (Formal)','formal',478,'gsw'), (30714,'Tagalog','default',478,'tl'), (30715,'Tajik','default',478,'tg'), (30716,'Tamazight (Central Atlas)','default',478,'tzm'), (30717,'Tamil','default',478,'ta'), (30718,'Tamil (Sri Lanka)','default',478,'ta-lk'), (30719,'Tatar','default',478,'tt'), (30720,'Telugu','default',478,'te'), (30721,'Thai','default',478,'th'), (30722,'Tibetan','default',478,'bo'), (30723,'Turkish','default',478,'tr'), (30724,'Turkmen','default',478,'tuk'), (30725,'Uighur','default',478,'ug'), (30726,'Ukrainian','default',478,'uk'), (30727,'Urdu','default',478,'ur'), (30728,'Uzbek','default',478,'uz'), (30729,'Venezuelan Spanish','default',478,'es-ve'), (30730,'Vietnamese','default',478,'vi'), (30731,'Welsh','default',478,'cy'), (30733,'Afrikaans','default',479,'af'), (30734,'Albanian','default',479,'sq'), (30735,'Algerian Arabic','default',479,'arq'), (30736,'Amharic','default',479,'am'), (30737,'Arabic','default',479,'ar'), (30738,'Aragonese','default',479,'an'), (30739,'Armenian','default',479,'hy'), (30740,'Arpitan','default',479,'frp'), (30741,'Assamese','default',479,'as'), (30742,'Azerbaijani','default',479,'az'), (30743,'Azerbaijani (Turkey)','default',479,'az-tr'), (30744,'Balochi Southern','default',479,'bcc'), (30745,'Basque','default',479,'eu'), (30746,'Belarusian','default',479,'bel'), (30747,'Bengali','default',479,'bn'), (30748,'Bosnian','default',479,'bs'), (30749,'Brazilian Portuguese','default',479,'pt-br'), (30750,'Breton','default',479,'br'), (30751,'Bulgarian','default',479,'bg'), (30752,'Burmese','default',479,'mya'), (30753,'Catalan','default',479,'ca'), (30754,'Catalan (Balear)','default',479,'bal'), (30755,'Chilean Spanish','default',479,'es-cl'), (30756,'Chinese (China)','default',479,'zh-cn'), (30757,'Chinese (Taiwan)','default',479,'zh-tw'), (30758,'Corsican','default',479,'co'), (30759,'Croatian','default',479,'hr'), (30760,'Czech','default',479,'cs'), (30761,'Danish','default',479,'da'), (30762,'Divehi','default',479,'dv'), (30763,'Dutch','default',479,'nl'), (30764,'Dzongkha','default',479,'dzo'), (30765,'Esperanto','default',479,'eo'), (30766,'Estonian','default',479,'et'), (30767,'Faroese','default',479,'fo'), (30768,'Finnish','default',479,'fi'), (30769,'French','default',479,'fr'), (30770,'Frisian','default',479,'fy'), (30771,'Fulah','default',479,'fuc'), (30772,'Galician','default',479,'gl'), (30773,'Georgian','default',479,'ka'), (30774,'German','default',479,'de'), (30775,'German (Formal)','formal',479,'de'), (30776,'German (Switzerland)','default',479,'de-ch'), (30777,'German (Switzerland) Informal','informal',479,'de-ch'), (30778,'Greek','default',479,'el'), (30779,'Gujarati','default',479,'gu'), (30780,'Hawaiian','default',479,'haw'), (30781,'Hazaragi','default',479,'haz'), (30782,'Hebrew','default',479,'he'), (30783,'Hindi','default',479,'hi'), (30784,'Hungarian','default',479,'hu'), (30785,'Icelandic','default',479,'is'), (30786,'Ido','default',479,'ido'), (30787,'Indonesian','default',479,'id'), (30788,'Irish','default',479,'ga'), (30789,'Italian','default',479,'it'), (30790,'Japanese','default',479,'ja'), (30791,'Javanese','default',479,'jv'), (30792,'Kabyle','default',479,'kab'), (30793,'Kannada','default',479,'kn'), (30794,'Kazakh','default',479,'kk'), (30795,'Khmer','default',479,'km'), (30796,'Kinyarwanda','default',479,'kin'), (30797,'Kirghiz','default',479,'ky'), (30798,'Korean','default',479,'ko'), (30799,'Kurdish','default',479,'ckb'), (30800,'Kurdish (Kurmanji)','default',479,'ku'), (30801,'Lao','default',479,'lo'), (30802,'Latin','default',479,'la'), (30803,'Latvian','default',479,'lv'), (30804,'Limburgish','default',479,'li'), (30806,'Lithuanian','default',479,'lt'), (30807,'Luxembourgish','default',479,'lb'), (30808,'Macedonian','default',479,'mk'), (30809,'Malagasy','default',479,'mg'), (30810,'Malay','default',479,'ms'), (30811,'Malayalam','default',479,'ml'), (30813,'Marathi','default',479,'mr'), (30814,'Mongolian','default',479,'mn'), (30815,'Montenegrin','default',479,'me'), (30816,'Nepali','default',479,'ne'), (30817,'Norwegian (BokmÃ¥l)','default',479,'nb'), (30818,'Norwegian (Nynorsk)','default',479,'nn'), (30819,'Oriya','default',479,'ory'), (30820,'Ossetic','default',479,'os'), (30821,'Pashto','default',479,'ps'), (30822,'Persian','default',479,'fa'), (30823,'Persian (Afghanistan)','default',479,'fa-af'), (30824,'Peruvian Spanish','default',479,'es-pe'), (30825,'Polish','default',479,'pl'), (30826,'Portuguese','default',479,'pt'), (30827,'Punjabi','default',479,'pa'), (30828,'Rohingya','default',479,'rhg'), (30829,'Romanian','default',479,'ro'), (30830,'Romansh Vallader','default',479,'roh'), (30831,'Russian','default',479,'ru'), (30832,'Sakha','default',479,'sah'), (30833,'Sanskrit','default',479,'sa-in'), (30834,'Sardinian','default',479,'srd'), (30835,'Scottish Gaelic','default',479,'gd'), (30836,'Serbian','default',479,'sr'), (30837,'Sinhala','default',479,'si'), (30838,'Slovak','default',479,'sk'), (30839,'Slovenian','default',479,'sl'), (30840,'Somali','default',479,'so'), (30841,'South Azerbaijani','default',479,'azb'), (30842,'Spanish','default',479,'es'), (30843,'Spanish (Argentina)','default',479,'es-ar'), (30844,'Spanish (Mexico)','default',479,'es-mx'), (30845,'Sundanese','default',479,'su'), (30846,'Swahili','default',479,'sw'), (30847,'Swedish','default',479,'sv'), (30848,'Swiss German','default',479,'gsw'), (30849,'Swiss German (Formal)','formal',479,'gsw'), (30850,'Tagalog','default',479,'tl'), (30851,'Tajik','default',479,'tg'), (30852,'Tamazight (Central Atlas)','default',479,'tzm'), (30853,'Tamil','default',479,'ta'), (30854,'Tamil (Sri Lanka)','default',479,'ta-lk'), (30855,'Tatar','default',479,'tt'), (30856,'Telugu','default',479,'te'), (30857,'Thai','default',479,'th'), (30858,'Tibetan','default',479,'bo'), (30859,'Turkish','default',479,'tr'), (30860,'Turkmen','default',479,'tuk'), (30861,'Uighur','default',479,'ug'), (30862,'Ukrainian','default',479,'uk'), (30863,'Urdu','default',479,'ur'), (30864,'Uzbek','default',479,'uz'), (30865,'Venezuelan Spanish','default',479,'es-ve'), (30866,'Vietnamese','default',479,'vi'), (30867,'Welsh','default',479,'cy'), (30869,'Afrikaans','default',480,'af'), (30870,'Albanian','default',480,'sq'), (30871,'Algerian Arabic','default',480,'arq'), (30872,'Amharic','default',480,'am'), (30873,'Arabic','default',480,'ar'), (30874,'Aragonese','default',480,'an'), (30875,'Armenian','default',480,'hy'), (30876,'Arpitan','default',480,'frp'), (30877,'Assamese','default',480,'as'), (30878,'Azerbaijani','default',480,'az'), (30879,'Azerbaijani (Turkey)','default',480,'az-tr'), (30880,'Balochi Southern','default',480,'bcc'), (30881,'Basque','default',480,'eu'), (30882,'Belarusian','default',480,'bel'), (30883,'Bengali','default',480,'bn'), (30884,'Bosnian','default',480,'bs'), (30885,'Brazilian Portuguese','default',480,'pt-br'), (30886,'Breton','default',480,'br'), (30887,'Bulgarian','default',480,'bg'), (30888,'Burmese','default',480,'mya'), (30889,'Catalan','default',480,'ca'), (30890,'Catalan (Balear)','default',480,'bal'), (30891,'Chilean Spanish','default',480,'es-cl'), (30892,'Chinese (China)','default',480,'zh-cn'), (30893,'Chinese (Taiwan)','default',480,'zh-tw'), (30894,'Corsican','default',480,'co'), (30895,'Croatian','default',480,'hr'), (30896,'Czech','default',480,'cs'), (30897,'Danish','default',480,'da'), (30898,'Divehi','default',480,'dv'), (30899,'Dutch','default',480,'nl'), (30900,'Dzongkha','default',480,'dzo'), (30901,'English (Australia)','default',480,'en-au'), (30902,'English (Canada)','default',480,'en-ca'), (30903,'English (UK)','default',480,'en-gb'), (30904,'Esperanto','default',480,'eo'), (30905,'Estonian','default',480,'et'), (30906,'Faroese','default',480,'fo'), (30907,'Finnish','default',480,'fi'), (30908,'French','default',480,'fr'), (30909,'Frisian','default',480,'fy'), (30910,'Fulah','default',480,'fuc'), (30911,'Galician','default',480,'gl'), (30912,'Georgian','default',480,'ka'), (30913,'German','default',480,'de'), (30914,'German (Formal)','formal',480,'de'), (30915,'German (Switzerland)','default',480,'de-ch'), (30916,'German (Switzerland) Informal','informal',480,'de-ch'), (30917,'Greek','default',480,'el'), (30918,'Gujarati','default',480,'gu'), (30919,'Hawaiian','default',480,'haw'), (30920,'Hazaragi','default',480,'haz'), (30921,'Hebrew','default',480,'he'), (30922,'Hindi','default',480,'hi'), (30923,'Hungarian','default',480,'hu'), (30924,'Icelandic','default',480,'is'), (30925,'Ido','default',480,'ido'), (30926,'Indonesian','default',480,'id'), (30927,'Irish','default',480,'ga'), (30928,'Italian','default',480,'it'), (30929,'Japanese','default',480,'ja'), (30930,'Javanese','default',480,'jv'), (30931,'Kabyle','default',480,'kab'), (30932,'Kannada','default',480,'kn'), (30933,'Kazakh','default',480,'kk'), (30934,'Khmer','default',480,'km'), (30935,'Kinyarwanda','default',480,'kin'), (30936,'Kirghiz','default',480,'ky'), (30937,'Korean','default',480,'ko'), (30938,'Kurdish','default',480,'ckb'), (30939,'Kurdish (Kurmanji)','default',480,'ku'), (30940,'Lao','default',480,'lo'), (30941,'Latin','default',480,'la'), (30942,'Latvian','default',480,'lv'), (30943,'Limburgish','default',480,'li'), (30945,'Lithuanian','default',480,'lt'), (30946,'Luxembourgish','default',480,'lb'), (30947,'Macedonian','default',480,'mk'), (30948,'Malagasy','default',480,'mg'), (30949,'Malay','default',480,'ms'), (30950,'Malayalam','default',480,'ml'), (30952,'Marathi','default',480,'mr'), (30953,'Mongolian','default',480,'mn'), (30954,'Montenegrin','default',480,'me'), (30955,'Nepali','default',480,'ne'), (30956,'Norwegian (BokmÃ¥l)','default',480,'nb'), (30957,'Norwegian (Nynorsk)','default',480,'nn'), (30958,'Oriya','default',480,'ory'), (30959,'Ossetic','default',480,'os'), (30960,'Pashto','default',480,'ps'), (30961,'Persian','default',480,'fa'), (30962,'Persian (Afghanistan)','default',480,'fa-af'), (30963,'Peruvian Spanish','default',480,'es-pe'), (30964,'Polish','default',480,'pl'), (30965,'Portuguese','default',480,'pt'), (30966,'Portuguese (Informal)','informal',480,'pt'), (30967,'Punjabi','default',480,'pa'), (30968,'Rohingya','default',480,'rhg'), (30969,'Romanian','default',480,'ro'), (30970,'Romansh Vallader','default',480,'roh'), (30971,'Russian','default',480,'ru'), (30972,'Sakha','default',480,'sah'), (30973,'Sanskrit','default',480,'sa-in'), (30974,'Sardinian','default',480,'srd'), (30975,'Scottish Gaelic','default',480,'gd'), (30976,'Serbian','default',480,'sr'), (30977,'Sinhala','default',480,'si'), (30978,'Slovak','default',480,'sk'), (30979,'Slovenian','default',480,'sl'), (30980,'Somali','default',480,'so'), (30981,'South Azerbaijani','default',480,'azb'), (30982,'Spanish','default',480,'es'), (30983,'Spanish (Argentina)','default',480,'es-ar'), (30984,'Spanish (Mexico)','default',480,'es-mx'), (30985,'Sundanese','default',480,'su'), (30986,'Swahili','default',480,'sw'), (30987,'Swedish','default',480,'sv'), (30988,'Swiss German','default',480,'gsw'), (30989,'Swiss German (Formal)','formal',480,'gsw'), (30990,'Tagalog','default',480,'tl'), (30991,'Tajik','default',480,'tg'), (30992,'Tamazight (Central Atlas)','default',480,'tzm'), (30993,'Tamil','default',480,'ta'), (30994,'Tamil (Sri Lanka)','default',480,'ta-lk'), (30995,'Tatar','default',480,'tt'), (30996,'Telugu','default',480,'te'), (30997,'Thai','default',480,'th'), (30998,'Tibetan','default',480,'bo'), (30999,'Turkish','default',480,'tr'), (31000,'Turkmen','default',480,'tuk'), (31001,'Uighur','default',480,'ug'), (31002,'Ukrainian','default',480,'uk'), (31003,'Urdu','default',480,'ur'), (31004,'Uzbek','default',480,'uz'), (31005,'Venezuelan Spanish','default',480,'es-ve'), (31006,'Vietnamese','default',480,'vi'), (31007,'Welsh','default',480,'cy'), (31008,'Slovenian','default',14,'sl'), (31009,'Slovenian','default',469,'sl'), (31010,'French (Belgium)','default',2,'fr-be'), (31011,'French (Belgium)','default',78,'fr-be'), (31012,'Uzbek','default',14,'uz'), (31013,'French (Canada)','default',2,'fr-ca'), (31014,'French (Canada)','default',78,'fr-ca'), (31015,'French (Canada)','default',79,'fr-ca'), (31016,'French (France)','default',81,'fr'), (31017,'Azerbaijani','default',481,'az'), (31018,'Bosnian','default',481,'bs'), (31019,'Bulgarian','default',481,'bg'), (31020,'Burmese','default',481,'mya'), (31021,'Catalan','default',481,'ca'), (31023,'Chinese (Taiwan)','default',481,'zh-tw'), (31024,'Croatian','default',481,'hr'), (31025,'Dutch','default',481,'nl'), (31026,'English (UK)','default',481,'en-gb'), (31027,'Finnish','default',481,'fi'), (31028,'French (France)','default',481,'fr'), (31029,'Fulah','default',481,'fuc'), (31030,'Georgian','default',481,'ka'), (31031,'German','default',481,'de'), (31032,'Hebrew','default',481,'he'), (31033,'Indonesian','default',481,'id'), (31034,'Japanese','default',481,'ja'), (31035,'Kirghiz','default',481,'ky'), (31036,'Korean','default',481,'ko'), (31037,'Macedonian','default',481,'mk'), (31038,'Pashto','default',481,'ps'), (31039,'Persian','default',481,'fa'), (31040,'Polish','default',481,'pl'), (31041,'Portuguese (Brazil)','default',481,'pt-br'), (31042,'Portuguese (Portugal)','default',481,'pt'), (31043,'Romanian','default',481,'ro'), (31044,'Russian','default',481,'ru'), (31045,'Serbian','default',481,'sr'), (31046,'Slovak','default',481,'sk'), (31047,'Spanish (Spain)','default',481,'es'), (31048,'Thai','default',481,'th'), (31049,'Uighur','default',481,'ug'), (31051,'Afrikaans','default',481,'af'), (31052,'Albanian','default',481,'sq'), (31053,'Algerian Arabic','default',481,'arq'), (31054,'Amharic','default',481,'am'), (31055,'Arabic','default',481,'ar'), (31056,'Aragonese','default',481,'an'), (31057,'Armenian','default',481,'hy'), (31058,'Arpitan','default',481,'frp'), (31059,'Assamese','default',481,'as'), (31060,'Azerbaijani (Turkey)','default',481,'az-tr'), (31061,'Balochi Southern','default',481,'bcc'), (31062,'Basque','default',481,'eu'), (31063,'Belarusian','default',481,'bel'), (31064,'Bengali','default',481,'bn'), (31065,'Breton','default',481,'br'), (31066,'Catalan (Balear)','default',481,'bal'), (31067,'Chilean Spanish','default',481,'es-cl'), (31068,'Chinese (China)','default',481,'zh-cn'), (31069,'Corsican','default',481,'co'), (31070,'Czech','default',481,'cs'), (31071,'Danish','default',481,'da'), (31072,'Divehi','default',481,'dv'), (31073,'Dzongkha','default',481,'dzo'), (31074,'English (Australia)','default',481,'en-au'), (31075,'English (Canada)','default',481,'en-ca'), (31076,'Esperanto','default',481,'eo'), (31077,'Estonian','default',481,'et'), (31078,'Faroese','default',481,'fo'), (31079,'Frisian','default',481,'fy'), (31080,'Galician','default',481,'gl'), (31081,'German (Switzerland)','default',481,'de-ch'), (31082,'Greek','default',481,'el'), (31083,'Gujarati','default',481,'gu'), (31084,'Hawaiian','default',481,'haw'), (31085,'Hazaragi','default',481,'haz'), (31086,'Hindi','default',481,'hi'), (31087,'Hungarian','default',481,'hu'), (31088,'Icelandic','default',481,'is'), (31089,'Ido','default',481,'ido'), (31090,'Irish','default',481,'ga'), (31091,'Italian','default',481,'it'), (31092,'Javanese','default',481,'jv'), (31093,'Kabyle','default',481,'kab'), (31094,'Kannada','default',481,'kn'), (31095,'Kazakh','default',481,'kk'), (31096,'Khmer','default',481,'km'), (31097,'Kinyarwanda','default',481,'kin'), (31098,'Kurdish','default',481,'ckb'), (31099,'Kurdish (Kurmanji)','default',481,'ku'), (31100,'Lao','default',481,'lo'), (31101,'Latin','default',481,'la'), (31102,'Latvian','default',481,'lv'), (31103,'Limburgish','default',481,'li'), (31105,'Lithuanian','default',481,'lt'), (31106,'Luxembourgish','default',481,'lb'), (31107,'Malagasy','default',481,'mg'), (31108,'Malay','default',481,'ms'), (31109,'Malayalam','default',481,'ml'), (31111,'Marathi','default',481,'mr'), (31112,'Mongolian','default',481,'mn'), (31113,'Montenegrin','default',481,'me'), (31114,'Nepali','default',481,'ne'), (31115,'Norwegian (BokmÃ¥l)','default',481,'nb'), (31116,'Norwegian (Nynorsk)','default',481,'nn'), (31117,'Oriya','default',481,'ory'), (31118,'Ossetic','default',481,'os'), (31119,'Persian (Afghanistan)','default',481,'fa-af'), (31120,'Peruvian Spanish','default',481,'es-pe'), (31121,'Punjabi','default',481,'pa'), (31122,'Rohingya','default',481,'rhg'), (31123,'Romansh Vallader','default',481,'roh'), (31124,'Sakha','default',481,'sah'), (31125,'Sanskrit','default',481,'sa-in'), (31126,'Sardinian','default',481,'srd'), (31127,'Scottish Gaelic','default',481,'gd'), (31128,'Sinhala','default',481,'si'), (31129,'Slovenian','default',481,'sl'), (31130,'Somali','default',481,'so'), (31131,'South Azerbaijani','default',481,'azb'), (31132,'Spanish (Argentina)','default',481,'es-ar'), (31133,'Spanish (Mexico)','default',481,'es-mx'), (31134,'Sundanese','default',481,'su'), (31135,'Swahili','default',481,'sw'), (31136,'Swedish','default',481,'sv'), (31137,'Swiss German','default',481,'gsw'), (31138,'Tagalog','default',481,'tl'), (31139,'Tajik','default',481,'tg'), (31140,'Tamazight (Central Atlas)','default',481,'tzm'), (31141,'Tamil','default',481,'ta'), (31142,'Tamil (Sri Lanka)','default',481,'ta-lk'), (31143,'Tatar','default',481,'tt'), (31144,'Telugu','default',481,'te'), (31145,'Tibetan','default',481,'bo'), (31146,'Turkish','default',481,'tr'), (31147,'Turkmen','default',481,'tuk'), (31148,'Ukrainian','default',481,'uk'), (31149,'Urdu','default',481,'ur'), (31150,'Uzbek','default',481,'uz'), (31151,'Venezuelan Spanish','default',481,'es-ve'), (31152,'Vietnamese','default',481,'vi'), (31153,'Welsh','default',481,'cy'), (31154,'Serbian','default',7,'sr'), (31155,'Serbian','default',263,'sr'), (31156,'Icelandic','default',7,'is'), (31157,'Icelandic','default',263,'is'), (31158,'Icelandic','default',59,'is'), (31159,'Icelandic','default',57,'is'), (31160,'Serbian','default',57,'sr'), (31161,'Icelandic','default',264,'is'), (31162,'Serbian','default',264,'sr'), (31163,'Pashto','default',423,'ps'), (31164,'Pashto','default',425,'ps'), (31165,'Pashto','default',35,'ps'), (31166,'Pashto','default',424,'ps'), (31464,'Afrikaans','default',488,'af'), (31465,'Albanian','default',488,'sq'), (31466,'Algerian Arabic','default',488,'arq'), (31467,'Amharic','default',488,'am'), (31468,'Arabic','default',488,'ar'), (31469,'Aragonese','default',488,'an'), (31470,'Armenian','default',488,'hy'), (31471,'Arpitan','default',488,'frp'), (31472,'Assamese','default',488,'as'), (31473,'Azerbaijani','default',488,'az'), (31474,'Azerbaijani (Turkey)','default',488,'az-tr'), (31475,'Balochi Southern','default',488,'bcc'), (31476,'Basque','default',488,'eu'), (31477,'Belarusian','default',488,'bel'), (31478,'Bengali','default',488,'bn'), (31479,'Bosnian','default',488,'bs'), (31480,'Brazilian Portuguese','default',488,'pt-br'), (31481,'Breton','default',488,'br'), (31482,'Bulgarian','default',488,'bg'), (31483,'Burmese','default',488,'mya'), (31484,'Catalan','default',488,'ca'), (31485,'Catalan (Balear)','default',488,'bal'), (31486,'Chilean Spanish','default',488,'es-cl'), (31487,'Chinese (China)','default',488,'zh-cn'), (31488,'Chinese (Taiwan)','default',488,'zh-tw'), (31489,'Corsican','default',488,'co'), (31490,'Croatian','default',488,'hr'), (31491,'Czech','default',488,'cs'), (31492,'Danish','default',488,'da'), (31493,'Divehi','default',488,'dv'), (31494,'Dutch','default',488,'nl'), (31495,'Dzongkha','default',488,'dzo'), (31496,'English (Australia)','default',488,'en-au'), (31497,'English (Canada)','default',488,'en-ca'), (31498,'English (UK)','default',488,'en-gb'), (31499,'Esperanto','default',488,'eo'), (31500,'Estonian','default',488,'et'), (31501,'Faroese','default',488,'fo'), (31502,'Finnish','default',488,'fi'), (31503,'French','default',488,'fr'), (31504,'Frisian','default',488,'fy'), (31505,'Fulah','default',488,'fuc'), (31506,'Galician','default',488,'gl'), (31507,'Georgian','default',488,'ka'), (31508,'German','default',488,'de'), (31509,'German (Switzerland)','default',488,'de-ch'), (31510,'Greek','default',488,'el'), (31511,'Gujarati','default',488,'gu'), (31512,'Hawaiian','default',488,'haw'), (31513,'Hazaragi','default',488,'haz'), (31514,'Hebrew','default',488,'he'), (31515,'Hindi','default',488,'hi'), (31516,'Hungarian','default',488,'hu'), (31517,'Icelandic','default',488,'is'), (31518,'Ido','default',488,'ido'), (31519,'Indonesian','default',488,'id'), (31520,'Irish','default',488,'ga'), (31521,'Italian','default',488,'it'), (31522,'Japanese','default',488,'ja'), (31523,'Javanese','default',488,'jv'), (31524,'Kabyle','default',488,'kab'), (31525,'Kannada','default',488,'kn'), (31526,'Kazakh','default',488,'kk'), (31527,'Khmer','default',488,'km'), (31528,'Kinyarwanda','default',488,'kin'), (31529,'Kirghiz','default',488,'ky'), (31530,'Korean','default',488,'ko'), (31531,'Kurdish','default',488,'ckb'), (31532,'Kurdish (Kurmanji)','default',488,'ku'), (31533,'Lao','default',488,'lo'), (31534,'Latin','default',488,'la'), (31535,'Latvian','default',488,'lv'), (31536,'Limburgish','default',488,'li'), (31538,'Lithuanian','default',488,'lt'), (31539,'Luxembourgish','default',488,'lb'), (31540,'Macedonian','default',488,'mk'), (31541,'Malagasy','default',488,'mg'), (31542,'Malay','default',488,'ms'), (31543,'Malayalam','default',488,'ml'), (31545,'Marathi','default',488,'mr'), (31546,'Mongolian','default',488,'mn'), (31547,'Montenegrin','default',488,'me'), (31548,'Nepali','default',488,'ne'), (31549,'Norwegian (BokmÃ¥l)','default',488,'nb'), (31550,'Norwegian (Nynorsk)','default',488,'nn'), (31551,'Oriya','default',488,'ory'), (31552,'Ossetic','default',488,'os'), (31553,'Pashto','default',488,'ps'), (31554,'Persian','default',488,'fa'), (31555,'Persian (Afghanistan)','default',488,'fa-af'), (31556,'Peruvian Spanish','default',488,'es-pe'), (31557,'Polish','default',488,'pl'), (31558,'Portuguese','default',488,'pt'), (31559,'Punjabi','default',488,'pa'), (31560,'Rohingya','default',488,'rhg'), (31561,'Romanian','default',488,'ro'), (31562,'Romansh Vallader','default',488,'roh'), (31563,'Russian','default',488,'ru'), (31564,'Sakha','default',488,'sah'), (31565,'Sanskrit','default',488,'sa-in'), (31566,'Sardinian','default',488,'srd'), (31567,'Scottish Gaelic','default',488,'gd'), (31568,'Serbian','default',488,'sr'), (31569,'Sinhala','default',488,'si'), (31570,'Slovak','default',488,'sk'), (31571,'Slovenian','default',488,'sl'), (31572,'Somali','default',488,'so'), (31573,'South Azerbaijani','default',488,'azb'), (31574,'Spanish','default',488,'es'), (31575,'Spanish (Argentina)','default',488,'es-ar'), (31576,'Spanish (Mexico)','default',488,'es-mx'), (31577,'Sundanese','default',488,'su'), (31578,'Swahili','default',488,'sw'), (31579,'Swedish','default',488,'sv'), (31580,'Swiss German','default',488,'gsw'), (31581,'Tagalog','default',488,'tl'), (31582,'Tajik','default',488,'tg'), (31583,'Tamazight (Central Atlas)','default',488,'tzm'), (31584,'Tamil','default',488,'ta'), (31585,'Tamil (Sri Lanka)','default',488,'ta-lk'), (31586,'Tatar','default',488,'tt'), (31587,'Telugu','default',488,'te'), (31588,'Thai','default',488,'th'), (31589,'Tibetan','default',488,'bo'), (31590,'Turkish','default',488,'tr'), (31591,'Turkmen','default',488,'tuk'), (31592,'Uighur','default',488,'ug'), (31593,'Ukrainian','default',488,'uk'), (31594,'Urdu','default',488,'ur'), (31595,'Uzbek','default',488,'uz'), (31596,'Venezuelan Spanish','default',488,'es-ve'), (31597,'Vietnamese','default',488,'vi'), (31598,'Welsh','default',488,'cy'), (31599,'Occitan','default',2,'oci'), (31600,'Occitan','default',64,'oci'), (31601,'French (Belgium)','default',64,'fr-be'), (31602,'French (Canada)','default',64,'fr-ca'), (31603,'Occitan','default',78,'oci'), (31604,'French (Belgium)','default',79,'fr-be'), (31605,'Occitan','default',79,'oci'), (31606,'French (Belgium)','default',101,'fr-be'), (31607,'French (Canada)','default',101,'fr-ca'), (31608,'Occitan','default',101,'oci'), (31609,'French (Belgium)','default',130,'fr-be'), (31610,'French (Canada)','default',130,'fr-ca'), (31611,'Occitan','default',130,'oci'), (31612,'French (Belgium)','default',421,'fr-be'), (31613,'French (Canada)','default',421,'fr-ca'), (31614,'Occitan','default',421,'oci'), (31615,'French (Belgium)','default',15,'fr-be'), (31616,'French (Canada)','default',15,'fr-ca'), (31617,'Occitan','default',15,'oci'), (31618,'French (Belgium)','default',55,'fr-be'), (31619,'French (Canada)','default',55,'fr-ca'), (31620,'Occitan','default',55,'oci'), (31621,'French (Belgium)','default',80,'fr-be'), (31622,'French (Canada)','default',80,'fr-ca'), (31623,'Occitan','default',80,'oci'), (31624,'French (Belgium)','default',66,'fr-be'), (31625,'French (Canada)','default',66,'fr-ca'), (31626,'Occitan','default',66,'oci'), (31627,'French (Belgium)','default',470,'fr-be'), (31628,'French (Canada)','default',470,'fr-ca'), (31629,'Occitan','default',470,'oci'), (31630,'French (Belgium)','default',481,'fr-be'), (31631,'French (Canada)','default',481,'fr-ca'), (31632,'Occitan','default',481,'oci'), (31633,'French (Belgium)','default',488,'fr-be'), (31634,'French (Canada)','default',488,'fr-ca'), (31635,'Occitan','default',488,'oci'), (31637,'Afrikaans','default',59,'af'), (31638,'Albanian','default',59,'sq'), (31639,'Algerian Arabic','default',59,'arq'), (31640,'Amharic','default',59,'am'), (31641,'Aragonese','default',59,'an'), (31642,'Armenian','default',59,'hy'), (31643,'Arpitan','default',59,'frp'), (31644,'Assamese','default',59,'as'), (31645,'Azerbaijani (Turkey)','default',59,'az-tr'), (31646,'Balochi Southern','default',59,'bcc'), (31647,'Basque','default',59,'eu'), (31648,'Belarusian','default',59,'bel'), (31649,'Bengali','default',59,'bn'), (31650,'Breton','default',59,'br'), (31651,'Catalan (Balear)','default',59,'bal'), (31652,'Chilean Spanish','default',59,'es-cl'), (31653,'Corsican','default',59,'co'), (31654,'Divehi','default',59,'dv'), (31655,'Dzongkha','default',59,'dzo'), (31656,'English (Canada)','default',59,'en-ca'), (31657,'Esperanto','default',59,'eo'), (31658,'Estonian','default',59,'et'), (31659,'Faroese','default',59,'fo'), (31660,'French (Belgium)','default',59,'fr-be'), (31661,'French (Canada)','default',59,'fr-ca'), (31662,'Frisian','default',59,'fy'), (31663,'Fulah','default',59,'fuc'), (31664,'German (Switzerland)','default',59,'de-ch'), (31665,'German (Switzerland) Informal','informal',59,'de-ch'), (31666,'Gujarati','default',59,'gu'), (31667,'Hawaiian','default',59,'haw'), (31668,'Hazaragi','default',59,'haz'), (31669,'Ido','default',59,'ido'), (31670,'Irish','default',59,'ga'), (31671,'Javanese','default',59,'jv'), (31672,'Kabyle','default',59,'kab'), (31673,'Kazakh','default',59,'kk'), (31674,'Khmer','default',59,'km'), (31675,'Kinyarwanda','default',59,'kin'), (31676,'Kirghiz','default',59,'ky'), (31677,'Lao','default',59,'lo'), (31678,'Latin','default',59,'la'), (31679,'Limburgish','default',59,'li'), (31681,'Luxembourgish','default',59,'lb'), (31682,'Malagasy','default',59,'mg'), (31683,'Malayalam','default',59,'ml'), (31685,'Marathi','default',59,'mr'), (31686,'Mongolian','default',59,'mn'), (31687,'Montenegrin','default',59,'me'), (31688,'Nepali','default',59,'ne'), (31689,'Norwegian (Nynorsk)','default',59,'nn'), (31690,'Occitan','default',59,'oci'), (31691,'Oriya','default',59,'ory'), (31692,'Ossetic','default',59,'os'), (31693,'Persian (Afghanistan)','default',59,'fa-af'), (31694,'Peruvian Spanish','default',59,'es-pe'), (31695,'Punjabi','default',59,'pa'), (31696,'Romansh Vallader','default',59,'roh'), (31697,'Sakha','default',59,'sah'), (31698,'Sanskrit','default',59,'sa-in'), (31699,'Sardinian','default',59,'srd'), (31700,'Scottish Gaelic','default',59,'gd'), (31701,'Sinhala','default',59,'si'), (31702,'Somali','default',59,'so'), (31703,'South Azerbaijani','default',59,'azb'), (31704,'Spanish (Argentina)','default',59,'es-ar'), (31705,'Sundanese','default',59,'su'), (31706,'Swahili','default',59,'sw'), (31707,'Swiss German','default',59,'gsw'), (31708,'Swiss German (Formal)','formal',59,'gsw'), (31709,'Tagalog','default',59,'tl'), (31710,'Tajik','default',59,'tg'), (31711,'Tamazight (Central Atlas)','default',59,'tzm'), (31712,'Tatar','default',59,'tt'), (31713,'Telugu','default',59,'te'), (31714,'Tibetan','default',59,'bo'), (31715,'Turkmen','default',59,'tuk'), (31716,'Uighur','default',59,'ug'), (31717,'Ukrainian','default',59,'uk'), (31718,'Urdu','default',59,'ur'), (31719,'Uzbek','default',59,'uz'), (31720,'Venezuelan Spanish','default',59,'es-ve'), (31721,'Vietnamese','default',59,'vi'), (31722,'Welsh','default',59,'cy'), (31723,'Afrikaans','default',14,'af'), (31724,'Albanian','default',14,'sq'), (31725,'Algerian Arabic','default',14,'arq'), (31726,'Amharic','default',14,'am'), (31727,'Aragonese','default',14,'an'), (31728,'Armenian','default',14,'hy'), (31729,'Arpitan','default',14,'frp'), (31730,'Assamese','default',14,'as'), (31731,'Azerbaijani (Turkey)','default',14,'az-tr'), (31732,'Balochi Southern','default',14,'bcc'), (31733,'Belarusian','default',14,'bel'), (31734,'Breton','default',14,'br'), (31735,'Catalan (Balear)','default',14,'bal'), (31736,'Chilean Spanish','default',14,'es-cl'), (31737,'Corsican','default',14,'co'), (31738,'Divehi','default',14,'dv'), (31739,'Dzongkha','default',14,'dzo'), (31740,'English (Canada)','default',14,'en-ca'), (31741,'Esperanto','default',14,'eo'), (31742,'Faroese','default',14,'fo'), (31743,'French (Belgium)','default',14,'fr-be'), (31744,'French (Canada)','default',14,'fr-ca'), (31745,'Fulah','default',14,'fuc'), (31746,'German (Switzerland)','default',14,'de-ch'), (31747,'German (Switzerland) Informal','informal',14,'de-ch'), (31748,'Gujarati','default',14,'gu'), (31749,'Hawaiian','default',14,'haw'), (31750,'Hazaragi','default',14,'haz'), (31751,'Ido','default',14,'ido'), (31752,'Irish','default',14,'ga'), (31753,'Javanese','default',14,'jv'), (31754,'Kabyle','default',14,'kab'), (31755,'Kazakh','default',14,'kk'), (31756,'Khmer','default',14,'km'), (31757,'Kinyarwanda','default',14,'kin'), (31758,'Kirghiz','default',14,'ky'), (31759,'Kurdish','default',14,'ckb'), (31760,'Kurdish (Kurmanji)','default',14,'ku'), (31761,'Lao','default',14,'lo'), (31762,'Latin','default',14,'la'), (31764,'Luxembourgish','default',14,'lb'), (31765,'Malagasy','default',14,'mg'), (31766,'Malay','default',14,'ms'), (31767,'Malayalam','default',14,'ml'), (31769,'Marathi','default',14,'mr'), (31770,'Mongolian','default',14,'mn'), (31771,'Montenegrin','default',14,'me'), (31772,'Nepali','default',14,'ne'), (31773,'Norwegian (Nynorsk)','default',14,'nn'), (31774,'Occitan','default',14,'oci'), (31775,'Oriya','default',14,'ory'), (31776,'Ossetic','default',14,'os'), (31777,'Persian (Afghanistan)','default',14,'fa-af'), (31778,'Peruvian Spanish','default',14,'es-pe'), (31779,'Punjabi','default',14,'pa'), (31780,'Romansh Vallader','default',14,'roh'), (31781,'Sakha','default',14,'sah'), (31782,'Sanskrit','default',14,'sa-in'), (31783,'Sardinian','default',14,'srd'), (31784,'Scottish Gaelic','default',14,'gd'), (31785,'Sinhala','default',14,'si'), (31786,'South Azerbaijani','default',14,'azb'), (31787,'Spanish (Argentina)','default',14,'es-ar'), (31788,'Spanish (Mexico)','default',14,'es-mx'), (31789,'Sundanese','default',14,'su'), (31790,'Swiss German','default',14,'gsw'), (31791,'Swiss German (Formal)','formal',14,'gsw'), (31792,'Tajik','default',14,'tg'), (31793,'Tamazight (Central Atlas)','default',14,'tzm'), (31794,'Tamil','default',14,'ta'), (31795,'Tamil (Sri Lanka)','default',14,'ta-lk'), (31796,'Tatar','default',14,'tt'), (31797,'Telugu','default',14,'te'), (31798,'Tibetan','default',14,'bo'), (31799,'Turkmen','default',14,'tuk'), (31800,'Uighur','default',14,'ug'), (31801,'Urdu','default',14,'ur'), (31802,'Venezuelan Spanish','default',14,'es-ve'), (31803,'French (Belgium)','default',217,'fr-be'), (31804,'French (Canada)','default',217,'fr-ca'), (31805,'Occitan','default',217,'oci'), (31806,'French (Belgium)','default',432,'fr-be'), (31807,'French (Canada)','default',432,'fr-ca'), (31808,'Occitan','default',432,'oci'), (31809,'Pashto','default',433,'ps'), (31810,'Pashto','default',439,'ps'), (31950,'Welsh','default',57,'cy'), (31951,'Welsh','default',264,'cy'), (31952,'Pashto','default',462,'ps'), (31953,'Pashto','default',464,'ps'), (31954,'Pashto','default',463,'ps'), (31955,'Pashto','default',465,'ps'), (31957,'Afrikaans','default',490,'af'), (31958,'Albanian','default',490,'sq'), (31959,'Algerian Arabic','default',490,'arq'), (31960,'Amharic','default',490,'am'), (31961,'Arabic','default',490,'ar'), (31962,'Aragonese','default',490,'an'), (31963,'Armenian','default',490,'hy'), (31964,'Arpitan','default',490,'frp'), (31965,'Assamese','default',490,'as'), (31966,'Azerbaijani','default',490,'az'), (31967,'Azerbaijani (Turkey)','default',490,'az-tr'), (31968,'Balochi Southern','default',490,'bcc'), (31969,'Basque','default',490,'eu'), (31970,'Belarusian','default',490,'bel'), (31971,'Bengali','default',490,'bn'), (31972,'Bosnian','default',490,'bs'), (31973,'Brazilian Portuguese','default',490,'pt-br'), (31974,'Breton','default',490,'br'), (31975,'Bulgarian','default',490,'bg'), (31976,'Burmese','default',490,'mya'), (31977,'Catalan','default',490,'ca'), (31978,'Catalan (Balear)','default',490,'bal'), (31979,'Chilean Spanish','default',490,'es-cl'), (31980,'Chinese (China)','default',490,'zh-cn'), (31981,'Chinese (Taiwan)','default',490,'zh-tw'), (31982,'Corsican','default',490,'co'), (31983,'Croatian','default',490,'hr'), (31984,'Czech','default',490,'cs'), (31985,'Danish','default',490,'da'), (31986,'Divehi','default',490,'dv'), (31987,'Dutch','default',490,'nl'), (31988,'Dzongkha','default',490,'dzo'), (31989,'English (Australia)','default',490,'en-au'), (31990,'English (Canada)','default',490,'en-ca'), (31991,'English (UK)','default',490,'en-gb'), (31992,'Esperanto','default',490,'eo'), (31993,'Estonian','default',490,'et'), (31994,'Faroese','default',490,'fo'), (31995,'Finnish','default',490,'fi'), (31996,'French','default',490,'fr'), (31997,'French (Belgium)','default',490,'fr-be'), (31998,'French (Canada)','default',490,'fr-ca'), (31999,'Frisian','default',490,'fy'), (32000,'Fulah','default',490,'fuc'), (32001,'Galician','default',490,'gl'), (32002,'Georgian','default',490,'ka'), (32003,'German','default',490,'de'), (32004,'German (Switzerland)','default',490,'de-ch'), (32005,'Greek','default',490,'el'), (32006,'Gujarati','default',490,'gu'), (32007,'Hawaiian','default',490,'haw'), (32008,'Hazaragi','default',490,'haz'), (32009,'Hebrew','default',490,'he'), (32010,'Hindi','default',490,'hi'), (32011,'Hungarian','default',490,'hu'), (32012,'Icelandic','default',490,'is'), (32013,'Ido','default',490,'ido'), (32014,'Indonesian','default',490,'id'), (32015,'Irish','default',490,'ga'), (32016,'Italian','default',490,'it'), (32017,'Japanese','default',490,'ja'), (32018,'Javanese','default',490,'jv'), (32019,'Kabyle','default',490,'kab'), (32020,'Kannada','default',490,'kn'), (32021,'Kazakh','default',490,'kk'), (32022,'Khmer','default',490,'km'), (32023,'Kinyarwanda','default',490,'kin'), (32024,'Kirghiz','default',490,'ky'), (32025,'Korean','default',490,'ko'), (32026,'Kurdish','default',490,'ckb'), (32027,'Kurdish (Kurmanji)','default',490,'ku'), (32028,'Lao','default',490,'lo'), (32029,'Latin','default',490,'la'), (32030,'Latvian','default',490,'lv'), (32031,'Limburgish','default',490,'li'), (32033,'Lithuanian','default',490,'lt'), (32034,'Luxembourgish','default',490,'lb'), (32035,'Macedonian','default',490,'mk'), (32036,'Malagasy','default',490,'mg'), (32037,'Malay','default',490,'ms'), (32038,'Malayalam','default',490,'ml'), (32040,'Marathi','default',490,'mr'), (32041,'Mongolian','default',490,'mn'), (32042,'Montenegrin','default',490,'me'), (32043,'Nepali','default',490,'ne'), (32044,'Norwegian (BokmÃ¥l)','default',490,'nb'), (32045,'Norwegian (Nynorsk)','default',490,'nn'), (32046,'Occitan','default',490,'oci'), (32047,'Oriya','default',490,'ory'), (32048,'Ossetic','default',490,'os'), (32049,'Pashto','default',490,'ps'), (32050,'Persian','default',490,'fa'), (32051,'Persian (Afghanistan)','default',490,'fa-af'), (32052,'Peruvian Spanish','default',490,'es-pe'), (32053,'Polish','default',490,'pl'), (32054,'Portuguese','default',490,'pt'), (32055,'Punjabi','default',490,'pa'), (32056,'Rohingya','default',490,'rhg'), (32057,'Romanian','default',490,'ro'), (32058,'Romansh Vallader','default',490,'roh'), (32059,'Russian','default',490,'ru'), (32060,'Sakha','default',490,'sah'), (32061,'Sanskrit','default',490,'sa-in'), (32062,'Sardinian','default',490,'srd'), (32063,'Scottish Gaelic','default',490,'gd'), (32064,'Serbian','default',490,'sr'), (32065,'Sinhala','default',490,'si'), (32066,'Slovak','default',490,'sk'), (32067,'Slovenian','default',490,'sl'), (32068,'Somali','default',490,'so'), (32069,'South Azerbaijani','default',490,'azb'), (32070,'Spanish','default',490,'es'), (32071,'Spanish (Argentina)','default',490,'es-ar'), (32072,'Spanish (Mexico)','default',490,'es-mx'), (32073,'Sundanese','default',490,'su'), (32074,'Swahili','default',490,'sw'), (32075,'Swedish','default',490,'sv'), (32076,'Swiss German','default',490,'gsw'), (32077,'Tagalog','default',490,'tl'), (32078,'Tajik','default',490,'tg'), (32079,'Tamazight (Central Atlas)','default',490,'tzm'), (32080,'Tamil','default',490,'ta'), (32081,'Tamil (Sri Lanka)','default',490,'ta-lk'), (32082,'Tatar','default',490,'tt'), (32083,'Telugu','default',490,'te'), (32084,'Thai','default',490,'th'), (32085,'Tibetan','default',490,'bo'), (32086,'Turkish','default',490,'tr'), (32087,'Turkmen','default',490,'tuk'), (32088,'Uighur','default',490,'ug'), (32089,'Ukrainian','default',490,'uk'), (32090,'Urdu','default',490,'ur'), (32091,'Uzbek','default',490,'uz'), (32092,'Venezuelan Spanish','default',490,'es-ve'), (32093,'Vietnamese','default',490,'vi'), (32094,'Welsh','default',490,'cy'), (32095,'Pashto','default',438,'ps'), (32096,'Pashto','default',440,'ps'), (32097,'Pashto','default',434,'ps'), (32098,'Albanian','default',492,'sq'), (32099,'Arabic','default',492,'ar'), (32100,'Azerbaijani','default',492,'az'), (32101,'Basque','default',492,'eu'), (32102,'Bosnian','default',492,'bs'), (32103,'Bulgarian','default',492,'bg'), (32104,'Burmese','default',492,'mya'), (32105,'Catalan','default',492,'ca'), (32106,'Chinese','default',492,'zh'), (32107,'Chinese (China)','default',492,'zh-cn'), (32108,'Chinese (Taiwan)','default',492,'zh-tw'), (32109,'Croatian','default',492,'hr'), (32110,'Czech','default',492,'cs'), (32111,'Danish','default',492,'da'), (32112,'Dutch','default',492,'nl'), (32113,'English (Australia)','default',492,'en-au'), (32114,'English (UK)','default',492,'en-gb'), (32115,'Finnish','default',492,'fi'), (32116,'French (France)','default',492,'fr'), (32117,'Galician','default',492,'gl'), (32118,'Georgian','default',492,'ka'), (32119,'German','default',492,'de'), (32120,'Greek','default',492,'el'), (32122,'Hebrew','default',492,'he'), (32123,'Hindi','default',492,'hi'), (32124,'Hungarian','default',492,'hu'), (32125,'Icelandic','default',492,'is'), (32126,'Indonesian','default',492,'id'), (32127,'Italian','default',492,'it'), (32128,'Japanese','default',492,'ja'), (32129,'Kannada','default',492,'kn'), (32130,'Korean','default',492,'ko'), (32131,'Kurdish (Kurmanji)','default',492,'ku'), (32132,'Kurdish (Sorani)','default',492,'ckb'), (32133,'Limburgish','default',492,'li'), (32134,'Lithuanian','default',492,'lt'), (32135,'Macedonian','default',492,'mk'), (32136,'Malay','default',492,'ms'), (32137,'Marathi','default',492,'mr'), (32138,'Mongolian','default',492,'mn'), (32140,'Norwegian (BokmÃ¥l)','default',492,'nb'), (32141,'Pashto','default',492,'ps'), (32142,'Persian','default',492,'fa'), (32143,'Polish','default',492,'pl'), (32144,'Portuguese (Brazil)','default',492,'pt-br'), (32145,'Portuguese (Portugal)','default',492,'pt'), (32146,'Rohingya','default',492,'rhg'), (32147,'Romanian','default',492,'ro'), (32148,'Russian','default',492,'ru'), (32149,'Scottish Gaelic','default',492,'gd'), (32150,'Serbian','default',492,'sr'), (32151,'Slovak','default',492,'sk'), (32152,'Slovenian','default',492,'sl'), (32153,'Somali','default',492,'so'), (32154,'Spanish (Chile)','default',492,'es-cl'), (32155,'Spanish (Colombia)','default',492,'es-co'), (32156,'Spanish (Peru)','default',492,'es-pe'), (32157,'Spanish (Spain)','default',492,'es'), (32158,'Spanish (Venezuela)','default',492,'es-ve'), (32159,'Swedish','default',492,'sv'), (32160,'Tamil','default',492,'ta'), (32161,'Tamil (Sri Lanka)','default',492,'ta-lk'), (32162,'Telugu','default',492,'te'), (32163,'Thai','default',492,'th'), (32164,'Turkish','default',492,'tr'), (32165,'Uzbek','default',492,'uz'), (32166,'Vietnamese','default',492,'vi'), (32167,'Welsh','default',492,'cy'), (32169,'Afrikaans','default',493,'af'), (32170,'Albanian','default',493,'sq'), (32171,'Algerian Arabic','default',493,'arq'), (32172,'Amharic','default',493,'am'), (32173,'Arabic','default',493,'ar'), (32174,'Aragonese','default',493,'an'), (32175,'Armenian','default',493,'hy'), (32176,'Arpitan','default',493,'frp'), (32177,'Assamese','default',493,'as'), (32178,'Azerbaijani','default',493,'az'), (32179,'Azerbaijani (Turkey)','default',493,'az-tr'), (32180,'Balochi Southern','default',493,'bcc'), (32181,'Basque','default',493,'eu'), (32182,'Belarusian','default',493,'bel'), (32183,'Bengali','default',493,'bn'), (32184,'Bosnian','default',493,'bs'), (32185,'Breton','default',493,'br'), (32186,'Bulgarian','default',493,'bg'), (32187,'Burmese','default',493,'mya'), (32188,'Catalan','default',493,'ca'), (32189,'Catalan (Balear)','default',493,'bal'), (32190,'Chilean Spanish','default',493,'es-cl'), (32191,'Chinese (China)','default',493,'zh-cn'), (32192,'Chinese (Taiwan)','default',493,'zh-tw'), (32193,'Corsican','default',493,'co'), (32194,'Croatian','default',493,'hr'), (32195,'Czech','default',493,'cs'), (32196,'Danish','default',493,'da'), (32197,'Divehi','default',493,'dv'), (32198,'Dutch','default',493,'nl'), (32199,'Dzongkha','default',493,'dzo'), (32200,'English (Australia)','default',493,'en-au'), (32201,'English (Canada)','default',493,'en-ca'), (32202,'English (UK)','default',493,'en-gb'), (32203,'Esperanto','default',493,'eo'), (32204,'Estonian','default',493,'et'), (32205,'Faroese','default',493,'fo'), (32206,'Finnish','default',493,'fi'), (32207,'French (Belgium)','default',493,'fr-be'), (32208,'French (Canada)','default',493,'fr-ca'), (32209,'French (France)','default',493,'fr'), (32210,'Frisian','default',493,'fy'), (32211,'Fulah','default',493,'fuc'), (32212,'Galician','default',493,'gl'), (32213,'Georgian','default',493,'ka'), (32214,'German','default',493,'de'), (32215,'German (Switzerland)','default',493,'de-ch'), (32216,'German (Switzerland) Informal','informal',493,'de-ch'), (32217,'Greek','default',493,'el'), (32218,'Gujarati','default',493,'gu'), (32219,'Hawaiian','default',493,'haw'), (32220,'Hazaragi','default',493,'haz'), (32221,'Hebrew','default',493,'he'), (32222,'Hindi','default',493,'hi'), (32223,'Hungarian','default',493,'hu'), (32224,'Icelandic','default',493,'is'), (32225,'Ido','default',493,'ido'), (32226,'Indonesian','default',493,'id'), (32227,'Irish','default',493,'ga'), (32228,'Italian','default',493,'it'), (32229,'Japanese','default',493,'ja'), (32230,'Javanese','default',493,'jv'), (32231,'Kabyle','default',493,'kab'), (32232,'Kannada','default',493,'kn'), (32233,'Kazakh','default',493,'kk'), (32234,'Khmer','default',493,'km'), (32235,'Kinyarwanda','default',493,'kin'), (32236,'Kirghiz','default',493,'ky'), (32237,'Korean','default',493,'ko'), (32238,'Kurdish','default',493,'ckb'), (32239,'Kurdish (Kurmanji)','default',493,'ku'), (32240,'Lao','default',493,'lo'), (32241,'Latin','default',493,'la'), (32242,'Latvian','default',493,'lv'), (32243,'Limburgish','default',493,'li'), (32245,'Lithuanian','default',493,'lt'), (32246,'Luxembourgish','default',493,'lb'), (32247,'Macedonian','default',493,'mk'), (32248,'Malagasy','default',493,'mg'), (32249,'Malay','default',493,'ms'), (32250,'Malayalam','default',493,'ml'), (32252,'Marathi','default',493,'mr'), (32253,'Mongolian','default',493,'mn'), (32254,'Montenegrin','default',493,'me'), (32255,'Nepali','default',493,'ne'), (32256,'Norwegian (BokmÃ¥l)','default',493,'nb'), (32257,'Norwegian (Nynorsk)','default',493,'nn'), (32258,'Occitan','default',493,'oci'), (32259,'Oriya','default',493,'ory'), (32260,'Ossetic','default',493,'os'), (32261,'Pashto','default',493,'ps'), (32262,'Persian','default',493,'fa'), (32263,'Persian (Afghanistan)','default',493,'fa-af'), (32264,'Peruvian Spanish','default',493,'es-pe'), (32265,'Polish','default',493,'pl'), (32266,'Portuguese (Brazil)','default',493,'pt-br'), (32267,'Portuguese (Portugal)','default',493,'pt'), (32268,'Punjabi','default',493,'pa'), (32269,'Rohingya','default',493,'rhg'), (32270,'Romanian','default',493,'ro'), (32271,'Romansh Vallader','default',493,'roh'), (32272,'Russian','default',493,'ru'), (32273,'Sakha','default',493,'sah'), (32274,'Sanskrit','default',493,'sa-in'), (32275,'Sardinian','default',493,'srd'), (32276,'Scottish Gaelic','default',493,'gd'), (32277,'Serbian','default',493,'sr'), (32278,'Sinhala','default',493,'si'), (32279,'Slovak','default',493,'sk'), (32280,'Slovenian','default',493,'sl'), (32281,'Somali','default',493,'so'), (32282,'South Azerbaijani','default',493,'azb'), (32283,'Spanish (Argentina)','default',493,'es-ar'), (32284,'Spanish (Mexico)','default',493,'es-mx'), (32285,'Spanish (Spain)','default',493,'es'), (32286,'Sundanese','default',493,'su'), (32287,'Swahili','default',493,'sw'), (32288,'Swedish','default',493,'sv'), (32289,'Swiss German','default',493,'gsw'), (32290,'Swiss German (Formal)','formal',493,'gsw'), (32291,'Tagalog','default',493,'tl'), (32292,'Tajik','default',493,'tg'), (32293,'Tamazight (Central Atlas)','default',493,'tzm'), (32294,'Tamil','default',493,'ta'), (32295,'Tamil (Sri Lanka)','default',493,'ta-lk'), (32296,'Tatar','default',493,'tt'), (32297,'Telugu','default',493,'te'), (32298,'Thai','default',493,'th'), (32299,'Tibetan','default',493,'bo'), (32300,'Turkish','default',493,'tr'), (32301,'Turkmen','default',493,'tuk'), (32302,'Uighur','default',493,'ug'), (32303,'Ukrainian','default',493,'uk'), (32304,'Urdu','default',493,'ur'), (32305,'Uzbek','default',493,'uz'), (32306,'Venezuelan Spanish','default',493,'es-ve'), (32307,'Vietnamese','default',493,'vi'), (32308,'Welsh','default',493,'cy'), (32309,'Albanian','default',494,'sq'), (32310,'Arabic','default',494,'ar'), (32311,'Azerbaijani','default',494,'az'), (32312,'Basque','default',494,'eu'), (32313,'Bosnian','default',494,'bs'), (32314,'Bulgarian','default',494,'bg'), (32315,'Burmese','default',494,'mya'), (32316,'Catalan','default',494,'ca'), (32317,'Chinese','default',494,'zh'), (32318,'Chinese (China)','default',494,'zh-cn'), (32319,'Chinese (Taiwan)','default',494,'zh-tw'), (32320,'Croatian','default',494,'hr'), (32321,'Czech','default',494,'cs'), (32322,'Danish','default',494,'da'), (32323,'Dutch','default',494,'nl'), (32324,'English (Australia)','default',494,'en-au'), (32325,'English (UK)','default',494,'en-gb'), (32326,'Finnish','default',494,'fi'), (32327,'French (France)','default',494,'fr'), (32328,'Galician','default',494,'gl'), (32329,'Georgian','default',494,'ka'), (32330,'German','default',494,'de'), (32331,'Greek','default',494,'el'), (32333,'Hebrew','default',494,'he'), (32334,'Hindi','default',494,'hi'), (32335,'Hungarian','default',494,'hu'), (32336,'Icelandic','default',494,'is'), (32337,'Indonesian','default',494,'id'), (32338,'Italian','default',494,'it'), (32339,'Japanese','default',494,'ja'), (32340,'Kannada','default',494,'kn'), (32341,'Korean','default',494,'ko'), (32342,'Kurdish (Kurmanji)','default',494,'ku'), (32343,'Kurdish (Sorani)','default',494,'ckb'), (32344,'Limburgish','default',494,'li'), (32345,'Lithuanian','default',494,'lt'), (32346,'Macedonian','default',494,'mk'), (32347,'Malay','default',494,'ms'), (32348,'Marathi','default',494,'mr'), (32349,'Mongolian','default',494,'mn'), (32351,'Norwegian (BokmÃ¥l)','default',494,'nb'), (32352,'Pashto','default',494,'ps'), (32353,'Persian','default',494,'fa'), (32354,'Polish','default',494,'pl'), (32355,'Portuguese (Brazil)','default',494,'pt-br'), (32356,'Portuguese (Portugal)','default',494,'pt'), (32357,'Rohingya','default',494,'rhg'), (32358,'Romanian','default',494,'ro'), (32359,'Russian','default',494,'ru'), (32360,'Scottish Gaelic','default',494,'gd'), (32361,'Serbian','default',494,'sr'), (32362,'Slovak','default',494,'sk'), (32363,'Slovenian','default',494,'sl'), (32364,'Somali','default',494,'so'), (32365,'Spanish (Chile)','default',494,'es-cl'), (32366,'Spanish (Colombia)','default',494,'es-co'), (32367,'Spanish (Peru)','default',494,'es-pe'), (32368,'Spanish (Spain)','default',494,'es'), (32369,'Spanish (Venezuela)','default',494,'es-ve'), (32370,'Swedish','default',494,'sv'), (32371,'Tamil','default',494,'ta'), (32372,'Tamil (Sri Lanka)','default',494,'ta-lk'), (32373,'Telugu','default',494,'te'), (32374,'Thai','default',494,'th'), (32375,'Turkish','default',494,'tr'), (32376,'Uzbek','default',494,'uz'), (32377,'Vietnamese','default',494,'vi'), (32378,'Welsh','default',494,'cy'), (32379,'Silesian','default',2,'szl'), (32380,'Silesian','default',78,'szl'), (32381,'Silesian','default',79,'szl'), (32382,'Silesian','default',64,'szl'), (32383,'Silesian','default',15,'szl'), (32384,'Silesian','default',55,'szl'), (32385,'Silesian','default',80,'szl'), (32386,'Silesian','default',101,'szl'), (32387,'Silesian','default',130,'szl'), (32388,'Silesian','default',421,'szl'), (32389,'Silesian','default',217,'szl'), (32390,'Silesian','default',66,'szl'), (32391,'Silesian','default',470,'szl'), (32392,'Silesian','default',481,'szl'), (32393,'Silesian','default',488,'szl'), (32394,'Silesian','default',59,'szl'), (32395,'Silesian','default',14,'szl'), (32397,'Afrikaans','default',495,'af'), (32398,'Albanian','default',495,'sq'), (32399,'Algerian Arabic','default',495,'arq'), (32400,'Amharic','default',495,'am'), (32401,'Arabic','default',495,'ar'), (32402,'Aragonese','default',495,'an'), (32403,'Armenian','default',495,'hy'), (32404,'Arpitan','default',495,'frp'), (32405,'Assamese','default',495,'as'), (32406,'Azerbaijani','default',495,'az'), (32407,'Azerbaijani (Turkey)','default',495,'az-tr'), (32408,'Balochi Southern','default',495,'bcc'), (32409,'Basque','default',495,'eu'), (32410,'Belarusian','default',495,'bel'), (32411,'Bengali','default',495,'bn'), (32412,'Bosnian','default',495,'bs'), (32413,'Brazilian Portuguese','default',495,'pt-br'), (32414,'Breton','default',495,'br'), (32415,'Bulgarian','default',495,'bg'), (32416,'Burmese','default',495,'mya'), (32417,'Catalan','default',495,'ca'), (32418,'Catalan (Balear)','default',495,'bal'), (32419,'Chilean Spanish','default',495,'es-cl'), (32420,'Chinese (China)','default',495,'zh-cn'), (32421,'Chinese (Taiwan)','default',495,'zh-tw'), (32422,'Corsican','default',495,'co'), (32423,'Croatian','default',495,'hr'), (32424,'Czech','default',495,'cs'), (32425,'Danish','default',495,'da'), (32426,'Divehi','default',495,'dv'), (32427,'Dutch','default',495,'nl'), (32428,'Dzongkha','default',495,'dzo'), (32429,'English (Australia)','default',495,'en-au'), (32430,'English (Canada)','default',495,'en-ca'), (32431,'English (UK)','default',495,'en-gb'), (32432,'Esperanto','default',495,'eo'), (32433,'Estonian','default',495,'et'), (32434,'Faroese','default',495,'fo'), (32435,'Finnish','default',495,'fi'), (32436,'French','default',495,'fr'), (32437,'French (Belgium)','default',495,'fr-be'), (32438,'French (Canada)','default',495,'fr-ca'), (32439,'Frisian','default',495,'fy'), (32440,'Fulah','default',495,'fuc'), (32441,'Galician','default',495,'gl'), (32442,'Georgian','default',495,'ka'), (32443,'German','default',495,'de'), (32444,'German (Formal)','formal',495,'de'), (32445,'German (Switzerland)','default',495,'de-ch'), (32446,'German (Switzerland) Informal','informal',495,'de-ch'), (32447,'Greek','default',495,'el'), (32448,'Gujarati','default',495,'gu'), (32449,'Hawaiian','default',495,'haw'), (32450,'Hazaragi','default',495,'haz'), (32451,'Hebrew','default',495,'he'), (32452,'Hindi','default',495,'hi'), (32453,'Hungarian','default',495,'hu'), (32454,'Icelandic','default',495,'is'), (32455,'Ido','default',495,'ido'), (32456,'Indonesian','default',495,'id'), (32457,'Irish','default',495,'ga'), (32458,'Italian','default',495,'it'), (32459,'Japanese','default',495,'ja'), (32460,'Javanese','default',495,'jv'), (32461,'Kabyle','default',495,'kab'), (32462,'Kannada','default',495,'kn'), (32463,'Kazakh','default',495,'kk'), (32464,'Khmer','default',495,'km'), (32465,'Kinyarwanda','default',495,'kin'), (32466,'Kirghiz','default',495,'ky'), (32467,'Korean','default',495,'ko'), (32468,'Kurdish','default',495,'ckb'), (32469,'Kurdish (Kurmanji)','default',495,'ku'), (32470,'Lao','default',495,'lo'), (32471,'Latin','default',495,'la'), (32472,'Latvian','default',495,'lv'), (32473,'Limburgish','default',495,'li'), (32475,'Lithuanian','default',495,'lt'), (32476,'Luxembourgish','default',495,'lb'), (32477,'Macedonian','default',495,'mk'), (32478,'Malagasy','default',495,'mg'), (32479,'Malay','default',495,'ms'), (32480,'Malayalam','default',495,'ml'), (32482,'Marathi','default',495,'mr'), (32483,'Mongolian','default',495,'mn'), (32484,'Montenegrin','default',495,'me'), (32485,'Nepali','default',495,'ne'), (32486,'Norwegian (BokmÃ¥l)','default',495,'nb'), (32487,'Norwegian (Nynorsk)','default',495,'nn'), (32488,'Occitan','default',495,'oci'), (32489,'Oriya','default',495,'ory'), (32490,'Ossetic','default',495,'os'), (32491,'Pashto','default',495,'ps'), (32492,'Persian','default',495,'fa'), (32493,'Persian (Afghanistan)','default',495,'fa-af'), (32494,'Peruvian Spanish','default',495,'es-pe'), (32495,'Polish','default',495,'pl'), (32496,'Portuguese','default',495,'pt'), (32497,'Portuguese Informal','informal',495,'pt'), (32498,'Punjabi','default',495,'pa'), (32499,'Rohingya','default',495,'rhg'), (32500,'Romanian','default',495,'ro'), (32501,'Romansh Vallader','default',495,'roh'), (32502,'Russian','default',495,'ru'), (32503,'Sakha','default',495,'sah'), (32504,'Sanskrit','default',495,'sa-in'), (32505,'Sardinian','default',495,'srd'), (32506,'Scottish Gaelic','default',495,'gd'), (32507,'Serbian','default',495,'sr'), (32508,'Silesian','default',495,'szl'), (32509,'Sinhala','default',495,'si'), (32510,'Slovak','default',495,'sk'), (32511,'Slovenian','default',495,'sl'), (32512,'Somali','default',495,'so'), (32513,'South Azerbaijani','default',495,'azb'), (32514,'Spanish','default',495,'es'), (32515,'Spanish (Argentina)','default',495,'es-ar'), (32516,'Spanish (Mexico)','default',495,'es-mx'), (32517,'Sundanese','default',495,'su'), (32518,'Swahili','default',495,'sw'), (32519,'Swedish','default',495,'sv'), (32520,'Swiss German','default',495,'gsw'), (32521,'Swiss German (Formal)','formal',495,'gsw'), (32522,'Tagalog','default',495,'tl'), (32523,'Tajik','default',495,'tg'), (32524,'Tamazight (Central Atlas)','default',495,'tzm'), (32525,'Tamil','default',495,'ta'), (32526,'Tamil (Sri Lanka)','default',495,'ta-lk'), (32527,'Tatar','default',495,'tt'), (32528,'Telugu','default',495,'te'), (32529,'Thai','default',495,'th'), (32530,'Tibetan','default',495,'bo'), (32531,'Turkish','default',495,'tr'), (32532,'Turkmen','default',495,'tuk'), (32533,'Uighur','default',495,'ug'), (32534,'Ukrainian','default',495,'uk'), (32535,'Urdu','default',495,'ur'), (32536,'Uzbek','default',495,'uz'), (32537,'Venezuelan Spanish','default',495,'es-ve'), (32538,'Vietnamese','default',495,'vi'), (32539,'Welsh','default',495,'cy'), (32541,'Afrikaans','default',496,'af'), (32542,'Albanian','default',496,'sq'), (32543,'Algerian Arabic','default',496,'arq'), (32544,'Amharic','default',496,'am'), (32545,'Arabic','default',496,'ar'), (32546,'Aragonese','default',496,'an'), (32547,'Armenian','default',496,'hy'), (32548,'Arpitan','default',496,'frp'), (32549,'Assamese','default',496,'as'), (32550,'Azerbaijani','default',496,'az'), (32551,'Azerbaijani (Turkey)','default',496,'az-tr'), (32552,'Balochi Southern','default',496,'bcc'), (32553,'Basque','default',496,'eu'), (32554,'Belarusian','default',496,'bel'), (32555,'Bengali','default',496,'bn'), (32556,'Bosnian','default',496,'bs'), (32557,'Brazilian Portuguese','default',496,'pt-br'), (32558,'Breton','default',496,'br'), (32559,'Bulgarian','default',496,'bg'), (32560,'Burmese','default',496,'mya'), (32561,'Catalan','default',496,'ca'), (32562,'Catalan (Balear)','default',496,'bal'), (32563,'Chilean Spanish','default',496,'es-cl'), (32564,'Chinese (China)','default',496,'zh-cn'), (32565,'Chinese (Taiwan)','default',496,'zh-tw'), (32566,'Corsican','default',496,'co'), (32567,'Croatian','default',496,'hr'), (32568,'Czech','default',496,'cs'), (32569,'Danish','default',496,'da'), (32570,'Divehi','default',496,'dv'), (32571,'Dutch','default',496,'nl'), (32572,'Dzongkha','default',496,'dzo'), (32573,'Esperanto','default',496,'eo'), (32574,'Estonian','default',496,'et'), (32575,'Faroese','default',496,'fo'), (32576,'Finnish','default',496,'fi'), (32577,'French','default',496,'fr'), (32578,'French (Belgium)','default',496,'fr-be'), (32579,'French (Canada)','default',496,'fr-ca'), (32580,'Frisian','default',496,'fy'), (32581,'Fulah','default',496,'fuc'), (32582,'Galician','default',496,'gl'), (32583,'Georgian','default',496,'ka'), (32584,'German','default',496,'de'), (32585,'German (Formal)','formal',496,'de'), (32586,'German (Switzerland)','default',496,'de-ch'), (32587,'German (Switzerland) Informal','informal',496,'de-ch'), (32588,'Greek','default',496,'el'), (32589,'Gujarati','default',496,'gu'), (32590,'Hawaiian','default',496,'haw'), (32591,'Hazaragi','default',496,'haz'), (32592,'Hebrew','default',496,'he'), (32593,'Hindi','default',496,'hi'), (32594,'Hungarian','default',496,'hu'), (32595,'Icelandic','default',496,'is'), (32596,'Ido','default',496,'ido'), (32597,'Indonesian','default',496,'id'), (32598,'Irish','default',496,'ga'), (32599,'Italian','default',496,'it'), (32600,'Japanese','default',496,'ja'), (32601,'Javanese','default',496,'jv'), (32602,'Kabyle','default',496,'kab'), (32603,'Kannada','default',496,'kn'), (32604,'Kazakh','default',496,'kk'), (32605,'Khmer','default',496,'km'), (32606,'Kinyarwanda','default',496,'kin'), (32607,'Kirghiz','default',496,'ky'), (32608,'Korean','default',496,'ko'), (32609,'Kurdish','default',496,'ckb'), (32610,'Kurdish (Kurmanji)','default',496,'ku'), (32611,'Lao','default',496,'lo'), (32612,'Latin','default',496,'la'), (32613,'Latvian','default',496,'lv'), (32614,'Limburgish','default',496,'li'), (32616,'Lithuanian','default',496,'lt'), (32617,'Luxembourgish','default',496,'lb'), (32618,'Macedonian','default',496,'mk'), (32619,'Malagasy','default',496,'mg'), (32620,'Malay','default',496,'ms'), (32621,'Malayalam','default',496,'ml'), (32623,'Marathi','default',496,'mr'), (32624,'Mongolian','default',496,'mn'), (32625,'Montenegrin','default',496,'me'), (32626,'Nepali','default',496,'ne'), (32627,'Norwegian (BokmÃ¥l)','default',496,'nb'), (32628,'Norwegian (Nynorsk)','default',496,'nn'), (32629,'Occitan','default',496,'oci'), (32630,'Oriya','default',496,'ory'), (32631,'Ossetic','default',496,'os'), (32632,'Pashto','default',496,'ps'), (32633,'Persian','default',496,'fa'), (32634,'Persian (Afghanistan)','default',496,'fa-af'), (32635,'Peruvian Spanish','default',496,'es-pe'), (32636,'Polish','default',496,'pl'), (32637,'Portuguese','default',496,'pt'), (32638,'Punjabi','default',496,'pa'), (32639,'Rohingya','default',496,'rhg'), (32640,'Romanian','default',496,'ro'), (32641,'Romansh Vallader','default',496,'roh'), (32642,'Russian','default',496,'ru'), (32643,'Sakha','default',496,'sah'), (32644,'Sanskrit','default',496,'sa-in'), (32645,'Sardinian','default',496,'srd'), (32646,'Scottish Gaelic','default',496,'gd'), (32647,'Serbian','default',496,'sr'), (32648,'Silesian','default',496,'szl'), (32649,'Sinhala','default',496,'si'), (32650,'Slovak','default',496,'sk'), (32651,'Slovenian','default',496,'sl'), (32652,'Somali','default',496,'so'), (32653,'South Azerbaijani','default',496,'azb'), (32654,'Spanish','default',496,'es'), (32655,'Spanish (Argentina)','default',496,'es-ar'), (32656,'Spanish (Mexico)','default',496,'es-mx'), (32657,'Sundanese','default',496,'su'), (32658,'Swahili','default',496,'sw'), (32659,'Swedish','default',496,'sv'), (32660,'Swiss German','default',496,'gsw'), (32661,'Swiss German (Formal)','formal',496,'gsw'), (32662,'Tagalog','default',496,'tl'), (32663,'Tajik','default',496,'tg'), (32664,'Tamazight (Central Atlas)','default',496,'tzm'), (32665,'Tamil','default',496,'ta'), (32666,'Tamil (Sri Lanka)','default',496,'ta-lk'), (32667,'Tatar','default',496,'tt'), (32668,'Telugu','default',496,'te'), (32669,'Thai','default',496,'th'), (32670,'Tibetan','default',496,'bo'), (32671,'Turkish','default',496,'tr'), (32672,'Turkmen','default',496,'tuk'), (32673,'Uighur','default',496,'ug'), (32674,'Ukrainian','default',496,'uk'), (32675,'Urdu','default',496,'ur'), (32676,'Uzbek','default',496,'uz'), (32677,'Venezuelan Spanish','default',496,'es-ve'), (32678,'Vietnamese','default',496,'vi'), (32679,'Welsh','default',496,'cy'), (32681,'Afrikaans','default',497,'af'), (32682,'Albanian','default',497,'sq'), (32683,'Algerian Arabic','default',497,'arq'), (32684,'Amharic','default',497,'am'), (32685,'Arabic','default',497,'ar'), (32686,'Aragonese','default',497,'an'), (32687,'Armenian','default',497,'hy'), (32688,'Arpitan','default',497,'frp'), (32689,'Assamese','default',497,'as'), (32690,'Azerbaijani','default',497,'az'), (32691,'Azerbaijani (Turkey)','default',497,'az-tr'), (32692,'Balochi Southern','default',497,'bcc'), (32693,'Basque','default',497,'eu'), (32694,'Belarusian','default',497,'bel'), (32695,'Bengali','default',497,'bn'), (32696,'Bosnian','default',497,'bs'), (32697,'Brazilian Portuguese','default',497,'pt-br'), (32698,'Breton','default',497,'br'), (32699,'Bulgarian','default',497,'bg'), (32700,'Burmese','default',497,'mya'), (32701,'Catalan','default',497,'ca'), (32702,'Catalan (Balear)','default',497,'bal'), (32703,'Chilean Spanish','default',497,'es-cl'), (32704,'Chinese (China)','default',497,'zh-cn'), (32705,'Chinese (Taiwan)','default',497,'zh-tw'), (32706,'Corsican','default',497,'co'), (32707,'Croatian','default',497,'hr'), (32708,'Czech','default',497,'cs'), (32709,'Danish','default',497,'da'), (32710,'Divehi','default',497,'dv'), (32711,'Dutch','default',497,'nl'), (32712,'Dzongkha','default',497,'dzo'), (32713,'English (Australia)','default',497,'en-au'), (32714,'English (Canada)','default',497,'en-ca'), (32715,'English (UK)','default',497,'en-gb'), (32716,'Esperanto','default',497,'eo'), (32717,'Estonian','default',497,'et'), (32718,'Faroese','default',497,'fo'), (32719,'Finnish','default',497,'fi'), (32720,'French','default',497,'fr'), (32721,'French (Belgium)','default',497,'fr-be'), (32722,'French (Canada)','default',497,'fr-ca'), (32723,'Frisian','default',497,'fy'), (32724,'Fulah','default',497,'fuc'), (32725,'Galician','default',497,'gl'), (32726,'Georgian','default',497,'ka'), (32727,'German','default',497,'de'), (32728,'German (Formal)','formal',497,'de'), (32729,'German (Switzerland)','default',497,'de-ch'), (32730,'German (Switzerland) Informal','informal',497,'de-ch'), (32731,'Greek','default',497,'el'), (32732,'Gujarati','default',497,'gu'), (32733,'Hawaiian','default',497,'haw'), (32734,'Hazaragi','default',497,'haz'), (32735,'Hebrew','default',497,'he'), (32736,'Hindi','default',497,'hi'), (32737,'Hungarian','default',497,'hu'), (32738,'Icelandic','default',497,'is'), (32739,'Ido','default',497,'ido'), (32740,'Indonesian','default',497,'id'), (32741,'Irish','default',497,'ga'), (32742,'Italian','default',497,'it'), (32743,'Japanese','default',497,'ja'), (32744,'Javanese','default',497,'jv'), (32745,'Kabyle','default',497,'kab'), (32746,'Kannada','default',497,'kn'), (32747,'Kazakh','default',497,'kk'), (32748,'Khmer','default',497,'km'), (32749,'Kinyarwanda','default',497,'kin'), (32750,'Kirghiz','default',497,'ky'), (32751,'Korean','default',497,'ko'), (32752,'Kurdish','default',497,'ckb'), (32753,'Kurdish (Kurmanji)','default',497,'ku'), (32754,'Lao','default',497,'lo'), (32755,'Latin','default',497,'la'), (32756,'Latvian','default',497,'lv'), (32757,'Limburgish','default',497,'li'), (32759,'Lithuanian','default',497,'lt'), (32760,'Luxembourgish','default',497,'lb'), (32761,'Macedonian','default',497,'mk'), (32762,'Malagasy','default',497,'mg'), (32763,'Malay','default',497,'ms'), (32764,'Malayalam','default',497,'ml'), (32766,'Marathi','default',497,'mr'), (32767,'Mongolian','default',497,'mn'), (32768,'Montenegrin','default',497,'me'), (32769,'Nepali','default',497,'ne'), (32770,'Norwegian (BokmÃ¥l)','default',497,'nb'), (32771,'Norwegian (Nynorsk)','default',497,'nn'), (32772,'Occitan','default',497,'oci'), (32773,'Oriya','default',497,'ory'), (32774,'Ossetic','default',497,'os'), (32775,'Pashto','default',497,'ps'), (32776,'Persian','default',497,'fa'), (32777,'Persian (Afghanistan)','default',497,'fa-af'), (32778,'Peruvian Spanish','default',497,'es-pe'), (32779,'Polish','default',497,'pl'), (32780,'Portuguese','default',497,'pt'), (32781,'Portuguese (Portugal) - Informal','informal',497,'pt'), (32782,'Punjabi','default',497,'pa'), (32783,'Rohingya','default',497,'rhg'), (32784,'Romanian','default',497,'ro'), (32785,'Romansh Vallader','default',497,'roh'), (32786,'Russian','default',497,'ru'), (32787,'Sakha','default',497,'sah'), (32788,'Sanskrit','default',497,'sa-in'), (32789,'Sardinian','default',497,'srd'), (32790,'Scottish Gaelic','default',497,'gd'), (32791,'Serbian','default',497,'sr'), (32792,'Silesian','default',497,'szl'), (32793,'Sinhala','default',497,'si'), (32794,'Slovak','default',497,'sk'), (32795,'Slovenian','default',497,'sl'), (32796,'Somali','default',497,'so'), (32797,'South Azerbaijani','default',497,'azb'), (32798,'Spanish','default',497,'es'), (32799,'Spanish (Argentina)','default',497,'es-ar'), (32800,'Spanish (Mexico)','default',497,'es-mx'), (32801,'Sundanese','default',497,'su'), (32802,'Swahili','default',497,'sw'), (32803,'Swedish','default',497,'sv'), (32804,'Swiss German','default',497,'gsw'), (32805,'Swiss German (Formal)','formal',497,'gsw'), (32806,'Tagalog','default',497,'tl'), (32807,'Tajik','default',497,'tg'), (32808,'Tamazight (Central Atlas)','default',497,'tzm'), (32809,'Tamil','default',497,'ta'), (32810,'Tamil (Sri Lanka)','default',497,'ta-lk'), (32811,'Tatar','default',497,'tt'), (32812,'Telugu','default',497,'te'), (32813,'Thai','default',497,'th'), (32814,'Tibetan','default',497,'bo'), (32815,'Turkish','default',497,'tr'), (32816,'Turkmen','default',497,'tuk'), (32817,'Uighur','default',497,'ug'), (32818,'Ukrainian','default',497,'uk'), (32819,'Urdu','default',497,'ur'), (32820,'Uzbek','default',497,'uz'), (32821,'Venezuelan Spanish','default',497,'es-ve'), (32822,'Vietnamese','default',497,'vi'), (32823,'Welsh','default',497,'cy'), (32825,'Afrikaans','default',498,'af'), (32826,'Albanian','default',498,'sq'), (32827,'Algerian Arabic','default',498,'arq'), (32828,'Amharic','default',498,'am'), (32829,'Arabic','default',498,'ar'), (32830,'Aragonese','default',498,'an'), (32831,'Armenian','default',498,'hy'), (32832,'Arpitan','default',498,'frp'), (32833,'Assamese','default',498,'as'), (32834,'Azerbaijani','default',498,'az'), (32835,'Azerbaijani (Turkey)','default',498,'az-tr'), (32836,'Balochi Southern','default',498,'bcc'), (32837,'Basque','default',498,'eu'), (32838,'Belarusian','default',498,'bel'), (32839,'Bengali','default',498,'bn'), (32840,'Bosnian','default',498,'bs'), (32841,'Brazilian Portuguese','default',498,'pt-br'), (32842,'Breton','default',498,'br'), (32843,'Bulgarian','default',498,'bg'), (32844,'Burmese','default',498,'mya'), (32845,'Catalan','default',498,'ca'), (32846,'Catalan (Balear)','default',498,'bal'), (32847,'Chilean Spanish','default',498,'es-cl'), (32848,'Chinese (China)','default',498,'zh-cn'), (32849,'Chinese (Taiwan)','default',498,'zh-tw'), (32850,'Corsican','default',498,'co'), (32851,'Croatian','default',498,'hr'), (32852,'Czech','default',498,'cs'), (32853,'Danish','default',498,'da'), (32854,'Divehi','default',498,'dv'), (32855,'Dutch','default',498,'nl'), (32856,'Dzongkha','default',498,'dzo'), (32857,'English (Australia)','default',498,'en-au'), (32858,'English (Canada)','default',498,'en-ca'), (32859,'English (UK)','default',498,'en-gb'), (32860,'Esperanto','default',498,'eo'), (32861,'Estonian','default',498,'et'), (32862,'Faroese','default',498,'fo'), (32863,'Finnish','default',498,'fi'), (32864,'French','default',498,'fr'), (32865,'French (Belgium)','default',498,'fr-be'), (32866,'French (Canada)','default',498,'fr-ca'), (32867,'Frisian','default',498,'fy'), (32868,'Fulah','default',498,'fuc'), (32869,'Galician','default',498,'gl'), (32870,'Georgian','default',498,'ka'), (32871,'German','default',498,'de'), (32872,'German (Formal)','formal',498,'de'), (32873,'German (Switzerland)','default',498,'de-ch'), (32874,'German (Switzerland) Informal','informal',498,'de-ch'), (32875,'Greek','default',498,'el'), (32876,'Gujarati','default',498,'gu'), (32877,'Hawaiian','default',498,'haw'), (32878,'Hazaragi','default',498,'haz'), (32879,'Hebrew','default',498,'he'), (32880,'Hindi','default',498,'hi'), (32881,'Hungarian','default',498,'hu'), (32882,'Icelandic','default',498,'is'), (32883,'Ido','default',498,'ido'), (32884,'Indonesian','default',498,'id'), (32885,'Irish','default',498,'ga'), (32886,'Italian','default',498,'it'), (32887,'Japanese','default',498,'ja'), (32888,'Javanese','default',498,'jv'), (32889,'Kabyle','default',498,'kab'), (32890,'Kannada','default',498,'kn'), (32891,'Kazakh','default',498,'kk'), (32892,'Khmer','default',498,'km'), (32893,'Kinyarwanda','default',498,'kin'), (32894,'Kirghiz','default',498,'ky'), (32895,'Korean','default',498,'ko'), (32896,'Kurdish','default',498,'ckb'), (32897,'Kurdish (Kurmanji)','default',498,'ku'), (32898,'Lao','default',498,'lo'), (32899,'Latin','default',498,'la'), (32900,'Latvian','default',498,'lv'), (32901,'Limburgish','default',498,'li'), (32903,'Lithuanian','default',498,'lt'), (32904,'Luxembourgish','default',498,'lb'), (32905,'Macedonian','default',498,'mk'), (32906,'Malagasy','default',498,'mg'), (32907,'Malay','default',498,'ms'), (32908,'Malayalam','default',498,'ml'), (32910,'Marathi','default',498,'mr'), (32911,'Mongolian','default',498,'mn'), (32912,'Montenegrin','default',498,'me'), (32913,'Nepali','default',498,'ne'), (32914,'Norwegian (BokmÃ¥l)','default',498,'nb'), (32915,'Norwegian (Nynorsk)','default',498,'nn'), (32916,'Occitan','default',498,'oci'), (32917,'Oriya','default',498,'ory'), (32918,'Ossetic','default',498,'os'), (32919,'Pashto','default',498,'ps'), (32920,'Persian','default',498,'fa'), (32921,'Persian (Afghanistan)','default',498,'fa-af'), (32922,'Peruvian Spanish','default',498,'es-pe'), (32923,'Polish','default',498,'pl'), (32924,'Português (Informal)','informal',498,'pt'), (32925,'Portuguese','default',498,'pt'), (32926,'Punjabi','default',498,'pa'), (32927,'Rohingya','default',498,'rhg'), (32928,'Romanian','default',498,'ro'), (32929,'Romansh Vallader','default',498,'roh'), (32930,'Russian','default',498,'ru'), (32931,'Sakha','default',498,'sah'), (32932,'Sanskrit','default',498,'sa-in'), (32933,'Sardinian','default',498,'srd'), (32934,'Scottish Gaelic','default',498,'gd'), (32935,'Serbian','default',498,'sr'), (32936,'Silesian','default',498,'szl'), (32937,'Sinhala','default',498,'si'), (32938,'Slovak','default',498,'sk'), (32939,'Slovenian','default',498,'sl'), (32940,'Somali','default',498,'so'), (32941,'South Azerbaijani','default',498,'azb'), (32942,'Spanish','default',498,'es'), (32943,'Spanish (Argentina)','default',498,'es-ar'), (32944,'Spanish (Mexico)','default',498,'es-mx'), (32945,'Sundanese','default',498,'su'), (32946,'Swahili','default',498,'sw'), (32947,'Swedish','default',498,'sv'), (32948,'Swiss German','default',498,'gsw'), (32949,'Swiss German (Formal)','formal',498,'gsw'), (32950,'Tagalog','default',498,'tl'), (32951,'Tajik','default',498,'tg'), (32952,'Tamazight (Central Atlas)','default',498,'tzm'), (32953,'Tamil','default',498,'ta'), (32954,'Tamil (Sri Lanka)','default',498,'ta-lk'), (32955,'Tatar','default',498,'tt'), (32956,'Telugu','default',498,'te'), (32957,'Thai','default',498,'th'), (32958,'Tibetan','default',498,'bo'), (32959,'Turkish','default',498,'tr'), (32960,'Turkmen','default',498,'tuk'), (32961,'Uighur','default',498,'ug'), (32962,'Ukrainian','default',498,'uk'), (32963,'Urdu','default',498,'ur'), (32964,'Uzbek','default',498,'uz'), (32965,'Venezuelan Spanish','default',498,'es-ve'), (32966,'Vietnamese','default',498,'vi'), (32967,'Welsh','default',498,'cy'), (32969,'Afrikaans','default',499,'af'), (32970,'Albanian','default',499,'sq'), (32971,'Algerian Arabic','default',499,'arq'), (32972,'Amharic','default',499,'am'), (32973,'Arabic','default',499,'ar'), (32974,'Aragonese','default',499,'an'), (32975,'Armenian','default',499,'hy'), (32976,'Arpitan','default',499,'frp'), (32977,'Assamese','default',499,'as'), (32978,'Azerbaijani','default',499,'az'), (32979,'Azerbaijani (Turkey)','default',499,'az-tr'), (32980,'Balochi Southern','default',499,'bcc'), (32981,'Basque','default',499,'eu'), (32982,'Belarusian','default',499,'bel'), (32983,'Bengali','default',499,'bn'), (32984,'Bosnian','default',499,'bs'), (32985,'Brazilian Portuguese','default',499,'pt-br'), (32986,'Breton','default',499,'br'), (32987,'Bulgarian','default',499,'bg'), (32988,'Burmese','default',499,'mya'), (32989,'Catalan','default',499,'ca'), (32990,'Catalan (Balear)','default',499,'bal'), (32991,'Chilean Spanish','default',499,'es-cl'), (32992,'Chinese (China)','default',499,'zh-cn'), (32993,'Chinese (Taiwan)','default',499,'zh-tw'), (32994,'Corsican','default',499,'co'), (32995,'Croatian','default',499,'hr'), (32996,'Czech','default',499,'cs'), (32997,'Danish','default',499,'da'), (32998,'Divehi','default',499,'dv'), (32999,'Dutch','default',499,'nl'), (33000,'Dzongkha','default',499,'dzo'), (33001,'English (Australia)','default',499,'en-au'), (33002,'English (Canada)','default',499,'en-ca'), (33003,'English (UK)','default',499,'en-gb'), (33004,'Esperanto','default',499,'eo'), (33005,'Estonian','default',499,'et'), (33006,'Faroese','default',499,'fo'), (33007,'Finnish','default',499,'fi'), (33008,'French','default',499,'fr'), (33009,'French (Belgium)','default',499,'fr-be'), (33010,'French (Canada)','default',499,'fr-ca'), (33011,'Frisian','default',499,'fy'), (33012,'Fulah','default',499,'fuc'), (33013,'Galician','default',499,'gl'), (33014,'Georgian','default',499,'ka'), (33015,'German','default',499,'de'), (33016,'German (Formal)','formal',499,'de'), (33017,'German (Switzerland)','default',499,'de-ch'), (33018,'German (Switzerland) Informal','informal',499,'de-ch'), (33019,'Greek','default',499,'el'), (33020,'Gujarati','default',499,'gu'), (33021,'Hawaiian','default',499,'haw'), (33022,'Hazaragi','default',499,'haz'), (33023,'Hebrew','default',499,'he'), (33024,'Hindi','default',499,'hi'), (33025,'Hungarian','default',499,'hu'), (33026,'Icelandic','default',499,'is'), (33027,'Ido','default',499,'ido'), (33028,'Indonesian','default',499,'id'), (33029,'Irish','default',499,'ga'), (33030,'Italian','default',499,'it'), (33031,'Japanese','default',499,'ja'), (33032,'Javanese','default',499,'jv'), (33033,'Kabyle','default',499,'kab'), (33034,'Kannada','default',499,'kn'), (33035,'Kazakh','default',499,'kk'), (33036,'Khmer','default',499,'km'), (33037,'Kinyarwanda','default',499,'kin'), (33038,'Kirghiz','default',499,'ky'), (33039,'Korean','default',499,'ko'), (33040,'Kurdish','default',499,'ckb'), (33041,'Kurdish (Kurmanji)','default',499,'ku'), (33042,'Lao','default',499,'lo'), (33043,'Latin','default',499,'la'), (33044,'Latvian','default',499,'lv'), (33045,'Limburgish','default',499,'li'), (33047,'Lithuanian','default',499,'lt'), (33048,'Luxembourgish','default',499,'lb'), (33049,'Macedonian','default',499,'mk'), (33050,'Malagasy','default',499,'mg'), (33051,'Malay','default',499,'ms'), (33052,'Malayalam','default',499,'ml'), (33054,'Marathi','default',499,'mr'), (33055,'Mongolian','default',499,'mn'), (33056,'Montenegrin','default',499,'me'), (33057,'Nepali','default',499,'ne'), (33058,'Norwegian (BokmÃ¥l)','default',499,'nb'), (33059,'Norwegian (Nynorsk)','default',499,'nn'), (33060,'Occitan','default',499,'oci'), (33061,'Oriya','default',499,'ory'), (33062,'Ossetic','default',499,'os'), (33063,'Pashto','default',499,'ps'), (33064,'Persian','default',499,'fa'), (33065,'Persian (Afghanistan)','default',499,'fa-af'), (33066,'Peruvian Spanish','default',499,'es-pe'), (33067,'Polish','default',499,'pl'), (33068,'Portuguese','default',499,'pt'), (33069,'Portuguese (Informal)','informal',499,'pt'), (33070,'Punjabi','default',499,'pa'), (33071,'Rohingya','default',499,'rhg'), (33072,'Romanian','default',499,'ro'), (33073,'Romansh Vallader','default',499,'roh'), (33074,'Russian','default',499,'ru'), (33075,'Sakha','default',499,'sah'), (33076,'Sanskrit','default',499,'sa-in'), (33077,'Sardinian','default',499,'srd'), (33078,'Scottish Gaelic','default',499,'gd'), (33079,'Serbian','default',499,'sr'), (33080,'Silesian','default',499,'szl'), (33081,'Sinhala','default',499,'si'), (33082,'Slovak','default',499,'sk'), (33083,'Slovenian','default',499,'sl'), (33084,'Somali','default',499,'so'), (33085,'South Azerbaijani','default',499,'azb'), (33086,'Spanish','default',499,'es'), (33087,'Spanish (Argentina)','default',499,'es-ar'), (33088,'Spanish (Mexico)','default',499,'es-mx'), (33089,'Sundanese','default',499,'su'), (33090,'Swahili','default',499,'sw'), (33091,'Swedish','default',499,'sv'), (33092,'Swiss German','default',499,'gsw'), (33093,'Swiss German (Formal)','formal',499,'gsw'), (33094,'Tagalog','default',499,'tl'), (33095,'Tajik','default',499,'tg'), (33096,'Tamazight (Central Atlas)','default',499,'tzm'), (33097,'Tamil','default',499,'ta'), (33098,'Tamil (Sri Lanka)','default',499,'ta-lk'), (33099,'Tatar','default',499,'tt'), (33100,'Telugu','default',499,'te'), (33101,'Thai','default',499,'th'), (33102,'Tibetan','default',499,'bo'), (33103,'Turkish','default',499,'tr'), (33104,'Turkmen','default',499,'tuk'), (33105,'Uighur','default',499,'ug'), (33106,'Ukrainian','default',499,'uk'), (33107,'Urdu','default',499,'ur'), (33108,'Uzbek','default',499,'uz'), (33109,'Venezuelan Spanish','default',499,'es-ve'), (33110,'Vietnamese','default',499,'vi'), (33111,'Welsh','default',499,'cy'), (33113,'Afrikaans','default',500,'af'), (33114,'Albanian','default',500,'sq'), (33115,'Algerian Arabic','default',500,'arq'), (33116,'Amharic','default',500,'am'), (33117,'Arabic','default',500,'ar'), (33118,'Aragonese','default',500,'an'), (33119,'Armenian','default',500,'hy'), (33120,'Arpitan','default',500,'frp'), (33121,'Assamese','default',500,'as'), (33122,'Azerbaijani','default',500,'az'), (33123,'Azerbaijani (Turkey)','default',500,'az-tr'), (33124,'Balochi Southern','default',500,'bcc'), (33125,'Basque','default',500,'eu'), (33126,'Belarusian','default',500,'bel'), (33127,'Bengali','default',500,'bn'), (33128,'Bosnian','default',500,'bs'), (33129,'Brazilian Portuguese','default',500,'pt-br'), (33130,'Breton','default',500,'br'), (33131,'Bulgarian','default',500,'bg'), (33132,'Burmese','default',500,'mya'), (33133,'Catalan','default',500,'ca'), (33134,'Catalan (Balear)','default',500,'bal'), (33135,'Chilean Spanish','default',500,'es-cl'), (33136,'Chinese (China)','default',500,'zh-cn'), (33137,'Chinese (Taiwan)','default',500,'zh-tw'), (33138,'Corsican','default',500,'co'), (33139,'Croatian','default',500,'hr'), (33140,'Czech','default',500,'cs'), (33141,'Danish','default',500,'da'), (33142,'Divehi','default',500,'dv'), (33143,'Dutch','default',500,'nl'), (33144,'Dzongkha','default',500,'dzo'), (33145,'English (Australia)','default',500,'en-au'), (33146,'English (Canada)','default',500,'en-ca'), (33147,'English (UK)','default',500,'en-gb'), (33148,'Esperanto','default',500,'eo'), (33149,'Estonian','default',500,'et'), (33150,'Faroese','default',500,'fo'), (33151,'Finnish','default',500,'fi'), (33152,'French','default',500,'fr'), (33153,'French (Belgium)','default',500,'fr-be'), (33154,'French (Canada)','default',500,'fr-ca'), (33155,'Frisian','default',500,'fy'), (33156,'Fulah','default',500,'fuc'), (33157,'Galician','default',500,'gl'), (33158,'Georgian','default',500,'ka'), (33159,'German','default',500,'de'), (33160,'German (Formal)','formal',500,'de'), (33161,'German (Switzerland)','default',500,'de-ch'), (33162,'German (Switzerland) Informal','informal',500,'de-ch'), (33163,'Greek','default',500,'el'), (33164,'Gujarati','default',500,'gu'), (33165,'Hawaiian','default',500,'haw'), (33166,'Hazaragi','default',500,'haz'), (33167,'Hebrew','default',500,'he'), (33168,'Hindi','default',500,'hi'), (33169,'Hungarian','default',500,'hu'), (33170,'Icelandic','default',500,'is'), (33171,'Ido','default',500,'ido'), (33172,'Indonesian','default',500,'id'), (33173,'Irish','default',500,'ga'), (33174,'Italian','default',500,'it'), (33175,'Japanese','default',500,'ja'), (33176,'Javanese','default',500,'jv'), (33177,'Kabyle','default',500,'kab'), (33178,'Kannada','default',500,'kn'), (33179,'Kazakh','default',500,'kk'), (33180,'Khmer','default',500,'km'), (33181,'Kinyarwanda','default',500,'kin'), (33182,'Kirghiz','default',500,'ky'), (33183,'Korean','default',500,'ko'), (33184,'Kurdish','default',500,'ckb'), (33185,'Kurdish (Kurmanji)','default',500,'ku'), (33186,'Lao','default',500,'lo'), (33187,'Latin','default',500,'la'), (33188,'Latvian','default',500,'lv'), (33189,'Limburgish','default',500,'li'), (33191,'Lithuanian','default',500,'lt'), (33192,'Luxembourgish','default',500,'lb'), (33193,'Macedonian','default',500,'mk'), (33194,'Malagasy','default',500,'mg'), (33195,'Malay','default',500,'ms'), (33196,'Malayalam','default',500,'ml'), (33198,'Marathi','default',500,'mr'), (33199,'Mongolian','default',500,'mn'), (33200,'Montenegrin','default',500,'me'), (33201,'Nepali','default',500,'ne'), (33202,'Norwegian (BokmÃ¥l)','default',500,'nb'), (33203,'Norwegian (Nynorsk)','default',500,'nn'), (33204,'Occitan','default',500,'oci'), (33205,'Oriya','default',500,'ory'), (33206,'Ossetic','default',500,'os'), (33207,'Pashto','default',500,'ps'), (33208,'Persian','default',500,'fa'), (33209,'Persian (Afghanistan)','default',500,'fa-af'), (33210,'Peruvian Spanish','default',500,'es-pe'), (33211,'Polish','default',500,'pl'), (33212,'Portuguese','default',500,'pt'), (33213,'Portuguese Informal','informal',500,'pt'), (33214,'Punjabi','default',500,'pa'), (33215,'Rohingya','default',500,'rhg'), (33216,'Romanian','default',500,'ro'), (33217,'Romansh Vallader','default',500,'roh'), (33218,'Russian','default',500,'ru'), (33219,'Sakha','default',500,'sah'), (33220,'Sanskrit','default',500,'sa-in'), (33221,'Sardinian','default',500,'srd'), (33222,'Scottish Gaelic','default',500,'gd'), (33223,'Serbian','default',500,'sr'), (33224,'Silesian','default',500,'szl'), (33225,'Sinhala','default',500,'si'), (33226,'Slovak','default',500,'sk'), (33227,'Slovenian','default',500,'sl'), (33228,'Somali','default',500,'so'), (33229,'South Azerbaijani','default',500,'azb'), (33230,'Spanish','default',500,'es'), (33231,'Spanish (Argentina)','default',500,'es-ar'), (33232,'Spanish (Mexico)','default',500,'es-mx'), (33233,'Sundanese','default',500,'su'), (33234,'Swahili','default',500,'sw'), (33235,'Swedish','default',500,'sv'), (33236,'Swiss German','default',500,'gsw'), (33237,'Swiss German (Formal)','formal',500,'gsw'), (33238,'Tagalog','default',500,'tl'), (33239,'Tajik','default',500,'tg'), (33240,'Tamazight (Central Atlas)','default',500,'tzm'), (33241,'Tamil','default',500,'ta'), (33242,'Tamil (Sri Lanka)','default',500,'ta-lk'), (33243,'Tatar','default',500,'tt'), (33244,'Telugu','default',500,'te'), (33245,'Thai','default',500,'th'), (33246,'Tibetan','default',500,'bo'), (33247,'Turkish','default',500,'tr'), (33248,'Turkmen','default',500,'tuk'), (33249,'Uighur','default',500,'ug'), (33250,'Ukrainian','default',500,'uk'), (33251,'Urdu','default',500,'ur'), (33252,'Uzbek','default',500,'uz'), (33253,'Venezuelan Spanish','default',500,'es-ve'), (33254,'Vietnamese','default',500,'vi'), (33255,'Welsh','default',500,'cy'), (34199,'Pashto','default',428,'ps'), (34200,'Pashto','default',430,'ps'), (34493,'Maori','default',2,'mri'), (34494,'Maori','default',78,'mri'), (34495,'Maori','default',79,'mri'), (34496,'Maori','default',64,'mri'), (34497,'Maori','default',15,'mri'), (34498,'Maori','default',55,'mri'), (34499,'Maori','default',80,'mri'), (34500,'Maori','default',101,'mri'), (34501,'Maori','default',130,'mri'), (34502,'Maori','default',421,'mri'), (34503,'Maori','default',217,'mri'), (34504,'Maori','default',432,'mri'), (34505,'Maori','default',433,'mri'), (34506,'Maori','default',434,'mri'), (34507,'Maori','default',66,'mri'), (34508,'Maori','default',470,'mri'), (34509,'Maori','default',481,'mri'), (34510,'Maori','default',488,'mri'), (34511,'Maori','default',59,'mri'), (34512,'Maori','default',14,'mri'), (89609,'Spanish (Colombia)','default',2,'es-co'), (89610,'Spanish (Colombia)','default',78,'es-co'), (89611,'Spanish (Colombia)','default',79,'es-co'), (89612,'Spanish (Colombia)','default',64,'es-co'), (89613,'Spanish (Colombia)','default',15,'es-co'), (89614,'Spanish (Colombia)','default',55,'es-co'), (89615,'Spanish (Colombia)','default',80,'es-co'), (89616,'Spanish (Colombia)','default',101,'es-co'), (89617,'Spanish (Colombia)','default',130,'es-co'), (89618,'Spanish (Colombia)','default',421,'es-co'), (89619,'Spanish (Colombia)','default',217,'es-co'), (89620,'Spanish (Colombia)','default',432,'es-co'), (89621,'Spanish (Colombia)','default',433,'es-co'), (89622,'Spanish (Colombia)','default',434,'es-co'), (89623,'Spanish (Colombia)','default',66,'es-co'), (89624,'Spanish (Colombia)','default',470,'es-co'), (89625,'Spanish (Colombia)','default',481,'es-co'), (89626,'Spanish (Colombia)','default',488,'es-co'), (89627,'Spanish (Colombia)','default',59,'es-co'), (89628,'Spanish (Colombia)','default',14,'es-co'), (152550,'English (South Africa)','default',2,'en-za'), (152551,'English (South Africa)','default',78,'en-za'), (152552,'English (South Africa)','default',79,'en-za'), (152554,'English (South Africa)','default',15,'en-za'), (152555,'English (South Africa)','default',55,'en-za'), (152556,'English (South Africa)','default',80,'en-za'), (152557,'English (South Africa)','default',101,'en-za'), (152558,'English (South Africa)','default',130,'en-za'), (152559,'English (South Africa)','default',421,'en-za'), (152560,'English (South Africa)','default',217,'en-za'), (152561,'English (South Africa)','default',432,'en-za'), (152562,'English (South Africa)','default',433,'en-za'), (152563,'English (South Africa)','default',434,'en-za'), (152564,'English (South Africa)','default',66,'en-za'), (152565,'English (South Africa)','default',470,'en-za'), (152566,'English (South Africa)','default',481,'en-za'), (152567,'English (South Africa)','default',488,'en-za'), (152568,'English (South Africa)','default',59,'en-za'), (152569,'English (South Africa)','default',14,'en-za'), (332873,'Afrikaans','default',428,'af'), (332874,'Algerian Arabic','default',428,'arq'), (332875,'Amharic','default',428,'am'), (332876,'Aragonese','default',428,'an'), (332877,'Armenian','default',428,'hy'), (332878,'Arpitan','default',428,'frp'), (332879,'Assamese','default',428,'as'), (332880,'Azerbaijani (Turkey)','default',428,'az-tr'), (332881,'Balochi Southern','default',428,'bcc'), (332882,'Belarusian','default',428,'bel'), (332883,'Breton','default',428,'br'), (332884,'Catalan (Balear)','default',428,'bal'), (332885,'Corsican','default',428,'co'), (332886,'Divehi','default',428,'dv'), (332887,'Dzongkha','default',428,'dzo'), (332888,'English (Australia)','default',428,'en-au'), (332889,'English (Canada)','default',428,'en-ca'), (332890,'English (South Africa)','default',428,'en-za'), (332891,'French (Belgium)','default',428,'fr-be'), (332892,'French (Canada)','default',428,'fr-ca'), (332893,'German (Formal)','formal',428,'de'), (332894,'German (Switzerland)','default',428,'de-ch'), (332895,'German (Switzerland) Informal','informal',428,'de-ch'), (332896,'Gujarati','default',428,'gu'), (332897,'Hawaiian','default',428,'haw'), (332898,'Hazaragi','default',428,'haz'), (332899,'Icelandic','default',428,'is'), (332900,'Ido','default',428,'ido'), (332901,'Irish','default',428,'ga'), (332902,'Kabyle','default',428,'kab'), (332903,'Kazakh','default',428,'kk'), (332904,'Khmer','default',428,'km'), (332905,'Kinyarwanda','default',428,'kin'), (332906,'Kurdish (Kurmanji)','default',428,'ku'), (332907,'Lao','default',428,'lo'), (332908,'Latin','default',428,'la'), (332909,'Limburgish','default',428,'li'), (332910,'Luxembourgish','default',428,'lb'), (332911,'Malagasy','default',428,'mg'), (332912,'Maori','default',428,'mri'), (332913,'Marathi','default',428,'mr'), (332914,'Montenegrin','default',428,'me'), (332915,'Occitan','default',428,'oci'), (332916,'Oriya','default',428,'ory'), (332917,'Ossetic','default',428,'os'), (332918,'Persian (Afghanistan)','default',428,'fa-af'), (332919,'Portuguese Informal','informal',428,'pt'), (332920,'Rohingya','default',428,'rhg'), (332921,'Romansh Vallader','default',428,'roh'), (332922,'Sakha','default',428,'sah'), (332923,'Sanskrit','default',428,'sa-in'), (332924,'Sardinian','default',428,'srd'), (332925,'Scottish Gaelic','default',428,'gd'), (332926,'Silesian','default',428,'szl'), (332927,'Slovenian','default',428,'sl'), (332928,'Somali','default',428,'so'), (332929,'South Azerbaijani','default',428,'azb'), (332930,'Spanish (Argentina)','default',428,'es-ar'), (332931,'Spanish (Colombia)','default',428,'es-co'), (332932,'Spanish (Mexico)','default',428,'es-mx'), (332933,'Swiss German','default',428,'gsw'), (332934,'Swiss German (Formal)','formal',428,'gsw'), (332935,'Tagalog','default',428,'tl'), (332936,'Tajik','default',428,'tg'), (332937,'Tamazight (Central Atlas)','default',428,'tzm'), (332938,'Tamil','default',428,'ta'), (332939,'Tatar','default',428,'tt'), (332940,'Telugu','default',428,'te'), (332941,'Tibetan','default',428,'bo'), (332942,'Turkmen','default',428,'tuk'), (332943,'Urdu','default',428,'ur'), (332944,'Afrikaans','default',430,'af'), (332945,'Algerian Arabic','default',430,'arq'), (332946,'Amharic','default',430,'am'), (332947,'Aragonese','default',430,'an'), (332948,'Armenian','default',430,'hy'), (332949,'Arpitan','default',430,'frp'), (332950,'Assamese','default',430,'as'), (332951,'Azerbaijani (Turkey)','default',430,'az-tr'), (332952,'Balochi Southern','default',430,'bcc'), (332953,'Belarusian','default',430,'bel'), (332954,'Breton','default',430,'br'), (332955,'Catalan (Balear)','default',430,'bal'), (332956,'Corsican','default',430,'co'), (332957,'Divehi','default',430,'dv'), (332958,'Dzongkha','default',430,'dzo'), (332959,'English (Australia)','default',430,'en-au'), (332960,'English (Canada)','default',430,'en-ca'), (332961,'English (South Africa)','default',430,'en-za'), (332962,'French (Belgium)','default',430,'fr-be'), (332963,'French (Canada)','default',430,'fr-ca'), (332964,'German (Formal)','formal',430,'de'), (332965,'German (Switzerland)','default',430,'de-ch'), (332966,'German (Switzerland) Informal','informal',430,'de-ch'), (332967,'Gujarati','default',430,'gu'), (332968,'Hawaiian','default',430,'haw'), (332969,'Hazaragi','default',430,'haz'), (332970,'Icelandic','default',430,'is'), (332971,'Ido','default',430,'ido'), (332972,'Irish','default',430,'ga'), (332973,'Kabyle','default',430,'kab'), (332974,'Kazakh','default',430,'kk'), (332975,'Khmer','default',430,'km'), (332976,'Kinyarwanda','default',430,'kin'), (332977,'Kurdish (Kurmanji)','default',430,'ku'), (332978,'Lao','default',430,'lo'), (332979,'Latin','default',430,'la'), (332980,'Limburgish','default',430,'li'), (332981,'Luxembourgish','default',430,'lb'), (332982,'Malagasy','default',430,'mg'), (332983,'Maori','default',430,'mri'), (332984,'Marathi','default',430,'mr'), (332985,'Montenegrin','default',430,'me'), (332986,'Occitan','default',430,'oci'), (332987,'Oriya','default',430,'ory'), (332988,'Ossetic','default',430,'os'), (332989,'Persian (Afghanistan)','default',430,'fa-af'), (332990,'Portuguese Informal','informal',430,'pt'), (332991,'Rohingya','default',430,'rhg'), (332992,'Romansh Vallader','default',430,'roh'), (332993,'Sakha','default',430,'sah'), (332994,'Sanskrit','default',430,'sa-in'), (332995,'Sardinian','default',430,'srd'), (332996,'Scottish Gaelic','default',430,'gd'), (332997,'Silesian','default',430,'szl'), (332998,'Slovenian','default',430,'sl'), (332999,'Somali','default',430,'so'), (333000,'South Azerbaijani','default',430,'azb'), (333001,'Spanish (Argentina)','default',430,'es-ar'), (333002,'Spanish (Colombia)','default',430,'es-co'), (333003,'Spanish (Mexico)','default',430,'es-mx'), (333004,'Swiss German','default',430,'gsw'), (333005,'Swiss German (Formal)','formal',430,'gsw'), (333006,'Tagalog','default',430,'tl'), (333007,'Tajik','default',430,'tg'), (333008,'Tamazight (Central Atlas)','default',430,'tzm'), (333009,'Tamil','default',430,'ta'), (333010,'Tatar','default',430,'tt'), (333011,'Telugu','default',430,'te'), (333012,'Tibetan','default',430,'bo'), (333013,'Turkmen','default',430,'tuk'), (333014,'Urdu','default',430,'ur'), (333015,'German (Formal)','formal',59,'de'), (333016,'Portuguese Informal','informal',59,'pt'), (333017,'Afrikaans','default',215,'af'), (333018,'Albanian','default',215,'sq'), (333019,'Algerian Arabic','default',215,'arq'), (333020,'Amharic','default',215,'am'), (333021,'Aragonese','default',215,'an'), (333022,'Armenian','default',215,'hy'), (333023,'Arpitan','default',215,'frp'), (333024,'Assamese','default',215,'as'), (333025,'Azerbaijani (Turkey)','default',215,'az-tr'), (333026,'Balochi Southern','default',215,'bcc'), (333027,'Basque','default',215,'eu'), (333028,'Belarusian','default',215,'bel'), (333029,'Bengali','default',215,'bn'), (333030,'Breton','default',215,'br'), (333031,'Catalan (Balear)','default',215,'bal'), (333032,'Chilean Spanish','default',215,'es-cl'), (333033,'Corsican','default',215,'co'), (333034,'Divehi','default',215,'dv'), (333035,'Dzongkha','default',215,'dzo'), (333036,'English (Canada)','default',215,'en-ca'), (333037,'English (South Africa)','default',215,'en-za'), (333038,'Esperanto','default',215,'eo'), (333039,'Estonian','default',215,'et'), (333040,'Faroese','default',215,'fo'), (333041,'French (Belgium)','default',215,'fr-be'), (333042,'French (Canada)','default',215,'fr-ca'), (333043,'Frisian','default',215,'fy'), (333044,'Fulah','default',215,'fuc'), (333045,'German (Formal)','formal',215,'de'), (333046,'German (Switzerland)','default',215,'de-ch'), (333047,'German (Switzerland) Informal','informal',215,'de-ch'), (333048,'Gujarati','default',215,'gu'), (333049,'Hawaiian','default',215,'haw'), (333050,'Hazaragi','default',215,'haz'), (333051,'Icelandic','default',215,'is'), (333052,'Ido','default',215,'ido'), (333053,'Irish','default',215,'ga'), (333054,'Javanese','default',215,'jv'), (333055,'Kabyle','default',215,'kab'), (333056,'Kazakh','default',215,'kk'), (333057,'Khmer','default',215,'km'), (333058,'Kinyarwanda','default',215,'kin'), (333059,'Kirghiz','default',215,'ky'), (333060,'Lao','default',215,'lo'), (333061,'Latin','default',215,'la'), (333062,'Limburgish','default',215,'li'), (333063,'Lithuanian','default',215,'lt'), (333064,'Luxembourgish','default',215,'lb'), (333065,'Malagasy','default',215,'mg'), (333066,'Malayalam','default',215,'ml'), (333067,'Maori','default',215,'mri'), (333068,'Marathi','default',215,'mr'), (333069,'Mongolian','default',215,'mn'), (333070,'Montenegrin','default',215,'me'), (333071,'Nepali','default',215,'ne'), (333072,'Norwegian (Nynorsk)','default',215,'nn'), (333073,'Occitan','default',215,'oci'), (333074,'Oriya','default',215,'ory'), (333075,'Ossetic','default',215,'os'), (333076,'Pashto','default',215,'ps'), (333077,'Persian (Afghanistan)','default',215,'fa-af'), (333078,'Peruvian Spanish','default',215,'es-pe'), (333079,'Portuguese Informal','informal',215,'pt'), (333080,'Punjabi','default',215,'pa'), (333081,'Romansh Vallader','default',215,'roh'), (333082,'Sakha','default',215,'sah'), (333083,'Sanskrit','default',215,'sa-in'), (333084,'Sardinian','default',215,'srd'), (333085,'Scottish Gaelic','default',215,'gd'), (333086,'Silesian','default',215,'szl'), (333087,'Sinhala','default',215,'si'), (333088,'Somali','default',215,'so'), (333089,'South Azerbaijani','default',215,'azb'), (333090,'Spanish (Argentina)','default',215,'es-ar'), (333091,'Spanish (Colombia)','default',215,'es-co'), (333092,'Sundanese','default',215,'su'), (333093,'Swahili','default',215,'sw'), (333094,'Swiss German','default',215,'gsw'), (333095,'Swiss German (Formal)','formal',215,'gsw'), (333096,'Tagalog','default',215,'tl'), (333097,'Tajik','default',215,'tg'), (333098,'Tamazight (Central Atlas)','default',215,'tzm'), (333099,'Tatar','default',215,'tt'), (333100,'Telugu','default',215,'te'), (333101,'Tibetan','default',215,'bo'), (333102,'Turkmen','default',215,'tuk'), (333103,'Uighur','default',215,'ug'), (333104,'Ukrainian','default',215,'uk'), (333105,'Urdu','default',215,'ur'), (333106,'Uzbek','default',215,'uz'), (333107,'Venezuelan Spanish','default',215,'es-ve'), (333108,'Vietnamese','default',215,'vi'), (333109,'Welsh','default',215,'cy'), (333686,'German (Formal)','formal',14,'de'), (333687,'Portuguese Informal','informal',14,'pt'), (333688,'English (South Africa)','default',493,'en-za'), (333689,'German (Formal)','formal',493,'de'), (333690,'Maori','default',493,'mri'), (333691,'Portuguese Informal','informal',493,'pt'), (333692,'Silesian','default',493,'szl'), (333693,'Spanish (Colombia)','default',493,'es-co'), (333694,'Afrikaans','default',433,'af'), (333695,'Algerian Arabic','default',433,'arq'), (333696,'Amharic','default',433,'am'), (333697,'Aragonese','default',433,'an'), (333698,'Armenian','default',433,'hy'), (333699,'Arpitan','default',433,'frp'), (333700,'Assamese','default',433,'as'), (333701,'Azerbaijani (Turkey)','default',433,'az-tr'), (333702,'Balochi Southern','default',433,'bcc'), (333703,'Belarusian','default',433,'bel'), (333704,'Breton','default',433,'br'), (333705,'Catalan (Balear)','default',433,'bal'), (333706,'Corsican','default',433,'co'), (333707,'Divehi','default',433,'dv'), (333708,'Dzongkha','default',433,'dzo'), (333709,'English (Australia)','default',433,'en-au'), (333710,'English (Canada)','default',433,'en-ca'), (333711,'French (Belgium)','default',433,'fr-be'), (333712,'French (Canada)','default',433,'fr-ca'), (333713,'German (Formal)','formal',433,'de'), (333714,'German (Switzerland)','default',433,'de-ch'), (333715,'German (Switzerland) Informal','informal',433,'de-ch'), (333716,'Gujarati','default',433,'gu'), (333717,'Hawaiian','default',433,'haw'), (333718,'Hazaragi','default',433,'haz'), (333719,'Icelandic','default',433,'is'), (333720,'Ido','default',433,'ido'), (333721,'Irish','default',433,'ga'), (333722,'Kabyle','default',433,'kab'), (333723,'Kazakh','default',433,'kk'), (333724,'Khmer','default',433,'km'), (333725,'Kinyarwanda','default',433,'kin'), (333726,'Kurdish (Kurmanji)','default',433,'ku'), (333727,'Lao','default',433,'lo'), (333728,'Latin','default',433,'la'), (333729,'Limburgish','default',433,'li'), (333730,'Luxembourgish','default',433,'lb'), (333731,'Malagasy','default',433,'mg'), (333732,'Marathi','default',433,'mr'), (333733,'Montenegrin','default',433,'me'), (333734,'Occitan','default',433,'oci'), (333735,'Oriya','default',433,'ory'), (333736,'Ossetic','default',433,'os'), (333737,'Persian (Afghanistan)','default',433,'fa-af'), (333738,'Portuguese Informal','informal',433,'pt'), (333739,'Rohingya','default',433,'rhg'), (333740,'Romansh Vallader','default',433,'roh'), (333741,'Sakha','default',433,'sah'), (333742,'Sanskrit','default',433,'sa-in'), (333743,'Sardinian','default',433,'srd'), (333744,'Scottish Gaelic','default',433,'gd'), (333745,'Silesian','default',433,'szl'), (333746,'Slovenian','default',433,'sl'), (333747,'Somali','default',433,'so'), (333748,'South Azerbaijani','default',433,'azb'), (333749,'Spanish (Argentina)','default',433,'es-ar'), (333750,'Spanish (Mexico)','default',433,'es-mx'), (333751,'Swiss German','default',433,'gsw'), (333752,'Swiss German (Formal)','formal',433,'gsw'), (333753,'Tagalog','default',433,'tl'), (333754,'Tajik','default',433,'tg'), (333755,'Tamazight (Central Atlas)','default',433,'tzm'), (333756,'Tamil','default',433,'ta'), (333757,'Tatar','default',433,'tt'), (333758,'Telugu','default',433,'te'), (333759,'Tibetan','default',433,'bo'), (333760,'Turkmen','default',433,'tuk'), (333761,'Urdu','default',433,'ur'), (333762,'German (Formal)','formal',432,'de'), (333763,'Portuguese Informal','informal',432,'pt'), (333764,'Silesian','default',432,'szl'), (333765,'Afrikaans','default',434,'af'), (333766,'Algerian Arabic','default',434,'arq'), (333767,'Amharic','default',434,'am'), (333768,'Aragonese','default',434,'an'), (333769,'Armenian','default',434,'hy'), (333770,'Arpitan','default',434,'frp'), (333771,'Assamese','default',434,'as'), (333772,'Azerbaijani (Turkey)','default',434,'az-tr'), (333773,'Balochi Southern','default',434,'bcc'), (333774,'Belarusian','default',434,'bel'), (333775,'Breton','default',434,'br'), (333776,'Catalan (Balear)','default',434,'bal'), (333777,'Corsican','default',434,'co'), (333778,'Divehi','default',434,'dv'), (333779,'Dzongkha','default',434,'dzo'), (333780,'English (Australia)','default',434,'en-au'), (333781,'English (Canada)','default',434,'en-ca'), (333782,'French (Belgium)','default',434,'fr-be'), (333783,'French (Canada)','default',434,'fr-ca'), (333784,'German (Formal)','formal',434,'de'), (333785,'German (Switzerland)','default',434,'de-ch'), (333786,'German (Switzerland) Informal','informal',434,'de-ch'), (333787,'Gujarati','default',434,'gu'), (333788,'Hawaiian','default',434,'haw'), (333789,'Hazaragi','default',434,'haz'), (333790,'Icelandic','default',434,'is'), (333791,'Ido','default',434,'ido'), (333792,'Irish','default',434,'ga'), (333793,'Kabyle','default',434,'kab'), (333794,'Kazakh','default',434,'kk'), (333795,'Khmer','default',434,'km'), (333796,'Kinyarwanda','default',434,'kin'), (333797,'Kurdish (Kurmanji)','default',434,'ku'), (333798,'Lao','default',434,'lo'), (333799,'Latin','default',434,'la'), (333800,'Limburgish','default',434,'li'), (333801,'Luxembourgish','default',434,'lb'), (333802,'Malagasy','default',434,'mg'), (333803,'Marathi','default',434,'mr'), (333804,'Montenegrin','default',434,'me'), (333805,'Occitan','default',434,'oci'), (333806,'Oriya','default',434,'ory'), (333807,'Ossetic','default',434,'os'), (333808,'Persian (Afghanistan)','default',434,'fa-af'), (333809,'Portuguese Informal','informal',434,'pt'), (333810,'Rohingya','default',434,'rhg'), (333811,'Romansh Vallader','default',434,'roh'), (333812,'Sakha','default',434,'sah'), (333813,'Sanskrit','default',434,'sa-in'), (333814,'Sardinian','default',434,'srd'), (333815,'Scottish Gaelic','default',434,'gd'), (333816,'Silesian','default',434,'szl'), (333817,'Slovenian','default',434,'sl'), (333818,'Somali','default',434,'so'), (333819,'South Azerbaijani','default',434,'azb'), (333820,'Spanish (Argentina)','default',434,'es-ar'), (333821,'Spanish (Mexico)','default',434,'es-mx'), (333822,'Swiss German','default',434,'gsw'), (333823,'Swiss German (Formal)','formal',434,'gsw'), (333824,'Tagalog','default',434,'tl'), (333825,'Tajik','default',434,'tg'), (333826,'Tamazight (Central Atlas)','default',434,'tzm'), (333827,'Tamil','default',434,'ta'), (333828,'Tatar','default',434,'tt'), (333829,'Telugu','default',434,'te'), (333830,'Tibetan','default',434,'bo'), (333831,'Turkmen','default',434,'tuk'), (333832,'Urdu','default',434,'ur'), (333833,'Afrikaans','default',43,'af'), (333834,'Algerian Arabic','default',43,'arq'), (333835,'Amharic','default',43,'am'), (333836,'Aragonese','default',43,'an'), (333837,'Armenian','default',43,'hy'), (333838,'Arpitan','default',43,'frp'), (333839,'Assamese','default',43,'as'), (333840,'Azerbaijani (Turkey)','default',43,'az-tr'), (333841,'Balochi Southern','default',43,'bcc'), (333842,'Belarusian','default',43,'bel'), (333843,'Breton','default',43,'br'), (333844,'Catalan (Balear)','default',43,'bal'), (333845,'Corsican','default',43,'co'), (333846,'Divehi','default',43,'dv'), (333847,'Dzongkha','default',43,'dzo'), (333848,'English (Australia)','default',43,'en-au'), (333849,'English (Canada)','default',43,'en-ca'), (333850,'English (South Africa)','default',43,'en-za'), (333851,'French (Belgium)','default',43,'fr-be'), (333852,'French (Canada)','default',43,'fr-ca'), (333853,'German (Formal)','formal',43,'de'), (333854,'German (Switzerland)','default',43,'de-ch'), (333855,'German (Switzerland) Informal','informal',43,'de-ch'), (333856,'Gujarati','default',43,'gu'), (333857,'Hawaiian','default',43,'haw'), (333858,'Hazaragi','default',43,'haz'), (333859,'Icelandic','default',43,'is'), (333860,'Ido','default',43,'ido'), (333861,'Irish','default',43,'ga'); INSERT INTO `translate_translation_sets` (`id`, `name`, `slug`, `project_id`, `locale`) VALUES (333862,'Kabyle','default',43,'kab'), (333863,'Kazakh','default',43,'kk'), (333864,'Khmer','default',43,'km'), (333865,'Kinyarwanda','default',43,'kin'), (333866,'Kurdish (Kurmanji)','default',43,'ku'), (333867,'Lao','default',43,'lo'), (333868,'Latin','default',43,'la'), (333869,'Limburgish','default',43,'li'), (333870,'Luxembourgish','default',43,'lb'), (333871,'Malagasy','default',43,'mg'), (333872,'Maori','default',43,'mri'), (333873,'Marathi','default',43,'mr'), (333874,'Montenegrin','default',43,'me'), (333875,'Occitan','default',43,'oci'), (333876,'Oriya','default',43,'ory'), (333877,'Ossetic','default',43,'os'), (333878,'Persian (Afghanistan)','default',43,'fa-af'), (333879,'Portuguese Informal','informal',43,'pt'), (333880,'Rohingya','default',43,'rhg'), (333881,'Romansh Vallader','default',43,'roh'), (333882,'Sakha','default',43,'sah'), (333883,'Sanskrit','default',43,'sa-in'), (333884,'Sardinian','default',43,'srd'), (333885,'Scottish Gaelic','default',43,'gd'), (333886,'Silesian','default',43,'szl'), (333887,'Slovenian','default',43,'sl'), (333888,'Somali','default',43,'so'), (333889,'South Azerbaijani','default',43,'azb'), (333890,'Spanish (Argentina)','default',43,'es-ar'), (333891,'Spanish (Colombia)','default',43,'es-co'), (333892,'Spanish (Mexico)','default',43,'es-mx'), (333893,'Swiss German','default',43,'gsw'), (333894,'Swiss German (Formal)','formal',43,'gsw'), (333895,'Tagalog','default',43,'tl'), (333896,'Tajik','default',43,'tg'), (333897,'Tamazight (Central Atlas)','default',43,'tzm'), (333898,'Tamil','default',43,'ta'), (333899,'Tatar','default',43,'tt'), (333900,'Telugu','default',43,'te'), (333901,'Tibetan','default',43,'bo'), (333902,'Turkmen','default',43,'tuk'), (333903,'Urdu','default',43,'ur'), (333904,'Afrikaans','default',451,'af'), (333905,'Algerian Arabic','default',451,'arq'), (333906,'Amharic','default',451,'am'), (333907,'Aragonese','default',451,'an'), (333908,'Armenian','default',451,'hy'), (333909,'Arpitan','default',451,'frp'), (333910,'Assamese','default',451,'as'), (333911,'Azerbaijani (Turkey)','default',451,'az-tr'), (333912,'Balochi Southern','default',451,'bcc'), (333913,'Belarusian','default',451,'bel'), (333914,'Breton','default',451,'br'), (333915,'Catalan (Balear)','default',451,'bal'), (333916,'Corsican','default',451,'co'), (333917,'Divehi','default',451,'dv'), (333918,'Dzongkha','default',451,'dzo'), (333919,'English (Australia)','default',451,'en-au'), (333920,'English (Canada)','default',451,'en-ca'), (333921,'English (South Africa)','default',451,'en-za'), (333922,'French (Belgium)','default',451,'fr-be'), (333923,'French (Canada)','default',451,'fr-ca'), (333924,'German (Formal)','formal',451,'de'), (333925,'German (Switzerland)','default',451,'de-ch'), (333926,'German (Switzerland) Informal','informal',451,'de-ch'), (333927,'Gujarati','default',451,'gu'), (333928,'Hawaiian','default',451,'haw'), (333929,'Hazaragi','default',451,'haz'), (333930,'Icelandic','default',451,'is'), (333931,'Ido','default',451,'ido'), (333932,'Irish','default',451,'ga'), (333933,'Kabyle','default',451,'kab'), (333934,'Kazakh','default',451,'kk'), (333935,'Khmer','default',451,'km'), (333936,'Kinyarwanda','default',451,'kin'), (333937,'Kurdish (Kurmanji)','default',451,'ku'), (333938,'Lao','default',451,'lo'), (333939,'Latin','default',451,'la'), (333940,'Limburgish','default',451,'li'), (333941,'Luxembourgish','default',451,'lb'), (333942,'Malagasy','default',451,'mg'), (333943,'Maori','default',451,'mri'), (333944,'Marathi','default',451,'mr'), (333945,'Montenegrin','default',451,'me'), (333946,'Occitan','default',451,'oci'), (333947,'Oriya','default',451,'ory'), (333948,'Ossetic','default',451,'os'), (333949,'Pashto','default',451,'ps'), (333950,'Persian (Afghanistan)','default',451,'fa-af'), (333951,'Portuguese Informal','informal',451,'pt'), (333952,'Rohingya','default',451,'rhg'), (333953,'Romansh Vallader','default',451,'roh'), (333954,'Sakha','default',451,'sah'), (333955,'Sanskrit','default',451,'sa-in'), (333956,'Sardinian','default',451,'srd'), (333957,'Scottish Gaelic','default',451,'gd'), (333958,'Silesian','default',451,'szl'), (333959,'Slovenian','default',451,'sl'), (333960,'Somali','default',451,'so'), (333961,'South Azerbaijani','default',451,'azb'), (333962,'Spanish (Argentina)','default',451,'es-ar'), (333963,'Spanish (Colombia)','default',451,'es-co'), (333964,'Spanish (Mexico)','default',451,'es-mx'), (333965,'Swiss German','default',451,'gsw'), (333966,'Swiss German (Formal)','formal',451,'gsw'), (333967,'Tagalog','default',451,'tl'), (333968,'Tajik','default',451,'tg'), (333969,'Tamazight (Central Atlas)','default',451,'tzm'), (333970,'Tamil','default',451,'ta'), (333971,'Tatar','default',451,'tt'), (333972,'Telugu','default',451,'te'), (333973,'Tibetan','default',451,'bo'), (333974,'Turkmen','default',451,'tuk'), (333975,'Urdu','default',451,'ur'), (333976,'Afrikaans','default',450,'af'), (333977,'Algerian Arabic','default',450,'arq'), (333978,'Amharic','default',450,'am'), (333979,'Aragonese','default',450,'an'), (333980,'Armenian','default',450,'hy'), (333981,'Arpitan','default',450,'frp'), (333982,'Assamese','default',450,'as'), (333983,'Azerbaijani (Turkey)','default',450,'az-tr'), (333984,'Balochi Southern','default',450,'bcc'), (333985,'Belarusian','default',450,'bel'), (333986,'Breton','default',450,'br'), (333987,'Catalan (Balear)','default',450,'bal'), (333988,'Corsican','default',450,'co'), (333989,'Divehi','default',450,'dv'), (333990,'Dzongkha','default',450,'dzo'), (333991,'English (Australia)','default',450,'en-au'), (333992,'English (Canada)','default',450,'en-ca'), (333993,'English (South Africa)','default',450,'en-za'), (333994,'French (Belgium)','default',450,'fr-be'), (333995,'French (Canada)','default',450,'fr-ca'), (333996,'German (Formal)','formal',450,'de'), (333997,'German (Switzerland)','default',450,'de-ch'), (333998,'German (Switzerland) Informal','informal',450,'de-ch'), (333999,'Gujarati','default',450,'gu'), (334000,'Hawaiian','default',450,'haw'), (334001,'Hazaragi','default',450,'haz'), (334002,'Icelandic','default',450,'is'), (334003,'Ido','default',450,'ido'), (334004,'Irish','default',450,'ga'), (334005,'Kabyle','default',450,'kab'), (334006,'Kazakh','default',450,'kk'), (334007,'Khmer','default',450,'km'), (334008,'Kinyarwanda','default',450,'kin'), (334009,'Kurdish (Kurmanji)','default',450,'ku'), (334010,'Lao','default',450,'lo'), (334011,'Latin','default',450,'la'), (334012,'Limburgish','default',450,'li'), (334013,'Luxembourgish','default',450,'lb'), (334014,'Malagasy','default',450,'mg'), (334015,'Maori','default',450,'mri'), (334016,'Marathi','default',450,'mr'), (334017,'Montenegrin','default',450,'me'), (334018,'Occitan','default',450,'oci'), (334019,'Oriya','default',450,'ory'), (334020,'Ossetic','default',450,'os'), (334021,'Pashto','default',450,'ps'), (334022,'Persian (Afghanistan)','default',450,'fa-af'), (334023,'Portuguese Informal','informal',450,'pt'), (334024,'Rohingya','default',450,'rhg'), (334025,'Romansh Vallader','default',450,'roh'), (334026,'Sakha','default',450,'sah'), (334027,'Sanskrit','default',450,'sa-in'), (334028,'Sardinian','default',450,'srd'), (334029,'Scottish Gaelic','default',450,'gd'), (334030,'Silesian','default',450,'szl'), (334031,'Slovenian','default',450,'sl'), (334032,'Somali','default',450,'so'), (334033,'South Azerbaijani','default',450,'azb'), (334034,'Spanish (Argentina)','default',450,'es-ar'), (334035,'Spanish (Colombia)','default',450,'es-co'), (334036,'Spanish (Mexico)','default',450,'es-mx'), (334037,'Swiss German','default',450,'gsw'), (334038,'Swiss German (Formal)','formal',450,'gsw'), (334039,'Tagalog','default',450,'tl'), (334040,'Tajik','default',450,'tg'), (334041,'Tamazight (Central Atlas)','default',450,'tzm'), (334042,'Tamil','default',450,'ta'), (334043,'Tatar','default',450,'tt'), (334044,'Telugu','default',450,'te'), (334045,'Tibetan','default',450,'bo'), (334046,'Turkmen','default',450,'tuk'), (334047,'Urdu','default',450,'ur'), (334048,'Afrikaans','default',452,'af'), (334049,'Algerian Arabic','default',452,'arq'), (334050,'Amharic','default',452,'am'), (334051,'Aragonese','default',452,'an'), (334052,'Armenian','default',452,'hy'), (334053,'Arpitan','default',452,'frp'), (334054,'Assamese','default',452,'as'), (334055,'Azerbaijani (Turkey)','default',452,'az-tr'), (334056,'Balochi Southern','default',452,'bcc'), (334057,'Belarusian','default',452,'bel'), (334058,'Breton','default',452,'br'), (334059,'Catalan (Balear)','default',452,'bal'), (334060,'Corsican','default',452,'co'), (334061,'Divehi','default',452,'dv'), (334062,'Dzongkha','default',452,'dzo'), (334063,'English (Australia)','default',452,'en-au'), (334064,'English (Canada)','default',452,'en-ca'), (334065,'English (South Africa)','default',452,'en-za'), (334066,'French (Belgium)','default',452,'fr-be'), (334067,'French (Canada)','default',452,'fr-ca'), (334068,'German (Formal)','formal',452,'de'), (334069,'German (Switzerland)','default',452,'de-ch'), (334070,'German (Switzerland) Informal','informal',452,'de-ch'), (334071,'Gujarati','default',452,'gu'), (334072,'Hawaiian','default',452,'haw'), (334073,'Hazaragi','default',452,'haz'), (334074,'Icelandic','default',452,'is'), (334075,'Ido','default',452,'ido'), (334076,'Irish','default',452,'ga'), (334077,'Kabyle','default',452,'kab'), (334078,'Kazakh','default',452,'kk'), (334079,'Khmer','default',452,'km'), (334080,'Kinyarwanda','default',452,'kin'), (334081,'Kurdish (Kurmanji)','default',452,'ku'), (334082,'Lao','default',452,'lo'), (334083,'Latin','default',452,'la'), (334084,'Limburgish','default',452,'li'), (334085,'Luxembourgish','default',452,'lb'), (334086,'Malagasy','default',452,'mg'), (334087,'Maori','default',452,'mri'), (334088,'Marathi','default',452,'mr'), (334089,'Montenegrin','default',452,'me'), (334090,'Occitan','default',452,'oci'), (334091,'Oriya','default',452,'ory'), (334092,'Ossetic','default',452,'os'), (334093,'Pashto','default',452,'ps'), (334094,'Persian (Afghanistan)','default',452,'fa-af'), (334095,'Portuguese Informal','informal',452,'pt'), (334096,'Rohingya','default',452,'rhg'), (334097,'Romansh Vallader','default',452,'roh'), (334098,'Sakha','default',452,'sah'), (334099,'Sanskrit','default',452,'sa-in'), (334100,'Sardinian','default',452,'srd'), (334101,'Scottish Gaelic','default',452,'gd'), (334102,'Silesian','default',452,'szl'), (334103,'Slovenian','default',452,'sl'), (334104,'Somali','default',452,'so'), (334105,'South Azerbaijani','default',452,'azb'), (334106,'Spanish (Argentina)','default',452,'es-ar'), (334107,'Spanish (Colombia)','default',452,'es-co'), (334108,'Spanish (Mexico)','default',452,'es-mx'), (334109,'Swiss German','default',452,'gsw'), (334110,'Swiss German (Formal)','formal',452,'gsw'), (334111,'Tagalog','default',452,'tl'), (334112,'Tajik','default',452,'tg'), (334113,'Tamazight (Central Atlas)','default',452,'tzm'), (334114,'Tamil','default',452,'ta'), (334115,'Tatar','default',452,'tt'), (334116,'Telugu','default',452,'te'), (334117,'Tibetan','default',452,'bo'), (334118,'Turkmen','default',452,'tuk'), (334119,'Urdu','default',452,'ur'), (334120,'Afrikaans','default',41,'af'), (334121,'Algerian Arabic','default',41,'arq'), (334122,'Amharic','default',41,'am'), (334123,'Aragonese','default',41,'an'), (334124,'Armenian','default',41,'hy'), (334125,'Arpitan','default',41,'frp'), (334126,'Assamese','default',41,'as'), (334127,'Azerbaijani (Turkey)','default',41,'az-tr'), (334128,'Balochi Southern','default',41,'bcc'), (334129,'Belarusian','default',41,'bel'), (334130,'Breton','default',41,'br'), (334131,'Catalan (Balear)','default',41,'bal'), (334132,'Corsican','default',41,'co'), (334133,'Divehi','default',41,'dv'), (334134,'Dzongkha','default',41,'dzo'), (334135,'English (Australia)','default',41,'en-au'), (334136,'English (Canada)','default',41,'en-ca'), (334137,'English (South Africa)','default',41,'en-za'), (334138,'French (Belgium)','default',41,'fr-be'), (334139,'French (Canada)','default',41,'fr-ca'), (334140,'German (Formal)','formal',41,'de'), (334141,'German (Switzerland)','default',41,'de-ch'), (334142,'German (Switzerland) Informal','informal',41,'de-ch'), (334143,'Gujarati','default',41,'gu'), (334144,'Hawaiian','default',41,'haw'), (334145,'Hazaragi','default',41,'haz'), (334146,'Icelandic','default',41,'is'), (334147,'Ido','default',41,'ido'), (334148,'Irish','default',41,'ga'), (334149,'Kabyle','default',41,'kab'), (334150,'Kazakh','default',41,'kk'), (334151,'Khmer','default',41,'km'), (334152,'Kinyarwanda','default',41,'kin'), (334153,'Kurdish (Kurmanji)','default',41,'ku'), (334154,'Lao','default',41,'lo'), (334155,'Latin','default',41,'la'), (334156,'Limburgish','default',41,'li'), (334157,'Luxembourgish','default',41,'lb'), (334158,'Malagasy','default',41,'mg'), (334159,'Maori','default',41,'mri'), (334160,'Marathi','default',41,'mr'), (334161,'Montenegrin','default',41,'me'), (334162,'Occitan','default',41,'oci'), (334163,'Oriya','default',41,'ory'), (334164,'Ossetic','default',41,'os'), (334165,'Pashto','default',41,'ps'), (334166,'Persian (Afghanistan)','default',41,'fa-af'), (334167,'Portuguese Informal','informal',41,'pt'), (334168,'Rohingya','default',41,'rhg'), (334169,'Romansh Vallader','default',41,'roh'), (334170,'Sakha','default',41,'sah'), (334171,'Sanskrit','default',41,'sa-in'), (334172,'Sardinian','default',41,'srd'), (334173,'Scottish Gaelic','default',41,'gd'), (334174,'Silesian','default',41,'szl'), (334175,'Slovenian','default',41,'sl'), (334176,'Somali','default',41,'so'), (334177,'South Azerbaijani','default',41,'azb'), (334178,'Spanish (Argentina)','default',41,'es-ar'), (334179,'Spanish (Colombia)','default',41,'es-co'), (334180,'Spanish (Mexico)','default',41,'es-mx'), (334181,'Swiss German','default',41,'gsw'), (334182,'Swiss German (Formal)','formal',41,'gsw'), (334183,'Tagalog','default',41,'tl'), (334184,'Tajik','default',41,'tg'), (334185,'Tamazight (Central Atlas)','default',41,'tzm'), (334186,'Tamil','default',41,'ta'), (334187,'Tatar','default',41,'tt'), (334188,'Telugu','default',41,'te'), (334189,'Tibetan','default',41,'bo'), (334190,'Turkmen','default',41,'tuk'), (334191,'Urdu','default',41,'ur'), (334192,'Afrikaans','default',363,'af'), (334193,'Algerian Arabic','default',363,'arq'), (334194,'Amharic','default',363,'am'), (334195,'Aragonese','default',363,'an'), (334196,'Armenian','default',363,'hy'), (334197,'Arpitan','default',363,'frp'), (334198,'Assamese','default',363,'as'), (334199,'Azerbaijani (Turkey)','default',363,'az-tr'), (334200,'Balochi Southern','default',363,'bcc'), (334201,'Belarusian','default',363,'bel'), (334202,'Breton','default',363,'br'), (334203,'Catalan (Balear)','default',363,'bal'), (334204,'Corsican','default',363,'co'), (334205,'Divehi','default',363,'dv'), (334206,'Dzongkha','default',363,'dzo'), (334207,'English (Australia)','default',363,'en-au'), (334208,'English (Canada)','default',363,'en-ca'), (334209,'English (South Africa)','default',363,'en-za'), (334210,'French (Belgium)','default',363,'fr-be'), (334211,'French (Canada)','default',363,'fr-ca'), (334212,'German (Formal)','formal',363,'de'), (334213,'German (Switzerland)','default',363,'de-ch'), (334214,'German (Switzerland) Informal','informal',363,'de-ch'), (334215,'Gujarati','default',363,'gu'), (334216,'Hawaiian','default',363,'haw'), (334217,'Hazaragi','default',363,'haz'), (334218,'Icelandic','default',363,'is'), (334219,'Ido','default',363,'ido'), (334220,'Irish','default',363,'ga'), (334221,'Kabyle','default',363,'kab'), (334222,'Kazakh','default',363,'kk'), (334223,'Khmer','default',363,'km'), (334224,'Kinyarwanda','default',363,'kin'), (334225,'Kurdish (Kurmanji)','default',363,'ku'), (334226,'Lao','default',363,'lo'), (334227,'Latin','default',363,'la'), (334228,'Limburgish','default',363,'li'), (334229,'Luxembourgish','default',363,'lb'), (334230,'Malagasy','default',363,'mg'), (334231,'Maori','default',363,'mri'), (334232,'Marathi','default',363,'mr'), (334233,'Montenegrin','default',363,'me'), (334234,'Occitan','default',363,'oci'), (334235,'Oriya','default',363,'ory'), (334236,'Ossetic','default',363,'os'), (334237,'Pashto','default',363,'ps'), (334238,'Persian (Afghanistan)','default',363,'fa-af'), (334239,'Portuguese Informal','informal',363,'pt'), (334240,'Rohingya','default',363,'rhg'), (334241,'Romansh Vallader','default',363,'roh'), (334242,'Sakha','default',363,'sah'), (334243,'Sanskrit','default',363,'sa-in'), (334244,'Sardinian','default',363,'srd'), (334245,'Scottish Gaelic','default',363,'gd'), (334246,'Silesian','default',363,'szl'), (334247,'Slovenian','default',363,'sl'), (334248,'Somali','default',363,'so'), (334249,'South Azerbaijani','default',363,'azb'), (334250,'Spanish (Argentina)','default',363,'es-ar'), (334251,'Spanish (Colombia)','default',363,'es-co'), (334252,'Spanish (Mexico)','default',363,'es-mx'), (334253,'Swiss German','default',363,'gsw'), (334254,'Swiss German (Formal)','formal',363,'gsw'), (334255,'Tagalog','default',363,'tl'), (334256,'Tajik','default',363,'tg'), (334257,'Tamazight (Central Atlas)','default',363,'tzm'), (334258,'Tamil','default',363,'ta'), (334259,'Tatar','default',363,'tt'), (334260,'Telugu','default',363,'te'), (334261,'Tibetan','default',363,'bo'), (334262,'Turkmen','default',363,'tuk'), (334263,'Urdu','default',363,'ur'), (334264,'Afrikaans','default',19,'af'), (334265,'Algerian Arabic','default',19,'arq'), (334266,'Amharic','default',19,'am'), (334267,'Aragonese','default',19,'an'), (334268,'Armenian','default',19,'hy'), (334269,'Arpitan','default',19,'frp'), (334270,'Assamese','default',19,'as'), (334271,'Azerbaijani (Turkey)','default',19,'az-tr'), (334272,'Balochi Southern','default',19,'bcc'), (334273,'Belarusian','default',19,'bel'), (334274,'Breton','default',19,'br'), (334275,'Catalan (Balear)','default',19,'bal'), (334276,'Corsican','default',19,'co'), (334277,'Divehi','default',19,'dv'), (334278,'Dzongkha','default',19,'dzo'), (334279,'English (Australia)','default',19,'en-au'), (334280,'English (Canada)','default',19,'en-ca'), (334281,'English (South Africa)','default',19,'en-za'), (334282,'French (Belgium)','default',19,'fr-be'), (334283,'French (Canada)','default',19,'fr-ca'), (334284,'German (Formal)','formal',19,'de'), (334285,'German (Switzerland)','default',19,'de-ch'), (334286,'German (Switzerland) Informal','informal',19,'de-ch'), (334287,'Gujarati','default',19,'gu'), (334288,'Hawaiian','default',19,'haw'), (334289,'Hazaragi','default',19,'haz'), (334290,'Icelandic','default',19,'is'), (334291,'Ido','default',19,'ido'), (334292,'Irish','default',19,'ga'), (334293,'Kabyle','default',19,'kab'), (334294,'Kazakh','default',19,'kk'), (334295,'Khmer','default',19,'km'), (334296,'Kinyarwanda','default',19,'kin'), (334297,'Kurdish (Kurmanji)','default',19,'ku'), (334298,'Lao','default',19,'lo'), (334299,'Latin','default',19,'la'), (334300,'Limburgish','default',19,'li'), (334301,'Luxembourgish','default',19,'lb'), (334302,'Malagasy','default',19,'mg'), (334303,'Maori','default',19,'mri'), (334304,'Marathi','default',19,'mr'), (334305,'Montenegrin','default',19,'me'), (334306,'Occitan','default',19,'oci'), (334307,'Oriya','default',19,'ory'), (334308,'Ossetic','default',19,'os'), (334309,'Persian (Afghanistan)','default',19,'fa-af'), (334310,'Portuguese Informal','informal',19,'pt'), (334311,'Rohingya','default',19,'rhg'), (334312,'Romansh Vallader','default',19,'roh'), (334313,'Sakha','default',19,'sah'), (334314,'Sanskrit','default',19,'sa-in'), (334315,'Sardinian','default',19,'srd'), (334316,'Scottish Gaelic','default',19,'gd'), (334317,'Silesian','default',19,'szl'), (334318,'Slovenian','default',19,'sl'), (334319,'Somali','default',19,'so'), (334320,'South Azerbaijani','default',19,'azb'), (334321,'Spanish (Argentina)','default',19,'es-ar'), (334322,'Spanish (Colombia)','default',19,'es-co'), (334323,'Spanish (Mexico)','default',19,'es-mx'), (334324,'Swiss German','default',19,'gsw'), (334325,'Swiss German (Formal)','formal',19,'gsw'), (334326,'Tagalog','default',19,'tl'), (334327,'Tajik','default',19,'tg'), (334328,'Tamazight (Central Atlas)','default',19,'tzm'), (334329,'Tamil','default',19,'ta'), (334330,'Tatar','default',19,'tt'), (334331,'Telugu','default',19,'te'), (334332,'Tibetan','default',19,'bo'), (334333,'Turkmen','default',19,'tuk'), (334334,'Urdu','default',19,'ur'), (334335,'Afrikaans','default',436,'af'), (334336,'Algerian Arabic','default',436,'arq'), (334337,'Amharic','default',436,'am'), (334338,'Aragonese','default',436,'an'), (334339,'Armenian','default',436,'hy'), (334340,'Arpitan','default',436,'frp'), (334341,'Assamese','default',436,'as'), (334342,'Azerbaijani (Turkey)','default',436,'az-tr'), (334343,'Balochi Southern','default',436,'bcc'), (334344,'Belarusian','default',436,'bel'), (334345,'Breton','default',436,'br'), (334346,'Catalan (Balear)','default',436,'bal'), (334347,'Corsican','default',436,'co'), (334348,'Divehi','default',436,'dv'), (334349,'Dzongkha','default',436,'dzo'), (334350,'English (Australia)','default',436,'en-au'), (334351,'English (Canada)','default',436,'en-ca'), (334352,'English (South Africa)','default',436,'en-za'), (334353,'French (Belgium)','default',436,'fr-be'), (334354,'French (Canada)','default',436,'fr-ca'), (334355,'German (Formal)','formal',436,'de'), (334356,'German (Switzerland)','default',436,'de-ch'), (334357,'German (Switzerland) Informal','informal',436,'de-ch'), (334358,'Gujarati','default',436,'gu'), (334359,'Hawaiian','default',436,'haw'), (334360,'Hazaragi','default',436,'haz'), (334361,'Icelandic','default',436,'is'), (334362,'Ido','default',436,'ido'), (334363,'Irish','default',436,'ga'), (334364,'Kabyle','default',436,'kab'), (334365,'Kazakh','default',436,'kk'), (334366,'Khmer','default',436,'km'), (334367,'Kinyarwanda','default',436,'kin'), (334368,'Kurdish (Kurmanji)','default',436,'ku'), (334369,'Lao','default',436,'lo'), (334370,'Latin','default',436,'la'), (334371,'Limburgish','default',436,'li'), (334372,'Luxembourgish','default',436,'lb'), (334373,'Malagasy','default',436,'mg'), (334374,'Maori','default',436,'mri'), (334375,'Marathi','default',436,'mr'), (334376,'Montenegrin','default',436,'me'), (334377,'Occitan','default',436,'oci'), (334378,'Oriya','default',436,'ory'), (334379,'Ossetic','default',436,'os'), (334380,'Pashto','default',436,'ps'), (334381,'Persian (Afghanistan)','default',436,'fa-af'), (334382,'Portuguese Informal','informal',436,'pt'), (334383,'Rohingya','default',436,'rhg'), (334384,'Romansh Vallader','default',436,'roh'), (334385,'Sakha','default',436,'sah'), (334386,'Sanskrit','default',436,'sa-in'), (334387,'Sardinian','default',436,'srd'), (334388,'Scottish Gaelic','default',436,'gd'), (334389,'Silesian','default',436,'szl'), (334390,'Slovenian','default',436,'sl'), (334391,'Somali','default',436,'so'), (334392,'South Azerbaijani','default',436,'azb'), (334393,'Spanish (Argentina)','default',436,'es-ar'), (334394,'Spanish (Colombia)','default',436,'es-co'), (334395,'Spanish (Mexico)','default',436,'es-mx'), (334396,'Swiss German','default',436,'gsw'), (334397,'Swiss German (Formal)','formal',436,'gsw'), (334398,'Tagalog','default',436,'tl'), (334399,'Tajik','default',436,'tg'), (334400,'Tamazight (Central Atlas)','default',436,'tzm'), (334401,'Tamil','default',436,'ta'), (334402,'Tatar','default',436,'tt'), (334403,'Telugu','default',436,'te'), (334404,'Tibetan','default',436,'bo'), (334405,'Turkmen','default',436,'tuk'), (334406,'Urdu','default',436,'ur'), (334407,'Afrikaans','default',435,'af'), (334408,'Algerian Arabic','default',435,'arq'), (334409,'Amharic','default',435,'am'), (334410,'Aragonese','default',435,'an'), (334411,'Armenian','default',435,'hy'), (334412,'Arpitan','default',435,'frp'), (334413,'Assamese','default',435,'as'), (334414,'Azerbaijani (Turkey)','default',435,'az-tr'), (334415,'Balochi Southern','default',435,'bcc'), (334416,'Belarusian','default',435,'bel'), (334417,'Breton','default',435,'br'), (334418,'Catalan (Balear)','default',435,'bal'), (334419,'Corsican','default',435,'co'), (334420,'Divehi','default',435,'dv'), (334421,'Dzongkha','default',435,'dzo'), (334422,'English (Australia)','default',435,'en-au'), (334423,'English (Canada)','default',435,'en-ca'), (334424,'English (South Africa)','default',435,'en-za'), (334425,'French (Belgium)','default',435,'fr-be'), (334426,'French (Canada)','default',435,'fr-ca'), (334427,'German (Formal)','formal',435,'de'), (334428,'German (Switzerland)','default',435,'de-ch'), (334429,'German (Switzerland) Informal','informal',435,'de-ch'), (334430,'Gujarati','default',435,'gu'), (334431,'Hawaiian','default',435,'haw'), (334432,'Hazaragi','default',435,'haz'), (334433,'Icelandic','default',435,'is'), (334434,'Ido','default',435,'ido'), (334435,'Irish','default',435,'ga'), (334436,'Kabyle','default',435,'kab'), (334437,'Kazakh','default',435,'kk'), (334438,'Khmer','default',435,'km'), (334439,'Kinyarwanda','default',435,'kin'), (334440,'Kurdish (Kurmanji)','default',435,'ku'), (334441,'Lao','default',435,'lo'), (334442,'Latin','default',435,'la'), (334443,'Limburgish','default',435,'li'), (334444,'Luxembourgish','default',435,'lb'), (334445,'Malagasy','default',435,'mg'), (334446,'Maori','default',435,'mri'), (334447,'Marathi','default',435,'mr'), (334448,'Montenegrin','default',435,'me'), (334449,'Occitan','default',435,'oci'), (334450,'Oriya','default',435,'ory'), (334451,'Ossetic','default',435,'os'), (334452,'Pashto','default',435,'ps'), (334453,'Persian (Afghanistan)','default',435,'fa-af'), (334454,'Portuguese Informal','informal',435,'pt'), (334455,'Rohingya','default',435,'rhg'), (334456,'Romansh Vallader','default',435,'roh'), (334457,'Sakha','default',435,'sah'), (334458,'Sanskrit','default',435,'sa-in'), (334459,'Sardinian','default',435,'srd'), (334460,'Scottish Gaelic','default',435,'gd'), (334461,'Silesian','default',435,'szl'), (334462,'Slovenian','default',435,'sl'), (334463,'Somali','default',435,'so'), (334464,'South Azerbaijani','default',435,'azb'), (334465,'Spanish (Argentina)','default',435,'es-ar'), (334466,'Spanish (Colombia)','default',435,'es-co'), (334467,'Spanish (Mexico)','default',435,'es-mx'), (334468,'Swiss German','default',435,'gsw'), (334469,'Swiss German (Formal)','formal',435,'gsw'), (334470,'Tagalog','default',435,'tl'), (334471,'Tajik','default',435,'tg'), (334472,'Tamazight (Central Atlas)','default',435,'tzm'), (334473,'Tamil','default',435,'ta'), (334474,'Tatar','default',435,'tt'), (334475,'Telugu','default',435,'te'), (334476,'Tibetan','default',435,'bo'), (334477,'Turkmen','default',435,'tuk'), (334478,'Urdu','default',435,'ur'), (334479,'Afrikaans','default',437,'af'), (334480,'Algerian Arabic','default',437,'arq'), (334481,'Amharic','default',437,'am'), (334482,'Aragonese','default',437,'an'), (334483,'Armenian','default',437,'hy'), (334484,'Arpitan','default',437,'frp'), (334485,'Assamese','default',437,'as'), (334486,'Azerbaijani (Turkey)','default',437,'az-tr'), (334487,'Balochi Southern','default',437,'bcc'), (334488,'Belarusian','default',437,'bel'), (334489,'Breton','default',437,'br'), (334490,'Catalan (Balear)','default',437,'bal'), (334491,'Corsican','default',437,'co'), (334492,'Divehi','default',437,'dv'), (334493,'Dzongkha','default',437,'dzo'), (334494,'English (Australia)','default',437,'en-au'), (334495,'English (Canada)','default',437,'en-ca'), (334496,'English (South Africa)','default',437,'en-za'), (334497,'French (Belgium)','default',437,'fr-be'), (334498,'French (Canada)','default',437,'fr-ca'), (334499,'German (Formal)','formal',437,'de'), (334500,'German (Switzerland)','default',437,'de-ch'), (334501,'German (Switzerland) Informal','informal',437,'de-ch'), (334502,'Gujarati','default',437,'gu'), (334503,'Hawaiian','default',437,'haw'), (334504,'Hazaragi','default',437,'haz'), (334505,'Icelandic','default',437,'is'), (334506,'Ido','default',437,'ido'), (334507,'Irish','default',437,'ga'), (334508,'Kabyle','default',437,'kab'), (334509,'Kazakh','default',437,'kk'), (334510,'Khmer','default',437,'km'), (334511,'Kinyarwanda','default',437,'kin'), (334512,'Kurdish (Kurmanji)','default',437,'ku'), (334513,'Lao','default',437,'lo'), (334514,'Latin','default',437,'la'), (334515,'Limburgish','default',437,'li'), (334516,'Luxembourgish','default',437,'lb'), (334517,'Malagasy','default',437,'mg'), (334518,'Maori','default',437,'mri'), (334519,'Marathi','default',437,'mr'), (334520,'Montenegrin','default',437,'me'), (334521,'Occitan','default',437,'oci'), (334522,'Oriya','default',437,'ory'), (334523,'Ossetic','default',437,'os'), (334524,'Pashto','default',437,'ps'), (334525,'Persian (Afghanistan)','default',437,'fa-af'), (334526,'Portuguese Informal','informal',437,'pt'), (334527,'Rohingya','default',437,'rhg'), (334528,'Romansh Vallader','default',437,'roh'), (334529,'Sakha','default',437,'sah'), (334530,'Sanskrit','default',437,'sa-in'), (334531,'Sardinian','default',437,'srd'), (334532,'Scottish Gaelic','default',437,'gd'), (334533,'Silesian','default',437,'szl'), (334534,'Slovenian','default',437,'sl'), (334535,'Somali','default',437,'so'), (334536,'South Azerbaijani','default',437,'azb'), (334537,'Spanish (Argentina)','default',437,'es-ar'), (334538,'Spanish (Colombia)','default',437,'es-co'), (334539,'Spanish (Mexico)','default',437,'es-mx'), (334540,'Swiss German','default',437,'gsw'), (334541,'Swiss German (Formal)','formal',437,'gsw'), (334542,'Tagalog','default',437,'tl'), (334543,'Tajik','default',437,'tg'), (334544,'Tamazight (Central Atlas)','default',437,'tzm'), (334545,'Tamil','default',437,'ta'), (334546,'Tatar','default',437,'tt'), (334547,'Telugu','default',437,'te'), (334548,'Tibetan','default',437,'bo'), (334549,'Turkmen','default',437,'tuk'), (334550,'Urdu','default',437,'ur'), (334551,'Afrikaans','default',39,'af'), (334552,'Algerian Arabic','default',39,'arq'), (334553,'Amharic','default',39,'am'), (334554,'Aragonese','default',39,'an'), (334555,'Armenian','default',39,'hy'), (334556,'Arpitan','default',39,'frp'), (334557,'Assamese','default',39,'as'), (334558,'Azerbaijani (Turkey)','default',39,'az-tr'), (334559,'Balochi Southern','default',39,'bcc'), (334560,'Belarusian','default',39,'bel'), (334561,'Breton','default',39,'br'), (334562,'Catalan (Balear)','default',39,'bal'), (334563,'Corsican','default',39,'co'), (334564,'Divehi','default',39,'dv'), (334565,'Dzongkha','default',39,'dzo'), (334566,'English (Australia)','default',39,'en-au'), (334567,'English (Canada)','default',39,'en-ca'), (334568,'English (South Africa)','default',39,'en-za'), (334569,'French (Belgium)','default',39,'fr-be'), (334570,'French (Canada)','default',39,'fr-ca'), (334571,'German (Formal)','formal',39,'de'), (334572,'German (Switzerland)','default',39,'de-ch'), (334573,'German (Switzerland) Informal','informal',39,'de-ch'), (334574,'Gujarati','default',39,'gu'), (334575,'Hawaiian','default',39,'haw'), (334576,'Hazaragi','default',39,'haz'), (334577,'Icelandic','default',39,'is'), (334578,'Ido','default',39,'ido'), (334579,'Irish','default',39,'ga'), (334580,'Kabyle','default',39,'kab'), (334581,'Kazakh','default',39,'kk'), (334582,'Khmer','default',39,'km'), (334583,'Kinyarwanda','default',39,'kin'), (334584,'Kurdish (Kurmanji)','default',39,'ku'), (334585,'Lao','default',39,'lo'), (334586,'Latin','default',39,'la'), (334587,'Limburgish','default',39,'li'), (334588,'Luxembourgish','default',39,'lb'), (334589,'Malagasy','default',39,'mg'), (334590,'Maori','default',39,'mri'), (334591,'Marathi','default',39,'mr'), (334592,'Montenegrin','default',39,'me'), (334593,'Occitan','default',39,'oci'), (334594,'Oriya','default',39,'ory'), (334595,'Ossetic','default',39,'os'), (334596,'Pashto','default',39,'ps'), (334597,'Persian (Afghanistan)','default',39,'fa-af'), (334598,'Portuguese Informal','informal',39,'pt'), (334599,'Rohingya','default',39,'rhg'), (334600,'Romansh Vallader','default',39,'roh'), (334601,'Sakha','default',39,'sah'), (334602,'Sanskrit','default',39,'sa-in'), (334603,'Sardinian','default',39,'srd'), (334604,'Scottish Gaelic','default',39,'gd'), (334605,'Silesian','default',39,'szl'), (334606,'Slovenian','default',39,'sl'), (334607,'Somali','default',39,'so'), (334608,'South Azerbaijani','default',39,'azb'), (334609,'Spanish (Argentina)','default',39,'es-ar'), (334610,'Spanish (Colombia)','default',39,'es-co'), (334611,'Spanish (Mexico)','default',39,'es-mx'), (334612,'Swiss German','default',39,'gsw'), (334613,'Swiss German (Formal)','formal',39,'gsw'), (334614,'Tagalog','default',39,'tl'), (334615,'Tajik','default',39,'tg'), (334616,'Tamazight (Central Atlas)','default',39,'tzm'), (334617,'Tamil','default',39,'ta'), (334618,'Tatar','default',39,'tt'), (334619,'Telugu','default',39,'te'), (334620,'Tibetan','default',39,'bo'), (334621,'Turkmen','default',39,'tuk'), (334622,'Urdu','default',39,'ur'), (334623,'Afrikaans','default',431,'af'), (334624,'Algerian Arabic','default',431,'arq'), (334625,'Amharic','default',431,'am'), (334626,'Aragonese','default',431,'an'), (334627,'Armenian','default',431,'hy'), (334628,'Arpitan','default',431,'frp'), (334629,'Assamese','default',431,'as'), (334630,'Azerbaijani (Turkey)','default',431,'az-tr'), (334631,'Balochi Southern','default',431,'bcc'), (334632,'Belarusian','default',431,'bel'), (334633,'Breton','default',431,'br'), (334634,'Catalan (Balear)','default',431,'bal'), (334635,'Corsican','default',431,'co'), (334636,'Divehi','default',431,'dv'), (334637,'Dzongkha','default',431,'dzo'), (334638,'English (Australia)','default',431,'en-au'), (334639,'English (Canada)','default',431,'en-ca'), (334640,'English (South Africa)','default',431,'en-za'), (334641,'French (Belgium)','default',431,'fr-be'), (334642,'French (Canada)','default',431,'fr-ca'), (334643,'German (Formal)','formal',431,'de'), (334644,'German (Switzerland)','default',431,'de-ch'), (334645,'German (Switzerland) Informal','informal',431,'de-ch'), (334646,'Gujarati','default',431,'gu'), (334647,'Hawaiian','default',431,'haw'), (334648,'Hazaragi','default',431,'haz'), (334649,'Icelandic','default',431,'is'), (334650,'Ido','default',431,'ido'), (334651,'Irish','default',431,'ga'), (334652,'Kabyle','default',431,'kab'), (334653,'Kazakh','default',431,'kk'), (334654,'Khmer','default',431,'km'), (334655,'Kinyarwanda','default',431,'kin'), (334656,'Kurdish (Kurmanji)','default',431,'ku'), (334657,'Lao','default',431,'lo'), (334658,'Latin','default',431,'la'), (334659,'Limburgish','default',431,'li'), (334660,'Luxembourgish','default',431,'lb'), (334661,'Malagasy','default',431,'mg'), (334662,'Maori','default',431,'mri'), (334663,'Marathi','default',431,'mr'), (334664,'Montenegrin','default',431,'me'), (334665,'Occitan','default',431,'oci'), (334666,'Oriya','default',431,'ory'), (334667,'Ossetic','default',431,'os'), (334668,'Pashto','default',431,'ps'), (334669,'Persian (Afghanistan)','default',431,'fa-af'), (334670,'Portuguese Informal','informal',431,'pt'), (334671,'Rohingya','default',431,'rhg'), (334672,'Romansh Vallader','default',431,'roh'), (334673,'Sakha','default',431,'sah'), (334674,'Sanskrit','default',431,'sa-in'), (334675,'Sardinian','default',431,'srd'), (334676,'Scottish Gaelic','default',431,'gd'), (334677,'Silesian','default',431,'szl'), (334678,'Slovenian','default',431,'sl'), (334679,'Somali','default',431,'so'), (334680,'South Azerbaijani','default',431,'azb'), (334681,'Spanish (Argentina)','default',431,'es-ar'), (334682,'Spanish (Colombia)','default',431,'es-co'), (334683,'Spanish (Mexico)','default',431,'es-mx'), (334684,'Swiss German','default',431,'gsw'), (334685,'Swiss German (Formal)','formal',431,'gsw'), (334686,'Tagalog','default',431,'tl'), (334687,'Tajik','default',431,'tg'), (334688,'Tamazight (Central Atlas)','default',431,'tzm'), (334689,'Tamil','default',431,'ta'), (334690,'Tatar','default',431,'tt'), (334691,'Telugu','default',431,'te'), (334692,'Tibetan','default',431,'bo'), (334693,'Turkmen','default',431,'tuk'), (334694,'Urdu','default',431,'ur'), (334695,'Afrikaans','default',37,'af'), (334696,'Algerian Arabic','default',37,'arq'), (334697,'Amharic','default',37,'am'), (334698,'Aragonese','default',37,'an'), (334699,'Armenian','default',37,'hy'), (334700,'Arpitan','default',37,'frp'), (334701,'Assamese','default',37,'as'), (334702,'Azerbaijani (Turkey)','default',37,'az-tr'), (334703,'Balochi Southern','default',37,'bcc'), (334704,'Belarusian','default',37,'bel'), (334705,'Breton','default',37,'br'), (334706,'Catalan (Balear)','default',37,'bal'), (334707,'Corsican','default',37,'co'), (334708,'Divehi','default',37,'dv'), (334709,'Dzongkha','default',37,'dzo'), (334710,'English (Australia)','default',37,'en-au'), (334711,'English (Canada)','default',37,'en-ca'), (334712,'English (South Africa)','default',37,'en-za'), (334713,'French (Belgium)','default',37,'fr-be'), (334714,'French (Canada)','default',37,'fr-ca'), (334715,'German (Formal)','formal',37,'de'), (334716,'German (Switzerland)','default',37,'de-ch'), (334717,'German (Switzerland) Informal','informal',37,'de-ch'), (334718,'Gujarati','default',37,'gu'), (334719,'Hawaiian','default',37,'haw'), (334720,'Hazaragi','default',37,'haz'), (334721,'Icelandic','default',37,'is'), (334722,'Ido','default',37,'ido'), (334723,'Irish','default',37,'ga'), (334724,'Kabyle','default',37,'kab'), (334725,'Kazakh','default',37,'kk'), (334726,'Khmer','default',37,'km'), (334727,'Kinyarwanda','default',37,'kin'), (334728,'Kurdish (Kurmanji)','default',37,'ku'), (334729,'Lao','default',37,'lo'), (334730,'Latin','default',37,'la'), (334731,'Limburgish','default',37,'li'), (334732,'Luxembourgish','default',37,'lb'), (334733,'Malagasy','default',37,'mg'), (334734,'Maori','default',37,'mri'), (334735,'Marathi','default',37,'mr'), (334736,'Montenegrin','default',37,'me'), (334737,'Occitan','default',37,'oci'), (334738,'Oriya','default',37,'ory'), (334739,'Ossetic','default',37,'os'), (334740,'Pashto','default',37,'ps'), (334741,'Persian (Afghanistan)','default',37,'fa-af'), (334742,'Portuguese Informal','informal',37,'pt'), (334743,'Rohingya','default',37,'rhg'), (334744,'Romansh Vallader','default',37,'roh'), (334745,'Sakha','default',37,'sah'), (334746,'Sanskrit','default',37,'sa-in'), (334747,'Sardinian','default',37,'srd'), (334748,'Scottish Gaelic','default',37,'gd'), (334749,'Silesian','default',37,'szl'), (334750,'Slovenian','default',37,'sl'), (334751,'Somali','default',37,'so'), (334752,'South Azerbaijani','default',37,'azb'), (334753,'Spanish (Argentina)','default',37,'es-ar'), (334754,'Spanish (Colombia)','default',37,'es-co'), (334755,'Spanish (Mexico)','default',37,'es-mx'), (334756,'Swiss German','default',37,'gsw'), (334757,'Swiss German (Formal)','formal',37,'gsw'), (334758,'Tagalog','default',37,'tl'), (334759,'Tajik','default',37,'tg'), (334760,'Tamazight (Central Atlas)','default',37,'tzm'), (334761,'Tamil','default',37,'ta'), (334762,'Tatar','default',37,'tt'), (334763,'Telugu','default',37,'te'), (334764,'Tibetan','default',37,'bo'), (334765,'Turkmen','default',37,'tuk'), (334766,'Urdu','default',37,'ur'), (334767,'Afrikaans','default',449,'af'), (334768,'Algerian Arabic','default',449,'arq'), (334769,'Amharic','default',449,'am'), (334770,'Aragonese','default',449,'an'), (334771,'Armenian','default',449,'hy'), (334772,'Arpitan','default',449,'frp'), (334773,'Assamese','default',449,'as'), (334774,'Azerbaijani (Turkey)','default',449,'az-tr'), (334775,'Balochi Southern','default',449,'bcc'), (334776,'Belarusian','default',449,'bel'), (334777,'Breton','default',449,'br'), (334778,'Catalan (Balear)','default',449,'bal'), (334779,'Corsican','default',449,'co'), (334780,'Divehi','default',449,'dv'), (334781,'Dzongkha','default',449,'dzo'), (334782,'English (Australia)','default',449,'en-au'), (334783,'English (Canada)','default',449,'en-ca'), (334784,'English (South Africa)','default',449,'en-za'), (334785,'French (Belgium)','default',449,'fr-be'), (334786,'French (Canada)','default',449,'fr-ca'), (334787,'German (Formal)','formal',449,'de'), (334788,'German (Switzerland)','default',449,'de-ch'), (334789,'German (Switzerland) Informal','informal',449,'de-ch'), (334790,'Gujarati','default',449,'gu'), (334791,'Hawaiian','default',449,'haw'), (334792,'Hazaragi','default',449,'haz'), (334793,'Icelandic','default',449,'is'), (334794,'Ido','default',449,'ido'), (334795,'Irish','default',449,'ga'), (334796,'Kabyle','default',449,'kab'), (334797,'Kazakh','default',449,'kk'), (334798,'Khmer','default',449,'km'), (334799,'Kinyarwanda','default',449,'kin'), (334800,'Kurdish (Kurmanji)','default',449,'ku'), (334801,'Lao','default',449,'lo'), (334802,'Latin','default',449,'la'), (334803,'Limburgish','default',449,'li'), (334804,'Luxembourgish','default',449,'lb'), (334805,'Malagasy','default',449,'mg'), (334806,'Maori','default',449,'mri'), (334807,'Marathi','default',449,'mr'), (334808,'Montenegrin','default',449,'me'), (334809,'Occitan','default',449,'oci'), (334810,'Oriya','default',449,'ory'), (334811,'Ossetic','default',449,'os'), (334812,'Pashto','default',449,'ps'), (334813,'Persian (Afghanistan)','default',449,'fa-af'), (334814,'Portuguese Informal','informal',449,'pt'), (334815,'Rohingya','default',449,'rhg'), (334816,'Romansh Vallader','default',449,'roh'), (334817,'Sakha','default',449,'sah'), (334818,'Sanskrit','default',449,'sa-in'), (334819,'Sardinian','default',449,'srd'), (334820,'Scottish Gaelic','default',449,'gd'), (334821,'Silesian','default',449,'szl'), (334822,'Slovenian','default',449,'sl'), (334823,'Somali','default',449,'so'), (334824,'South Azerbaijani','default',449,'azb'), (334825,'Spanish (Argentina)','default',449,'es-ar'), (334826,'Spanish (Colombia)','default',449,'es-co'), (334827,'Spanish (Mexico)','default',449,'es-mx'), (334828,'Swiss German','default',449,'gsw'), (334829,'Swiss German (Formal)','formal',449,'gsw'), (334830,'Tagalog','default',449,'tl'), (334831,'Tajik','default',449,'tg'), (334832,'Tamazight (Central Atlas)','default',449,'tzm'), (334833,'Tamil','default',449,'ta'), (334834,'Tatar','default',449,'tt'), (334835,'Telugu','default',449,'te'), (334836,'Tibetan','default',449,'bo'), (334837,'Turkmen','default',449,'tuk'), (334838,'Urdu','default',449,'ur'), (334839,'Afrikaans','default',35,'af'), (334840,'Algerian Arabic','default',35,'arq'), (334841,'Amharic','default',35,'am'), (334842,'Aragonese','default',35,'an'), (334843,'Armenian','default',35,'hy'), (334844,'Arpitan','default',35,'frp'), (334845,'Assamese','default',35,'as'), (334846,'Azerbaijani (Turkey)','default',35,'az-tr'), (334847,'Balochi Southern','default',35,'bcc'), (334848,'Belarusian','default',35,'bel'), (334849,'Breton','default',35,'br'), (334850,'Catalan (Balear)','default',35,'bal'), (334851,'Corsican','default',35,'co'), (334852,'Divehi','default',35,'dv'), (334853,'Dzongkha','default',35,'dzo'), (334854,'English (Australia)','default',35,'en-au'), (334855,'English (Canada)','default',35,'en-ca'), (334856,'English (South Africa)','default',35,'en-za'), (334857,'French (Belgium)','default',35,'fr-be'), (334858,'French (Canada)','default',35,'fr-ca'), (334859,'German (Formal)','formal',35,'de'), (334860,'German (Switzerland)','default',35,'de-ch'), (334861,'German (Switzerland) Informal','informal',35,'de-ch'), (334862,'Gujarati','default',35,'gu'), (334863,'Hawaiian','default',35,'haw'), (334864,'Hazaragi','default',35,'haz'), (334865,'Icelandic','default',35,'is'), (334866,'Ido','default',35,'ido'), (334867,'Irish','default',35,'ga'), (334868,'Kabyle','default',35,'kab'), (334869,'Kazakh','default',35,'kk'), (334870,'Khmer','default',35,'km'), (334871,'Kinyarwanda','default',35,'kin'), (334872,'Kurdish (Kurmanji)','default',35,'ku'), (334873,'Lao','default',35,'lo'), (334874,'Latin','default',35,'la'), (334875,'Limburgish','default',35,'li'), (334876,'Luxembourgish','default',35,'lb'), (334877,'Malagasy','default',35,'mg'), (334878,'Maori','default',35,'mri'), (334879,'Marathi','default',35,'mr'), (334880,'Montenegrin','default',35,'me'), (334881,'Occitan','default',35,'oci'), (334882,'Oriya','default',35,'ory'), (334883,'Ossetic','default',35,'os'), (334884,'Persian (Afghanistan)','default',35,'fa-af'), (334885,'Portuguese Informal','informal',35,'pt'), (334886,'Rohingya','default',35,'rhg'), (334887,'Romansh Vallader','default',35,'roh'), (334888,'Sakha','default',35,'sah'), (334889,'Sanskrit','default',35,'sa-in'), (334890,'Sardinian','default',35,'srd'), (334891,'Scottish Gaelic','default',35,'gd'), (334892,'Silesian','default',35,'szl'), (334893,'Slovenian','default',35,'sl'), (334894,'Somali','default',35,'so'), (334895,'South Azerbaijani','default',35,'azb'), (334896,'Spanish (Argentina)','default',35,'es-ar'), (334897,'Spanish (Colombia)','default',35,'es-co'), (334898,'Spanish (Mexico)','default',35,'es-mx'), (334899,'Swiss German','default',35,'gsw'), (334900,'Swiss German (Formal)','formal',35,'gsw'), (334901,'Tagalog','default',35,'tl'), (334902,'Tajik','default',35,'tg'), (334903,'Tamazight (Central Atlas)','default',35,'tzm'), (334904,'Tamil','default',35,'ta'), (334905,'Tatar','default',35,'tt'), (334906,'Telugu','default',35,'te'), (334907,'Tibetan','default',35,'bo'), (334908,'Turkmen','default',35,'tuk'), (334909,'Urdu','default',35,'ur'), (334910,'Afrikaans','default',424,'af'), (334911,'Algerian Arabic','default',424,'arq'), (334912,'Amharic','default',424,'am'), (334913,'Aragonese','default',424,'an'), (334914,'Armenian','default',424,'hy'), (334915,'Arpitan','default',424,'frp'), (334916,'Assamese','default',424,'as'), (334917,'Azerbaijani (Turkey)','default',424,'az-tr'), (334918,'Balochi Southern','default',424,'bcc'), (334919,'Belarusian','default',424,'bel'), (334920,'Breton','default',424,'br'), (334921,'Catalan (Balear)','default',424,'bal'), (334922,'Corsican','default',424,'co'), (334923,'Divehi','default',424,'dv'), (334924,'Dzongkha','default',424,'dzo'), (334925,'English (Australia)','default',424,'en-au'), (334926,'English (Canada)','default',424,'en-ca'), (334927,'English (South Africa)','default',424,'en-za'), (334928,'French (Belgium)','default',424,'fr-be'), (334929,'French (Canada)','default',424,'fr-ca'), (334930,'German (Formal)','formal',424,'de'), (334931,'German (Switzerland)','default',424,'de-ch'), (334932,'German (Switzerland) Informal','informal',424,'de-ch'), (334933,'Gujarati','default',424,'gu'), (334934,'Hawaiian','default',424,'haw'), (334935,'Hazaragi','default',424,'haz'), (334936,'Icelandic','default',424,'is'), (334937,'Ido','default',424,'ido'), (334938,'Irish','default',424,'ga'), (334939,'Kabyle','default',424,'kab'), (334940,'Kazakh','default',424,'kk'), (334941,'Khmer','default',424,'km'), (334942,'Kinyarwanda','default',424,'kin'), (334943,'Kurdish (Kurmanji)','default',424,'ku'), (334944,'Lao','default',424,'lo'), (334945,'Latin','default',424,'la'), (334946,'Limburgish','default',424,'li'), (334947,'Luxembourgish','default',424,'lb'), (334948,'Malagasy','default',424,'mg'), (334949,'Maori','default',424,'mri'), (334950,'Marathi','default',424,'mr'), (334951,'Montenegrin','default',424,'me'), (334952,'Occitan','default',424,'oci'), (334953,'Oriya','default',424,'ory'), (334954,'Ossetic','default',424,'os'), (334955,'Persian (Afghanistan)','default',424,'fa-af'), (334956,'Portuguese Informal','informal',424,'pt'), (334957,'Rohingya','default',424,'rhg'), (334958,'Romansh Vallader','default',424,'roh'), (334959,'Sakha','default',424,'sah'), (334960,'Sanskrit','default',424,'sa-in'), (334961,'Sardinian','default',424,'srd'), (334962,'Scottish Gaelic','default',424,'gd'), (334963,'Silesian','default',424,'szl'), (334964,'Slovenian','default',424,'sl'), (334965,'Somali','default',424,'so'), (334966,'South Azerbaijani','default',424,'azb'), (334967,'Spanish (Argentina)','default',424,'es-ar'), (334968,'Spanish (Colombia)','default',424,'es-co'), (334969,'Spanish (Mexico)','default',424,'es-mx'), (334970,'Swiss German','default',424,'gsw'), (334971,'Swiss German (Formal)','formal',424,'gsw'), (334972,'Tagalog','default',424,'tl'), (334973,'Tajik','default',424,'tg'), (334974,'Tamazight (Central Atlas)','default',424,'tzm'), (334975,'Tamil','default',424,'ta'), (334976,'Tatar','default',424,'tt'), (334977,'Telugu','default',424,'te'), (334978,'Tibetan','default',424,'bo'), (334979,'Turkmen','default',424,'tuk'), (334980,'Urdu','default',424,'ur'), (334981,'Afrikaans','default',423,'af'), (334982,'Algerian Arabic','default',423,'arq'), (334983,'Amharic','default',423,'am'), (334984,'Aragonese','default',423,'an'), (334985,'Armenian','default',423,'hy'), (334986,'Arpitan','default',423,'frp'), (334987,'Assamese','default',423,'as'), (334988,'Azerbaijani (Turkey)','default',423,'az-tr'), (334989,'Balochi Southern','default',423,'bcc'), (334990,'Belarusian','default',423,'bel'), (334991,'Breton','default',423,'br'), (334992,'Catalan (Balear)','default',423,'bal'), (334993,'Corsican','default',423,'co'), (334994,'Divehi','default',423,'dv'), (334995,'Dzongkha','default',423,'dzo'), (334996,'English (Australia)','default',423,'en-au'), (334997,'English (Canada)','default',423,'en-ca'), (334998,'English (South Africa)','default',423,'en-za'), (334999,'French (Belgium)','default',423,'fr-be'), (335000,'French (Canada)','default',423,'fr-ca'), (335001,'German (Formal)','formal',423,'de'), (335002,'German (Switzerland)','default',423,'de-ch'), (335003,'German (Switzerland) Informal','informal',423,'de-ch'), (335004,'Gujarati','default',423,'gu'), (335005,'Hawaiian','default',423,'haw'), (335006,'Hazaragi','default',423,'haz'), (335007,'Icelandic','default',423,'is'), (335008,'Ido','default',423,'ido'), (335009,'Irish','default',423,'ga'), (335010,'Kabyle','default',423,'kab'), (335011,'Kazakh','default',423,'kk'), (335012,'Khmer','default',423,'km'), (335013,'Kinyarwanda','default',423,'kin'), (335014,'Kurdish (Kurmanji)','default',423,'ku'), (335015,'Lao','default',423,'lo'), (335016,'Latin','default',423,'la'), (335017,'Limburgish','default',423,'li'), (335018,'Luxembourgish','default',423,'lb'), (335019,'Malagasy','default',423,'mg'), (335020,'Maori','default',423,'mri'), (335021,'Marathi','default',423,'mr'), (335022,'Montenegrin','default',423,'me'), (335023,'Occitan','default',423,'oci'), (335024,'Oriya','default',423,'ory'), (335025,'Ossetic','default',423,'os'), (335026,'Persian (Afghanistan)','default',423,'fa-af'), (335027,'Portuguese Informal','informal',423,'pt'), (335028,'Rohingya','default',423,'rhg'), (335029,'Romansh Vallader','default',423,'roh'), (335030,'Sakha','default',423,'sah'), (335031,'Sanskrit','default',423,'sa-in'), (335032,'Sardinian','default',423,'srd'), (335033,'Scottish Gaelic','default',423,'gd'), (335034,'Silesian','default',423,'szl'), (335035,'Slovenian','default',423,'sl'), (335036,'Somali','default',423,'so'), (335037,'South Azerbaijani','default',423,'azb'), (335038,'Spanish (Argentina)','default',423,'es-ar'), (335039,'Spanish (Colombia)','default',423,'es-co'), (335040,'Spanish (Mexico)','default',423,'es-mx'), (335041,'Swiss German','default',423,'gsw'), (335042,'Swiss German (Formal)','formal',423,'gsw'), (335043,'Tagalog','default',423,'tl'), (335044,'Tajik','default',423,'tg'), (335045,'Tamazight (Central Atlas)','default',423,'tzm'), (335046,'Tamil','default',423,'ta'), (335047,'Tatar','default',423,'tt'), (335048,'Telugu','default',423,'te'), (335049,'Tibetan','default',423,'bo'), (335050,'Turkmen','default',423,'tuk'), (335051,'Urdu','default',423,'ur'), (335052,'Afrikaans','default',425,'af'), (335053,'Algerian Arabic','default',425,'arq'), (335054,'Amharic','default',425,'am'), (335055,'Aragonese','default',425,'an'), (335056,'Armenian','default',425,'hy'), (335057,'Arpitan','default',425,'frp'), (335058,'Assamese','default',425,'as'), (335059,'Azerbaijani (Turkey)','default',425,'az-tr'), (335060,'Balochi Southern','default',425,'bcc'), (335061,'Belarusian','default',425,'bel'), (335062,'Breton','default',425,'br'), (335063,'Catalan (Balear)','default',425,'bal'), (335064,'Corsican','default',425,'co'), (335065,'Divehi','default',425,'dv'), (335066,'Dzongkha','default',425,'dzo'), (335067,'English (Australia)','default',425,'en-au'), (335068,'English (Canada)','default',425,'en-ca'), (335069,'English (South Africa)','default',425,'en-za'), (335070,'French (Belgium)','default',425,'fr-be'), (335071,'French (Canada)','default',425,'fr-ca'), (335072,'German (Formal)','formal',425,'de'), (335073,'German (Switzerland)','default',425,'de-ch'), (335074,'German (Switzerland) Informal','informal',425,'de-ch'), (335075,'Gujarati','default',425,'gu'), (335076,'Hawaiian','default',425,'haw'), (335077,'Hazaragi','default',425,'haz'), (335078,'Icelandic','default',425,'is'), (335079,'Ido','default',425,'ido'), (335080,'Irish','default',425,'ga'), (335081,'Kabyle','default',425,'kab'), (335082,'Kazakh','default',425,'kk'), (335083,'Khmer','default',425,'km'), (335084,'Kinyarwanda','default',425,'kin'), (335085,'Kurdish (Kurmanji)','default',425,'ku'), (335086,'Lao','default',425,'lo'), (335087,'Latin','default',425,'la'), (335088,'Limburgish','default',425,'li'), (335089,'Luxembourgish','default',425,'lb'), (335090,'Malagasy','default',425,'mg'), (335091,'Maori','default',425,'mri'), (335092,'Marathi','default',425,'mr'), (335093,'Montenegrin','default',425,'me'), (335094,'Occitan','default',425,'oci'), (335095,'Oriya','default',425,'ory'), (335096,'Ossetic','default',425,'os'), (335097,'Persian (Afghanistan)','default',425,'fa-af'), (335098,'Portuguese Informal','informal',425,'pt'), (335099,'Rohingya','default',425,'rhg'), (335100,'Romansh Vallader','default',425,'roh'), (335101,'Sakha','default',425,'sah'), (335102,'Sanskrit','default',425,'sa-in'), (335103,'Sardinian','default',425,'srd'), (335104,'Scottish Gaelic','default',425,'gd'), (335105,'Silesian','default',425,'szl'), (335106,'Slovenian','default',425,'sl'), (335107,'Somali','default',425,'so'), (335108,'South Azerbaijani','default',425,'azb'), (335109,'Spanish (Argentina)','default',425,'es-ar'), (335110,'Spanish (Colombia)','default',425,'es-co'), (335111,'Spanish (Mexico)','default',425,'es-mx'), (335112,'Swiss German','default',425,'gsw'), (335113,'Swiss German (Formal)','formal',425,'gsw'), (335114,'Tagalog','default',425,'tl'), (335115,'Tajik','default',425,'tg'), (335116,'Tamazight (Central Atlas)','default',425,'tzm'), (335117,'Tamil','default',425,'ta'), (335118,'Tatar','default',425,'tt'), (335119,'Telugu','default',425,'te'), (335120,'Tibetan','default',425,'bo'), (335121,'Turkmen','default',425,'tuk'), (335122,'Urdu','default',425,'ur'), (335123,'Afrikaans','default',33,'af'), (335124,'Algerian Arabic','default',33,'arq'), (335125,'Amharic','default',33,'am'), (335126,'Aragonese','default',33,'an'), (335127,'Armenian','default',33,'hy'), (335128,'Arpitan','default',33,'frp'), (335129,'Assamese','default',33,'as'), (335130,'Azerbaijani (Turkey)','default',33,'az-tr'), (335131,'Balochi Southern','default',33,'bcc'), (335132,'Belarusian','default',33,'bel'), (335133,'Breton','default',33,'br'), (335134,'Catalan (Balear)','default',33,'bal'), (335135,'Corsican','default',33,'co'), (335136,'Divehi','default',33,'dv'), (335137,'Dzongkha','default',33,'dzo'), (335138,'English (Australia)','default',33,'en-au'), (335139,'English (Canada)','default',33,'en-ca'), (335140,'English (South Africa)','default',33,'en-za'), (335141,'French (Belgium)','default',33,'fr-be'), (335142,'French (Canada)','default',33,'fr-ca'), (335143,'German (Formal)','formal',33,'de'), (335144,'German (Switzerland)','default',33,'de-ch'), (335145,'German (Switzerland) Informal','informal',33,'de-ch'), (335146,'Gujarati','default',33,'gu'), (335147,'Hawaiian','default',33,'haw'), (335148,'Hazaragi','default',33,'haz'), (335149,'Icelandic','default',33,'is'), (335150,'Ido','default',33,'ido'), (335151,'Irish','default',33,'ga'), (335152,'Kabyle','default',33,'kab'), (335153,'Kazakh','default',33,'kk'), (335154,'Khmer','default',33,'km'), (335155,'Kinyarwanda','default',33,'kin'), (335156,'Kurdish (Kurmanji)','default',33,'ku'), (335157,'Lao','default',33,'lo'), (335158,'Latin','default',33,'la'), (335159,'Limburgish','default',33,'li'), (335160,'Luxembourgish','default',33,'lb'), (335161,'Malagasy','default',33,'mg'), (335162,'Maori','default',33,'mri'), (335163,'Marathi','default',33,'mr'), (335164,'Montenegrin','default',33,'me'), (335165,'Occitan','default',33,'oci'), (335166,'Oriya','default',33,'ory'), (335167,'Ossetic','default',33,'os'), (335168,'Pashto','default',33,'ps'), (335169,'Persian (Afghanistan)','default',33,'fa-af'), (335170,'Portuguese Informal','informal',33,'pt'), (335171,'Rohingya','default',33,'rhg'), (335172,'Romansh Vallader','default',33,'roh'), (335173,'Sakha','default',33,'sah'), (335174,'Sanskrit','default',33,'sa-in'), (335175,'Sardinian','default',33,'srd'), (335176,'Scottish Gaelic','default',33,'gd'), (335177,'Silesian','default',33,'szl'), (335178,'Slovenian','default',33,'sl'), (335179,'Somali','default',33,'so'), (335180,'South Azerbaijani','default',33,'azb'), (335181,'Spanish (Argentina)','default',33,'es-ar'), (335182,'Spanish (Colombia)','default',33,'es-co'), (335183,'Spanish (Mexico)','default',33,'es-mx'), (335184,'Swiss German','default',33,'gsw'), (335185,'Swiss German (Formal)','formal',33,'gsw'), (335186,'Tagalog','default',33,'tl'), (335187,'Tajik','default',33,'tg'), (335188,'Tamazight (Central Atlas)','default',33,'tzm'), (335189,'Tamil','default',33,'ta'), (335190,'Tatar','default',33,'tt'), (335191,'Telugu','default',33,'te'), (335192,'Tibetan','default',33,'bo'), (335193,'Turkmen','default',33,'tuk'), (335194,'Urdu','default',33,'ur'), (335195,'Afrikaans','default',447,'af'), (335196,'Algerian Arabic','default',447,'arq'), (335197,'Amharic','default',447,'am'), (335198,'Aragonese','default',447,'an'), (335199,'Armenian','default',447,'hy'), (335200,'Arpitan','default',447,'frp'), (335201,'Assamese','default',447,'as'), (335202,'Azerbaijani (Turkey)','default',447,'az-tr'), (335203,'Balochi Southern','default',447,'bcc'), (335204,'Belarusian','default',447,'bel'), (335205,'Breton','default',447,'br'), (335206,'Catalan (Balear)','default',447,'bal'), (335207,'Corsican','default',447,'co'), (335208,'Divehi','default',447,'dv'), (335209,'Dzongkha','default',447,'dzo'), (335210,'English (Australia)','default',447,'en-au'), (335211,'English (Canada)','default',447,'en-ca'), (335212,'English (South Africa)','default',447,'en-za'), (335213,'French (Belgium)','default',447,'fr-be'), (335214,'French (Canada)','default',447,'fr-ca'), (335215,'German (Formal)','formal',447,'de'), (335216,'German (Switzerland)','default',447,'de-ch'), (335217,'German (Switzerland) Informal','informal',447,'de-ch'), (335218,'Gujarati','default',447,'gu'), (335219,'Hawaiian','default',447,'haw'), (335220,'Hazaragi','default',447,'haz'), (335221,'Icelandic','default',447,'is'), (335222,'Ido','default',447,'ido'), (335223,'Irish','default',447,'ga'), (335224,'Kabyle','default',447,'kab'), (335225,'Kazakh','default',447,'kk'), (335226,'Khmer','default',447,'km'), (335227,'Kinyarwanda','default',447,'kin'), (335228,'Kurdish (Kurmanji)','default',447,'ku'), (335229,'Lao','default',447,'lo'), (335230,'Latin','default',447,'la'), (335231,'Limburgish','default',447,'li'), (335232,'Luxembourgish','default',447,'lb'), (335233,'Malagasy','default',447,'mg'), (335234,'Maori','default',447,'mri'), (335235,'Marathi','default',447,'mr'), (335236,'Montenegrin','default',447,'me'), (335237,'Occitan','default',447,'oci'), (335238,'Oriya','default',447,'ory'), (335239,'Ossetic','default',447,'os'), (335240,'Pashto','default',447,'ps'), (335241,'Persian (Afghanistan)','default',447,'fa-af'), (335242,'Portuguese Informal','informal',447,'pt'), (335243,'Rohingya','default',447,'rhg'), (335244,'Romansh Vallader','default',447,'roh'), (335245,'Sakha','default',447,'sah'), (335246,'Sanskrit','default',447,'sa-in'), (335247,'Sardinian','default',447,'srd'), (335248,'Scottish Gaelic','default',447,'gd'), (335249,'Silesian','default',447,'szl'), (335250,'Slovenian','default',447,'sl'), (335251,'Somali','default',447,'so'), (335252,'South Azerbaijani','default',447,'azb'), (335253,'Spanish (Argentina)','default',447,'es-ar'), (335254,'Spanish (Colombia)','default',447,'es-co'), (335255,'Spanish (Mexico)','default',447,'es-mx'), (335256,'Swiss German','default',447,'gsw'), (335257,'Swiss German (Formal)','formal',447,'gsw'), (335258,'Tagalog','default',447,'tl'), (335259,'Tajik','default',447,'tg'), (335260,'Tamazight (Central Atlas)','default',447,'tzm'), (335261,'Tamil','default',447,'ta'), (335262,'Tatar','default',447,'tt'), (335263,'Telugu','default',447,'te'), (335264,'Tibetan','default',447,'bo'), (335265,'Turkmen','default',447,'tuk'), (335266,'Urdu','default',447,'ur'), (335267,'Afrikaans','default',446,'af'), (335268,'Algerian Arabic','default',446,'arq'), (335269,'Amharic','default',446,'am'), (335270,'Aragonese','default',446,'an'), (335271,'Armenian','default',446,'hy'), (335272,'Arpitan','default',446,'frp'), (335273,'Assamese','default',446,'as'), (335274,'Azerbaijani (Turkey)','default',446,'az-tr'), (335275,'Balochi Southern','default',446,'bcc'), (335276,'Belarusian','default',446,'bel'), (335277,'Breton','default',446,'br'), (335278,'Catalan (Balear)','default',446,'bal'), (335279,'Corsican','default',446,'co'), (335280,'Divehi','default',446,'dv'), (335281,'Dzongkha','default',446,'dzo'), (335282,'English (Australia)','default',446,'en-au'), (335283,'English (Canada)','default',446,'en-ca'), (335284,'English (South Africa)','default',446,'en-za'), (335285,'French (Belgium)','default',446,'fr-be'), (335286,'French (Canada)','default',446,'fr-ca'), (335287,'German (Formal)','formal',446,'de'), (335288,'German (Switzerland)','default',446,'de-ch'), (335289,'German (Switzerland) Informal','informal',446,'de-ch'), (335290,'Gujarati','default',446,'gu'), (335291,'Hawaiian','default',446,'haw'), (335292,'Hazaragi','default',446,'haz'), (335293,'Icelandic','default',446,'is'), (335294,'Ido','default',446,'ido'), (335295,'Irish','default',446,'ga'), (335296,'Kabyle','default',446,'kab'), (335297,'Kazakh','default',446,'kk'), (335298,'Khmer','default',446,'km'), (335299,'Kinyarwanda','default',446,'kin'), (335300,'Kurdish (Kurmanji)','default',446,'ku'), (335301,'Lao','default',446,'lo'), (335302,'Latin','default',446,'la'), (335303,'Limburgish','default',446,'li'), (335304,'Luxembourgish','default',446,'lb'), (335305,'Malagasy','default',446,'mg'), (335306,'Maori','default',446,'mri'), (335307,'Marathi','default',446,'mr'), (335308,'Montenegrin','default',446,'me'), (335309,'Occitan','default',446,'oci'), (335310,'Oriya','default',446,'ory'), (335311,'Ossetic','default',446,'os'), (335312,'Pashto','default',446,'ps'), (335313,'Persian (Afghanistan)','default',446,'fa-af'), (335314,'Portuguese Informal','informal',446,'pt'), (335315,'Rohingya','default',446,'rhg'), (335316,'Romansh Vallader','default',446,'roh'), (335317,'Sakha','default',446,'sah'), (335318,'Sanskrit','default',446,'sa-in'), (335319,'Sardinian','default',446,'srd'), (335320,'Scottish Gaelic','default',446,'gd'), (335321,'Silesian','default',446,'szl'), (335322,'Slovenian','default',446,'sl'), (335323,'Somali','default',446,'so'), (335324,'South Azerbaijani','default',446,'azb'), (335325,'Spanish (Argentina)','default',446,'es-ar'), (335326,'Spanish (Colombia)','default',446,'es-co'), (335327,'Spanish (Mexico)','default',446,'es-mx'), (335328,'Swiss German','default',446,'gsw'), (335329,'Swiss German (Formal)','formal',446,'gsw'), (335330,'Tagalog','default',446,'tl'), (335331,'Tajik','default',446,'tg'), (335332,'Tamazight (Central Atlas)','default',446,'tzm'), (335333,'Tamil','default',446,'ta'), (335334,'Tatar','default',446,'tt'), (335335,'Telugu','default',446,'te'), (335336,'Tibetan','default',446,'bo'), (335337,'Turkmen','default',446,'tuk'), (335338,'Urdu','default',446,'ur'), (335339,'Afrikaans','default',448,'af'), (335340,'Algerian Arabic','default',448,'arq'), (335341,'Amharic','default',448,'am'), (335342,'Aragonese','default',448,'an'), (335343,'Armenian','default',448,'hy'), (335344,'Arpitan','default',448,'frp'), (335345,'Assamese','default',448,'as'), (335346,'Azerbaijani (Turkey)','default',448,'az-tr'), (335347,'Balochi Southern','default',448,'bcc'), (335348,'Belarusian','default',448,'bel'), (335349,'Breton','default',448,'br'), (335350,'Catalan (Balear)','default',448,'bal'), (335351,'Corsican','default',448,'co'), (335352,'Divehi','default',448,'dv'), (335353,'Dzongkha','default',448,'dzo'), (335354,'English (Australia)','default',448,'en-au'), (335355,'English (Canada)','default',448,'en-ca'), (335356,'English (South Africa)','default',448,'en-za'), (335357,'French (Belgium)','default',448,'fr-be'), (335358,'French (Canada)','default',448,'fr-ca'), (335359,'German (Formal)','formal',448,'de'), (335360,'German (Switzerland)','default',448,'de-ch'), (335361,'German (Switzerland) Informal','informal',448,'de-ch'), (335362,'Gujarati','default',448,'gu'), (335363,'Hawaiian','default',448,'haw'), (335364,'Hazaragi','default',448,'haz'), (335365,'Icelandic','default',448,'is'), (335366,'Ido','default',448,'ido'), (335367,'Irish','default',448,'ga'), (335368,'Kabyle','default',448,'kab'), (335369,'Kazakh','default',448,'kk'), (335370,'Khmer','default',448,'km'), (335371,'Kinyarwanda','default',448,'kin'), (335372,'Kurdish (Kurmanji)','default',448,'ku'), (335373,'Lao','default',448,'lo'), (335374,'Latin','default',448,'la'), (335375,'Limburgish','default',448,'li'), (335376,'Luxembourgish','default',448,'lb'), (335377,'Malagasy','default',448,'mg'), (335378,'Maori','default',448,'mri'), (335379,'Marathi','default',448,'mr'), (335380,'Montenegrin','default',448,'me'), (335381,'Occitan','default',448,'oci'), (335382,'Oriya','default',448,'ory'), (335383,'Ossetic','default',448,'os'), (335384,'Pashto','default',448,'ps'), (335385,'Persian (Afghanistan)','default',448,'fa-af'), (335386,'Portuguese Informal','informal',448,'pt'), (335387,'Rohingya','default',448,'rhg'), (335388,'Romansh Vallader','default',448,'roh'), (335389,'Sakha','default',448,'sah'), (335390,'Sanskrit','default',448,'sa-in'), (335391,'Sardinian','default',448,'srd'), (335392,'Scottish Gaelic','default',448,'gd'), (335393,'Silesian','default',448,'szl'), (335394,'Slovenian','default',448,'sl'), (335395,'Somali','default',448,'so'), (335396,'South Azerbaijani','default',448,'azb'), (335397,'Spanish (Argentina)','default',448,'es-ar'), (335398,'Spanish (Colombia)','default',448,'es-co'), (335399,'Spanish (Mexico)','default',448,'es-mx'), (335400,'Swiss German','default',448,'gsw'), (335401,'Swiss German (Formal)','formal',448,'gsw'), (335402,'Tagalog','default',448,'tl'), (335403,'Tajik','default',448,'tg'), (335404,'Tamazight (Central Atlas)','default',448,'tzm'), (335405,'Tamil','default',448,'ta'), (335406,'Tatar','default',448,'tt'), (335407,'Telugu','default',448,'te'), (335408,'Tibetan','default',448,'bo'), (335409,'Turkmen','default',448,'tuk'), (335410,'Urdu','default',448,'ur'), (335411,'Afrikaans','default',31,'af'), (335412,'Algerian Arabic','default',31,'arq'), (335413,'Amharic','default',31,'am'), (335414,'Aragonese','default',31,'an'), (335415,'Armenian','default',31,'hy'), (335416,'Arpitan','default',31,'frp'), (335417,'Assamese','default',31,'as'), (335418,'Azerbaijani (Turkey)','default',31,'az-tr'), (335419,'Balochi Southern','default',31,'bcc'), (335420,'Belarusian','default',31,'bel'), (335421,'Breton','default',31,'br'), (335422,'Catalan (Balear)','default',31,'bal'), (335423,'Corsican','default',31,'co'), (335424,'Divehi','default',31,'dv'), (335425,'Dzongkha','default',31,'dzo'), (335426,'English (Australia)','default',31,'en-au'), (335427,'English (Canada)','default',31,'en-ca'), (335428,'English (South Africa)','default',31,'en-za'), (335429,'French (Belgium)','default',31,'fr-be'), (335430,'French (Canada)','default',31,'fr-ca'), (335431,'German (Formal)','formal',31,'de'), (335432,'German (Switzerland)','default',31,'de-ch'), (335433,'German (Switzerland) Informal','informal',31,'de-ch'), (335434,'Gujarati','default',31,'gu'), (335435,'Hawaiian','default',31,'haw'), (335436,'Hazaragi','default',31,'haz'), (335437,'Icelandic','default',31,'is'), (335438,'Ido','default',31,'ido'), (335439,'Irish','default',31,'ga'), (335440,'Kabyle','default',31,'kab'), (335441,'Kazakh','default',31,'kk'), (335442,'Khmer','default',31,'km'), (335443,'Kinyarwanda','default',31,'kin'), (335444,'Kurdish (Kurmanji)','default',31,'ku'), (335445,'Lao','default',31,'lo'), (335446,'Latin','default',31,'la'), (335447,'Limburgish','default',31,'li'), (335448,'Luxembourgish','default',31,'lb'), (335449,'Malagasy','default',31,'mg'), (335450,'Maori','default',31,'mri'), (335451,'Marathi','default',31,'mr'), (335452,'Montenegrin','default',31,'me'), (335453,'Occitan','default',31,'oci'), (335454,'Oriya','default',31,'ory'), (335455,'Ossetic','default',31,'os'), (335456,'Pashto','default',31,'ps'), (335457,'Persian (Afghanistan)','default',31,'fa-af'), (335458,'Portuguese Informal','informal',31,'pt'), (335459,'Rohingya','default',31,'rhg'), (335460,'Romansh Vallader','default',31,'roh'), (335461,'Sakha','default',31,'sah'), (335462,'Sanskrit','default',31,'sa-in'), (335463,'Sardinian','default',31,'srd'), (335464,'Scottish Gaelic','default',31,'gd'), (335465,'Silesian','default',31,'szl'), (335466,'Slovenian','default',31,'sl'), (335467,'Somali','default',31,'so'), (335468,'South Azerbaijani','default',31,'azb'), (335469,'Spanish (Argentina)','default',31,'es-ar'), (335470,'Spanish (Colombia)','default',31,'es-co'), (335471,'Spanish (Mexico)','default',31,'es-mx'), (335472,'Swiss German','default',31,'gsw'), (335473,'Swiss German (Formal)','formal',31,'gsw'), (335474,'Tagalog','default',31,'tl'), (335475,'Tajik','default',31,'tg'), (335476,'Tamazight (Central Atlas)','default',31,'tzm'), (335477,'Tamil','default',31,'ta'), (335478,'Tatar','default',31,'tt'), (335479,'Telugu','default',31,'te'), (335480,'Tibetan','default',31,'bo'), (335481,'Turkmen','default',31,'tuk'), (335482,'Urdu','default',31,'ur'), (335483,'Afrikaans','default',445,'af'), (335484,'Algerian Arabic','default',445,'arq'), (335485,'Amharic','default',445,'am'), (335486,'Aragonese','default',445,'an'), (335487,'Armenian','default',445,'hy'), (335488,'Arpitan','default',445,'frp'), (335489,'Assamese','default',445,'as'), (335490,'Azerbaijani (Turkey)','default',445,'az-tr'), (335491,'Balochi Southern','default',445,'bcc'), (335492,'Belarusian','default',445,'bel'), (335493,'Breton','default',445,'br'), (335494,'Catalan (Balear)','default',445,'bal'), (335495,'Corsican','default',445,'co'), (335496,'Divehi','default',445,'dv'), (335497,'Dzongkha','default',445,'dzo'), (335498,'English (Australia)','default',445,'en-au'), (335499,'English (Canada)','default',445,'en-ca'), (335500,'English (South Africa)','default',445,'en-za'), (335501,'French (Belgium)','default',445,'fr-be'), (335502,'French (Canada)','default',445,'fr-ca'), (335503,'German (Formal)','formal',445,'de'), (335504,'German (Switzerland)','default',445,'de-ch'), (335505,'German (Switzerland) Informal','informal',445,'de-ch'), (335506,'Gujarati','default',445,'gu'), (335507,'Hawaiian','default',445,'haw'), (335508,'Hazaragi','default',445,'haz'), (335509,'Icelandic','default',445,'is'), (335510,'Ido','default',445,'ido'), (335511,'Irish','default',445,'ga'), (335512,'Kabyle','default',445,'kab'), (335513,'Kazakh','default',445,'kk'), (335514,'Khmer','default',445,'km'), (335515,'Kinyarwanda','default',445,'kin'), (335516,'Kurdish (Kurmanji)','default',445,'ku'), (335517,'Lao','default',445,'lo'), (335518,'Latin','default',445,'la'), (335519,'Limburgish','default',445,'li'), (335520,'Luxembourgish','default',445,'lb'), (335521,'Malagasy','default',445,'mg'), (335522,'Maori','default',445,'mri'), (335523,'Marathi','default',445,'mr'), (335524,'Montenegrin','default',445,'me'), (335525,'Occitan','default',445,'oci'), (335526,'Oriya','default',445,'ory'), (335527,'Ossetic','default',445,'os'), (335528,'Pashto','default',445,'ps'), (335529,'Persian (Afghanistan)','default',445,'fa-af'), (335530,'Portuguese Informal','informal',445,'pt'), (335531,'Rohingya','default',445,'rhg'), (335532,'Romansh Vallader','default',445,'roh'), (335533,'Sakha','default',445,'sah'), (335534,'Sanskrit','default',445,'sa-in'), (335535,'Sardinian','default',445,'srd'), (335536,'Scottish Gaelic','default',445,'gd'), (335537,'Silesian','default',445,'szl'), (335538,'Slovenian','default',445,'sl'), (335539,'Somali','default',445,'so'), (335540,'South Azerbaijani','default',445,'azb'), (335541,'Spanish (Argentina)','default',445,'es-ar'), (335542,'Spanish (Colombia)','default',445,'es-co'), (335543,'Spanish (Mexico)','default',445,'es-mx'), (335544,'Swiss German','default',445,'gsw'), (335545,'Swiss German (Formal)','formal',445,'gsw'), (335546,'Tagalog','default',445,'tl'), (335547,'Tajik','default',445,'tg'), (335548,'Tamazight (Central Atlas)','default',445,'tzm'), (335549,'Tamil','default',445,'ta'), (335550,'Tatar','default',445,'tt'), (335551,'Telugu','default',445,'te'), (335552,'Tibetan','default',445,'bo'), (335553,'Turkmen','default',445,'tuk'), (335554,'Urdu','default',445,'ur'), (335555,'Afrikaans','default',29,'af'), (335556,'Algerian Arabic','default',29,'arq'), (335557,'Amharic','default',29,'am'), (335558,'Aragonese','default',29,'an'), (335559,'Armenian','default',29,'hy'), (335560,'Arpitan','default',29,'frp'), (335561,'Assamese','default',29,'as'), (335562,'Azerbaijani (Turkey)','default',29,'az-tr'), (335563,'Balochi Southern','default',29,'bcc'), (335564,'Belarusian','default',29,'bel'), (335565,'Breton','default',29,'br'), (335566,'Catalan (Balear)','default',29,'bal'), (335567,'Corsican','default',29,'co'), (335568,'Divehi','default',29,'dv'), (335569,'Dzongkha','default',29,'dzo'), (335570,'English (Australia)','default',29,'en-au'), (335571,'English (Canada)','default',29,'en-ca'), (335572,'English (South Africa)','default',29,'en-za'), (335573,'French (Belgium)','default',29,'fr-be'), (335574,'French (Canada)','default',29,'fr-ca'), (335575,'German (Formal)','formal',29,'de'), (335576,'German (Switzerland)','default',29,'de-ch'), (335577,'German (Switzerland) Informal','informal',29,'de-ch'), (335578,'Gujarati','default',29,'gu'), (335579,'Hawaiian','default',29,'haw'), (335580,'Hazaragi','default',29,'haz'), (335581,'Icelandic','default',29,'is'), (335582,'Ido','default',29,'ido'), (335583,'Irish','default',29,'ga'), (335584,'Kabyle','default',29,'kab'), (335585,'Kazakh','default',29,'kk'), (335586,'Khmer','default',29,'km'), (335587,'Kinyarwanda','default',29,'kin'), (335588,'Kurdish (Kurmanji)','default',29,'ku'), (335589,'Lao','default',29,'lo'), (335590,'Latin','default',29,'la'), (335591,'Limburgish','default',29,'li'), (335592,'Luxembourgish','default',29,'lb'), (335593,'Malagasy','default',29,'mg'), (335594,'Maori','default',29,'mri'), (335595,'Marathi','default',29,'mr'), (335596,'Montenegrin','default',29,'me'), (335597,'Occitan','default',29,'oci'), (335598,'Oriya','default',29,'ory'), (335599,'Ossetic','default',29,'os'), (335600,'Pashto','default',29,'ps'), (335601,'Persian (Afghanistan)','default',29,'fa-af'), (335602,'Portuguese Informal','informal',29,'pt'), (335603,'Rohingya','default',29,'rhg'), (335604,'Romansh Vallader','default',29,'roh'), (335605,'Sakha','default',29,'sah'), (335606,'Sanskrit','default',29,'sa-in'), (335607,'Sardinian','default',29,'srd'), (335608,'Scottish Gaelic','default',29,'gd'), (335609,'Silesian','default',29,'szl'), (335610,'Slovenian','default',29,'sl'), (335611,'Somali','default',29,'so'), (335612,'South Azerbaijani','default',29,'azb'), (335613,'Spanish (Argentina)','default',29,'es-ar'), (335614,'Spanish (Colombia)','default',29,'es-co'), (335615,'Spanish (Mexico)','default',29,'es-mx'), (335616,'Swiss German','default',29,'gsw'), (335617,'Swiss German (Formal)','formal',29,'gsw'), (335618,'Tagalog','default',29,'tl'), (335619,'Tajik','default',29,'tg'), (335620,'Tamazight (Central Atlas)','default',29,'tzm'), (335621,'Tamil','default',29,'ta'), (335622,'Tatar','default',29,'tt'), (335623,'Telugu','default',29,'te'), (335624,'Tibetan','default',29,'bo'), (335625,'Turkmen','default',29,'tuk'), (335626,'Urdu','default',29,'ur'), (335627,'Afrikaans','default',444,'af'), (335628,'Algerian Arabic','default',444,'arq'), (335629,'Amharic','default',444,'am'), (335630,'Aragonese','default',444,'an'), (335631,'Armenian','default',444,'hy'), (335632,'Arpitan','default',444,'frp'), (335633,'Assamese','default',444,'as'), (335634,'Azerbaijani (Turkey)','default',444,'az-tr'), (335635,'Balochi Southern','default',444,'bcc'), (335636,'Belarusian','default',444,'bel'), (335637,'Breton','default',444,'br'), (335638,'Catalan (Balear)','default',444,'bal'), (335639,'Corsican','default',444,'co'), (335640,'Divehi','default',444,'dv'), (335641,'Dzongkha','default',444,'dzo'), (335642,'English (Australia)','default',444,'en-au'), (335643,'English (Canada)','default',444,'en-ca'), (335644,'English (South Africa)','default',444,'en-za'), (335645,'French (Belgium)','default',444,'fr-be'), (335646,'French (Canada)','default',444,'fr-ca'), (335647,'German (Formal)','formal',444,'de'), (335648,'German (Switzerland)','default',444,'de-ch'), (335649,'German (Switzerland) Informal','informal',444,'de-ch'), (335650,'Gujarati','default',444,'gu'), (335651,'Hawaiian','default',444,'haw'), (335652,'Hazaragi','default',444,'haz'), (335653,'Icelandic','default',444,'is'), (335654,'Ido','default',444,'ido'), (335655,'Irish','default',444,'ga'), (335656,'Kabyle','default',444,'kab'), (335657,'Kazakh','default',444,'kk'), (335658,'Khmer','default',444,'km'), (335659,'Kinyarwanda','default',444,'kin'), (335660,'Kurdish (Kurmanji)','default',444,'ku'), (335661,'Lao','default',444,'lo'), (335662,'Latin','default',444,'la'), (335663,'Limburgish','default',444,'li'), (335664,'Luxembourgish','default',444,'lb'), (335665,'Malagasy','default',444,'mg'), (335666,'Maori','default',444,'mri'), (335667,'Marathi','default',444,'mr'), (335668,'Montenegrin','default',444,'me'), (335669,'Occitan','default',444,'oci'), (335670,'Oriya','default',444,'ory'), (335671,'Ossetic','default',444,'os'), (335672,'Pashto','default',444,'ps'), (335673,'Persian (Afghanistan)','default',444,'fa-af'), (335674,'Portuguese Informal','informal',444,'pt'), (335675,'Rohingya','default',444,'rhg'), (335676,'Romansh Vallader','default',444,'roh'), (335677,'Sakha','default',444,'sah'), (335678,'Sanskrit','default',444,'sa-in'), (335679,'Sardinian','default',444,'srd'), (335680,'Scottish Gaelic','default',444,'gd'), (335681,'Silesian','default',444,'szl'), (335682,'Slovenian','default',444,'sl'), (335683,'Somali','default',444,'so'), (335684,'South Azerbaijani','default',444,'azb'), (335685,'Spanish (Argentina)','default',444,'es-ar'), (335686,'Spanish (Colombia)','default',444,'es-co'), (335687,'Spanish (Mexico)','default',444,'es-mx'), (335688,'Swiss German','default',444,'gsw'), (335689,'Swiss German (Formal)','formal',444,'gsw'), (335690,'Tagalog','default',444,'tl'), (335691,'Tajik','default',444,'tg'), (335692,'Tamazight (Central Atlas)','default',444,'tzm'), (335693,'Tamil','default',444,'ta'), (335694,'Tatar','default',444,'tt'), (335695,'Telugu','default',444,'te'), (335696,'Tibetan','default',444,'bo'), (335697,'Turkmen','default',444,'tuk'), (335698,'Urdu','default',444,'ur'), (335699,'Afrikaans','default',27,'af'), (335700,'Algerian Arabic','default',27,'arq'), (335701,'Amharic','default',27,'am'), (335702,'Aragonese','default',27,'an'), (335703,'Armenian','default',27,'hy'), (335704,'Arpitan','default',27,'frp'), (335705,'Assamese','default',27,'as'), (335706,'Azerbaijani (Turkey)','default',27,'az-tr'), (335707,'Balochi Southern','default',27,'bcc'), (335708,'Belarusian','default',27,'bel'), (335709,'Breton','default',27,'br'), (335710,'Catalan (Balear)','default',27,'bal'), (335711,'Corsican','default',27,'co'), (335712,'Divehi','default',27,'dv'), (335713,'Dzongkha','default',27,'dzo'), (335714,'English (Australia)','default',27,'en-au'), (335715,'English (Canada)','default',27,'en-ca'), (335716,'English (South Africa)','default',27,'en-za'), (335717,'French (Belgium)','default',27,'fr-be'), (335718,'French (Canada)','default',27,'fr-ca'), (335719,'German (Formal)','formal',27,'de'), (335720,'German (Switzerland)','default',27,'de-ch'), (335721,'German (Switzerland) Informal','informal',27,'de-ch'), (335722,'Gujarati','default',27,'gu'), (335723,'Hawaiian','default',27,'haw'), (335724,'Hazaragi','default',27,'haz'), (335725,'Icelandic','default',27,'is'), (335726,'Ido','default',27,'ido'), (335727,'Irish','default',27,'ga'), (335728,'Kabyle','default',27,'kab'), (335729,'Kazakh','default',27,'kk'), (335730,'Khmer','default',27,'km'), (335731,'Kinyarwanda','default',27,'kin'), (335732,'Kurdish (Kurmanji)','default',27,'ku'), (335733,'Lao','default',27,'lo'), (335734,'Latin','default',27,'la'), (335735,'Limburgish','default',27,'li'), (335736,'Luxembourgish','default',27,'lb'), (335737,'Malagasy','default',27,'mg'), (335738,'Maori','default',27,'mri'), (335739,'Marathi','default',27,'mr'), (335740,'Montenegrin','default',27,'me'), (335741,'Occitan','default',27,'oci'), (335742,'Oriya','default',27,'ory'), (335743,'Ossetic','default',27,'os'), (335744,'Pashto','default',27,'ps'), (335745,'Persian (Afghanistan)','default',27,'fa-af'), (335746,'Portuguese Informal','informal',27,'pt'), (335747,'Rohingya','default',27,'rhg'), (335748,'Romansh Vallader','default',27,'roh'), (335749,'Sakha','default',27,'sah'), (335750,'Sanskrit','default',27,'sa-in'), (335751,'Sardinian','default',27,'srd'), (335752,'Scottish Gaelic','default',27,'gd'), (335753,'Silesian','default',27,'szl'), (335754,'Slovenian','default',27,'sl'), (335755,'Somali','default',27,'so'), (335756,'South Azerbaijani','default',27,'azb'), (335757,'Spanish (Argentina)','default',27,'es-ar'), (335758,'Spanish (Colombia)','default',27,'es-co'), (335759,'Spanish (Mexico)','default',27,'es-mx'), (335760,'Swiss German','default',27,'gsw'), (335761,'Swiss German (Formal)','formal',27,'gsw'), (335762,'Tagalog','default',27,'tl'), (335763,'Tajik','default',27,'tg'), (335764,'Tamazight (Central Atlas)','default',27,'tzm'), (335765,'Tamil','default',27,'ta'), (335766,'Tatar','default',27,'tt'), (335767,'Telugu','default',27,'te'), (335768,'Tibetan','default',27,'bo'), (335769,'Turkmen','default',27,'tuk'), (335770,'Urdu','default',27,'ur'), (335771,'Afrikaans','default',443,'af'), (335772,'Algerian Arabic','default',443,'arq'), (335773,'Amharic','default',443,'am'), (335774,'Aragonese','default',443,'an'), (335775,'Armenian','default',443,'hy'), (335776,'Arpitan','default',443,'frp'), (335777,'Assamese','default',443,'as'), (335778,'Azerbaijani (Turkey)','default',443,'az-tr'), (335779,'Balochi Southern','default',443,'bcc'), (335780,'Belarusian','default',443,'bel'), (335781,'Breton','default',443,'br'), (335782,'Catalan (Balear)','default',443,'bal'), (335783,'Corsican','default',443,'co'), (335784,'Divehi','default',443,'dv'), (335785,'Dzongkha','default',443,'dzo'), (335786,'English (Australia)','default',443,'en-au'), (335787,'English (Canada)','default',443,'en-ca'), (335788,'English (South Africa)','default',443,'en-za'), (335789,'French (Belgium)','default',443,'fr-be'), (335790,'French (Canada)','default',443,'fr-ca'), (335791,'German (Formal)','formal',443,'de'), (335792,'German (Switzerland)','default',443,'de-ch'), (335793,'German (Switzerland) Informal','informal',443,'de-ch'), (335794,'Gujarati','default',443,'gu'), (335795,'Hawaiian','default',443,'haw'), (335796,'Hazaragi','default',443,'haz'), (335797,'Icelandic','default',443,'is'), (335798,'Ido','default',443,'ido'), (335799,'Irish','default',443,'ga'), (335800,'Kabyle','default',443,'kab'), (335801,'Kazakh','default',443,'kk'), (335802,'Khmer','default',443,'km'), (335803,'Kinyarwanda','default',443,'kin'), (335804,'Kurdish (Kurmanji)','default',443,'ku'), (335805,'Lao','default',443,'lo'), (335806,'Latin','default',443,'la'), (335807,'Limburgish','default',443,'li'), (335808,'Luxembourgish','default',443,'lb'), (335809,'Malagasy','default',443,'mg'), (335810,'Maori','default',443,'mri'), (335811,'Marathi','default',443,'mr'), (335812,'Montenegrin','default',443,'me'), (335813,'Occitan','default',443,'oci'), (335814,'Oriya','default',443,'ory'), (335815,'Ossetic','default',443,'os'), (335816,'Pashto','default',443,'ps'), (335817,'Persian (Afghanistan)','default',443,'fa-af'), (335818,'Portuguese Informal','informal',443,'pt'), (335819,'Rohingya','default',443,'rhg'), (335820,'Romansh Vallader','default',443,'roh'), (335821,'Sakha','default',443,'sah'), (335822,'Sanskrit','default',443,'sa-in'), (335823,'Sardinian','default',443,'srd'), (335824,'Scottish Gaelic','default',443,'gd'), (335825,'Silesian','default',443,'szl'), (335826,'Slovenian','default',443,'sl'), (335827,'Somali','default',443,'so'), (335828,'South Azerbaijani','default',443,'azb'), (335829,'Spanish (Argentina)','default',443,'es-ar'), (335830,'Spanish (Colombia)','default',443,'es-co'), (335831,'Spanish (Mexico)','default',443,'es-mx'), (335832,'Swiss German','default',443,'gsw'), (335833,'Swiss German (Formal)','formal',443,'gsw'), (335834,'Tagalog','default',443,'tl'), (335835,'Tajik','default',443,'tg'), (335836,'Tamazight (Central Atlas)','default',443,'tzm'), (335837,'Tamil','default',443,'ta'), (335838,'Tatar','default',443,'tt'), (335839,'Telugu','default',443,'te'), (335840,'Tibetan','default',443,'bo'), (335841,'Turkmen','default',443,'tuk'), (335842,'Urdu','default',443,'ur'), (335843,'Afrikaans','default',25,'af'), (335844,'Algerian Arabic','default',25,'arq'), (335845,'Amharic','default',25,'am'), (335846,'Aragonese','default',25,'an'), (335847,'Armenian','default',25,'hy'), (335848,'Arpitan','default',25,'frp'), (335849,'Assamese','default',25,'as'), (335850,'Azerbaijani (Turkey)','default',25,'az-tr'), (335851,'Balochi Southern','default',25,'bcc'), (335852,'Belarusian','default',25,'bel'), (335853,'Breton','default',25,'br'), (335854,'Catalan (Balear)','default',25,'bal'), (335855,'Corsican','default',25,'co'), (335856,'Divehi','default',25,'dv'), (335857,'Dzongkha','default',25,'dzo'), (335858,'English (Australia)','default',25,'en-au'), (335859,'English (Canada)','default',25,'en-ca'), (335860,'English (South Africa)','default',25,'en-za'), (335861,'French (Belgium)','default',25,'fr-be'), (335862,'French (Canada)','default',25,'fr-ca'), (335863,'German (Formal)','formal',25,'de'), (335864,'German (Switzerland)','default',25,'de-ch'), (335865,'German (Switzerland) Informal','informal',25,'de-ch'), (335866,'Gujarati','default',25,'gu'), (335867,'Hawaiian','default',25,'haw'), (335868,'Hazaragi','default',25,'haz'), (335869,'Icelandic','default',25,'is'), (335870,'Ido','default',25,'ido'), (335871,'Irish','default',25,'ga'), (335872,'Kabyle','default',25,'kab'), (335873,'Kazakh','default',25,'kk'), (335874,'Khmer','default',25,'km'), (335875,'Kinyarwanda','default',25,'kin'), (335876,'Kurdish (Kurmanji)','default',25,'ku'), (335877,'Lao','default',25,'lo'), (335878,'Latin','default',25,'la'), (335879,'Limburgish','default',25,'li'), (335880,'Luxembourgish','default',25,'lb'), (335881,'Malagasy','default',25,'mg'), (335882,'Maori','default',25,'mri'), (335883,'Marathi','default',25,'mr'), (335884,'Montenegrin','default',25,'me'), (335885,'Occitan','default',25,'oci'), (335886,'Oriya','default',25,'ory'), (335887,'Ossetic','default',25,'os'), (335888,'Pashto','default',25,'ps'), (335889,'Persian (Afghanistan)','default',25,'fa-af'), (335890,'Portuguese Informal','informal',25,'pt'), (335891,'Rohingya','default',25,'rhg'), (335892,'Romansh Vallader','default',25,'roh'), (335893,'Sakha','default',25,'sah'), (335894,'Sanskrit','default',25,'sa-in'), (335895,'Sardinian','default',25,'srd'), (335896,'Scottish Gaelic','default',25,'gd'), (335897,'Silesian','default',25,'szl'), (335898,'Slovenian','default',25,'sl'), (335899,'Somali','default',25,'so'), (335900,'South Azerbaijani','default',25,'azb'), (335901,'Spanish (Argentina)','default',25,'es-ar'), (335902,'Spanish (Colombia)','default',25,'es-co'), (335903,'Spanish (Mexico)','default',25,'es-mx'), (335904,'Swiss German','default',25,'gsw'), (335905,'Swiss German (Formal)','formal',25,'gsw'), (335906,'Tagalog','default',25,'tl'), (335907,'Tajik','default',25,'tg'), (335908,'Tamazight (Central Atlas)','default',25,'tzm'), (335909,'Tamil','default',25,'ta'), (335910,'Tatar','default',25,'tt'), (335911,'Telugu','default',25,'te'), (335912,'Tibetan','default',25,'bo'), (335913,'Turkmen','default',25,'tuk'), (335914,'Urdu','default',25,'ur'), (335915,'Afrikaans','default',442,'af'), (335916,'Algerian Arabic','default',442,'arq'), (335917,'Amharic','default',442,'am'), (335918,'Aragonese','default',442,'an'), (335919,'Armenian','default',442,'hy'), (335920,'Arpitan','default',442,'frp'), (335921,'Assamese','default',442,'as'), (335922,'Azerbaijani (Turkey)','default',442,'az-tr'), (335923,'Balochi Southern','default',442,'bcc'), (335924,'Belarusian','default',442,'bel'), (335925,'Breton','default',442,'br'), (335926,'Catalan (Balear)','default',442,'bal'), (335927,'Corsican','default',442,'co'), (335928,'Divehi','default',442,'dv'), (335929,'Dzongkha','default',442,'dzo'), (335930,'English (Australia)','default',442,'en-au'), (335931,'English (Canada)','default',442,'en-ca'), (335932,'English (South Africa)','default',442,'en-za'), (335933,'French (Belgium)','default',442,'fr-be'), (335934,'French (Canada)','default',442,'fr-ca'), (335935,'German (Formal)','formal',442,'de'), (335936,'German (Switzerland)','default',442,'de-ch'), (335937,'German (Switzerland) Informal','informal',442,'de-ch'), (335938,'Gujarati','default',442,'gu'), (335939,'Hawaiian','default',442,'haw'), (335940,'Hazaragi','default',442,'haz'), (335941,'Icelandic','default',442,'is'), (335942,'Ido','default',442,'ido'), (335943,'Irish','default',442,'ga'), (335944,'Kabyle','default',442,'kab'), (335945,'Kazakh','default',442,'kk'), (335946,'Khmer','default',442,'km'), (335947,'Kinyarwanda','default',442,'kin'), (335948,'Kurdish (Kurmanji)','default',442,'ku'), (335949,'Lao','default',442,'lo'), (335950,'Latin','default',442,'la'), (335951,'Limburgish','default',442,'li'), (335952,'Luxembourgish','default',442,'lb'), (335953,'Malagasy','default',442,'mg'), (335954,'Maori','default',442,'mri'), (335955,'Marathi','default',442,'mr'), (335956,'Montenegrin','default',442,'me'), (335957,'Occitan','default',442,'oci'), (335958,'Oriya','default',442,'ory'), (335959,'Ossetic','default',442,'os'), (335960,'Pashto','default',442,'ps'), (335961,'Persian (Afghanistan)','default',442,'fa-af'), (335962,'Portuguese Informal','informal',442,'pt'), (335963,'Rohingya','default',442,'rhg'), (335964,'Romansh Vallader','default',442,'roh'), (335965,'Sakha','default',442,'sah'), (335966,'Sanskrit','default',442,'sa-in'), (335967,'Sardinian','default',442,'srd'), (335968,'Scottish Gaelic','default',442,'gd'), (335969,'Silesian','default',442,'szl'), (335970,'Slovenian','default',442,'sl'), (335971,'Somali','default',442,'so'), (335972,'South Azerbaijani','default',442,'azb'), (335973,'Spanish (Argentina)','default',442,'es-ar'), (335974,'Spanish (Colombia)','default',442,'es-co'), (335975,'Spanish (Mexico)','default',442,'es-mx'), (335976,'Swiss German','default',442,'gsw'), (335977,'Swiss German (Formal)','formal',442,'gsw'), (335978,'Tagalog','default',442,'tl'), (335979,'Tajik','default',442,'tg'), (335980,'Tamazight (Central Atlas)','default',442,'tzm'), (335981,'Tamil','default',442,'ta'), (335982,'Tatar','default',442,'tt'), (335983,'Telugu','default',442,'te'), (335984,'Tibetan','default',442,'bo'), (335985,'Turkmen','default',442,'tuk'), (335986,'Urdu','default',442,'ur'), (335987,'Afrikaans','default',457,'af'), (335988,'Algerian Arabic','default',457,'arq'), (335989,'Amharic','default',457,'am'), (335990,'Aragonese','default',457,'an'), (335991,'Armenian','default',457,'hy'), (335992,'Arpitan','default',457,'frp'), (335993,'Assamese','default',457,'as'), (335994,'Azerbaijani (Turkey)','default',457,'az-tr'), (335995,'Balochi Southern','default',457,'bcc'), (335996,'Belarusian','default',457,'bel'), (335997,'Breton','default',457,'br'), (335998,'Catalan (Balear)','default',457,'bal'), (335999,'Corsican','default',457,'co'), (336000,'Divehi','default',457,'dv'), (336001,'Dzongkha','default',457,'dzo'), (336002,'English (Australia)','default',457,'en-au'), (336003,'English (Canada)','default',457,'en-ca'), (336004,'English (South Africa)','default',457,'en-za'), (336005,'French (Belgium)','default',457,'fr-be'), (336006,'French (Canada)','default',457,'fr-ca'), (336007,'German (Formal)','formal',457,'de'), (336008,'German (Switzerland)','default',457,'de-ch'), (336009,'German (Switzerland) Informal','informal',457,'de-ch'), (336010,'Gujarati','default',457,'gu'), (336011,'Hawaiian','default',457,'haw'), (336012,'Hazaragi','default',457,'haz'), (336013,'Icelandic','default',457,'is'), (336014,'Ido','default',457,'ido'), (336015,'Irish','default',457,'ga'), (336016,'Kabyle','default',457,'kab'), (336017,'Kazakh','default',457,'kk'), (336018,'Khmer','default',457,'km'), (336019,'Kinyarwanda','default',457,'kin'), (336020,'Kurdish (Kurmanji)','default',457,'ku'), (336021,'Lao','default',457,'lo'), (336022,'Latin','default',457,'la'), (336023,'Limburgish','default',457,'li'), (336024,'Luxembourgish','default',457,'lb'), (336025,'Malagasy','default',457,'mg'), (336026,'Maori','default',457,'mri'), (336027,'Marathi','default',457,'mr'), (336028,'Montenegrin','default',457,'me'), (336029,'Occitan','default',457,'oci'), (336030,'Oriya','default',457,'ory'), (336031,'Ossetic','default',457,'os'), (336032,'Pashto','default',457,'ps'), (336033,'Persian (Afghanistan)','default',457,'fa-af'), (336034,'Portuguese Informal','informal',457,'pt'), (336035,'Rohingya','default',457,'rhg'), (336036,'Romansh Vallader','default',457,'roh'), (336037,'Sakha','default',457,'sah'), (336038,'Sanskrit','default',457,'sa-in'), (336039,'Sardinian','default',457,'srd'), (336040,'Scottish Gaelic','default',457,'gd'), (336041,'Silesian','default',457,'szl'), (336042,'Slovenian','default',457,'sl'), (336043,'Somali','default',457,'so'), (336044,'South Azerbaijani','default',457,'azb'), (336045,'Spanish (Argentina)','default',457,'es-ar'), (336046,'Spanish (Colombia)','default',457,'es-co'), (336047,'Spanish (Mexico)','default',457,'es-mx'), (336048,'Swiss German','default',457,'gsw'), (336049,'Swiss German (Formal)','formal',457,'gsw'), (336050,'Tagalog','default',457,'tl'), (336051,'Tajik','default',457,'tg'), (336052,'Tamazight (Central Atlas)','default',457,'tzm'), (336053,'Tamil','default',457,'ta'), (336054,'Tatar','default',457,'tt'), (336055,'Telugu','default',457,'te'), (336056,'Tibetan','default',457,'bo'), (336057,'Turkmen','default',457,'tuk'), (336058,'Urdu','default',457,'ur'), (336059,'Afrikaans','default',459,'af'), (336060,'Algerian Arabic','default',459,'arq'), (336061,'Amharic','default',459,'am'), (336062,'Aragonese','default',459,'an'), (336063,'Armenian','default',459,'hy'), (336064,'Arpitan','default',459,'frp'), (336065,'Assamese','default',459,'as'), (336066,'Azerbaijani (Turkey)','default',459,'az-tr'), (336067,'Balochi Southern','default',459,'bcc'), (336068,'Belarusian','default',459,'bel'), (336069,'Breton','default',459,'br'), (336070,'Catalan (Balear)','default',459,'bal'), (336071,'Corsican','default',459,'co'), (336072,'Divehi','default',459,'dv'), (336073,'Dzongkha','default',459,'dzo'), (336074,'English (Australia)','default',459,'en-au'), (336075,'English (Canada)','default',459,'en-ca'), (336076,'English (South Africa)','default',459,'en-za'), (336077,'French (Belgium)','default',459,'fr-be'), (336078,'French (Canada)','default',459,'fr-ca'), (336079,'German (Formal)','formal',459,'de'), (336080,'German (Switzerland)','default',459,'de-ch'), (336081,'German (Switzerland) Informal','informal',459,'de-ch'), (336082,'Gujarati','default',459,'gu'), (336083,'Hawaiian','default',459,'haw'), (336084,'Hazaragi','default',459,'haz'), (336085,'Icelandic','default',459,'is'), (336086,'Ido','default',459,'ido'), (336087,'Irish','default',459,'ga'), (336088,'Kabyle','default',459,'kab'), (336089,'Kazakh','default',459,'kk'), (336090,'Khmer','default',459,'km'), (336091,'Kinyarwanda','default',459,'kin'), (336092,'Kurdish (Kurmanji)','default',459,'ku'), (336093,'Lao','default',459,'lo'), (336094,'Latin','default',459,'la'), (336095,'Limburgish','default',459,'li'), (336096,'Luxembourgish','default',459,'lb'), (336097,'Malagasy','default',459,'mg'), (336098,'Maori','default',459,'mri'), (336099,'Marathi','default',459,'mr'), (336100,'Montenegrin','default',459,'me'), (336101,'Occitan','default',459,'oci'), (336102,'Oriya','default',459,'ory'), (336103,'Ossetic','default',459,'os'), (336104,'Pashto','default',459,'ps'), (336105,'Persian (Afghanistan)','default',459,'fa-af'), (336106,'Portuguese Informal','informal',459,'pt'), (336107,'Rohingya','default',459,'rhg'), (336108,'Romansh Vallader','default',459,'roh'), (336109,'Sakha','default',459,'sah'), (336110,'Sanskrit','default',459,'sa-in'), (336111,'Sardinian','default',459,'srd'), (336112,'Scottish Gaelic','default',459,'gd'), (336113,'Silesian','default',459,'szl'), (336114,'Slovenian','default',459,'sl'), (336115,'Somali','default',459,'so'), (336116,'South Azerbaijani','default',459,'azb'), (336117,'Spanish (Argentina)','default',459,'es-ar'), (336118,'Spanish (Colombia)','default',459,'es-co'), (336119,'Spanish (Mexico)','default',459,'es-mx'), (336120,'Swiss German','default',459,'gsw'), (336121,'Swiss German (Formal)','formal',459,'gsw'), (336122,'Tagalog','default',459,'tl'), (336123,'Tajik','default',459,'tg'), (336124,'Tamazight (Central Atlas)','default',459,'tzm'), (336125,'Tamil','default',459,'ta'), (336126,'Tatar','default',459,'tt'), (336127,'Telugu','default',459,'te'), (336128,'Tibetan','default',459,'bo'), (336129,'Turkmen','default',459,'tuk'), (336130,'Urdu','default',459,'ur'), (336131,'Afrikaans','default',458,'af'), (336132,'Algerian Arabic','default',458,'arq'), (336133,'Amharic','default',458,'am'), (336134,'Aragonese','default',458,'an'), (336135,'Armenian','default',458,'hy'), (336136,'Arpitan','default',458,'frp'), (336137,'Assamese','default',458,'as'), (336138,'Azerbaijani (Turkey)','default',458,'az-tr'), (336139,'Balochi Southern','default',458,'bcc'), (336140,'Belarusian','default',458,'bel'), (336141,'Breton','default',458,'br'), (336142,'Catalan (Balear)','default',458,'bal'), (336143,'Corsican','default',458,'co'), (336144,'Divehi','default',458,'dv'), (336145,'Dzongkha','default',458,'dzo'), (336146,'English (Australia)','default',458,'en-au'), (336147,'English (Canada)','default',458,'en-ca'), (336148,'English (South Africa)','default',458,'en-za'), (336149,'French (Belgium)','default',458,'fr-be'), (336150,'French (Canada)','default',458,'fr-ca'), (336151,'German (Formal)','formal',458,'de'), (336152,'German (Switzerland)','default',458,'de-ch'), (336153,'German (Switzerland) Informal','informal',458,'de-ch'), (336154,'Gujarati','default',458,'gu'), (336155,'Hawaiian','default',458,'haw'), (336156,'Hazaragi','default',458,'haz'), (336157,'Icelandic','default',458,'is'), (336158,'Ido','default',458,'ido'), (336159,'Irish','default',458,'ga'), (336160,'Kabyle','default',458,'kab'), (336161,'Kazakh','default',458,'kk'), (336162,'Khmer','default',458,'km'), (336163,'Kinyarwanda','default',458,'kin'), (336164,'Kurdish (Kurmanji)','default',458,'ku'), (336165,'Lao','default',458,'lo'), (336166,'Latin','default',458,'la'), (336167,'Limburgish','default',458,'li'), (336168,'Luxembourgish','default',458,'lb'), (336169,'Malagasy','default',458,'mg'), (336170,'Maori','default',458,'mri'), (336171,'Marathi','default',458,'mr'), (336172,'Montenegrin','default',458,'me'), (336173,'Occitan','default',458,'oci'), (336174,'Oriya','default',458,'ory'), (336175,'Ossetic','default',458,'os'), (336176,'Pashto','default',458,'ps'), (336177,'Persian (Afghanistan)','default',458,'fa-af'), (336178,'Portuguese Informal','informal',458,'pt'), (336179,'Rohingya','default',458,'rhg'), (336180,'Romansh Vallader','default',458,'roh'), (336181,'Sakha','default',458,'sah'), (336182,'Sanskrit','default',458,'sa-in'), (336183,'Sardinian','default',458,'srd'), (336184,'Scottish Gaelic','default',458,'gd'), (336185,'Silesian','default',458,'szl'), (336186,'Slovenian','default',458,'sl'), (336187,'Somali','default',458,'so'), (336188,'South Azerbaijani','default',458,'azb'), (336189,'Spanish (Argentina)','default',458,'es-ar'), (336190,'Spanish (Colombia)','default',458,'es-co'), (336191,'Spanish (Mexico)','default',458,'es-mx'), (336192,'Swiss German','default',458,'gsw'), (336193,'Swiss German (Formal)','formal',458,'gsw'), (336194,'Tagalog','default',458,'tl'), (336195,'Tajik','default',458,'tg'), (336196,'Tamazight (Central Atlas)','default',458,'tzm'), (336197,'Tamil','default',458,'ta'), (336198,'Tatar','default',458,'tt'), (336199,'Telugu','default',458,'te'), (336200,'Tibetan','default',458,'bo'), (336201,'Turkmen','default',458,'tuk'), (336202,'Urdu','default',458,'ur'), (336203,'Afrikaans','default',460,'af'), (336204,'Algerian Arabic','default',460,'arq'), (336205,'Amharic','default',460,'am'), (336206,'Aragonese','default',460,'an'), (336207,'Armenian','default',460,'hy'), (336208,'Arpitan','default',460,'frp'), (336209,'Assamese','default',460,'as'), (336210,'Azerbaijani (Turkey)','default',460,'az-tr'), (336211,'Balochi Southern','default',460,'bcc'), (336212,'Belarusian','default',460,'bel'), (336213,'Breton','default',460,'br'), (336214,'Catalan (Balear)','default',460,'bal'), (336215,'Corsican','default',460,'co'), (336216,'Divehi','default',460,'dv'), (336217,'Dzongkha','default',460,'dzo'), (336218,'English (Australia)','default',460,'en-au'), (336219,'English (Canada)','default',460,'en-ca'), (336220,'English (South Africa)','default',460,'en-za'), (336221,'French (Belgium)','default',460,'fr-be'), (336222,'French (Canada)','default',460,'fr-ca'), (336223,'German (Formal)','formal',460,'de'), (336224,'German (Switzerland)','default',460,'de-ch'), (336225,'German (Switzerland) Informal','informal',460,'de-ch'), (336226,'Gujarati','default',460,'gu'), (336227,'Hawaiian','default',460,'haw'), (336228,'Hazaragi','default',460,'haz'), (336229,'Icelandic','default',460,'is'), (336230,'Ido','default',460,'ido'), (336231,'Irish','default',460,'ga'), (336232,'Kabyle','default',460,'kab'), (336233,'Kazakh','default',460,'kk'), (336234,'Khmer','default',460,'km'), (336235,'Kinyarwanda','default',460,'kin'), (336236,'Kurdish (Kurmanji)','default',460,'ku'), (336237,'Lao','default',460,'lo'), (336238,'Latin','default',460,'la'), (336239,'Limburgish','default',460,'li'), (336240,'Luxembourgish','default',460,'lb'), (336241,'Malagasy','default',460,'mg'), (336242,'Maori','default',460,'mri'), (336243,'Marathi','default',460,'mr'), (336244,'Montenegrin','default',460,'me'), (336245,'Occitan','default',460,'oci'), (336246,'Oriya','default',460,'ory'), (336247,'Ossetic','default',460,'os'), (336248,'Pashto','default',460,'ps'), (336249,'Persian (Afghanistan)','default',460,'fa-af'), (336250,'Portuguese Informal','informal',460,'pt'), (336251,'Rohingya','default',460,'rhg'), (336252,'Romansh Vallader','default',460,'roh'), (336253,'Sakha','default',460,'sah'), (336254,'Sanskrit','default',460,'sa-in'), (336255,'Sardinian','default',460,'srd'), (336256,'Scottish Gaelic','default',460,'gd'), (336257,'Silesian','default',460,'szl'), (336258,'Slovenian','default',460,'sl'), (336259,'Somali','default',460,'so'), (336260,'South Azerbaijani','default',460,'azb'), (336261,'Spanish (Argentina)','default',460,'es-ar'), (336262,'Spanish (Colombia)','default',460,'es-co'), (336263,'Spanish (Mexico)','default',460,'es-mx'), (336264,'Swiss German','default',460,'gsw'), (336265,'Swiss German (Formal)','formal',460,'gsw'), (336266,'Tagalog','default',460,'tl'), (336267,'Tajik','default',460,'tg'), (336268,'Tamazight (Central Atlas)','default',460,'tzm'), (336269,'Tamil','default',460,'ta'), (336270,'Tatar','default',460,'tt'), (336271,'Telugu','default',460,'te'), (336272,'Tibetan','default',460,'bo'), (336273,'Turkmen','default',460,'tuk'), (336274,'Urdu','default',460,'ur'), (336275,'Afrikaans','default',77,'af'), (336276,'Algerian Arabic','default',77,'arq'), (336277,'Aragonese','default',77,'an'), (336278,'Arpitan','default',77,'frp'), (336279,'Assamese','default',77,'as'), (336280,'Azerbaijani (Turkey)','default',77,'az-tr'), (336281,'Balochi Southern','default',77,'bcc'), (336282,'Belarusian','default',77,'bel'), (336283,'Corsican','default',77,'co'), (336284,'English (Australia)','default',77,'en-au'), (336285,'English (South Africa)','default',77,'en-za'), (336286,'French (Belgium)','default',77,'fr-be'), (336287,'French (Canada)','default',77,'fr-ca'), (336288,'German (Formal)','formal',77,'de'), (336289,'German (Switzerland)','default',77,'de-ch'), (336290,'German (Switzerland) Informal','informal',77,'de-ch'), (336291,'Gujarati','default',77,'gu'), (336292,'Hazaragi','default',77,'haz'), (336293,'Ido','default',77,'ido'), (336294,'Irish','default',77,'ga'), (336295,'Kabyle','default',77,'kab'), (336296,'Kinyarwanda','default',77,'kin'), (336297,'Lao','default',77,'lo'), (336298,'Latin','default',77,'la'), (336299,'Maori','default',77,'mri'), (336300,'Marathi','default',77,'mr'), (336301,'Occitan','default',77,'oci'), (336302,'Oriya','default',77,'ory'), (336303,'Pashto','default',77,'ps'), (336304,'Portuguese Informal','informal',77,'pt'), (336305,'Rohingya','default',77,'rhg'), (336306,'Romansh Vallader','default',77,'roh'), (336307,'Sakha','default',77,'sah'), (336308,'Silesian','default',77,'szl'), (336309,'South Azerbaijani','default',77,'azb'), (336310,'Spanish (Argentina)','default',77,'es-ar'), (336311,'Spanish (Colombia)','default',77,'es-co'), (336312,'Spanish (Mexico)','default',77,'es-mx'), (336313,'Swiss German','default',77,'gsw'), (336314,'Swiss German (Formal)','formal',77,'gsw'), (336315,'Tagalog','default',77,'tl'), (336316,'Tajik','default',77,'tg'), (336317,'Tamazight (Central Atlas)','default',77,'tzm'), (336318,'Tatar','default',77,'tt'), (336319,'Tibetan','default',77,'bo'), (336320,'Turkmen','default',77,'tuk'), (336321,'Afrikaans','default',454,'af'), (336322,'Algerian Arabic','default',454,'arq'), (336323,'Amharic','default',454,'am'), (336324,'Aragonese','default',454,'an'), (336325,'Armenian','default',454,'hy'), (336326,'Arpitan','default',454,'frp'), (336327,'Assamese','default',454,'as'), (336328,'Azerbaijani (Turkey)','default',454,'az-tr'), (336329,'Balochi Southern','default',454,'bcc'), (336330,'Belarusian','default',454,'bel'), (336331,'Breton','default',454,'br'), (336332,'Catalan (Balear)','default',454,'bal'), (336333,'Corsican','default',454,'co'), (336334,'Divehi','default',454,'dv'), (336335,'Dzongkha','default',454,'dzo'), (336336,'English (Australia)','default',454,'en-au'), (336337,'English (Canada)','default',454,'en-ca'), (336338,'English (South Africa)','default',454,'en-za'), (336339,'French (Belgium)','default',454,'fr-be'), (336340,'French (Canada)','default',454,'fr-ca'), (336341,'German (Formal)','formal',454,'de'), (336342,'German (Switzerland)','default',454,'de-ch'), (336343,'German (Switzerland) Informal','informal',454,'de-ch'), (336344,'Gujarati','default',454,'gu'), (336345,'Hawaiian','default',454,'haw'), (336346,'Hazaragi','default',454,'haz'), (336347,'Icelandic','default',454,'is'), (336348,'Ido','default',454,'ido'), (336349,'Irish','default',454,'ga'), (336350,'Kabyle','default',454,'kab'), (336351,'Kazakh','default',454,'kk'), (336352,'Khmer','default',454,'km'), (336353,'Kinyarwanda','default',454,'kin'), (336354,'Kurdish (Kurmanji)','default',454,'ku'), (336355,'Lao','default',454,'lo'), (336356,'Latin','default',454,'la'), (336357,'Limburgish','default',454,'li'), (336358,'Luxembourgish','default',454,'lb'), (336359,'Malagasy','default',454,'mg'), (336360,'Maori','default',454,'mri'), (336361,'Marathi','default',454,'mr'), (336362,'Montenegrin','default',454,'me'), (336363,'Occitan','default',454,'oci'), (336364,'Oriya','default',454,'ory'), (336365,'Ossetic','default',454,'os'), (336366,'Pashto','default',454,'ps'), (336367,'Persian (Afghanistan)','default',454,'fa-af'), (336368,'Portuguese Informal','informal',454,'pt'), (336369,'Rohingya','default',454,'rhg'), (336370,'Romansh Vallader','default',454,'roh'), (336371,'Sakha','default',454,'sah'), (336372,'Sanskrit','default',454,'sa-in'), (336373,'Sardinian','default',454,'srd'), (336374,'Scottish Gaelic','default',454,'gd'), (336375,'Silesian','default',454,'szl'), (336376,'Slovenian','default',454,'sl'), (336377,'Somali','default',454,'so'), (336378,'South Azerbaijani','default',454,'azb'), (336379,'Spanish (Argentina)','default',454,'es-ar'), (336380,'Spanish (Colombia)','default',454,'es-co'), (336381,'Spanish (Mexico)','default',454,'es-mx'), (336382,'Swiss German','default',454,'gsw'), (336383,'Swiss German (Formal)','formal',454,'gsw'), (336384,'Tagalog','default',454,'tl'), (336385,'Tajik','default',454,'tg'), (336386,'Tamazight (Central Atlas)','default',454,'tzm'), (336387,'Tamil','default',454,'ta'), (336388,'Tatar','default',454,'tt'), (336389,'Telugu','default',454,'te'), (336390,'Tibetan','default',454,'bo'), (336391,'Turkmen','default',454,'tuk'), (336392,'Urdu','default',454,'ur'), (336393,'Afrikaans','default',453,'af'), (336394,'Algerian Arabic','default',453,'arq'), (336395,'Amharic','default',453,'am'), (336396,'Aragonese','default',453,'an'), (336397,'Armenian','default',453,'hy'), (336398,'Arpitan','default',453,'frp'), (336399,'Assamese','default',453,'as'), (336400,'Azerbaijani (Turkey)','default',453,'az-tr'), (336401,'Balochi Southern','default',453,'bcc'), (336402,'Belarusian','default',453,'bel'), (336403,'Breton','default',453,'br'), (336404,'Catalan (Balear)','default',453,'bal'), (336405,'Corsican','default',453,'co'), (336406,'Divehi','default',453,'dv'), (336407,'Dzongkha','default',453,'dzo'), (336408,'English (Australia)','default',453,'en-au'), (336409,'English (Canada)','default',453,'en-ca'), (336410,'English (South Africa)','default',453,'en-za'), (336411,'French (Belgium)','default',453,'fr-be'), (336412,'French (Canada)','default',453,'fr-ca'), (336413,'German (Formal)','formal',453,'de'), (336414,'German (Switzerland)','default',453,'de-ch'), (336415,'German (Switzerland) Informal','informal',453,'de-ch'), (336416,'Gujarati','default',453,'gu'), (336417,'Hawaiian','default',453,'haw'), (336418,'Hazaragi','default',453,'haz'), (336419,'Icelandic','default',453,'is'), (336420,'Ido','default',453,'ido'), (336421,'Irish','default',453,'ga'), (336422,'Kabyle','default',453,'kab'), (336423,'Kazakh','default',453,'kk'), (336424,'Khmer','default',453,'km'), (336425,'Kinyarwanda','default',453,'kin'), (336426,'Kurdish (Kurmanji)','default',453,'ku'), (336427,'Lao','default',453,'lo'), (336428,'Latin','default',453,'la'), (336429,'Limburgish','default',453,'li'), (336430,'Luxembourgish','default',453,'lb'), (336431,'Malagasy','default',453,'mg'), (336432,'Maori','default',453,'mri'), (336433,'Marathi','default',453,'mr'), (336434,'Montenegrin','default',453,'me'), (336435,'Occitan','default',453,'oci'), (336436,'Oriya','default',453,'ory'), (336437,'Ossetic','default',453,'os'), (336438,'Pashto','default',453,'ps'), (336439,'Persian (Afghanistan)','default',453,'fa-af'), (336440,'Portuguese Informal','informal',453,'pt'), (336441,'Rohingya','default',453,'rhg'), (336442,'Romansh Vallader','default',453,'roh'), (336443,'Sakha','default',453,'sah'), (336444,'Sanskrit','default',453,'sa-in'), (336445,'Sardinian','default',453,'srd'), (336446,'Scottish Gaelic','default',453,'gd'), (336447,'Silesian','default',453,'szl'), (336448,'Slovenian','default',453,'sl'), (336449,'Somali','default',453,'so'), (336450,'South Azerbaijani','default',453,'azb'), (336451,'Spanish (Argentina)','default',453,'es-ar'), (336452,'Spanish (Colombia)','default',453,'es-co'), (336453,'Spanish (Mexico)','default',453,'es-mx'), (336454,'Swiss German','default',453,'gsw'), (336455,'Swiss German (Formal)','formal',453,'gsw'), (336456,'Tagalog','default',453,'tl'), (336457,'Tajik','default',453,'tg'), (336458,'Tamazight (Central Atlas)','default',453,'tzm'), (336459,'Tamil','default',453,'ta'), (336460,'Tatar','default',453,'tt'), (336461,'Telugu','default',453,'te'), (336462,'Tibetan','default',453,'bo'), (336463,'Turkmen','default',453,'tuk'), (336464,'Urdu','default',453,'ur'), (336465,'Afrikaans','default',455,'af'), (336466,'Algerian Arabic','default',455,'arq'), (336467,'Amharic','default',455,'am'), (336468,'Aragonese','default',455,'an'), (336469,'Armenian','default',455,'hy'), (336470,'Arpitan','default',455,'frp'), (336471,'Assamese','default',455,'as'), (336472,'Azerbaijani (Turkey)','default',455,'az-tr'), (336473,'Balochi Southern','default',455,'bcc'), (336474,'Belarusian','default',455,'bel'), (336475,'Breton','default',455,'br'), (336476,'Catalan (Balear)','default',455,'bal'), (336477,'Corsican','default',455,'co'), (336478,'Divehi','default',455,'dv'), (336479,'Dzongkha','default',455,'dzo'), (336480,'English (Australia)','default',455,'en-au'), (336481,'English (Canada)','default',455,'en-ca'), (336482,'English (South Africa)','default',455,'en-za'), (336483,'French (Belgium)','default',455,'fr-be'), (336484,'French (Canada)','default',455,'fr-ca'), (336485,'German (Formal)','formal',455,'de'), (336486,'German (Switzerland)','default',455,'de-ch'), (336487,'German (Switzerland) Informal','informal',455,'de-ch'), (336488,'Gujarati','default',455,'gu'), (336489,'Hawaiian','default',455,'haw'), (336490,'Hazaragi','default',455,'haz'), (336491,'Icelandic','default',455,'is'), (336492,'Ido','default',455,'ido'), (336493,'Irish','default',455,'ga'), (336494,'Kabyle','default',455,'kab'), (336495,'Kazakh','default',455,'kk'), (336496,'Khmer','default',455,'km'), (336497,'Kinyarwanda','default',455,'kin'), (336498,'Kurdish (Kurmanji)','default',455,'ku'), (336499,'Lao','default',455,'lo'), (336500,'Latin','default',455,'la'), (336501,'Limburgish','default',455,'li'), (336502,'Luxembourgish','default',455,'lb'), (336503,'Malagasy','default',455,'mg'), (336504,'Maori','default',455,'mri'), (336505,'Marathi','default',455,'mr'), (336506,'Montenegrin','default',455,'me'), (336507,'Occitan','default',455,'oci'), (336508,'Oriya','default',455,'ory'), (336509,'Ossetic','default',455,'os'), (336510,'Pashto','default',455,'ps'), (336511,'Persian (Afghanistan)','default',455,'fa-af'), (336512,'Portuguese Informal','informal',455,'pt'), (336513,'Rohingya','default',455,'rhg'), (336514,'Romansh Vallader','default',455,'roh'), (336515,'Sakha','default',455,'sah'), (336516,'Sanskrit','default',455,'sa-in'), (336517,'Sardinian','default',455,'srd'), (336518,'Scottish Gaelic','default',455,'gd'), (336519,'Silesian','default',455,'szl'), (336520,'Slovenian','default',455,'sl'), (336521,'Somali','default',455,'so'), (336522,'South Azerbaijani','default',455,'azb'), (336523,'Spanish (Argentina)','default',455,'es-ar'), (336524,'Spanish (Colombia)','default',455,'es-co'), (336525,'Spanish (Mexico)','default',455,'es-mx'), (336526,'Swiss German','default',455,'gsw'), (336527,'Swiss German (Formal)','formal',455,'gsw'), (336528,'Tagalog','default',455,'tl'), (336529,'Tajik','default',455,'tg'), (336530,'Tamazight (Central Atlas)','default',455,'tzm'), (336531,'Tamil','default',455,'ta'), (336532,'Tatar','default',455,'tt'), (336533,'Telugu','default',455,'te'), (336534,'Tibetan','default',455,'bo'), (336535,'Turkmen','default',455,'tuk'), (336536,'Urdu','default',455,'ur'), (336537,'Afrikaans','default',23,'af'), (336538,'Algerian Arabic','default',23,'arq'), (336539,'Amharic','default',23,'am'), (336540,'Aragonese','default',23,'an'), (336541,'Armenian','default',23,'hy'), (336542,'Arpitan','default',23,'frp'), (336543,'Assamese','default',23,'as'), (336544,'Azerbaijani (Turkey)','default',23,'az-tr'), (336545,'Balochi Southern','default',23,'bcc'), (336546,'Belarusian','default',23,'bel'), (336547,'Breton','default',23,'br'), (336548,'Catalan (Balear)','default',23,'bal'), (336549,'Corsican','default',23,'co'), (336550,'Divehi','default',23,'dv'), (336551,'Dzongkha','default',23,'dzo'), (336552,'English (Australia)','default',23,'en-au'), (336553,'English (Canada)','default',23,'en-ca'), (336554,'English (South Africa)','default',23,'en-za'), (336555,'French (Belgium)','default',23,'fr-be'), (336556,'French (Canada)','default',23,'fr-ca'), (336557,'German (Formal)','formal',23,'de'), (336558,'German (Switzerland)','default',23,'de-ch'), (336559,'German (Switzerland) Informal','informal',23,'de-ch'), (336560,'Gujarati','default',23,'gu'), (336561,'Hawaiian','default',23,'haw'), (336562,'Hazaragi','default',23,'haz'), (336563,'Icelandic','default',23,'is'), (336564,'Ido','default',23,'ido'), (336565,'Irish','default',23,'ga'), (336566,'Kabyle','default',23,'kab'), (336567,'Kazakh','default',23,'kk'), (336568,'Khmer','default',23,'km'), (336569,'Kinyarwanda','default',23,'kin'), (336570,'Kurdish (Kurmanji)','default',23,'ku'), (336571,'Lao','default',23,'lo'), (336572,'Latin','default',23,'la'), (336573,'Limburgish','default',23,'li'), (336574,'Luxembourgish','default',23,'lb'), (336575,'Malagasy','default',23,'mg'), (336576,'Maori','default',23,'mri'), (336577,'Marathi','default',23,'mr'), (336578,'Montenegrin','default',23,'me'), (336579,'Occitan','default',23,'oci'), (336580,'Oriya','default',23,'ory'), (336581,'Ossetic','default',23,'os'), (336582,'Pashto','default',23,'ps'), (336583,'Persian (Afghanistan)','default',23,'fa-af'), (336584,'Portuguese Informal','informal',23,'pt'), (336585,'Rohingya','default',23,'rhg'), (336586,'Romansh Vallader','default',23,'roh'), (336587,'Sakha','default',23,'sah'), (336588,'Sanskrit','default',23,'sa-in'), (336589,'Sardinian','default',23,'srd'), (336590,'Scottish Gaelic','default',23,'gd'), (336591,'Silesian','default',23,'szl'), (336592,'Slovenian','default',23,'sl'), (336593,'Somali','default',23,'so'), (336594,'South Azerbaijani','default',23,'azb'), (336595,'Spanish (Argentina)','default',23,'es-ar'), (336596,'Spanish (Colombia)','default',23,'es-co'), (336597,'Spanish (Mexico)','default',23,'es-mx'), (336598,'Swiss German','default',23,'gsw'), (336599,'Swiss German (Formal)','formal',23,'gsw'), (336600,'Tagalog','default',23,'tl'), (336601,'Tajik','default',23,'tg'), (336602,'Tamazight (Central Atlas)','default',23,'tzm'), (336603,'Tamil','default',23,'ta'), (336604,'Tatar','default',23,'tt'), (336605,'Telugu','default',23,'te'), (336606,'Tibetan','default',23,'bo'), (336607,'Turkmen','default',23,'tuk'), (336608,'Urdu','default',23,'ur'), (336609,'Afrikaans','default',441,'af'), (336610,'Algerian Arabic','default',441,'arq'), (336611,'Amharic','default',441,'am'), (336612,'Aragonese','default',441,'an'), (336613,'Armenian','default',441,'hy'), (336614,'Arpitan','default',441,'frp'), (336615,'Assamese','default',441,'as'), (336616,'Azerbaijani (Turkey)','default',441,'az-tr'), (336617,'Balochi Southern','default',441,'bcc'), (336618,'Belarusian','default',441,'bel'), (336619,'Breton','default',441,'br'), (336620,'Catalan (Balear)','default',441,'bal'), (336621,'Corsican','default',441,'co'), (336622,'Divehi','default',441,'dv'), (336623,'Dzongkha','default',441,'dzo'), (336624,'English (Australia)','default',441,'en-au'), (336625,'English (Canada)','default',441,'en-ca'), (336626,'English (South Africa)','default',441,'en-za'), (336627,'French (Belgium)','default',441,'fr-be'), (336628,'French (Canada)','default',441,'fr-ca'), (336629,'German (Formal)','formal',441,'de'), (336630,'German (Switzerland)','default',441,'de-ch'), (336631,'German (Switzerland) Informal','informal',441,'de-ch'), (336632,'Gujarati','default',441,'gu'), (336633,'Hawaiian','default',441,'haw'), (336634,'Hazaragi','default',441,'haz'), (336635,'Icelandic','default',441,'is'), (336636,'Ido','default',441,'ido'), (336637,'Irish','default',441,'ga'), (336638,'Kabyle','default',441,'kab'), (336639,'Kazakh','default',441,'kk'), (336640,'Khmer','default',441,'km'), (336641,'Kinyarwanda','default',441,'kin'), (336642,'Kurdish (Kurmanji)','default',441,'ku'), (336643,'Lao','default',441,'lo'), (336644,'Latin','default',441,'la'), (336645,'Limburgish','default',441,'li'), (336646,'Luxembourgish','default',441,'lb'), (336647,'Malagasy','default',441,'mg'), (336648,'Maori','default',441,'mri'), (336649,'Marathi','default',441,'mr'), (336650,'Montenegrin','default',441,'me'), (336651,'Occitan','default',441,'oci'), (336652,'Oriya','default',441,'ory'), (336653,'Ossetic','default',441,'os'), (336654,'Pashto','default',441,'ps'), (336655,'Persian (Afghanistan)','default',441,'fa-af'), (336656,'Portuguese Informal','informal',441,'pt'), (336657,'Rohingya','default',441,'rhg'), (336658,'Romansh Vallader','default',441,'roh'), (336659,'Sakha','default',441,'sah'), (336660,'Sanskrit','default',441,'sa-in'), (336661,'Sardinian','default',441,'srd'), (336662,'Scottish Gaelic','default',441,'gd'), (336663,'Silesian','default',441,'szl'), (336664,'Slovenian','default',441,'sl'), (336665,'Somali','default',441,'so'), (336666,'South Azerbaijani','default',441,'azb'), (336667,'Spanish (Argentina)','default',441,'es-ar'), (336668,'Spanish (Colombia)','default',441,'es-co'), (336669,'Spanish (Mexico)','default',441,'es-mx'), (336670,'Swiss German','default',441,'gsw'), (336671,'Swiss German (Formal)','formal',441,'gsw'), (336672,'Tagalog','default',441,'tl'), (336673,'Tajik','default',441,'tg'), (336674,'Tamazight (Central Atlas)','default',441,'tzm'), (336675,'Tamil','default',441,'ta'), (336676,'Tatar','default',441,'tt'), (336677,'Telugu','default',441,'te'), (336678,'Tibetan','default',441,'bo'), (336679,'Turkmen','default',441,'tuk'), (336680,'Urdu','default',441,'ur'), (336681,'Afrikaans','default',21,'af'), (336682,'Algerian Arabic','default',21,'arq'), (336683,'Amharic','default',21,'am'), (336684,'Aragonese','default',21,'an'), (336685,'Armenian','default',21,'hy'), (336686,'Arpitan','default',21,'frp'), (336687,'Assamese','default',21,'as'), (336688,'Azerbaijani (Turkey)','default',21,'az-tr'), (336689,'Balochi Southern','default',21,'bcc'), (336690,'Belarusian','default',21,'bel'), (336691,'Breton','default',21,'br'), (336692,'Catalan (Balear)','default',21,'bal'), (336693,'Corsican','default',21,'co'), (336694,'Divehi','default',21,'dv'), (336695,'Dzongkha','default',21,'dzo'), (336696,'English (Australia)','default',21,'en-au'), (336697,'English (Canada)','default',21,'en-ca'), (336698,'English (South Africa)','default',21,'en-za'), (336699,'French (Belgium)','default',21,'fr-be'), (336700,'French (Canada)','default',21,'fr-ca'), (336701,'German (Formal)','formal',21,'de'), (336702,'German (Switzerland)','default',21,'de-ch'), (336703,'German (Switzerland) Informal','informal',21,'de-ch'), (336704,'Gujarati','default',21,'gu'), (336705,'Hawaiian','default',21,'haw'), (336706,'Hazaragi','default',21,'haz'), (336707,'Icelandic','default',21,'is'), (336708,'Ido','default',21,'ido'), (336709,'Irish','default',21,'ga'), (336710,'Kabyle','default',21,'kab'), (336711,'Kazakh','default',21,'kk'), (336712,'Khmer','default',21,'km'), (336713,'Kinyarwanda','default',21,'kin'), (336714,'Kurdish (Kurmanji)','default',21,'ku'), (336715,'Lao','default',21,'lo'), (336716,'Latin','default',21,'la'), (336717,'Limburgish','default',21,'li'), (336718,'Luxembourgish','default',21,'lb'), (336719,'Malagasy','default',21,'mg'), (336720,'Maori','default',21,'mri'), (336721,'Marathi','default',21,'mr'), (336722,'Montenegrin','default',21,'me'), (336723,'Occitan','default',21,'oci'), (336724,'Oriya','default',21,'ory'), (336725,'Ossetic','default',21,'os'), (336726,'Persian (Afghanistan)','default',21,'fa-af'), (336727,'Portuguese Informal','informal',21,'pt'), (336728,'Rohingya','default',21,'rhg'), (336729,'Romansh Vallader','default',21,'roh'), (336730,'Sakha','default',21,'sah'), (336731,'Sanskrit','default',21,'sa-in'), (336732,'Sardinian','default',21,'srd'), (336733,'Scottish Gaelic','default',21,'gd'), (336734,'Silesian','default',21,'szl'), (336735,'Slovenian','default',21,'sl'), (336736,'Somali','default',21,'so'), (336737,'South Azerbaijani','default',21,'azb'), (336738,'Spanish (Argentina)','default',21,'es-ar'), (336739,'Spanish (Colombia)','default',21,'es-co'), (336740,'Spanish (Mexico)','default',21,'es-mx'), (336741,'Swiss German','default',21,'gsw'), (336742,'Swiss German (Formal)','formal',21,'gsw'), (336743,'Tagalog','default',21,'tl'), (336744,'Tajik','default',21,'tg'), (336745,'Tamazight (Central Atlas)','default',21,'tzm'), (336746,'Tamil','default',21,'ta'), (336747,'Tatar','default',21,'tt'), (336748,'Telugu','default',21,'te'), (336749,'Tibetan','default',21,'bo'), (336750,'Turkmen','default',21,'tuk'), (336751,'Urdu','default',21,'ur'), (336752,'Afrikaans','default',439,'af'), (336753,'Algerian Arabic','default',439,'arq'), (336754,'Amharic','default',439,'am'), (336755,'Aragonese','default',439,'an'), (336756,'Armenian','default',439,'hy'), (336757,'Arpitan','default',439,'frp'), (336758,'Assamese','default',439,'as'), (336759,'Azerbaijani (Turkey)','default',439,'az-tr'), (336760,'Balochi Southern','default',439,'bcc'), (336761,'Belarusian','default',439,'bel'), (336762,'Breton','default',439,'br'), (336763,'Catalan (Balear)','default',439,'bal'), (336764,'Corsican','default',439,'co'), (336765,'Divehi','default',439,'dv'), (336766,'Dzongkha','default',439,'dzo'), (336767,'English (Australia)','default',439,'en-au'), (336768,'English (Canada)','default',439,'en-ca'), (336769,'English (South Africa)','default',439,'en-za'), (336770,'French (Belgium)','default',439,'fr-be'), (336771,'French (Canada)','default',439,'fr-ca'), (336772,'German (Formal)','formal',439,'de'), (336773,'German (Switzerland)','default',439,'de-ch'), (336774,'German (Switzerland) Informal','informal',439,'de-ch'), (336775,'Gujarati','default',439,'gu'), (336776,'Hawaiian','default',439,'haw'), (336777,'Hazaragi','default',439,'haz'), (336778,'Icelandic','default',439,'is'), (336779,'Ido','default',439,'ido'), (336780,'Irish','default',439,'ga'), (336781,'Kabyle','default',439,'kab'), (336782,'Kazakh','default',439,'kk'), (336783,'Khmer','default',439,'km'), (336784,'Kinyarwanda','default',439,'kin'), (336785,'Kurdish (Kurmanji)','default',439,'ku'), (336786,'Lao','default',439,'lo'), (336787,'Latin','default',439,'la'), (336788,'Limburgish','default',439,'li'), (336789,'Luxembourgish','default',439,'lb'), (336790,'Malagasy','default',439,'mg'), (336791,'Maori','default',439,'mri'), (336792,'Marathi','default',439,'mr'), (336793,'Montenegrin','default',439,'me'), (336794,'Occitan','default',439,'oci'), (336795,'Oriya','default',439,'ory'), (336796,'Ossetic','default',439,'os'), (336797,'Persian (Afghanistan)','default',439,'fa-af'), (336798,'Portuguese Informal','informal',439,'pt'), (336799,'Rohingya','default',439,'rhg'), (336800,'Romansh Vallader','default',439,'roh'), (336801,'Sakha','default',439,'sah'), (336802,'Sanskrit','default',439,'sa-in'), (336803,'Sardinian','default',439,'srd'), (336804,'Scottish Gaelic','default',439,'gd'), (336805,'Silesian','default',439,'szl'), (336806,'Slovenian','default',439,'sl'), (336807,'Somali','default',439,'so'), (336808,'South Azerbaijani','default',439,'azb'), (336809,'Spanish (Argentina)','default',439,'es-ar'), (336810,'Spanish (Colombia)','default',439,'es-co'), (336811,'Spanish (Mexico)','default',439,'es-mx'), (336812,'Swiss German','default',439,'gsw'), (336813,'Swiss German (Formal)','formal',439,'gsw'), (336814,'Tagalog','default',439,'tl'), (336815,'Tajik','default',439,'tg'), (336816,'Tamazight (Central Atlas)','default',439,'tzm'), (336817,'Tamil','default',439,'ta'), (336818,'Tatar','default',439,'tt'), (336819,'Telugu','default',439,'te'), (336820,'Tibetan','default',439,'bo'), (336821,'Turkmen','default',439,'tuk'), (336822,'Urdu','default',439,'ur'), (336823,'Afrikaans','default',438,'af'), (336824,'Algerian Arabic','default',438,'arq'), (336825,'Amharic','default',438,'am'), (336826,'Aragonese','default',438,'an'), (336827,'Armenian','default',438,'hy'), (336828,'Arpitan','default',438,'frp'), (336829,'Assamese','default',438,'as'), (336830,'Azerbaijani (Turkey)','default',438,'az-tr'), (336831,'Balochi Southern','default',438,'bcc'), (336832,'Belarusian','default',438,'bel'), (336833,'Breton','default',438,'br'), (336834,'Catalan (Balear)','default',438,'bal'), (336835,'Corsican','default',438,'co'), (336836,'Divehi','default',438,'dv'), (336837,'Dzongkha','default',438,'dzo'), (336838,'English (Australia)','default',438,'en-au'), (336839,'English (Canada)','default',438,'en-ca'), (336840,'English (South Africa)','default',438,'en-za'), (336841,'French (Belgium)','default',438,'fr-be'), (336842,'French (Canada)','default',438,'fr-ca'), (336843,'German (Formal)','formal',438,'de'), (336844,'German (Switzerland)','default',438,'de-ch'), (336845,'German (Switzerland) Informal','informal',438,'de-ch'), (336846,'Gujarati','default',438,'gu'), (336847,'Hawaiian','default',438,'haw'), (336848,'Hazaragi','default',438,'haz'), (336849,'Icelandic','default',438,'is'), (336850,'Ido','default',438,'ido'), (336851,'Irish','default',438,'ga'), (336852,'Kabyle','default',438,'kab'), (336853,'Kazakh','default',438,'kk'), (336854,'Khmer','default',438,'km'), (336855,'Kinyarwanda','default',438,'kin'), (336856,'Kurdish (Kurmanji)','default',438,'ku'), (336857,'Lao','default',438,'lo'), (336858,'Latin','default',438,'la'), (336859,'Limburgish','default',438,'li'), (336860,'Luxembourgish','default',438,'lb'), (336861,'Malagasy','default',438,'mg'), (336862,'Maori','default',438,'mri'), (336863,'Marathi','default',438,'mr'), (336864,'Montenegrin','default',438,'me'), (336865,'Occitan','default',438,'oci'), (336866,'Oriya','default',438,'ory'), (336867,'Ossetic','default',438,'os'), (336868,'Persian (Afghanistan)','default',438,'fa-af'), (336869,'Portuguese Informal','informal',438,'pt'), (336870,'Rohingya','default',438,'rhg'), (336871,'Romansh Vallader','default',438,'roh'), (336872,'Sakha','default',438,'sah'), (336873,'Sanskrit','default',438,'sa-in'), (336874,'Sardinian','default',438,'srd'), (336875,'Scottish Gaelic','default',438,'gd'), (336876,'Silesian','default',438,'szl'), (336877,'Slovenian','default',438,'sl'), (336878,'Somali','default',438,'so'), (336879,'South Azerbaijani','default',438,'azb'), (336880,'Spanish (Argentina)','default',438,'es-ar'), (336881,'Spanish (Colombia)','default',438,'es-co'), (336882,'Spanish (Mexico)','default',438,'es-mx'), (336883,'Swiss German','default',438,'gsw'), (336884,'Swiss German (Formal)','formal',438,'gsw'), (336885,'Tagalog','default',438,'tl'), (336886,'Tajik','default',438,'tg'), (336887,'Tamazight (Central Atlas)','default',438,'tzm'), (336888,'Tamil','default',438,'ta'), (336889,'Tatar','default',438,'tt'), (336890,'Telugu','default',438,'te'), (336891,'Tibetan','default',438,'bo'), (336892,'Turkmen','default',438,'tuk'), (336893,'Urdu','default',438,'ur'), (336894,'Afrikaans','default',440,'af'), (336895,'Algerian Arabic','default',440,'arq'), (336896,'Amharic','default',440,'am'), (336897,'Aragonese','default',440,'an'), (336898,'Armenian','default',440,'hy'), (336899,'Arpitan','default',440,'frp'), (336900,'Assamese','default',440,'as'), (336901,'Azerbaijani (Turkey)','default',440,'az-tr'), (336902,'Balochi Southern','default',440,'bcc'), (336903,'Belarusian','default',440,'bel'), (336904,'Breton','default',440,'br'), (336905,'Catalan (Balear)','default',440,'bal'), (336906,'Corsican','default',440,'co'), (336907,'Divehi','default',440,'dv'), (336908,'Dzongkha','default',440,'dzo'), (336909,'English (Australia)','default',440,'en-au'), (336910,'English (Canada)','default',440,'en-ca'), (336911,'English (South Africa)','default',440,'en-za'), (336912,'French (Belgium)','default',440,'fr-be'), (336913,'French (Canada)','default',440,'fr-ca'), (336914,'German (Formal)','formal',440,'de'), (336915,'German (Switzerland)','default',440,'de-ch'), (336916,'German (Switzerland) Informal','informal',440,'de-ch'), (336917,'Gujarati','default',440,'gu'), (336918,'Hawaiian','default',440,'haw'), (336919,'Hazaragi','default',440,'haz'), (336920,'Icelandic','default',440,'is'), (336921,'Ido','default',440,'ido'), (336922,'Irish','default',440,'ga'), (336923,'Kabyle','default',440,'kab'), (336924,'Kazakh','default',440,'kk'), (336925,'Khmer','default',440,'km'), (336926,'Kinyarwanda','default',440,'kin'), (336927,'Kurdish (Kurmanji)','default',440,'ku'), (336928,'Lao','default',440,'lo'), (336929,'Latin','default',440,'la'), (336930,'Limburgish','default',440,'li'), (336931,'Luxembourgish','default',440,'lb'), (336932,'Malagasy','default',440,'mg'), (336933,'Maori','default',440,'mri'), (336934,'Marathi','default',440,'mr'), (336935,'Montenegrin','default',440,'me'), (336936,'Occitan','default',440,'oci'), (336937,'Oriya','default',440,'ory'), (336938,'Ossetic','default',440,'os'), (336939,'Persian (Afghanistan)','default',440,'fa-af'), (336940,'Portuguese Informal','informal',440,'pt'), (336941,'Rohingya','default',440,'rhg'), (336942,'Romansh Vallader','default',440,'roh'), (336943,'Sakha','default',440,'sah'), (336944,'Sanskrit','default',440,'sa-in'), (336945,'Sardinian','default',440,'srd'), (336946,'Scottish Gaelic','default',440,'gd'), (336947,'Silesian','default',440,'szl'), (336948,'Slovenian','default',440,'sl'), (336949,'Somali','default',440,'so'), (336950,'South Azerbaijani','default',440,'azb'), (336951,'Spanish (Argentina)','default',440,'es-ar'), (336952,'Spanish (Colombia)','default',440,'es-co'), (336953,'Spanish (Mexico)','default',440,'es-mx'), (336954,'Swiss German','default',440,'gsw'), (336955,'Swiss German (Formal)','formal',440,'gsw'), (336956,'Tagalog','default',440,'tl'), (336957,'Tajik','default',440,'tg'), (336958,'Tamazight (Central Atlas)','default',440,'tzm'), (336959,'Tamil','default',440,'ta'), (336960,'Tatar','default',440,'tt'), (336961,'Telugu','default',440,'te'), (336962,'Tibetan','default',440,'bo'), (336963,'Turkmen','default',440,'tuk'), (336964,'Urdu','default',440,'ur'), (336965,'English (New Zealand)','default',2,'en-nz'), (336966,'English (New Zealand)','default',78,'en-nz'), (336967,'English (New Zealand)','default',79,'en-nz'), (336969,'English (New Zealand)','default',15,'en-nz'), (336970,'English (New Zealand)','default',55,'en-nz'), (336971,'English (New Zealand)','default',80,'en-nz'), (336972,'English (New Zealand)','default',101,'en-nz'), (336973,'English (New Zealand)','default',130,'en-nz'), (336974,'English (New Zealand)','default',421,'en-nz'), (336975,'English (New Zealand)','default',66,'en-nz'), (336976,'English (New Zealand)','default',470,'en-nz'), (336977,'English (New Zealand)','default',481,'en-nz'), (336978,'English (New Zealand)','default',488,'en-nz'), (338957,'English (New Zealand)','default',217,'en-nz'), (338958,'English (New Zealand)','default',432,'en-nz'), (338959,'English (New Zealand)','default',433,'en-nz'), (338960,'English (New Zealand)','default',434,'en-nz'), (338961,'English (New Zealand)','default',59,'en-nz'), (338962,'English (New Zealand)','default',428,'en-nz'), (338963,'English (New Zealand)','default',215,'en-nz'), (338964,'English (New Zealand)','default',430,'en-nz'), (338965,'English (New Zealand)','default',43,'en-nz'), (338966,'English (New Zealand)','default',450,'en-nz'), (338967,'English (New Zealand)','default',451,'en-nz'), (338968,'English (New Zealand)','default',452,'en-nz'), (338969,'English (New Zealand)','default',41,'en-nz'), (338970,'English (New Zealand)','default',363,'en-nz'), (338971,'English (New Zealand)','default',14,'en-nz'), (338973,'English (New Zealand)','default',493,'en-nz'), (338975,'English (New Zealand)','default',19,'en-nz'), (338976,'English (New Zealand)','default',435,'en-nz'), (338977,'English (New Zealand)','default',436,'en-nz'), (338978,'English (New Zealand)','default',437,'en-nz'), (338979,'English (New Zealand)','default',467,'en-nz'), (338980,'English (New Zealand)','default',468,'en-nz'), (338981,'English (New Zealand)','default',39,'en-nz'), (338982,'English (New Zealand)','default',431,'en-nz'), (338983,'English (New Zealand)','default',37,'en-nz'), (338984,'English (New Zealand)','default',449,'en-nz'), (338985,'English (New Zealand)','default',35,'en-nz'), (338986,'English (New Zealand)','default',423,'en-nz'), (338987,'English (New Zealand)','default',424,'en-nz'), (338988,'English (New Zealand)','default',425,'en-nz'), (338989,'English (New Zealand)','default',33,'en-nz'), (338990,'English (New Zealand)','default',446,'en-nz'), (338991,'English (New Zealand)','default',447,'en-nz'), (338992,'English (New Zealand)','default',448,'en-nz'), (338997,'English (New Zealand)','default',31,'en-nz'), (338998,'English (New Zealand)','default',445,'en-nz'), (338999,'English (New Zealand)','default',29,'en-nz'), (339000,'English (New Zealand)','default',444,'en-nz'), (339001,'English (New Zealand)','default',27,'en-nz'), (339002,'English (New Zealand)','default',443,'en-nz'), (339003,'English (New Zealand)','default',25,'en-nz'), (339004,'English (New Zealand)','default',442,'en-nz'), (339005,'English (New Zealand)','default',457,'en-nz'), (339006,'English (New Zealand)','default',458,'en-nz'), (339007,'English (New Zealand)','default',459,'en-nz'), (339008,'English (New Zealand)','default',460,'en-nz'), (339009,'English (New Zealand)','default',77,'en-nz'), (339010,'English (New Zealand)','default',453,'en-nz'), (339011,'English (New Zealand)','default',454,'en-nz'), (339012,'English (New Zealand)','default',455,'en-nz'), (339013,'English (New Zealand)','default',23,'en-nz'), (339014,'English (New Zealand)','default',441,'en-nz'), (339015,'English (New Zealand)','default',462,'en-nz'), (339016,'English (New Zealand)','default',463,'en-nz'), (339017,'English (New Zealand)','default',464,'en-nz'), (339018,'English (New Zealand)','default',465,'en-nz'), (339019,'English (New Zealand)','default',21,'en-nz'), (339020,'English (New Zealand)','default',438,'en-nz'), (339021,'English (New Zealand)','default',439,'en-nz'), (339022,'English (New Zealand)','default',440,'en-nz'), (346128,'English (New Zealand)','default',490,'en-nz'), (346129,'English (South Africa)','default',490,'en-za'), (346130,'Maori','default',490,'mri'), (346131,'Silesian','default',490,'szl'), (346132,'Spanish (Colombia)','default',490,'es-co'), (347003,'Afrikaans','default',462,'af'), (347004,'Algerian Arabic','default',462,'arq'), (347005,'Amharic','default',462,'am'), (347006,'Aragonese','default',462,'an'), (347007,'Armenian','default',462,'hy'), (347008,'Arpitan','default',462,'frp'), (347009,'Assamese','default',462,'as'), (347010,'Azerbaijani (Turkey)','default',462,'az-tr'), (347011,'Balochi Southern','default',462,'bcc'), (347012,'Belarusian','default',462,'bel'), (347013,'Breton','default',462,'br'), (347014,'Catalan (Balear)','default',462,'bal'), (347015,'Corsican','default',462,'co'), (347016,'Divehi','default',462,'dv'), (347017,'Dzongkha','default',462,'dzo'), (347018,'English (Australia)','default',462,'en-au'), (347019,'English (Canada)','default',462,'en-ca'), (347020,'English (South Africa)','default',462,'en-za'), (347021,'French (Belgium)','default',462,'fr-be'), (347022,'French (Canada)','default',462,'fr-ca'), (347023,'German (Switzerland)','default',462,'de-ch'), (347024,'German (Switzerland) Informal','informal',462,'de-ch'), (347025,'Gujarati','default',462,'gu'), (347026,'Hawaiian','default',462,'haw'), (347027,'Hazaragi','default',462,'haz'), (347028,'Icelandic','default',462,'is'), (347029,'Ido','default',462,'ido'), (347030,'Irish','default',462,'ga'), (347031,'Kabyle','default',462,'kab'), (347032,'Kazakh','default',462,'kk'), (347033,'Khmer','default',462,'km'), (347034,'Kinyarwanda','default',462,'kin'), (347035,'Kurdish (Kurmanji)','default',462,'ku'), (347036,'Lao','default',462,'lo'), (347037,'Latin','default',462,'la'), (347038,'Limburgish','default',462,'li'), (347039,'Luxembourgish','default',462,'lb'), (347040,'Malagasy','default',462,'mg'), (347041,'Maori','default',462,'mri'), (347042,'Marathi','default',462,'mr'), (347043,'Montenegrin','default',462,'me'), (347044,'Occitan','default',462,'oci'), (347045,'Oriya','default',462,'ory'), (347046,'Ossetic','default',462,'os'), (347047,'Persian (Afghanistan)','default',462,'fa-af'), (347048,'Rohingya','default',462,'rhg'), (347049,'Romansh Vallader','default',462,'roh'), (347050,'Sakha','default',462,'sah'), (347051,'Sanskrit','default',462,'sa-in'), (347052,'Sardinian','default',462,'srd'), (347053,'Scottish Gaelic','default',462,'gd'), (347054,'Silesian','default',462,'szl'), (347055,'Slovenian','default',462,'sl'), (347056,'Somali','default',462,'so'), (347057,'South Azerbaijani','default',462,'azb'), (347058,'Spanish (Argentina)','default',462,'es-ar'), (347059,'Spanish (Colombia)','default',462,'es-co'), (347060,'Spanish (Mexico)','default',462,'es-mx'), (347061,'Swiss German','default',462,'gsw'), (347062,'Swiss German (Formal)','formal',462,'gsw'), (347063,'Tagalog','default',462,'tl'), (347064,'Tajik','default',462,'tg'), (347065,'Tamazight (Central Atlas)','default',462,'tzm'), (347066,'Tamil','default',462,'ta'), (347067,'Tatar','default',462,'tt'), (347068,'Telugu','default',462,'te'), (347069,'Tibetan','default',462,'bo'), (347070,'Turkmen','default',462,'tuk'), (347071,'Urdu','default',462,'ur'), (347072,'Afrikaans','default',463,'af'), (347073,'Algerian Arabic','default',463,'arq'), (347074,'Amharic','default',463,'am'), (347075,'Aragonese','default',463,'an'), (347076,'Armenian','default',463,'hy'), (347077,'Arpitan','default',463,'frp'), (347078,'Assamese','default',463,'as'), (347079,'Azerbaijani (Turkey)','default',463,'az-tr'), (347080,'Balochi Southern','default',463,'bcc'), (347081,'Belarusian','default',463,'bel'), (347082,'Breton','default',463,'br'), (347083,'Catalan (Balear)','default',463,'bal'), (347084,'Corsican','default',463,'co'), (347085,'Divehi','default',463,'dv'), (347086,'Dzongkha','default',463,'dzo'), (347087,'English (Australia)','default',463,'en-au'), (347088,'English (Canada)','default',463,'en-ca'), (347089,'English (South Africa)','default',463,'en-za'), (347090,'French (Belgium)','default',463,'fr-be'), (347091,'French (Canada)','default',463,'fr-ca'), (347092,'German (Switzerland)','default',463,'de-ch'), (347093,'German (Switzerland) Informal','informal',463,'de-ch'), (347094,'Gujarati','default',463,'gu'), (347095,'Hawaiian','default',463,'haw'), (347096,'Hazaragi','default',463,'haz'), (347097,'Icelandic','default',463,'is'), (347098,'Ido','default',463,'ido'), (347099,'Irish','default',463,'ga'), (347100,'Kabyle','default',463,'kab'), (347101,'Kazakh','default',463,'kk'), (347102,'Khmer','default',463,'km'), (347103,'Kinyarwanda','default',463,'kin'), (347104,'Kurdish (Kurmanji)','default',463,'ku'), (347105,'Lao','default',463,'lo'), (347106,'Latin','default',463,'la'), (347107,'Limburgish','default',463,'li'), (347108,'Luxembourgish','default',463,'lb'), (347109,'Malagasy','default',463,'mg'), (347110,'Maori','default',463,'mri'), (347111,'Marathi','default',463,'mr'), (347112,'Montenegrin','default',463,'me'), (347113,'Occitan','default',463,'oci'), (347114,'Oriya','default',463,'ory'), (347115,'Ossetic','default',463,'os'), (347116,'Persian (Afghanistan)','default',463,'fa-af'), (347117,'Rohingya','default',463,'rhg'), (347118,'Romansh Vallader','default',463,'roh'), (347119,'Sakha','default',463,'sah'), (347120,'Sanskrit','default',463,'sa-in'), (347121,'Sardinian','default',463,'srd'), (347122,'Scottish Gaelic','default',463,'gd'), (347123,'Silesian','default',463,'szl'), (347124,'Slovenian','default',463,'sl'), (347125,'Somali','default',463,'so'), (347126,'South Azerbaijani','default',463,'azb'), (347127,'Spanish (Argentina)','default',463,'es-ar'), (347128,'Spanish (Colombia)','default',463,'es-co'), (347129,'Spanish (Mexico)','default',463,'es-mx'), (347130,'Swiss German','default',463,'gsw'), (347131,'Swiss German (Formal)','formal',463,'gsw'), (347132,'Tagalog','default',463,'tl'), (347133,'Tajik','default',463,'tg'), (347134,'Tamazight (Central Atlas)','default',463,'tzm'), (347135,'Tamil','default',463,'ta'), (347136,'Tatar','default',463,'tt'), (347137,'Telugu','default',463,'te'), (347138,'Tibetan','default',463,'bo'), (347139,'Turkmen','default',463,'tuk'), (347140,'Urdu','default',463,'ur'), (347141,'Afrikaans','default',464,'af'), (347142,'Algerian Arabic','default',464,'arq'), (347143,'Amharic','default',464,'am'), (347144,'Aragonese','default',464,'an'), (347145,'Armenian','default',464,'hy'), (347146,'Arpitan','default',464,'frp'), (347147,'Assamese','default',464,'as'), (347148,'Azerbaijani (Turkey)','default',464,'az-tr'), (347149,'Balochi Southern','default',464,'bcc'), (347150,'Belarusian','default',464,'bel'), (347151,'Breton','default',464,'br'), (347152,'Catalan (Balear)','default',464,'bal'), (347153,'Corsican','default',464,'co'), (347154,'Divehi','default',464,'dv'), (347155,'Dzongkha','default',464,'dzo'), (347156,'English (Australia)','default',464,'en-au'), (347157,'English (Canada)','default',464,'en-ca'), (347158,'English (South Africa)','default',464,'en-za'), (347159,'French (Belgium)','default',464,'fr-be'), (347160,'French (Canada)','default',464,'fr-ca'), (347161,'German (Switzerland)','default',464,'de-ch'), (347162,'German (Switzerland) Informal','informal',464,'de-ch'), (347163,'Gujarati','default',464,'gu'), (347164,'Hawaiian','default',464,'haw'), (347165,'Hazaragi','default',464,'haz'), (347166,'Icelandic','default',464,'is'), (347167,'Ido','default',464,'ido'), (347168,'Irish','default',464,'ga'), (347169,'Kabyle','default',464,'kab'), (347170,'Kazakh','default',464,'kk'), (347171,'Khmer','default',464,'km'), (347172,'Kinyarwanda','default',464,'kin'), (347173,'Kurdish (Kurmanji)','default',464,'ku'), (347174,'Lao','default',464,'lo'), (347175,'Latin','default',464,'la'), (347176,'Limburgish','default',464,'li'), (347177,'Luxembourgish','default',464,'lb'), (347178,'Malagasy','default',464,'mg'), (347179,'Maori','default',464,'mri'), (347180,'Marathi','default',464,'mr'), (347181,'Montenegrin','default',464,'me'), (347182,'Occitan','default',464,'oci'), (347183,'Oriya','default',464,'ory'), (347184,'Ossetic','default',464,'os'), (347185,'Persian (Afghanistan)','default',464,'fa-af'), (347186,'Rohingya','default',464,'rhg'), (347187,'Romansh Vallader','default',464,'roh'), (347188,'Sakha','default',464,'sah'), (347189,'Sanskrit','default',464,'sa-in'), (347190,'Sardinian','default',464,'srd'), (347191,'Scottish Gaelic','default',464,'gd'), (347192,'Silesian','default',464,'szl'), (347193,'Slovenian','default',464,'sl'), (347194,'Somali','default',464,'so'), (347195,'South Azerbaijani','default',464,'azb'), (347196,'Spanish (Argentina)','default',464,'es-ar'), (347197,'Spanish (Colombia)','default',464,'es-co'), (347198,'Spanish (Mexico)','default',464,'es-mx'), (347199,'Swiss German','default',464,'gsw'), (347200,'Swiss German (Formal)','formal',464,'gsw'), (347201,'Tagalog','default',464,'tl'), (347202,'Tajik','default',464,'tg'), (347203,'Tamazight (Central Atlas)','default',464,'tzm'), (347204,'Tamil','default',464,'ta'), (347205,'Tatar','default',464,'tt'), (347206,'Telugu','default',464,'te'), (347207,'Tibetan','default',464,'bo'), (347208,'Turkmen','default',464,'tuk'), (347209,'Urdu','default',464,'ur'), (347210,'Afrikaans','default',465,'af'), (347211,'Algerian Arabic','default',465,'arq'), (347212,'Amharic','default',465,'am'), (347213,'Aragonese','default',465,'an'), (347214,'Armenian','default',465,'hy'), (347215,'Arpitan','default',465,'frp'), (347216,'Assamese','default',465,'as'), (347217,'Azerbaijani (Turkey)','default',465,'az-tr'), (347218,'Balochi Southern','default',465,'bcc'), (347219,'Belarusian','default',465,'bel'), (347220,'Breton','default',465,'br'), (347221,'Catalan (Balear)','default',465,'bal'), (347222,'Corsican','default',465,'co'), (347223,'Divehi','default',465,'dv'), (347224,'Dzongkha','default',465,'dzo'), (347225,'English (Australia)','default',465,'en-au'), (347226,'English (Canada)','default',465,'en-ca'), (347227,'English (South Africa)','default',465,'en-za'), (347228,'French (Belgium)','default',465,'fr-be'), (347229,'French (Canada)','default',465,'fr-ca'), (347230,'German (Switzerland)','default',465,'de-ch'), (347231,'German (Switzerland) Informal','informal',465,'de-ch'), (347232,'Gujarati','default',465,'gu'), (347233,'Hawaiian','default',465,'haw'), (347234,'Hazaragi','default',465,'haz'), (347235,'Icelandic','default',465,'is'), (347236,'Ido','default',465,'ido'), (347237,'Irish','default',465,'ga'), (347238,'Kabyle','default',465,'kab'), (347239,'Kazakh','default',465,'kk'), (347240,'Khmer','default',465,'km'), (347241,'Kinyarwanda','default',465,'kin'), (347242,'Kurdish (Kurmanji)','default',465,'ku'), (347243,'Lao','default',465,'lo'), (347244,'Latin','default',465,'la'), (347245,'Limburgish','default',465,'li'), (347246,'Luxembourgish','default',465,'lb'), (347247,'Malagasy','default',465,'mg'), (347248,'Maori','default',465,'mri'), (347249,'Marathi','default',465,'mr'), (347250,'Montenegrin','default',465,'me'), (347251,'Occitan','default',465,'oci'), (347252,'Oriya','default',465,'ory'), (347253,'Ossetic','default',465,'os'), (347254,'Persian (Afghanistan)','default',465,'fa-af'), (347255,'Rohingya','default',465,'rhg'), (347256,'Romansh Vallader','default',465,'roh'), (347257,'Sakha','default',465,'sah'), (347258,'Sanskrit','default',465,'sa-in'), (347259,'Sardinian','default',465,'srd'), (347260,'Scottish Gaelic','default',465,'gd'), (347261,'Silesian','default',465,'szl'), (347262,'Slovenian','default',465,'sl'), (347263,'Somali','default',465,'so'), (347264,'South Azerbaijani','default',465,'azb'), (347265,'Spanish (Argentina)','default',465,'es-ar'), (347266,'Spanish (Colombia)','default',465,'es-co'), (347267,'Spanish (Mexico)','default',465,'es-mx'), (347268,'Swiss German','default',465,'gsw'), (347269,'Swiss German (Formal)','formal',465,'gsw'), (347270,'Tagalog','default',465,'tl'), (347271,'Tajik','default',465,'tg'), (347272,'Tamazight (Central Atlas)','default',465,'tzm'), (347273,'Tamil','default',465,'ta'), (347274,'Tatar','default',465,'tt'), (347275,'Telugu','default',465,'te'), (347276,'Tibetan','default',465,'bo'), (347277,'Turkmen','default',465,'tuk'), (347278,'Urdu','default',465,'ur'); /*!40000 ALTER TABLE `translate_translation_sets` ENABLE KEYS */; UNLOCK TABLES; # Dump of table translate_translations # ------------------------------------------------------------ DROP TABLE IF EXISTS `translate_translations`; CREATE TABLE `translate_translations` ( `id` int(10) NOT NULL AUTO_INCREMENT, `original_id` int(10) DEFAULT NULL, `translation_set_id` int(10) DEFAULT NULL, `translation_0` text NOT NULL, `translation_1` text, `translation_2` text, `translation_3` text, `translation_4` text, `translation_5` text, `user_id` int(10) DEFAULT NULL, `status` varchar(20) NOT NULL DEFAULT 'waiting', `date_added` datetime DEFAULT NULL, `date_modified` datetime DEFAULT NULL, `warnings` text, PRIMARY KEY (`id`), KEY `original_id` (`original_id`), KEY `user_id` (`user_id`), KEY `translation_set_id` (`translation_set_id`), KEY `translation_set_id_status` (`translation_set_id`,`status`), KEY `date_added` (`date_added`), KEY `warnings` (`warnings`(1)) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; # Dump of table translate_user_translations_count # ------------------------------------------------------------ DROP TABLE IF EXISTS `translate_user_translations_count`; CREATE TABLE `translate_user_translations_count` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) unsigned NOT NULL, `locale` varchar(255) NOT NULL DEFAULT '', `locale_slug` varchar(255) NOT NULL DEFAULT '', `suggested` int(10) unsigned NOT NULL DEFAULT '0', `accepted` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `user_id` (`user_id`,`locale`,`locale_slug`), KEY `locale` (`locale`,`locale_slug`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; # Dump of table wporg_10_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_10_commentmeta`; CREATE TABLE `wporg_10_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_10_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_10_comments`; CREATE TABLE `wporg_10_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_10_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_10_links`; CREATE TABLE `wporg_10_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_10_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_10_options`; CREATE TABLE `wporg_10_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_10_options` WRITE; /*!40000 ALTER TABLE `wporg_10_options` DISABLE KEYS */; INSERT INTO `wporg_10_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/systems','yes'), (2,'home','http://make.wordpressorg.dev/systems','yes'), (3,'blogname','Make Systems','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/10/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_10_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:2:{i:1461971262;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080212;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:87:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','1','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','','yes'), (132,'_transient_timeout_dirsize_cache','1461904744','no'), (133,'_transient_dirsize_cache','a:1:{s:94:\"/srv/www/wordpress-meta-environment/wordpressorg.dev/public_html/wp-content/blogs.dir/10/files\";a:1:{s:4:\"size\";i:0;}}','no'), (134,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1461944346','no'), (135,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','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:49:\"\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:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress 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: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:14:\"WordPress 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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Apr 2016 03:11:29 +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=4.6-alpha-37307\";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:10:{i:0;a:6:{s:4:\"data\";s:36:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 4.5.1 Maintenance Release\";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:71:\"https://wordpress.org/news/2016/04/wordpress-4-5-1-maintenance-release/\";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, 26 Apr 2016 18:58:18 +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: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:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.5\";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:34:\"https://wordpress.org/news/?p=4269\";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:358:\"After about six million downloads of WordPress 4.5, we are pleased to announce the immediate availability of WordPress 4.5.1, a maintenance release. This release fixes 12 bugs, chief among them a singular class issue that broke sites based on the Twenty Eleven theme, an incompatibility between certain Chrome versions and the visual editor, and an […]\";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:16:\"Adam Silverstein\";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:2134:\"

After about six million downloads of WordPress 4.5, we are pleased to announce the immediate availability of WordPress 4.5.1, a maintenance release.

\n

This release fixes 12 bugs, chief among them a singular class issue that broke sites based on the Twenty Eleven theme, an incompatibility between certain Chrome versions and the visual editor, and an Imagick bug that could break media uploads. This maintenance release fixes a total of 12 bugs in Version 4.5. For more information, see the release notes or consult the list of changes.

\n

Download WordPress 4.5.1 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.5.1.

\n

Thanks to everyone who contributed to 4.5.1:

\n

Aaron Jorbin, Andrea Fercia, Andrew Ozz, Boone Gorges, Dominik Schilling, Felix Arntz, Gary Pendergast, gblsm, Helen Hou-Sandi, Joe McGill, John Blackbourn, Nick Halsey, Pascal Birchler, and Pieter.

\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:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:36:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress 4.5 “Coleman”\";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:43:\"https://wordpress.org/news/2016/04/coleman/\";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, 12 Apr 2016 19:15:32 +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: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:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.5\";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:34:\"https://wordpress.org/news/?p=4203\";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:383:\"Version 4.5 of WordPress, named “Coleman” in honor of jazz saxophonist Coleman Hawkins, is available for download or update in your WordPress dashboard. New features in 4.5 help streamline your workflow, whether you’re writing or building your site. Editing Improvements Inline Linking Stay focused on your writing with a less distracting interface that keeps you in […]\";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:13:\"Mike Schroder\";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:26690:\"

Version 4.5 of WordPress, named “Coleman” in honor of jazz saxophonist Coleman Hawkins, is available for download or update in your WordPress dashboard. New features in 4.5 help streamline your workflow, whether you’re writing or building your site.

\n

\n
\n

Editing Improvements

\n

\"illustration-short-inlinelinks\"

\n

Inline Linking

\n

Stay focused on your writing with a less distracting interface that keeps you in place and allows you to easily link to your content.

\n

\"editing-shortcuts-big\"

\n

Formatting Shortcuts

\n

Do you enjoy using formatting shortcuts for lists and headings? Now they’re even more useful, with horizontal lines and <code>.

\n
\n

Customization Improvements

\n

\"illustration-short-responsive-preview\"

\n

Live Responsive Previews

\n

Make sure your site looks great on all screens! Preview mobile, tablet, and desktop views directly in the customizer.

\n

\n

Custom Logos

\n

Themes can now support logos for your business or brand. Try it out with Twenty Sixteen and Twenty Fifteen in the Site Identity section of the customizer.

\n
\n

Under the Hood

\n
\n
\n

Smart Image Resizing

\n

Generated images now load up to 50% faster with no noticeable quality loss. It’s really cool.

\n
\n
\n

Selective Refresh

\n

The customizer now supports a comprehensive framework for rendering parts of the preview without rewriting your PHP code in JavaScript.

\n
\n
\n

Script Loader Improvements

\n

Better support has been added for script header/footer dependencies. New wp_add_inline_script() enables adding extra code to registered scripts.

\n

Better Embed Templates

\n

Embed templates have been split into parts and can be directly overridden by themes via the template hierarchy.

\n

JavaScript Library Updates

\n

jQuery 1.12.3, jQuery Migrate 1.4.0, Backbone 1.2.3, and Underscore 1.8.3 are bundled.

\n
\n
\n
\n
\n

The Crew

\n

\"MikeThis release was led by Mike Schroder, backed up by Adam Silverstein as Release Deputy, Mel Choyce as Release Design Lead, and the help of these fine individuals. There are 298 contributors with props in this release. Pull up some Coleman Hawkins on your music service of choice, and check out some of their profiles:

\n@mercime, Aaron D. Campbell, Aaron Edwards, Aaron Hockley, Aaron Jorbin, Abiral Neupane, Ahmad Awais, aidanlane, Alice Brosey, Amanda Rush, Andrea Fercia, Andrea Gandino, Andrew Nacin, Andrew Ozz, Andrew Rockwell, Andy, Ankit K Gupta, Anton Timmermans, apaliku, Aram Zucker-Scharff, ash.matadeen, Ashok Kumar Nath, BandonRandon, Barry Ceelen, Ben Dunkle, berengerzyla, Bernhard Riedl, Bhushan S. Jawle, Birgir Erlendsson (birgire), Boone B. Gorges, Brad Williams, Brady Vercher, Brandon Allen, Brandon Hubbard, Brandon Kraft, Brian Krogsgard, Bruno Borges, Callum Macdonald, Cami Kaos, Chandra Patel, Charles Fulton, Chetan Chauhan, Chouby, ChriCo, Chris Christoff, Chris Mok, christophherr, ckoerner, Claudio Sanches, Compute, coreymcollins, d4z_c0nf, Daisuke Takahashi, danhgilmore, Daniel Bachhuber, Daniel Bailey, Daniel Jalkut (Red Sweater), Daniel Llewellyn, Daniele Scasciafratte, danielpataki, Danny van Kooten, Dave Clements, David A. Kennedy, David Brumbaugh, David Herrera, David Newton, David Shanske, Davide \'Folletto\' Casali, Denis de Bernardy, Dennis Ploetner, Derek Herman, Dion Hulse, dmsnell, Dominik Schilling, Dossy Shiobara, Dotan Cohen, Dreb Bits, Drew Jaynes, duaneblake, Dzikri Aziz, Elio Rivero, Ella Iseulde Van Dorpe, Emerson Maningo, enej, Eric Andrew Lewis, Eric Binnion, Eric Daams, Erick Hitter, Evan Herman, Fabien Quatravaux, faishal, fantasyworld, Felix Arntz, finnj, firebird75, Fredrik Forsmo, fusillicode, Gary Jones, Gary Pendergast, gblsm, George Stephanis, Giuseppe Mamone, Giustino Borzacchiello, Grant Palin, groovecoder, Guido Scialfa, Gustavo Bordoni, hakre, Helen Hou-Sandí, Henry Wright, Hinaloe, Hugh Lashbrooke, Hugo Baeta, Iain Poulson, Ignacio Cruz Moreno, imath, Ionut Staicu, Ivan Kristianto, J.D. Grimes, jadpm, James DiGioia, Jason, Jasper de Groot, Jeffrey de Wit, Jeffrey Schutzman, Jennifer M. Dodd, Jeremy Felt, Jeremy Herve, Jeremy Pry, Jesin A, Jess G., Joan Boluda, Joe Hoyle, Joe McGill, joelerr, John Blackbourn, John James Jacoby, JohnnyPea, Jonathan Brinley, Jonny Harris, Jory Hogeveen, Joseph Fusco, Josh Levinson, Josh Pollock, jrchamp, jrf, Juanfra Aldasoro, Juhi Saxena, Julio Potier, katieburch, Kelly Dwan, Kevin Hagerty, Kiran Potphode, Kirk Wight, Kite, kjbenk, Konstantin Kovshenin, Konstantin Obenland, Konstantinos Kouratoras, KrissieV, Lance Willett, leemon, Lew Ayotte, Liam Dempsey, Luan Ramos, luciole135, Lukas Pawlik, Lutz Schröer, madvic, Marco Chiesi, Marin Atanasov, Mario Peshev, Mark Barnes, Mark Jaquith, Mark Uraine, Marko Heijnen, Martin Burke, Matt Felten, Matt Mullenweg, Matt Wiebe, MattGeri, maweder, Mayo Moriyama, mcapybara, Mehul Kaklotar, Meitar, mensmaximus, Michael Arestad, michalzuber, micropat, Mika Epstein, Mike Glendinning, Mike Hansen, Mike Jolley, Milan Dinić, Morgan Estes, moto hachi ( mt8.biz ), Mr Papa, mwidmann, nexurium, Niall Kennedy, Nic Ford, Nick Halsey , Nilambar Sharma, Ninos, oaron, overclokk, Pascal Birchler, Pat O\'Brien, Paul Bearne, Paul de Wouters, Payton Swick, Perez Labs, Pete Nelson, Peter Wilson, petermolnar, Petter Walbø Johnsgård, Pieter, Pippin Williamson, Pirate Dunbar, prettyboymp, Profforg, programmin, Rachel Baker, rahal.aboulfeth, Rami Yushuvaev, Rastislav Lamos, Ricky Lee Whittemore, Ritesh Patel, rob, Roger Chen, RomSocial, Ruud Laan, Ryan Boren, Ryan Kienstra, Ryan McCue, Ryan Welcher, Sagar Jadhav, Sal Ferrarello, salvoaranzulla, Sam Hotchkiss, Sara Rosso, Scott Arciszewski, Scott Kingsley Clark, Scott Reilly, Scott Taylor, scottbrownconsulting, scribu, Sebastian Pisula, Sergej Müller, Sergey Biryukov, Shane, Shinichi Nishikawa, Sidati, Siobhan, sky, slushman, smerriman, stephanethomas, Stephen Edgar, Stephen Harris, Steve Grunwell, Steven Word, Store Locator Plus, Subharanjan, Sudar Muthu, Sumit Singh, Taco Verdonschot, tahteche, Takashi Irie, Takayuki Miyoshi, Tammie Lister, tharsheblows, theMikeD, thomaswm, Timothy Jacobs, timplunkett, tmuikku, Toni Viemerö, Toro_Unit (Hiroshi Urabe), Tracy Levesque, Tran Ngoc Tuan Anh, Travis Smith, Ty Carlson, Ulrich, Utkarsh, vhomenko, virgodesign, vlad.olaru, voldemortensen, vtieu, webaware, Wesley Elfring, Weston Ruter, WisdmLabs, WP Delighter, wp-architect, xavortm, yetAnotherDaniel, and zinigor.\n

 

\n

Special thanks go to Siobhan McKeown for producing the release video and Jack Lenox for the voice-over.

\n

Finally, thanks to all of the contributors who provided translations for the release. WordPress 4.5 comes fully translated into 44 languages and the release video has been translated into 32 languages!

\n

If you want to follow along or help out, check out Make WordPress and our core development blog. Thanks for choosing WordPress. See you soon for version 4.6!

\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:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:39:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 4.5 RC2\";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/2016/04/wordpress-4-5-rc2/\";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:\"Sun, 10 Apr 2016 05:14:28 +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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.5\";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:34:\"https://wordpress.org/news/?p=4186\";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:350:\"The second release candidate for WordPress 4.5 is now available. We’ve made 91 changes since the first release candidate. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.5 on Tuesday, April 12, but we need your help […]\";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:13:\"Mike Schroder\";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:3044:\"

The second release candidate for WordPress 4.5 is now available.

\n

We’ve made 91 changes since the first release candidate. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.5 on Tuesday, April 12, but we need your help to get there.

\n

If you haven’t tested 4.5 yet, now is the time!

\n

Think you’ve found a bug? Please post to the Alpha/Beta support forum. If any known issues come up, you’ll be able to find them here.

\n

To test WordPress 4.5, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip).

\n

For more information about what’s new in version 4.5, check out the Beta 1Beta 2, Beta 3, and Beta 4 blog posts.

\n

Developers, please test your plugins and themes against WordPress 4.5 and update your plugin’s Tested up to version in the readme to 4.5. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.

\n

Polyglots, strings are now hard frozen, including the About Page, so you are clear to translate!

\n

A few changes of note since the first release candidate:

\n\n

Be sure to follow along the core development blog, where you can find the Field Guide for 4.5.

\n

It’s great fun to test
\nEnjoyment in another
\nRelease Candidate

\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:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:33:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Contributor Weekend: Global WordPress Translation Day\";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:88:\"https://wordpress.org/news/2016/04/contributor-weekend-global-wordpress-translation-day/\";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:\"Thu, 07 Apr 2016 21:04:39 +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:1:{i:0;a:5:{s:4:\"data\";s:9:\"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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4191\";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:378:\"Global WordPress Translation Day is a one-day contributor initiative organised by the WordPress project’s Polyglots team that is dedicated to helping new contributors who would like to translate WordPress in one of the 160 languages WordPress is available in. Global WordPress Translation Day will be on Sunday, April 24th, starting at 0:00 UTC and will go on for […]\";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:7:\"Josepha\";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:3069:\"

Global WordPress Translation Day is a one-day contributor initiative organised by the WordPress project’s Polyglots team that is dedicated to helping new contributors who would like to translate WordPress in one of the 160 languages WordPress is available in.

\n

Global WordPress Translation Day will be on Sunday, April 24th, starting at 0:00 UTC and will go on for 24 hours covering all time zones.

\n

What are we doing?

\n\n

If you organise a local meetup, why not organise a contributor day for translating in your language?

\n

Join us! Read about the initiative and sign up as an organiser.

\n

Can I get involved if I only speak English?

\n

Yes! Even if you only speak English, it would be great to get involved and check out some of the English locale variants – English as spoken in the United Kingdom, Canada, New Zealand, Australia, South Africa. English has many variants across the globe and you can learn about the differences and why it’s important that users have the option to choose a variant during some of our sessions. And if you’re in a funky mood, you can give translating the interface into Emoji a try! Yes, we have a WordPress in Emoji locale!

\n

Questions?

\n

The polyglots team and the event organisers hang out in #Polyglots in Slack. They will gladly help you out.

\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:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:39:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.5 Release Candidate\";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:67:\"https://wordpress.org/news/2016/03/wordpress-4-5-release-candidate/\";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:\"Thu, 24 Mar 2016 03:50:27 +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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.5\";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:34:\"https://wordpress.org/news/?p=4165\";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:344:\"The release candidate for WordPress 4.5 is now available. We’ve made 49 changes since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.5 on Tuesday, April 12, but we need your help […]\";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:13:\"Mike Schroder\";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:2251:\"

The release candidate for WordPress 4.5 is now available.

\n

We’ve made 49 changes since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.5 on Tuesday, April 12, but we need your help to get there.

\n

If you haven’t tested 4.5 yet, now is the time!

\n

Think you’ve found a bug? Please post to the Alpha/Beta support forum. If any known issues come up, you’ll be able to find them here.

\n

To test WordPress 4.5, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip).

\n

For more information about what’s new in version 4.5, check out the Beta 1Beta 2, Beta 3, and Beta 4 blog posts.

\n

Developers, please test your plugins and themes against WordPress 4.5 and update your plugin’s Tested up to version in the readme to 4.5 before next week. If you find compatibility problems, we never want to break things, so please be sure to post to the support forums so we can figure those out before the final release.

\n

Be sure to follow along the core development blog, where we’ll continue to post notes for developers for 4.5.

\n

Free as in Freedom
\nIt is WordPress 4.5
\nAlso free as in beer

\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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:42:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.5 Beta 4\";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:56:\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-4/\";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:\"Thu, 17 Mar 2016 04:30:25 +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:4:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.5\";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:3;a:5:{s:4:\"data\";s:4:\"beta\";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:34:\"https://wordpress.org/news/?p=4155\";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:329:\"WordPress 4.5 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";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:13:\"Mike Schroder\";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:3392:\"

WordPress 4.5 Beta 4 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

For more information on what’s new in 4.5, check out the Beta 1Beta 2, and Beta 3 blog posts, along with in-depth field guides on make/core. This is the final planned beta of WordPress 4.5, with a release candidate scheduled for next week.

\n

Some of the changes in Beta 4 include:

\n\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on the WordPress Trac. There, you can also find a list of known bugs.

\n

Happy testing!

\n

Llegamos al fin
\ndel tiempo pa’ beta
\n¡Pruébalo Ahora!

\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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:42:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.5 Beta 3\";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:56:\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-3/\";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:\"Thu, 10 Mar 2016 06:59:26 +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:4:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.5\";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:3;a:5:{s:4:\"data\";s:4:\"beta\";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:34:\"https://wordpress.org/news/?p=4128\";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:329:\"WordPress 4.5 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";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:13:\"Mike Schroder\";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:3631:\"

WordPress 4.5 Beta 3 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

For more information on what’s new in 4.5, check out the Beta 1 and Beta 2 blog posts, along with in-depth field guides on make/core. Some of the fixes in Beta 3 include:

\n\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on the WordPress Trac. There, you can also find a list of known bugs.

\n

Happy testing!

\n

Beta one, two, three
\n
so many bugs have been fixed
\n
Closer now; four, five.

\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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:39:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.5 Beta 2\";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:56:\"https://wordpress.org/news/2016/03/wordpress-4-5-beta-2/\";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:\"Thu, 03 Mar 2016 04:55:35 +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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.5\";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:34:\"https://wordpress.org/news/?p=4116\";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:329:\"WordPress 4.5 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";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:13:\"Mike Schroder\";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:2370:\"

WordPress 4.5 Beta 2 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

For more information on what’s new in 4.5, check out the Beta 1 blog post. Some of the fixes in Beta 2 include:

\n\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on the WordPress Trac. There, you can also find a list of known bugs.

\n

Happy testing!

\n

It’s peer pressure time
\nTesting: all cool kids do it
\nHelp find ALL the bugs!

\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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:33:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Contributor Weekend: One-Hour Video\";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:70:\"https://wordpress.org/news/2016/02/contributor-weekend-one-hour-video/\";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:\"Fri, 26 Feb 2016 19:36:30 +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:1:{i:0;a:5:{s:4:\"data\";s:9:\"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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4112\";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:349:\"It’s time for our second global contributor weekend, and this time we’re focusing on the video team. For this month’s challenge, in honor of it being our second month, you have two options for how you can participate! The challenge for this month overall is to work with at least one hour worth of WordCamp video, which […]\";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:3:\"Jen\";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:2590:\"

It’s time for our second global contributor weekend, and this time we’re focusing on the video team. For this month’s challenge, in honor of it being our second month, you have two options for how you can participate! The challenge for this month overall is to work with at least one hour worth of WordCamp video, which you can do by either creating subtitles or editing the video file in preparation for upload to WordPress.tv.

\n

One of the great things about contributing to the video team is that you get to learn so much, since all the work basically involves watching WordCamp presentation videos. Subtitling is a doubly important need, as it is needed to make all those WordCamp videos accessible to people who are deaf or hard of hearing and can’t listen to the audio track, as well as making it possible for the videos to be consumed (in some cases after subtitle translation) by people who speak different languages.

\n

The challenge will last from Saturday, February 27, 2016 through Sunday, February 28, 2016, and the results will be reviewed afterward by members of the video team. If you enjoy the challenge, the video team would be very excited to welcome you into their ranks! Interested? Here’s how to participate.

\n

What About Last Month?

\n

In January, the inaugural contributor weekend was focused on the support forums. That challenge had 73 participants, including 10 people who provided 20 or more correct answers to open support threads, thereby winning the challenge. Congratulations to Harris Anastasiadis, Ahmad Awais, Takis Bouyouris, Phil Erb, Eric Gunawan, Jackie McBride, Diana Nichols, Kostas Nicolacopoulos, Juhi Saxena, and Sarah Semark! To them and to everyone else who participated, thank you so much for your efforts. Every answer helps, and over the course of this contributor weekend, these amazing volunteers responded to 800 support threads. The support forums queue of requests with no replies went from 28 pages to 7 pages — that was an incredible success, of which every participant was a part!

\n

So head on over to see how to get involved with the one-hour video challenge this weekend, and help us make next month’s post just as impressive! \"?\"

\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:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:41:\"\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:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.5 Beta 1\";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:56:\"https://wordpress.org/news/2016/02/wordpress-4-5-beta-1/\";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:\"Thu, 25 Feb 2016 03:27:13 +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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.5\";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:34:\"https://wordpress.org/news/?p=4080\";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:329:\"WordPress 4.5 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";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:\"enclosure\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:62:\"https://wordpress.org/news/files/2016/02/wp-inline-linking.mp4\";s:6:\"length\";s:6:\"409018\";s:4:\"type\";s:9:\"video/mp4\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:62:\"https://wordpress.org/news/files/2016/02/wp-editor-updates.mp4\";s:6:\"length\";s:6:\"231953\";s:4:\"type\";s:9:\"video/mp4\";}}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:13:\"Mike Schroder\";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:5453:\"

WordPress 4.5 Beta 1 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.5, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

WordPress 4.5 is slated for release on April 12, but to get there, we need your help testing what we have been working on, including:

\n\n

 

\n

There have been changes for developers to explore as well:

\n\n

If you want a more in-depth view of what major changes have made it into 4.5, check out all 4.5-tagged posts on the main development blog, or check out a list of everything that’s changed.

\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on the WordPress Trac. There, you can also find a list of known bugs.

\n

Happy testing!

\n

A wonderful day
\nis one that brings new WordPress
\nFour Five Beta One

\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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";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:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";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:\"type\";i:128;s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 29 Apr 2016 03:39:05 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 27 Apr 2016 03:11:29 GMT\";s:4:\"etag\";s:34:\"\"009f946d72fc95ca72c48535f4e29e52\"\";s:4:\"link\";s:63:\"; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";a:2:{i:0;s:10:\"SAMEORIGIN\";i:1;s:10:\"SAMEORIGIN\";}}s:5:\"build\";s:14:\"20150904224515\";}','no'), (136,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1461944346','no'), (137,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1461901146','no'), (138,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1461944346','no'), (139,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','

RSS Error: A feed could not be found at https://planet.wordpress.org/feed/. A feed with an invalid mime type may fall victim to this error, or SimplePie was unable to auto-discover it.. Use force_feed() if you are certain this URL is a real feed.

','no'), (140,'post_count','0','yes'); /*!40000 ALTER TABLE `wporg_10_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_10_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_10_postmeta`; CREATE TABLE `wporg_10_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_10_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_10_posts`; CREATE TABLE `wporg_10_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_10_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_10_term_relationships`; CREATE TABLE `wporg_10_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_10_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_10_term_taxonomy`; CREATE TABLE `wporg_10_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_10_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_10_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_10_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,0); /*!40000 ALTER TABLE `wporg_10_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_10_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_10_termmeta`; CREATE TABLE `wporg_10_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_10_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_10_terms`; CREATE TABLE `wporg_10_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_10_terms` WRITE; /*!40000 ALTER TABLE `wporg_10_terms` DISABLE KEYS */; INSERT INTO `wporg_10_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_10_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_11_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_11_commentmeta`; CREATE TABLE `wporg_11_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_11_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_11_comments`; CREATE TABLE `wporg_11_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_11_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_11_links`; CREATE TABLE `wporg_11_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_11_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_11_options`; CREATE TABLE `wporg_11_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_11_options` WRITE; /*!40000 ALTER TABLE `wporg_11_options` DISABLE KEYS */; INSERT INTO `wporg_11_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/test','yes'), (2,'home','http://make.wordpressorg.dev/test','yes'), (3,'blogname','Make Test','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/11/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_11_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900740;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971263;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080214;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_11_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_11_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_11_postmeta`; CREATE TABLE `wporg_11_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_11_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_11_postmeta` DISABLE KEYS */; INSERT INTO `wporg_11_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_11_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_11_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_11_posts`; CREATE TABLE `wporg_11_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_11_posts` WRITE; /*!40000 ALTER TABLE `wporg_11_posts` DISABLE KEYS */; INSERT INTO `wporg_11_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,'2014-12-08 21:59:50','2014-12-08 21:59:50','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 21:59:50','2014-12-08 21:59:50','',0,'http://make.wordpressorg.dev/test/?p=1',0,'post','',1), (2,1,'2014-12-08 21:59:50','2014-12-08 21:59:50','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 21:59:50','2014-12-08 21:59:50','',0,'http://make.wordpressorg.dev/test/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:44','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:44','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/test/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_11_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_11_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_11_term_relationships`; CREATE TABLE `wporg_11_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_11_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_11_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_11_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_11_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_11_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_11_term_taxonomy`; CREATE TABLE `wporg_11_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_11_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_11_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_11_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_11_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_11_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_11_termmeta`; CREATE TABLE `wporg_11_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_11_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_11_terms`; CREATE TABLE `wporg_11_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_11_terms` WRITE; /*!40000 ALTER TABLE `wporg_11_terms` DISABLE KEYS */; INSERT INTO `wporg_11_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_11_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_115_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_115_commentmeta`; CREATE TABLE `wporg_115_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_115_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_115_comments`; CREATE TABLE `wporg_115_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_115_comments` WRITE; /*!40000 ALTER TABLE `wporg_115_comments` DISABLE KEYS */; INSERT INTO `wporg_115_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,'Mr WordPress','','http://wordpressorg.dev/','','2014-12-08 22:17:04','2014-12-08 22:17:04','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_115_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_115_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_115_links`; CREATE TABLE `wporg_115_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_115_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_115_options`; CREATE TABLE `wporg_115_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_115_options` WRITE; /*!40000 ALTER TABLE `wporg_115_options` DISABLE KEYS */; INSERT INTO `wporg_115_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://global.wordpressorg.dev/','yes'), (2,'home','http://global.wordpressorg.dev/','yes'), (3,'blogname','Global','yes'), (4,'blogdescription','Just another WordPressorg.dev Sites site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','twentyfifteen','yes'), (42,'stylesheet','twentyfifteen','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_37_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:5:{i:1461913440;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1461932284;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1461932744;a:1:{s:21:\"update_network_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1461975943;a:1:{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:7:\"version\";i:2;}','yes'), (101,'_transient_random_seed','f545a1d784cad5dc66a0b00ebeb1262a','yes'), (117,'_transient_is_multi_author','0','yes'), (118,'_transient_twentyfifteen_categories','1','yes'), (120,'db_upgraded','','yes'), (121,'wporg_115_user_roles','a:2:{s:18:\"translation_editor\";a:2:{s:4:\"name\";s:18:\"Translation Editor\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:26:\"general_translation_editor\";a:2:{s:4:\"name\";s:26:\"General Translation Editor\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;s:26:\"manage_translation_editors\";b:1;}}}','yes'), (156,'rewrite_rules','a:90:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=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:16:\".*wp-signup.php$\";s:21:\"index.php?signup=true\";s:18:\".*wp-activate.php$\";s:23:\"index.php?activate=true\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (172,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (173,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (174,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (175,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (177,'finished_splitting_shared_terms','1','yes'), (178,'site_icon','0','yes'), (179,'medium_large_size_w','768','yes'), (180,'medium_large_size_h','0','yes'); /*!40000 ALTER TABLE `wporg_115_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_115_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_115_postmeta`; CREATE TABLE `wporg_115_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_115_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_115_postmeta` DISABLE KEYS */; INSERT INTO `wporg_115_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_115_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_115_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_115_posts`; CREATE TABLE `wporg_115_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_115_posts` WRITE; /*!40000 ALTER TABLE `wporg_115_posts` DISABLE KEYS */; INSERT INTO `wporg_115_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,'2014-12-08 22:17:04','2014-12-08 22:17:04','Welcome to WordPressorg.dev Sites. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:17:04','2014-12-08 22:17:04','',0,'http://wordpressorg.dev/global/?p=1',0,'post','',1), (2,1,'2014-12-08 22:17:04','2014-12-08 22:17:04','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:17:04','2014-12-08 22:17:04','',0,'http://wordpressorg.dev/global/?page_id=2',0,'page','',0), (3,1,'2014-12-10 00:25:44','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-10 00:25:44','0000-00-00 00:00:00','',0,'http://global.wordpressorg.dev/?p=3',0,'post','',0), (4,1,'2014-12-10 00:26:34','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-10 00:26:34','0000-00-00 00:00:00','',0,'http://global.wordpressorg.dev/?p=4',0,'post','',0); /*!40000 ALTER TABLE `wporg_115_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_115_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_115_term_relationships`; CREATE TABLE `wporg_115_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_115_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_115_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_115_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_115_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_115_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_115_term_taxonomy`; CREATE TABLE `wporg_115_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_115_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_115_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_115_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_115_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_115_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_115_termmeta`; CREATE TABLE `wporg_115_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_115_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_115_terms`; CREATE TABLE `wporg_115_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_115_terms` WRITE; /*!40000 ALTER TABLE `wporg_115_terms` DISABLE KEYS */; INSERT INTO `wporg_115_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_115_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_14_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_14_commentmeta`; CREATE TABLE `wporg_14_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_14_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_14_comments`; CREATE TABLE `wporg_14_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_14_comments` WRITE; /*!40000 ALTER TABLE `wporg_14_comments` DISABLE KEYS */; INSERT INTO `wporg_14_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:00:04','2014-12-08 22:00:04','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_14_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_14_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_14_links`; CREATE TABLE `wporg_14_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_14_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_14_options`; CREATE TABLE `wporg_14_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_14_options` WRITE; /*!40000 ALTER TABLE `wporg_14_options` DISABLE KEYS */; INSERT INTO `wporg_14_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/accessibility','yes'), (2,'home','http://make.wordpressorg.dev/accessibility','yes'), (3,'blogname','Make Accessibility','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/12/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_12_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900739;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971264;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080216;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_14_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_14_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_14_postmeta`; CREATE TABLE `wporg_14_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_14_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_14_postmeta` DISABLE KEYS */; INSERT INTO `wporg_14_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_14_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_14_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_14_posts`; CREATE TABLE `wporg_14_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_14_posts` WRITE; /*!40000 ALTER TABLE `wporg_14_posts` DISABLE KEYS */; INSERT INTO `wporg_14_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,'2014-12-08 22:00:04','2014-12-08 22:00:04','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:00:04','2014-12-08 22:00:04','',0,'http://make.wordpressorg.dev/accessibility/?p=1',0,'post','',1), (2,1,'2014-12-08 22:00:04','2014-12-08 22:00:04','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:00:04','2014-12-08 22:00:04','',0,'http://make.wordpressorg.dev/accessibility/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:44','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:44','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/accessibility/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_14_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_14_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_14_term_relationships`; CREATE TABLE `wporg_14_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_14_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_14_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_14_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_14_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_14_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_14_term_taxonomy`; CREATE TABLE `wporg_14_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_14_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_14_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_14_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_14_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_14_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_14_termmeta`; CREATE TABLE `wporg_14_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_14_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_14_terms`; CREATE TABLE `wporg_14_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_14_terms` WRITE; /*!40000 ALTER TABLE `wporg_14_terms` DISABLE KEYS */; INSERT INTO `wporg_14_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_14_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_15_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_15_commentmeta`; CREATE TABLE `wporg_15_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_15_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_15_comments`; CREATE TABLE `wporg_15_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_15_comments` WRITE; /*!40000 ALTER TABLE `wporg_15_comments` DISABLE KEYS */; INSERT INTO `wporg_15_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:00:12','2014-12-08 22:00:12','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_15_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_15_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_15_links`; CREATE TABLE `wporg_15_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_15_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_15_options`; CREATE TABLE `wporg_15_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_15_options` WRITE; /*!40000 ALTER TABLE `wporg_15_options` DISABLE KEYS */; INSERT INTO `wporg_15_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/docs','yes'), (2,'home','http://make.wordpressorg.dev/docs','yes'), (3,'blogname','Make Docs','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/13/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_13_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900739;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971266;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080218;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_15_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_15_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_15_postmeta`; CREATE TABLE `wporg_15_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_15_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_15_postmeta` DISABLE KEYS */; INSERT INTO `wporg_15_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_15_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_15_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_15_posts`; CREATE TABLE `wporg_15_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_15_posts` WRITE; /*!40000 ALTER TABLE `wporg_15_posts` DISABLE KEYS */; INSERT INTO `wporg_15_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,'2014-12-08 22:00:12','2014-12-08 22:00:12','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:00:12','2014-12-08 22:00:12','',0,'http://make.wordpressorg.dev/docs/?p=1',0,'post','',1), (2,1,'2014-12-08 22:00:12','2014-12-08 22:00:12','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:00:12','2014-12-08 22:00:12','',0,'http://make.wordpressorg.dev/docs/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:46','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:46','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/docs/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_15_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_15_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_15_term_relationships`; CREATE TABLE `wporg_15_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_15_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_15_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_15_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_15_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_15_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_15_term_taxonomy`; CREATE TABLE `wporg_15_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_15_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_15_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_15_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_15_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_15_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_15_termmeta`; CREATE TABLE `wporg_15_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_15_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_15_terms`; CREATE TABLE `wporg_15_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_15_terms` WRITE; /*!40000 ALTER TABLE `wporg_15_terms` DISABLE KEYS */; INSERT INTO `wporg_15_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_15_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_16_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_16_commentmeta`; CREATE TABLE `wporg_16_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_16_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_16_comments`; CREATE TABLE `wporg_16_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_16_comments` WRITE; /*!40000 ALTER TABLE `wporg_16_comments` DISABLE KEYS */; INSERT INTO `wporg_16_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:00:20','2014-12-08 22:00:20','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_16_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_16_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_16_links`; CREATE TABLE `wporg_16_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_16_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_16_options`; CREATE TABLE `wporg_16_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_16_options` WRITE; /*!40000 ALTER TABLE `wporg_16_options` DISABLE KEYS */; INSERT INTO `wporg_16_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/suggestions','yes'), (2,'home','http://make.wordpressorg.dev/suggestions','yes'), (3,'blogname','Make Suggestions','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/14/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_14_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900738;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971267;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080220;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_16_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_16_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_16_postmeta`; CREATE TABLE `wporg_16_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_16_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_16_postmeta` DISABLE KEYS */; INSERT INTO `wporg_16_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_16_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_16_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_16_posts`; CREATE TABLE `wporg_16_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_16_posts` WRITE; /*!40000 ALTER TABLE `wporg_16_posts` DISABLE KEYS */; INSERT INTO `wporg_16_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,'2014-12-08 22:00:20','2014-12-08 22:00:20','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:00:20','2014-12-08 22:00:20','',0,'http://make.wordpressorg.dev/suggestions/?p=1',0,'post','',1), (2,1,'2014-12-08 22:00:20','2014-12-08 22:00:20','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:00:20','2014-12-08 22:00:20','',0,'http://make.wordpressorg.dev/suggestions/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:47','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:47','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/suggestions/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_16_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_16_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_16_term_relationships`; CREATE TABLE `wporg_16_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_16_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_16_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_16_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_16_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_16_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_16_term_taxonomy`; CREATE TABLE `wporg_16_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_16_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_16_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_16_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_16_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_16_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_16_termmeta`; CREATE TABLE `wporg_16_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_16_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_16_terms`; CREATE TABLE `wporg_16_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_16_terms` WRITE; /*!40000 ALTER TABLE `wporg_16_terms` DISABLE KEYS */; INSERT INTO `wporg_16_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_16_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_17_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_17_commentmeta`; CREATE TABLE `wporg_17_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_17_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_17_comments`; CREATE TABLE `wporg_17_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_17_comments` WRITE; /*!40000 ALTER TABLE `wporg_17_comments` DISABLE KEYS */; INSERT INTO `wporg_17_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:00:28','2014-12-08 22:00:28','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_17_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_17_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_17_links`; CREATE TABLE `wporg_17_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_17_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_17_options`; CREATE TABLE `wporg_17_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_17_options` WRITE; /*!40000 ALTER TABLE `wporg_17_options` DISABLE KEYS */; INSERT INTO `wporg_17_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/plugins','yes'), (2,'home','http://make.wordpressorg.dev/plugins','yes'), (3,'blogname','Make Plugins','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/15/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_15_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900738;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971267;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080226;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_17_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_17_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_17_postmeta`; CREATE TABLE `wporg_17_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_17_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_17_postmeta` DISABLE KEYS */; INSERT INTO `wporg_17_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_17_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_17_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_17_posts`; CREATE TABLE `wporg_17_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_17_posts` WRITE; /*!40000 ALTER TABLE `wporg_17_posts` DISABLE KEYS */; INSERT INTO `wporg_17_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,'2014-12-08 22:00:28','2014-12-08 22:00:28','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:00:28','2014-12-08 22:00:28','',0,'http://make.wordpressorg.dev/plugins/?p=1',0,'post','',1), (2,1,'2014-12-08 22:00:28','2014-12-08 22:00:28','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:00:28','2014-12-08 22:00:28','',0,'http://make.wordpressorg.dev/plugins/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:48','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:48','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/plugins/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_17_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_17_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_17_term_relationships`; CREATE TABLE `wporg_17_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_17_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_17_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_17_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_17_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_17_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_17_term_taxonomy`; CREATE TABLE `wporg_17_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_17_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_17_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_17_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_17_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_17_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_17_termmeta`; CREATE TABLE `wporg_17_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_17_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_17_terms`; CREATE TABLE `wporg_17_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_17_terms` WRITE; /*!40000 ALTER TABLE `wporg_17_terms` DISABLE KEYS */; INSERT INTO `wporg_17_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_17_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_170_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_170_commentmeta`; CREATE TABLE `wporg_170_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_170_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_170_comments`; CREATE TABLE `wporg_170_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_170_comments` WRITE; /*!40000 ALTER TABLE `wporg_170_comments` DISABLE KEYS */; INSERT INTO `wporg_170_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:17:14','2014-12-08 22:17:14','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_170_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_170_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_170_links`; CREATE TABLE `wporg_170_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_170_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_170_options`; CREATE TABLE `wporg_170_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_170_options` WRITE; /*!40000 ALTER TABLE `wporg_170_options` DISABLE KEYS */; INSERT INTO `wporg_170_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/chat','yes'), (2,'home','http://make.wordpressorg.dev/chat','yes'), (3,'blogname','Make Chat','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/38/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_38_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900729;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461968656;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080256;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_170_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_170_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_170_postmeta`; CREATE TABLE `wporg_170_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_170_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_170_postmeta` DISABLE KEYS */; INSERT INTO `wporg_170_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_170_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_170_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_170_posts`; CREATE TABLE `wporg_170_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_170_posts` WRITE; /*!40000 ALTER TABLE `wporg_170_posts` DISABLE KEYS */; INSERT INTO `wporg_170_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,'2014-12-08 22:17:14','2014-12-08 22:17:14','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:17:14','2014-12-08 22:17:14','',0,'http://make.wordpressorg.dev/chat/?p=1',0,'post','',1), (2,1,'2014-12-08 22:17:14','2014-12-08 22:17:14','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:17:14','2014-12-08 22:17:14','',0,'http://make.wordpressorg.dev/chat/?page_id=2',0,'page','',0), (3,1,'2014-12-08 22:24:17','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 22:24:17','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/chat/?p=3',0,'post','',0), (4,1,'2014-12-08 23:08:05','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:08:05','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/chat/?p=4',0,'post','',0); /*!40000 ALTER TABLE `wporg_170_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_170_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_170_term_relationships`; CREATE TABLE `wporg_170_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_170_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_170_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_170_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_170_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_170_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_170_term_taxonomy`; CREATE TABLE `wporg_170_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_170_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_170_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_170_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_170_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_170_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_170_termmeta`; CREATE TABLE `wporg_170_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_170_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_170_terms`; CREATE TABLE `wporg_170_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_170_terms` WRITE; /*!40000 ALTER TABLE `wporg_170_terms` DISABLE KEYS */; INSERT INTO `wporg_170_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_170_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_18_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_18_commentmeta`; CREATE TABLE `wporg_18_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_18_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_18_comments`; CREATE TABLE `wporg_18_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_18_comments` WRITE; /*!40000 ALTER TABLE `wporg_18_comments` DISABLE KEYS */; INSERT INTO `wporg_18_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:03:20','2014-12-08 22:03:20','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_18_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_18_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_18_links`; CREATE TABLE `wporg_18_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_18_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_18_options`; CREATE TABLE `wporg_18_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_18_options` WRITE; /*!40000 ALTER TABLE `wporg_18_options` DISABLE KEYS */; INSERT INTO `wporg_18_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/architecture','yes'), (2,'home','http://make.wordpressorg.dev/architecture','yes'), (3,'blogname','Make Architecture','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/18/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_18_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900738;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971268;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080228;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_18_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_18_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_18_postmeta`; CREATE TABLE `wporg_18_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_18_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_18_postmeta` DISABLE KEYS */; INSERT INTO `wporg_18_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_18_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_18_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_18_posts`; CREATE TABLE `wporg_18_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_18_posts` WRITE; /*!40000 ALTER TABLE `wporg_18_posts` DISABLE KEYS */; INSERT INTO `wporg_18_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,'2014-12-08 22:03:20','2014-12-08 22:03:20','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:03:20','2014-12-08 22:03:20','',0,'http://make.wordpressorg.dev/architecture/?p=1',0,'post','',1), (2,1,'2014-12-08 22:03:20','2014-12-08 22:03:20','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:03:20','2014-12-08 22:03:20','',0,'http://make.wordpressorg.dev/architecture/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:49','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:49','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/architecture/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_18_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_18_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_18_term_relationships`; CREATE TABLE `wporg_18_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_18_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_18_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_18_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_18_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_18_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_18_term_taxonomy`; CREATE TABLE `wporg_18_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_18_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_18_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_18_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_18_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_18_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_18_termmeta`; CREATE TABLE `wporg_18_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_18_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_18_terms`; CREATE TABLE `wporg_18_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_18_terms` WRITE; /*!40000 ALTER TABLE `wporg_18_terms` DISABLE KEYS */; INSERT INTO `wporg_18_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_18_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_19_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_19_commentmeta`; CREATE TABLE `wporg_19_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_19_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_19_comments`; CREATE TABLE `wporg_19_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_19_comments` WRITE; /*!40000 ALTER TABLE `wporg_19_comments` DISABLE KEYS */; INSERT INTO `wporg_19_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:03:48','2014-12-08 22:03:48','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_19_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_19_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_19_links`; CREATE TABLE `wporg_19_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_19_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_19_options`; CREATE TABLE `wporg_19_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_19_options` WRITE; /*!40000 ALTER TABLE `wporg_19_options` DISABLE KEYS */; INSERT INTO `wporg_19_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/polyglots','yes'), (2,'home','http://make.wordpressorg.dev/polyglots','yes'), (3,'blogname','Make Polyglots','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/19/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_19_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900736;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971269;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080230;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_19_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_19_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_19_postmeta`; CREATE TABLE `wporg_19_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_19_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_19_postmeta` DISABLE KEYS */; INSERT INTO `wporg_19_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_19_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_19_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_19_posts`; CREATE TABLE `wporg_19_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_19_posts` WRITE; /*!40000 ALTER TABLE `wporg_19_posts` DISABLE KEYS */; INSERT INTO `wporg_19_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,'2014-12-08 22:03:48','2014-12-08 22:03:48','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:03:48','2014-12-08 22:03:48','',0,'http://make.wordpressorg.dev/polyglots/?p=1',0,'post','',1), (2,1,'2014-12-08 22:03:48','2014-12-08 22:03:48','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:03:48','2014-12-08 22:03:48','',0,'http://make.wordpressorg.dev/polyglots/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:50','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:50','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/polyglots/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_19_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_19_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_19_term_relationships`; CREATE TABLE `wporg_19_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_19_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_19_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_19_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_19_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_19_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_19_term_taxonomy`; CREATE TABLE `wporg_19_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_19_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_19_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_19_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_19_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_19_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_19_termmeta`; CREATE TABLE `wporg_19_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_19_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_19_terms`; CREATE TABLE `wporg_19_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_19_terms` WRITE; /*!40000 ALTER TABLE `wporg_19_terms` DISABLE KEYS */; INSERT INTO `wporg_19_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_19_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_20_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_20_commentmeta`; CREATE TABLE `wporg_20_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_20_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_20_comments`; CREATE TABLE `wporg_20_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_20_comments` WRITE; /*!40000 ALTER TABLE `wporg_20_comments` DISABLE KEYS */; INSERT INTO `wporg_20_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:03:59','2014-12-08 22:03:59','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_20_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_20_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_20_links`; CREATE TABLE `wporg_20_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_20_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_20_options`; CREATE TABLE `wporg_20_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_20_options` WRITE; /*!40000 ALTER TABLE `wporg_20_options` DISABLE KEYS */; INSERT INTO `wporg_20_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/pluginrepo','yes'), (2,'home','http://make.wordpressorg.dev/pluginrepo','yes'), (3,'blogname','Make Plugin Repository','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/20/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_20_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900736;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971270;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080232;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_20_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_20_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_20_postmeta`; CREATE TABLE `wporg_20_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_20_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_20_postmeta` DISABLE KEYS */; INSERT INTO `wporg_20_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_20_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_20_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_20_posts`; CREATE TABLE `wporg_20_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_20_posts` WRITE; /*!40000 ALTER TABLE `wporg_20_posts` DISABLE KEYS */; INSERT INTO `wporg_20_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,'2014-12-08 22:03:59','2014-12-08 22:03:59','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:03:59','2014-12-08 22:03:59','',0,'http://make.wordpressorg.dev/pluginrepo/?p=1',0,'post','',1), (2,1,'2014-12-08 22:03:59','2014-12-08 22:03:59','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:03:59','2014-12-08 22:03:59','',0,'http://make.wordpressorg.dev/pluginrepo/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:51','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:51','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/pluginrepo/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_20_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_20_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_20_term_relationships`; CREATE TABLE `wporg_20_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_20_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_20_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_20_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_20_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_20_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_20_term_taxonomy`; CREATE TABLE `wporg_20_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_20_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_20_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_20_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_20_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_20_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_20_termmeta`; CREATE TABLE `wporg_20_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_20_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_20_terms`; CREATE TABLE `wporg_20_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_20_terms` WRITE; /*!40000 ALTER TABLE `wporg_20_terms` DISABLE KEYS */; INSERT INTO `wporg_20_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_20_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_21_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_21_commentmeta`; CREATE TABLE `wporg_21_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_21_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_21_comments`; CREATE TABLE `wporg_21_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_21_comments` WRITE; /*!40000 ALTER TABLE `wporg_21_comments` DISABLE KEYS */; INSERT INTO `wporg_21_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:04:07','2014-12-08 22:04:07','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_21_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_21_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_21_links`; CREATE TABLE `wporg_21_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_21_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_21_options`; CREATE TABLE `wporg_21_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_21_options` WRITE; /*!40000 ALTER TABLE `wporg_21_options` DISABLE KEYS */; INSERT INTO `wporg_21_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/support','yes'), (2,'home','http://make.wordpressorg.dev/support','yes'), (3,'blogname','Make Support','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/21/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_21_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900736;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971272;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080234;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_21_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_21_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_21_postmeta`; CREATE TABLE `wporg_21_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_21_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_21_postmeta` DISABLE KEYS */; INSERT INTO `wporg_21_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_21_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_21_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_21_posts`; CREATE TABLE `wporg_21_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_21_posts` WRITE; /*!40000 ALTER TABLE `wporg_21_posts` DISABLE KEYS */; INSERT INTO `wporg_21_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,'2014-12-08 22:04:07','2014-12-08 22:04:07','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:04:07','2014-12-08 22:04:07','',0,'http://make.wordpressorg.dev/support/?p=1',0,'post','',1), (2,1,'2014-12-08 22:04:07','2014-12-08 22:04:07','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:04:07','2014-12-08 22:04:07','',0,'http://make.wordpressorg.dev/support/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:52','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:52','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/support/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_21_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_21_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_21_term_relationships`; CREATE TABLE `wporg_21_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_21_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_21_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_21_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_21_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_21_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_21_term_taxonomy`; CREATE TABLE `wporg_21_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_21_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_21_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_21_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_21_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_21_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_21_termmeta`; CREATE TABLE `wporg_21_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_21_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_21_terms`; CREATE TABLE `wporg_21_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_21_terms` WRITE; /*!40000 ALTER TABLE `wporg_21_terms` DISABLE KEYS */; INSERT INTO `wporg_21_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_21_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_22_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_22_commentmeta`; CREATE TABLE `wporg_22_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; # Dump of table wporg_22_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_22_comments`; CREATE TABLE `wporg_22_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL DEFAULT '', `comment_author_url` varchar(200) NOT NULL DEFAULT '', `comment_author_IP` varchar(100) NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) NOT NULL DEFAULT '1', `comment_agent` varchar(255) NOT NULL DEFAULT '', `comment_type` varchar(20) NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; LOCK TABLES `wporg_22_comments` WRITE; /*!40000 ALTER TABLE `wporg_22_comments` DISABLE KEYS */; INSERT INTO `wporg_22_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:04:51','2014-12-08 22:04:51','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_22_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_22_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_22_links`; CREATE TABLE `wporg_22_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) NOT NULL DEFAULT '', `link_name` varchar(255) NOT NULL DEFAULT '', `link_image` varchar(255) NOT NULL DEFAULT '', `link_target` varchar(25) NOT NULL DEFAULT '', `link_description` varchar(255) NOT NULL DEFAULT '', `link_visible` varchar(20) NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL DEFAULT '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; # Dump of table wporg_22_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_22_options`; CREATE TABLE `wporg_22_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(64) NOT NULL DEFAULT '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; LOCK TABLES `wporg_22_options` WRITE; /*!40000 ALTER TABLE `wporg_22_options` DISABLE KEYS */; INSERT INTO `wporg_22_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/core/handbook/','yes'), (2,'home','http://make.wordpressorg.dev/core/handbook/','yes'), (3,'blogname','Make Core Handbook','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (29,'gzipcompression','0','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (36,'advanced_edit','0','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','pub/wporg-p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','30133','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/22/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_22_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'); /*!40000 ALTER TABLE `wporg_22_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_22_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_22_postmeta`; CREATE TABLE `wporg_22_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; LOCK TABLES `wporg_22_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_22_postmeta` DISABLE KEYS */; INSERT INTO `wporg_22_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_22_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_22_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_22_posts`; CREATE TABLE `wporg_22_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext NOT NULL, `post_title` text NOT NULL, `post_excerpt` text NOT NULL, `post_status` varchar(20) NOT NULL DEFAULT 'publish', `comment_status` varchar(20) NOT NULL DEFAULT 'open', `ping_status` varchar(20) NOT NULL DEFAULT 'open', `post_password` varchar(20) NOT NULL DEFAULT '', `post_name` varchar(200) NOT NULL DEFAULT '', `to_ping` text NOT NULL, `pinged` text NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; LOCK TABLES `wporg_22_posts` WRITE; /*!40000 ALTER TABLE `wporg_22_posts` DISABLE KEYS */; INSERT INTO `wporg_22_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,'2014-12-08 22:04:51','2014-12-08 22:04:51','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:04:51','2014-12-08 22:04:51','',0,'http://make.wordpressorg.dev/core-handbook/?p=1',0,'post','',1), (2,1,'2014-12-08 22:04:51','2014-12-08 22:04:51','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:04:51','2014-12-08 22:04:51','',0,'http://make.wordpressorg.dev/core-handbook/?page_id=2',0,'page','',0); /*!40000 ALTER TABLE `wporg_22_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_22_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_22_term_relationships`; CREATE TABLE `wporg_22_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; LOCK TABLES `wporg_22_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_22_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_22_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_22_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_22_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_22_term_taxonomy`; CREATE TABLE `wporg_22_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) NOT NULL DEFAULT '', `description` longtext NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; LOCK TABLES `wporg_22_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_22_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_22_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_22_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_22_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_22_terms`; CREATE TABLE `wporg_22_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL DEFAULT '', `slug` varchar(200) NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`), KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; LOCK TABLES `wporg_22_terms` WRITE; /*!40000 ALTER TABLE `wporg_22_terms` DISABLE KEYS */; INSERT INTO `wporg_22_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_22_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_222_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_222_commentmeta`; CREATE TABLE `wporg_222_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_222_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_222_comments`; CREATE TABLE `wporg_222_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_222_comments` WRITE; /*!40000 ALTER TABLE `wporg_222_comments` DISABLE KEYS */; INSERT INTO `wporg_222_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,'Mr WordPress','','http://global.wordpressorg.dev/','','2015-07-30 19:31:29','2015-07-30 19:31:29','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_222_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_222_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_222_links`; CREATE TABLE `wporg_222_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_222_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_222_options`; CREATE TABLE `wporg_222_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_222_options` WRITE; /*!40000 ALTER TABLE `wporg_222_options` DISABLE KEYS */; INSERT INTO `wporg_222_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://es.wordpressorg.dev/themes/','yes'), (2,'home','http://es.wordpressorg.dev/themes/','yes'), (3,'blogname','Spanish Theme Directory','yes'), (4,'blogdescription','Just another Global.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:1:{i:0;s:35:\"theme-directory/theme-directory.php\";}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','pub/wporg-themes','yes'), (42,'stylesheet','pub/wporg-themes','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/171/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','/tags','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_171_user_roles','a:6:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:64:{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:9:\"add_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:14:\"suspend_themes\";b:1;s:16:\"reinstate_themes\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:40:{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:18:\"edit_theme_options\";b:1;s:10:\"list_users\";b:1;s:13:\"promote_users\";b:1;s:12:\"remove_users\";b:1;s:14:\"suspend_themes\";b:1;s:16:\"reinstate_themes\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:12:{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:14:\"suspend_themes\";b:1;s:16:\"reinstate_themes\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:18:\"translation_editor\";a:2:{s:4:\"name\";s:18:\"Translation Editor\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"orphaned_widgets_1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','es_ES','yes'), (97,'category_children','a:0:{}','yes'), (98,'cron','a:2:{i:1461958409;a:1:{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:7:\"version\";i:2;}','yes'), (112,'theme_mods_rosetta','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1438284814;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (113,'template_root','/themes','yes'), (114,'stylesheet_root','/themes','yes'), (115,'current_theme','WordPress.org Themes','yes'), (116,'theme_mods_pub/wporg-themes','a:1:{i:0;b:0;}','yes'), (117,'theme_switched','','yes'), (120,'recently_activated','a:0:{}','yes'), (121,'post_count','1','yes'), (122,'rewrite_rules','a:71:{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: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: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: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:72:\"browse/(featured|popular|new|favorites)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?browse=$matches[1]&feed=$matches[2]\";s:67:\"browse/(featured|popular|new|favorites)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?browse=$matches[1]&feed=$matches[2]\";s:60:\"browse/(featured|popular|new|favorites)/page/?([0-9]{1,})/?$\";s:46:\"index.php?browse=$matches[1]&paged=$matches[2]\";s:42:\"browse/(featured|popular|new|favorites)/?$\";s:28:\"index.php?browse=$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: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: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: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:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)(/[0-9]+)?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";}','yes'), (125,'new_admin_email','foo@example.org','yes'), (142,'wporg_222_user_roles','a:1:{s:18:\"translation_editor\";a:2:{s:4:\"name\";s:18:\"Translation Editor\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'), (149,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (150,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (151,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (152,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (154,'finished_splitting_shared_terms','1','yes'), (155,'site_icon','0','yes'), (156,'medium_large_size_w','768','yes'), (157,'medium_large_size_h','0','yes'), (158,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_222_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_222_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_222_postmeta`; CREATE TABLE `wporg_222_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_222_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_222_postmeta` DISABLE KEYS */; INSERT INTO `wporg_222_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_222_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_222_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_222_posts`; CREATE TABLE `wporg_222_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_222_posts` WRITE; /*!40000 ALTER TABLE `wporg_222_posts` DISABLE KEYS */; INSERT INTO `wporg_222_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,'2015-07-30 19:31:29','2015-07-30 19:31:29','Welcome to Global.wordpressorg.dev. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2015-07-30 19:31:29','2015-07-30 19:31:29','',0,'http://esthemes.global.wordpressorg.dev/?p=1',0,'post','',1), (2,1,'2015-07-30 19:31:29','2015-07-30 19:31:29','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:\n\n
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ña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2015-07-30 19:31:29','2015-07-30 19:31:29','',0,'http://esthemes.global.wordpressorg.dev/?page_id=2',0,'page','',0), (3,1,'2015-07-30 19:33:29','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-07-30 19:33:29','0000-00-00 00:00:00','',0,'http://es.wordpressorg.dev/themes/?p=3',0,'post','',0), (4,1,'2015-07-30 19:33:40','2015-07-30 19:33:40','','commercial','','publish','closed','closed','','commercial','','','2015-07-30 19:33:40','2015-07-30 19:33:40','',0,'http://es.wordpressorg.dev/themes/commercial/',0,'page','',0), (5,1,'2015-07-30 19:33:40','2015-07-30 19:33:40','','getting-started','','publish','closed','closed','','getting-started','','','2015-07-30 19:33:40','2015-07-30 19:33:40','',0,'http://es.wordpressorg.dev/themes/getting-started/',0,'page','',0), (6,1,'2015-07-30 19:33:40','2015-07-30 19:33:40','','upload','','publish','closed','closed','','upload','','','2015-07-30 19:33:40','2015-07-30 19:33:40','',0,'http://es.wordpressorg.dev/themes/upload/',0,'page','',0); /*!40000 ALTER TABLE `wporg_222_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_222_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_222_term_relationships`; CREATE TABLE `wporg_222_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_222_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_222_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_222_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_222_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_222_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_222_term_taxonomy`; CREATE TABLE `wporg_222_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_222_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_222_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_222_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_222_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_222_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_222_termmeta`; CREATE TABLE `wporg_222_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_222_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_222_terms`; CREATE TABLE `wporg_222_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_222_terms` WRITE; /*!40000 ALTER TABLE `wporg_222_terms` DISABLE KEYS */; INSERT INTO `wporg_222_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_222_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_23_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_23_commentmeta`; CREATE TABLE `wporg_23_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_23_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_23_comments`; CREATE TABLE `wporg_23_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_23_comments` WRITE; /*!40000 ALTER TABLE `wporg_23_comments` DISABLE KEYS */; INSERT INTO `wporg_23_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:05:19','2014-12-08 22:05:19','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_23_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_23_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_23_links`; CREATE TABLE `wporg_23_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_23_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_23_options`; CREATE TABLE `wporg_23_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_23_options` WRITE; /*!40000 ALTER TABLE `wporg_23_options` DISABLE KEYS */; INSERT INTO `wporg_23_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/events','yes'), (2,'home','http://make.wordpressorg.dev/events','yes'), (3,'blogname','Make Events','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/23/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_23_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900735;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971273;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080236;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_23_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_23_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_23_postmeta`; CREATE TABLE `wporg_23_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_23_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_23_postmeta` DISABLE KEYS */; INSERT INTO `wporg_23_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_23_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_23_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_23_posts`; CREATE TABLE `wporg_23_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_23_posts` WRITE; /*!40000 ALTER TABLE `wporg_23_posts` DISABLE KEYS */; INSERT INTO `wporg_23_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,'2014-12-08 22:05:19','2014-12-08 22:05:19','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:05:19','2014-12-08 22:05:19','',0,'http://make.wordpressorg.dev/events/?p=1',0,'post','',1), (2,1,'2014-12-08 22:05:19','2014-12-08 22:05:19','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:05:19','2014-12-08 22:05:19','',0,'http://make.wordpressorg.dev/events/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:54','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:54','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/events/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_23_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_23_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_23_term_relationships`; CREATE TABLE `wporg_23_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_23_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_23_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_23_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_23_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_23_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_23_term_taxonomy`; CREATE TABLE `wporg_23_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_23_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_23_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_23_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_23_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_23_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_23_termmeta`; CREATE TABLE `wporg_23_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_23_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_23_terms`; CREATE TABLE `wporg_23_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_23_terms` WRITE; /*!40000 ALTER TABLE `wporg_23_terms` DISABLE KEYS */; INSERT INTO `wporg_23_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_23_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_24_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_24_commentmeta`; CREATE TABLE `wporg_24_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_24_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_24_comments`; CREATE TABLE `wporg_24_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_24_comments` WRITE; /*!40000 ALTER TABLE `wporg_24_comments` DISABLE KEYS */; INSERT INTO `wporg_24_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:05:26','2014-12-08 22:05:26','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_24_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_24_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_24_links`; CREATE TABLE `wporg_24_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_24_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_24_options`; CREATE TABLE `wporg_24_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_24_options` WRITE; /*!40000 ALTER TABLE `wporg_24_options` DISABLE KEYS */; INSERT INTO `wporg_24_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/mobile','yes'), (2,'home','http://make.wordpressorg.dev/mobile','yes'), (3,'blogname','Make Mobile','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/24/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_24_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900734;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971274;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080238;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_24_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_24_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_24_postmeta`; CREATE TABLE `wporg_24_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_24_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_24_postmeta` DISABLE KEYS */; INSERT INTO `wporg_24_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_24_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_24_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_24_posts`; CREATE TABLE `wporg_24_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_24_posts` WRITE; /*!40000 ALTER TABLE `wporg_24_posts` DISABLE KEYS */; INSERT INTO `wporg_24_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,'2014-12-08 22:05:26','2014-12-08 22:05:26','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:05:26','2014-12-08 22:05:26','',0,'http://make.wordpressorg.dev/mobile/?p=1',0,'post','',1), (2,1,'2014-12-08 22:05:26','2014-12-08 22:05:26','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:05:26','2014-12-08 22:05:26','',0,'http://make.wordpressorg.dev/mobile/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:55','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:55','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/mobile/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_24_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_24_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_24_term_relationships`; CREATE TABLE `wporg_24_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_24_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_24_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_24_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_24_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_24_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_24_term_taxonomy`; CREATE TABLE `wporg_24_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_24_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_24_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_24_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_24_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_24_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_24_termmeta`; CREATE TABLE `wporg_24_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_24_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_24_terms`; CREATE TABLE `wporg_24_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_24_terms` WRITE; /*!40000 ALTER TABLE `wporg_24_terms` DISABLE KEYS */; INSERT INTO `wporg_24_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_24_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_25_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_25_commentmeta`; CREATE TABLE `wporg_25_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_25_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_25_comments`; CREATE TABLE `wporg_25_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_25_comments` WRITE; /*!40000 ALTER TABLE `wporg_25_comments` DISABLE KEYS */; INSERT INTO `wporg_25_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:05:37','2014-12-08 22:05:37','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_25_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_25_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_25_links`; CREATE TABLE `wporg_25_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_25_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_25_options`; CREATE TABLE `wporg_25_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_25_options` WRITE; /*!40000 ALTER TABLE `wporg_25_options` DISABLE KEYS */; INSERT INTO `wporg_25_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/summit','yes'), (2,'home','http://make.wordpressorg.dev/summit','yes'), (3,'blogname','Make Community Summit','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/25/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_25_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900733;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971276;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080239;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_25_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_25_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_25_postmeta`; CREATE TABLE `wporg_25_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_25_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_25_postmeta` DISABLE KEYS */; INSERT INTO `wporg_25_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_25_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_25_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_25_posts`; CREATE TABLE `wporg_25_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_25_posts` WRITE; /*!40000 ALTER TABLE `wporg_25_posts` DISABLE KEYS */; INSERT INTO `wporg_25_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,'2014-12-08 22:05:37','2014-12-08 22:05:37','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:05:37','2014-12-08 22:05:37','',0,'http://make.wordpressorg.dev/summit/?p=1',0,'post','',1), (2,1,'2014-12-08 22:05:37','2014-12-08 22:05:37','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:05:37','2014-12-08 22:05:37','',0,'http://make.wordpressorg.dev/summit/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:56','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:56','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/summit/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_25_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_25_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_25_term_relationships`; CREATE TABLE `wporg_25_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_25_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_25_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_25_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_25_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_25_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_25_term_taxonomy`; CREATE TABLE `wporg_25_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_25_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_25_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_25_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_25_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_25_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_25_termmeta`; CREATE TABLE `wporg_25_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_25_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_25_terms`; CREATE TABLE `wporg_25_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_25_terms` WRITE; /*!40000 ALTER TABLE `wporg_25_terms` DISABLE KEYS */; INSERT INTO `wporg_25_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_25_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_26_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_26_commentmeta`; CREATE TABLE `wporg_26_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_26_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_26_comments`; CREATE TABLE `wporg_26_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_26_comments` WRITE; /*!40000 ALTER TABLE `wporg_26_comments` DISABLE KEYS */; INSERT INTO `wporg_26_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:05:52','2014-12-08 22:05:52','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_26_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_26_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_26_links`; CREATE TABLE `wporg_26_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_26_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_26_options`; CREATE TABLE `wporg_26_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_26_options` WRITE; /*!40000 ALTER TABLE `wporg_26_options` DISABLE KEYS */; INSERT INTO `wporg_26_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/camptixtest','yes'), (2,'home','http://make.wordpressorg.dev/camptixtest','yes'), (3,'blogname','Make CampTix Test','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/26/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_26_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900733;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971277;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080241;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_26_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_26_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_26_postmeta`; CREATE TABLE `wporg_26_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_26_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_26_postmeta` DISABLE KEYS */; INSERT INTO `wporg_26_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_26_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_26_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_26_posts`; CREATE TABLE `wporg_26_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_26_posts` WRITE; /*!40000 ALTER TABLE `wporg_26_posts` DISABLE KEYS */; INSERT INTO `wporg_26_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,'2014-12-08 22:05:52','2014-12-08 22:05:52','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:05:52','2014-12-08 22:05:52','',0,'http://make.wordpressorg.dev/camptixtest/?p=1',0,'post','',1), (2,1,'2014-12-08 22:05:52','2014-12-08 22:05:52','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:05:52','2014-12-08 22:05:52','',0,'http://make.wordpressorg.dev/camptixtest/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:58','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:58','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/camptixtest/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_26_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_26_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_26_term_relationships`; CREATE TABLE `wporg_26_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_26_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_26_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_26_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_26_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_26_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_26_term_taxonomy`; CREATE TABLE `wporg_26_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_26_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_26_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_26_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_26_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_26_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_26_termmeta`; CREATE TABLE `wporg_26_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_26_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_26_terms`; CREATE TABLE `wporg_26_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_26_terms` WRITE; /*!40000 ALTER TABLE `wporg_26_terms` DISABLE KEYS */; INSERT INTO `wporg_26_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_26_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_27_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_27_commentmeta`; CREATE TABLE `wporg_27_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_27_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_27_comments`; CREATE TABLE `wporg_27_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_27_comments` WRITE; /*!40000 ALTER TABLE `wporg_27_comments` DISABLE KEYS */; INSERT INTO `wporg_27_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:06:03','2014-12-08 22:06:03','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_27_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_27_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_27_links`; CREATE TABLE `wporg_27_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_27_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_27_options`; CREATE TABLE `wporg_27_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_27_options` WRITE; /*!40000 ALTER TABLE `wporg_27_options` DISABLE KEYS */; INSERT INTO `wporg_27_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/meta','yes'), (2,'home','http://make.wordpressorg.dev/meta','yes'), (3,'blogname','Make Meta','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/27/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_27_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900733;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971278;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080243;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_27_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_27_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_27_postmeta`; CREATE TABLE `wporg_27_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_27_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_27_postmeta` DISABLE KEYS */; INSERT INTO `wporg_27_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_27_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_27_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_27_posts`; CREATE TABLE `wporg_27_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_27_posts` WRITE; /*!40000 ALTER TABLE `wporg_27_posts` DISABLE KEYS */; INSERT INTO `wporg_27_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,'2014-12-08 22:06:03','2014-12-08 22:06:03','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:06:03','2014-12-08 22:06:03','',0,'http://make.wordpressorg.dev/meta/?p=1',0,'post','',1), (2,1,'2014-12-08 22:06:03','2014-12-08 22:06:03','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:06:03','2014-12-08 22:06:03','',0,'http://make.wordpressorg.dev/meta/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:59','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:59','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/meta/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_27_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_27_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_27_term_relationships`; CREATE TABLE `wporg_27_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_27_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_27_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_27_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_27_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_27_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_27_term_taxonomy`; CREATE TABLE `wporg_27_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_27_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_27_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_27_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_27_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_27_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_27_termmeta`; CREATE TABLE `wporg_27_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_27_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_27_terms`; CREATE TABLE `wporg_27_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_27_terms` WRITE; /*!40000 ALTER TABLE `wporg_27_terms` DISABLE KEYS */; INSERT INTO `wporg_27_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_27_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_28_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_28_commentmeta`; CREATE TABLE `wporg_28_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_28_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_28_comments`; CREATE TABLE `wporg_28_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_28_comments` WRITE; /*!40000 ALTER TABLE `wporg_28_comments` DISABLE KEYS */; INSERT INTO `wporg_28_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:06:14','2014-12-08 22:06:14','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_28_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_28_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_28_links`; CREATE TABLE `wporg_28_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_28_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_28_options`; CREATE TABLE `wporg_28_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_28_options` WRITE; /*!40000 ALTER TABLE `wporg_28_options` DISABLE KEYS */; INSERT INTO `wporg_28_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/training','yes'), (2,'home','http://make.wordpressorg.dev/training','yes'), (3,'blogname','Make Training','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/28/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_28_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900732;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971279;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080245;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_28_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_28_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_28_postmeta`; CREATE TABLE `wporg_28_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_28_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_28_postmeta` DISABLE KEYS */; INSERT INTO `wporg_28_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_28_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_28_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_28_posts`; CREATE TABLE `wporg_28_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_28_posts` WRITE; /*!40000 ALTER TABLE `wporg_28_posts` DISABLE KEYS */; INSERT INTO `wporg_28_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,'2014-12-08 22:06:14','2014-12-08 22:06:14','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:06:14','2014-12-08 22:06:14','',0,'http://make.wordpressorg.dev/training/?p=1',0,'post','',1), (2,1,'2014-12-08 22:06:14','2014-12-08 22:06:14','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:06:14','2014-12-08 22:06:14','',0,'http://make.wordpressorg.dev/training/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:59','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:59','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/training/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_28_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_28_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_28_term_relationships`; CREATE TABLE `wporg_28_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_28_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_28_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_28_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_28_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_28_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_28_term_taxonomy`; CREATE TABLE `wporg_28_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_28_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_28_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_28_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_28_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_28_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_28_termmeta`; CREATE TABLE `wporg_28_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_28_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_28_terms`; CREATE TABLE `wporg_28_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_28_terms` WRITE; /*!40000 ALTER TABLE `wporg_28_terms` DISABLE KEYS */; INSERT INTO `wporg_28_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_28_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_29_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_29_commentmeta`; CREATE TABLE `wporg_29_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_29_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_29_comments`; CREATE TABLE `wporg_29_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_29_comments` WRITE; /*!40000 ALTER TABLE `wporg_29_comments` DISABLE KEYS */; INSERT INTO `wporg_29_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:06:44','2014-12-08 22:06:44','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_29_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_29_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_29_links`; CREATE TABLE `wporg_29_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_29_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_29_options`; CREATE TABLE `wporg_29_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_29_options` WRITE; /*!40000 ALTER TABLE `wporg_29_options` DISABLE KEYS */; INSERT INTO `wporg_29_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/updates','yes'), (2,'home','http://make.wordpressorg.dev/updates','yes'), (3,'blogname','Make Updates','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/29/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_29_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900731;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971279;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080247;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_29_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_29_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_29_postmeta`; CREATE TABLE `wporg_29_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_29_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_29_postmeta` DISABLE KEYS */; INSERT INTO `wporg_29_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_29_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_29_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_29_posts`; CREATE TABLE `wporg_29_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_29_posts` WRITE; /*!40000 ALTER TABLE `wporg_29_posts` DISABLE KEYS */; INSERT INTO `wporg_29_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,'2014-12-08 22:06:44','2014-12-08 22:06:44','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:06:44','2014-12-08 22:06:44','',0,'http://make.wordpressorg.dev/updates/?p=1',0,'post','',1), (2,1,'2014-12-08 22:06:44','2014-12-08 22:06:44','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:06:44','2014-12-08 22:06:44','',0,'http://make.wordpressorg.dev/updates/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:08:00','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:08:00','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/updates/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_29_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_29_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_29_term_relationships`; CREATE TABLE `wporg_29_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_29_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_29_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_29_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_29_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_29_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_29_term_taxonomy`; CREATE TABLE `wporg_29_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_29_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_29_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_29_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_29_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_29_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_29_termmeta`; CREATE TABLE `wporg_29_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_29_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_29_terms`; CREATE TABLE `wporg_29_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_29_terms` WRITE; /*!40000 ALTER TABLE `wporg_29_terms` DISABLE KEYS */; INSERT INTO `wporg_29_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_29_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_3_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_3_commentmeta`; CREATE TABLE `wporg_3_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_3_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_3_comments`; CREATE TABLE `wporg_3_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_3_comments` WRITE; /*!40000 ALTER TABLE `wporg_3_comments` DISABLE KEYS */; INSERT INTO `wporg_3_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,'Mr WordPress','','http://wordpressorg.dev/','','2014-12-08 21:42:28','2014-12-08 21:42:28','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_3_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_3_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_3_links`; CREATE TABLE `wporg_3_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_3_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_3_options`; CREATE TABLE `wporg_3_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_3_options` WRITE; /*!40000 ALTER TABLE `wporg_3_options` DISABLE KEYS */; INSERT INTO `wporg_3_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://wordpressorg.dev/showcase','yes'), (2,'home','http://wordpressorg.dev/showcase','yes'), (3,'blogname','Showcase','yes'), (4,'blogdescription','Just another WordPressorg.dev Sites site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','twentyfifteen','yes'), (42,'stylesheet','twentyfifteen','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','37965','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_2_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (95,'rewrite_rules','a:70:{s:52:\"blog/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:47:\"blog/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:40:\"blog/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:22:\"blog/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:49:\"blog/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:44:\"blog/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:37:\"blog/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:19:\"blog/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:50:\"blog/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:45:\"blog/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:38:\"blog/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:20:\"blog/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: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: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: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:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:2:{i:1480887776;a:1:{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:7:\"version\";i:2;}','yes'), (110,'finished_splitting_shared_terms','1','yes'), (111,'db_upgraded','1','yes'), (112,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (113,'widget_calendar','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'), (118,'site_icon','0','yes'), (119,'medium_large_size_w','768','yes'), (120,'medium_large_size_h','0','yes'); /*!40000 ALTER TABLE `wporg_3_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_3_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_3_postmeta`; CREATE TABLE `wporg_3_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_3_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_3_postmeta` DISABLE KEYS */; INSERT INTO `wporg_3_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_3_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_3_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_3_posts`; CREATE TABLE `wporg_3_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_3_posts` WRITE; /*!40000 ALTER TABLE `wporg_3_posts` DISABLE KEYS */; INSERT INTO `wporg_3_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,'2014-12-08 21:42:28','2014-12-08 21:42:28','Welcome to WordPressorg.dev Sites. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 21:42:28','2014-12-08 21:42:28','',0,'http://wordpressorg.dev/showcase/?p=1',0,'post','',1), (2,1,'2014-12-08 21:42:28','2014-12-08 21:42:28','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 21:42:28','2014-12-08 21:42:28','',0,'http://wordpressorg.dev/showcase/?page_id=2',0,'page','',0), (3,1,'2014-12-08 21:42:57','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 21:42:57','0000-00-00 00:00:00','',0,'http://wordpressorg.dev/showcase/?p=3',0,'post','',0), (4,1,'2014-12-08 21:44:23','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 21:44:23','0000-00-00 00:00:00','',0,'http://wordpressorg.dev/showcase/?p=4',0,'post','',0); /*!40000 ALTER TABLE `wporg_3_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_3_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_3_term_relationships`; CREATE TABLE `wporg_3_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_3_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_3_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_3_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_3_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_3_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_3_term_taxonomy`; CREATE TABLE `wporg_3_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_3_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_3_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_3_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_3_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_3_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_3_termmeta`; CREATE TABLE `wporg_3_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_3_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_3_terms`; CREATE TABLE `wporg_3_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_3_terms` WRITE; /*!40000 ALTER TABLE `wporg_3_terms` DISABLE KEYS */; INSERT INTO `wporg_3_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_3_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_30_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_30_commentmeta`; CREATE TABLE `wporg_30_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_30_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_30_comments`; CREATE TABLE `wporg_30_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_30_comments` WRITE; /*!40000 ALTER TABLE `wporg_30_comments` DISABLE KEYS */; INSERT INTO `wporg_30_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:06:58','2014-12-08 22:06:58','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_30_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_30_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_30_links`; CREATE TABLE `wporg_30_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_30_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_30_options`; CREATE TABLE `wporg_30_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_30_options` WRITE; /*!40000 ALTER TABLE `wporg_30_options` DISABLE KEYS */; INSERT INTO `wporg_30_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/community','yes'), (2,'home','http://make.wordpressorg.dev/community','yes'), (3,'blogname','Make Community','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/30/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_30_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900731;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971281;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080249;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_30_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_30_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_30_postmeta`; CREATE TABLE `wporg_30_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_30_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_30_postmeta` DISABLE KEYS */; INSERT INTO `wporg_30_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_30_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_30_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_30_posts`; CREATE TABLE `wporg_30_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_30_posts` WRITE; /*!40000 ALTER TABLE `wporg_30_posts` DISABLE KEYS */; INSERT INTO `wporg_30_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,'2014-12-08 22:06:58','2014-12-08 22:06:58','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:06:58','2014-12-08 22:06:58','',0,'http://make.wordpressorg.dev/community/?p=1',0,'post','',1), (2,1,'2014-12-08 22:06:58','2014-12-08 22:06:58','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:06:58','2014-12-08 22:06:58','',0,'http://make.wordpressorg.dev/community/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:08:02','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:08:02','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/community/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_30_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_30_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_30_term_relationships`; CREATE TABLE `wporg_30_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_30_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_30_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_30_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_30_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_30_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_30_term_taxonomy`; CREATE TABLE `wporg_30_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_30_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_30_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_30_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_30_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_30_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_30_termmeta`; CREATE TABLE `wporg_30_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_30_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_30_terms`; CREATE TABLE `wporg_30_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_30_terms` WRITE; /*!40000 ALTER TABLE `wporg_30_terms` DISABLE KEYS */; INSERT INTO `wporg_30_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_30_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_32_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_32_commentmeta`; CREATE TABLE `wporg_32_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_32_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_32_comments`; CREATE TABLE `wporg_32_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_32_comments` WRITE; /*!40000 ALTER TABLE `wporg_32_comments` DISABLE KEYS */; INSERT INTO `wporg_32_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:07:43','2014-12-08 22:07:43','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_32_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_32_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_32_links`; CREATE TABLE `wporg_32_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_32_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_32_options`; CREATE TABLE `wporg_32_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_32_options` WRITE; /*!40000 ALTER TABLE `wporg_32_options` DISABLE KEYS */; INSERT INTO `wporg_32_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/archive','yes'), (2,'home','http://make.wordpressorg.dev/archive','yes'), (3,'blogname','Make Archive','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/32/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_32_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900730;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971282;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080251;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_32_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_32_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_32_postmeta`; CREATE TABLE `wporg_32_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_32_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_32_postmeta` DISABLE KEYS */; INSERT INTO `wporg_32_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_32_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_32_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_32_posts`; CREATE TABLE `wporg_32_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_32_posts` WRITE; /*!40000 ALTER TABLE `wporg_32_posts` DISABLE KEYS */; INSERT INTO `wporg_32_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,'2014-12-08 22:07:43','2014-12-08 22:07:43','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:07:43','2014-12-08 22:07:43','',0,'http://make.wordpressorg.dev/archive/?p=1',0,'post','',1), (2,1,'2014-12-08 22:07:43','2014-12-08 22:07:43','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:07:43','2014-12-08 22:07:43','',0,'http://make.wordpressorg.dev/archive/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:08:03','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:08:03','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/archive/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_32_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_32_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_32_term_relationships`; CREATE TABLE `wporg_32_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_32_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_32_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_32_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_32_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_32_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_32_term_taxonomy`; CREATE TABLE `wporg_32_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_32_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_32_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_32_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_32_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_32_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_32_termmeta`; CREATE TABLE `wporg_32_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_32_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_32_terms`; CREATE TABLE `wporg_32_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_32_terms` WRITE; /*!40000 ALTER TABLE `wporg_32_terms` DISABLE KEYS */; INSERT INTO `wporg_32_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_32_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_33_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_33_commentmeta`; CREATE TABLE `wporg_33_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_33_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_33_comments`; CREATE TABLE `wporg_33_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_33_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_33_links`; CREATE TABLE `wporg_33_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_33_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_33_options`; CREATE TABLE `wporg_33_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_33_options` WRITE; /*!40000 ALTER TABLE `wporg_33_options` DISABLE KEYS */; INSERT INTO `wporg_33_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://developer.wordpressorg.dev','yes'), (2,'blogname','developer.wordpress.org','yes'), (3,'blogdescription','Just another WordPress site','yes'), (4,'users_can_register','0','yes'), (5,'admin_email','foo@example.org','yes'), (6,'start_of_week','1','yes'), (7,'use_balanceTags','0','yes'), (8,'use_smilies','1','yes'), (9,'require_name_email','1','yes'), (10,'comments_notify','1','yes'), (11,'posts_per_rss','10','yes'), (12,'rss_use_excerpt','0','yes'), (13,'mailserver_url','mail.example.com','yes'), (14,'mailserver_login','login@example.com','yes'), (15,'mailserver_pass','password','yes'), (16,'mailserver_port','110','yes'), (17,'default_category','1','yes'), (18,'default_comment_status','open','yes'), (19,'default_ping_status','open','yes'), (20,'default_pingback_flag','1','yes'), (21,'posts_per_page','10','yes'), (22,'date_format','F j, Y','yes'), (23,'time_format','g:i a','yes'), (24,'links_updated_date_format','F j, Y g:i a','yes'), (25,'comment_moderation','0','yes'), (26,'moderation_notify','1','yes'), (27,'permalink_structure','/%postname%/','yes'), (29,'hack_file','0','yes'), (30,'blog_charset','UTF-8','yes'), (31,'moderation_keys','','no'), (32,'active_plugins','a:1:{i:0;s:24:\"phpdoc-parser/plugin.php\";}','yes'), (33,'home','http://developer.wordpressorg.dev','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','pub/wporg-developer','yes'), (42,'stylesheet','pub/wporg-developer','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','37965','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','page','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:1:{s:20:\"wp-parser/plugin.php\";a:2:{i:0;s:11:\"P2P_Storage\";i:1;s:9:\"uninstall\";}}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','6','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'initial_db_version','27916','yes'), (89,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_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'), (90,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (94,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (95,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:16:\"landing-footer-1\";N;s:16:\"landing-footer-2\";N;s:13:\"array_version\";i:3;}','yes'), (96,'cron','a:5:{i:1470979684;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1470979693;a:1:{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;}}}i:1470979939;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:1471007252;a:1:{s:21:\"update_network_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}s:7:\"version\";i:2;}','yes'), (100,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1417660246;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}}','yes'), (103,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1417660246;s:7:\"checked\";a:4:{s:14:\"twentyfourteen\";s:3:\"1.2\";s:14:\"twentythirteen\";s:3:\"1.3\";s:12:\"twentytwelve\";s:3:\"1.5\";s:15:\"wporg-developer\";s:3:\"1.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'), (104,'_transient_random_seed','053a2b32f95612b55f5e55ee38c8f741','yes'), (105,'auth_key','/~y[1tM#zxW+)XO&TQ9+Cw.|nl+#q8Re^OU;WK?B?iKC&>qSUx/I,dOn7|R+~$LvuQJ`The second release candidate for WordPress 4.6 is now available.

\n

We’ve made over 30 changes since the first release candidate. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.6 on Tuesday, August 16, but we need your help to get there.

\n

If you haven’t tested 4.6 yet, now is the time!

\n

Think you’ve found a bug? Please post to the Alpha/Beta support forum. If any known issues come up, you’ll be able to find them here.

\n

To test WordPress 4.6, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip).

\n

For more information about what’s new in version 4.6, check out the Beta 1, Beta 2, Beta 3, Beta 4, and RC 1 blog posts.

\n

A few changes of note since the first release candidate:

\n
    \n
  • Support for custom HTTP methods and proxy authentication has been restored.
  • \n
  • Various fixes for the streamlined updates, including better failure messages and error handling, basic back-compat styling for custom update notifications, and additional and standardized JavaScript events.
  • \n
  • Unnecessary reference parameters have been removed from new multisite functions.
  • \n
  • A compatibility issue with PHP 7.0.9 (and PHP 7.1) has been fixed.
  • \n
\n

Developers, please test your plugins and themes against WordPress 4.6 and update your plugin’s Tested up to version in the readme to 4.6. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we never want to break things.

\n

Be sure to read the in-depth field guide, a post with all the developer-focused changes that take place under the hood.

\n

Translators, strings are now frozen, including the About Page, so you are clear to translate! Help us translate WordPress into more than 100 languages!

\n

Happy testing!

\n

The verdict is in,
\nCan I haz all the features,
\nYour best WordPress yet.

\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:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:39:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.6 Release Candidate\";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:67:\"https://wordpress.org/news/2016/07/wordpress-4-6-release-candidate/\";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:\"Wed, 27 Jul 2016 19:14:32 +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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";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:34:\"https://wordpress.org/news/?p=4416\";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:337:\"The release candidate for WordPress 4.6 is now available. We’ve made a few refinements since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.6 on Tuesday, August 16, but we need […]\";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:17:\"Dominik Schilling\";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:2428:\"

The release candidate for WordPress 4.6 is now available.

\n

We’ve made a few refinements since releasing Beta 4 a week ago. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.6 on Tuesday, August 16, but we need your help to get there.

\n

If you haven’t tested 4.6 yet, now is the time!

\n

Think you’ve found a bug? Please post to the Alpha/Beta support forum. If any known issues come up, you’ll be able to find them here.

\n

To test WordPress 4.6, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip).

\n

For more information about what’s new in version 4.6, check out the Beta 1Beta 2, Beta 3, and Beta 4 blog posts.

\n

Developers, please test your plugins and themes against WordPress 4.6 and update your plugin’s Tested up to version in the readme to 4.6. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we never want to break things.

\n

Be sure to read the in-depth field guide, a post with all the developer-focused changes that take place under the hood.

\n

Do you speak a language other than English? Help us translate WordPress into more than 100 languages!

\n

Happy testing!

\n

Der Sommer ist da,
\nZeit für ein neues Release.
\nBald ist es soweit.

\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:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:39:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.6 Beta 4\";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:56:\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/\";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:\"Wed, 20 Jul 2016 18:49:17 +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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";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:34:\"https://wordpress.org/news/?p=4396\";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:329:\"WordPress 4.6 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";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:17:\"Dominik Schilling\";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:4309:\"

WordPress 4.6 Beta 4 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

For more information on what’s new in 4.6, check out the Beta 1, Beta 2, and Beta 3 blog posts, along with in-depth field guides. This is the final planned beta of WordPress 4.6, with a release candidate scheduled for next week.

\n

Some of the fixes in Beta 4 include:

\n
    \n
  • Media: alt attributes are now always added to images inserted from URLs (#36735).
  • \n
  • Object subtype handling has been removed from register_meta(). Details about this change are explained in a post for developers.
  • \n
  • Resource hints are now limited to enqueued assets (#37385).
  • \n
  • A regression with query alterations introduced by the new WP_Term_Query has been fixed (#37378).
  • \n
  • The Ajax searches for installed and new plugins have been enhanced to fix several accessibility issues and to improve compatibility with older browsers. (#37233, #37373)
  • \n
  • The media player MediaElement.js has been updated to 2.22.0 to fix YouTube video embeds (#37363).
  • \n
  • The Import screen was overhauled, improving accessibility and making it much easier to install and run an importer (#35191).
  • \n
  • Emoji support has been updated to include all of the latest Unicode 9 emoji characters (#37361). ???\"?\"\"?\"?\"?\"
  • \n
  • Various bug fixes. We’ve made more than 60 changes during the last week.
  • \n
\n

Do you speak a language other than English? Help us translate WordPress into more than 100 languages!

\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. Or, if you’re comfortable writing a bug report, file one on the WordPress Trac. There, you can also find a list of known bugs and everything we’ve fixed.

\n

Happy testing!

\n

This is Beta 4,
\nThe last before RC 1.
\nPlease test all the things.

\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:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:39:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.6 Beta 3\";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:56:\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-3/\";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:\"Wed, 13 Jul 2016 19:00:08 +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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";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:34:\"https://wordpress.org/news/?p=4386\";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:329:\"WordPress 4.6 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";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:17:\"Dominik Schilling\";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:3169:\"

WordPress 4.6 Beta 3 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

For more information on what’s new in 4.6, check out the Beta 1 and Beta 2 blog posts, along with in-depth field guides on make/core. Some of the fixes in Beta 3 include:

\n
    \n
  • Revisions: Autosaves can now be restored when revisions are disabled (#36262).
  • \n
  • An improved handling of PHP’s memory limit which doesn’t lower the limit anymore (#32075).
  • \n
  • TinyMCE has been updated to 4.4.0 (#37327).
  • \n
  • HTTP API: Proxy settings weren’t honored by the new HTTP library. This has been fixed (#37107).
  • \n
  • Improved handling of UTF-8 address headers for emails (#21659).
  • \n
  • Various bug fixes. We’ve made more than 65 changes during the last week.
  • \n
\n

Do you speak a language other than English? Help us translate WordPress into more than 100 languages!

\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. Or, if you’re comfortable writing a bug report, file one on the WordPress Trac. There, you can also find a list of known bugs and everything we’ve fixed.

\n

Happy testing!

\n

Beta 3 is here,
\nThe more testing, the better.
\nGotta catch ‘em all!

\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:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:39:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.6 Beta 2\";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:56:\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/\";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:\"Wed, 06 Jul 2016 18:43:37 +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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";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:34:\"https://wordpress.org/news/?p=4371\";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:329:\"WordPress 4.6 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";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:17:\"Dominik Schilling\";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:2803:\"

WordPress 4.6 Beta 2 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

Notable changes since WordPress 4.6 Beta 1:

\n
    \n
  • Meta: The fallback authentication for the previous registration method has been restored. Also, retrieving registered metadata now works and non-core object types are no longer forcibly blocked. See #35658.
  • \n
  • REST API: The order of setting sanitization and validation has been reversed; validation now occurs prior to sanitization. Previously, the sanitization callback ran before the validation callback. See #37192.
  • \n
  • Customize: The order of setting sanitization and validation has been reversed; validation now occurs prior to sanitization. See #37247.
  • \n
  • HTTP API: WP_Http::request() returns an array again. See #37097.
  • \n
  • Various bug fixes. We’ve made just over 50 changes in the last week.
  • \n
\n

For more of what’s new in version 4.6, check out the Beta 1 blog post.

\n

Do you speak a language other than English? Help us translate WordPress into more than 100 languages!

\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. Or, if you’re comfortable writing a bug report, file one on the WordPress Trac. There, you can also find a list of known bugs and everything we’ve fixed.

\n

Happy testing!

\n

Teenage Beta 2
\nThirteen years of pressing words
\nRejoice with testing!

\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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:39:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.6 Beta 1\";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:56:\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\";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:\"Thu, 30 Jun 2016 01:22:48 +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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.6\";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:34:\"https://wordpress.org/news/?p=4343\";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:329:\"WordPress 4.6 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";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:17:\"Dominik Schilling\";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:5954:\"

WordPress 4.6 Beta 1 is now available!

\n

This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.6, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

\n

WordPress 4.6 is slated for release on August 16, but to get there, we need your help testing what we have been working on, including:

\n
    \n
  • Shiny Updates v2 ([37714]) – Shiny Updates replaces progress updates with a simpler and more straight forward experience when installing, updating, and deleting plugins and themes.
  • \n
  • Native Fonts in the Admin (#36753) – Experience faster load times, especially when working offline, a removal of a third-party dependency, and a more native-feeling experience as the lines between the mobile web and native applications continue to blur.
  • \n
  • Editor Improvements – A more reliable recovery mode (#37025) and detection of broken URLs while you type them (#36638).
  • \n
\n

There have been changes for developers to explore as well:

\n
    \n
  • Resource Hints (#34292) – Allow browsers to prefetch specific pages, render them in the background, perform DNS lookups, or to begin the connection handshake (DNS, TCP, TLS) in the background.
  • \n
  • New WP_Site_Query (#35791) and WP_Network_Query (#32504) classes to query sites and networks with lazy loading for details.
  • \n
  • Requests (#33055) – A new PHP library for HTTP requests that supports parallel requests and more.
  • \n
  • WP_Term_Query (#35381) is modeled on existing query classes and provides a more consistent structure for generating term queries.
  • \n
  • Language Packs (#34114#34213) – Translations managed through translate.wordpress.org now have a higher priority and are loaded just-in-time.
  • \n
  • WP_Post_Type (#36217) provides easier access to post type objects and their underlying properties.
  • \n
  • The Widgets API (#28216) was enhanced to support registering pre-instantiated widgets.
  • \n
  • Index definitions are now normalized by dbDelta() ([37583]).
  • \n
  • Comments can now be stored in a persistent object cache (#36906).
  • \n
  • External Libraries were updated to the latest versions – Masonry to 3.3.2 and imagesLoaded to 3.2.0 (#32802), MediaElement.js to 2.21.2 (#36759), and TinyMCE to 4.3.13 (#37225).
  • \n
  • REST API responses now include an auto-discovery header (#35580) and a refreshed nonce when responding to an authenticated response (#35662).
  • \n
  • Expanded Meta Registration API via register_meta() (#35658).
  • \n
  • Customizer – Improved API for setting validation (#34893#36944).
  • \n
\n

If you want a more in-depth view of what major changes have made it into 4.6, check out posts tagged with 4.6 on the main development blog, or look at a list of everything that’s changed.

\n

If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on the WordPress Trac. There, you can also find a list of known bugs.

\n

Happy testing!

\n

More Shiny Updates
\nIn 4.6 Beta 1.
\nAnd Font Natively.

\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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:39:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.5.3 Maintenance and Security Release\";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:51:\"https://wordpress.org/news/2016/06/wordpress-4-5-3/\";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:\"Sat, 18 Jun 2016 09:38:15 +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:3:{i:0;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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";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:2;a:5:{s:4:\"data\";s:3:\"4.5\";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:34:\"https://wordpress.org/news/?p=4311\";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:460:\"WordPress 4.5.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.5.2 and earlier are affected by several security issues: redirect bypass in the customizer, reported by Yassine Aboukir; two different XSS problems via attachment names, reported by Jouko Pynnönen and Divyesh Prajapati; revision history information disclosure, reported […]\";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:16:\"Adam Silverstein\";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:3571:\"

WordPress 4.5.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately.

\n

WordPress versions 4.5.2 and earlier are affected by several security issues: redirect bypass in the customizer, reported by Yassine Aboukir; two different XSS problems via attachment names, reported by Jouko Pynnönen and Divyesh Prajapati; revision history information disclosure, reported independently by John Blackbourn from the WordPress security team and by Dan Moen from the Wordfence Research Team; oEmbed denial of service reported by Jennifer Dodd from Automattic; unauthorized category removal from a post, reported by David Herrera from Alley Interactive; password change via stolen cookie, reported by Michael Adams from the WordPress security team; and some less secure sanitize_file_name edge cases reported by Peter Westwood of  the WordPress security team.

\n

Thank you to the reporters for practicing responsible disclosure.

\n

In addition to the security issues above, WordPress 4.5.3 fixes 17 bugs from 4.5, 4.5.1 and 4.5.2. For more information, see the release notes or consult the list of changes.

\n

Download WordPress 4.5.3 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.5.3.

\n

Thanks to everyone who contributed to 4.5.3:

\n

Boone Gorges, Silvan Hagenvortfu, Eric Andrew LewisNikolay Bachiyski,  Michael Adams, Jeremy FeltDominik SchillingWeston RuterDion HulseRachel BakerAlex ConchaJennifer M. DoddBrandon Kraft, Gary Pendergast, Ella Iseulde Van Dorpe, Joe McGill, Pascal Birchler, Sergey BiryukovDavid Herrera and Adam Silverstein.

\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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:39:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.5.2 Security Release\";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:51:\"https://wordpress.org/news/2016/05/wordpress-4-5-2/\";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:\"Fri, 06 May 2016 19:17:08 +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:3:{i:0;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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";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:2;a:5:{s:4:\"data\";s:3:\"4.5\";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:34:\"https://wordpress.org/news/?p=4290\";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:381:\"WordPress 4.5.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.5.1 and earlier are affected by a SOME vulnerability through Plupload, the third-party library WordPress uses for uploading files. WordPress versions 4.2 through 4.5.1 are vulnerable to reflected XSS […]\";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:\"Helen Hou-Sandi\";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:1669:\"

WordPress 4.5.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately.

\n

WordPress versions 4.5.1 and earlier are affected by a SOME vulnerability through Plupload, the third-party library WordPress uses for uploading files. WordPress versions 4.2 through 4.5.1 are vulnerable to reflected XSS using specially crafted URIs through MediaElement.js, the third-party library used for media players. MediaElement.js and Plupload have also released updates fixing these issues.

\n

Both issues were analyzed and reported by Mario Heiderich, Masato Kinugawa, and Filedescriptor from Cure53. Thanks to the team for practicing responsible disclosure, and to the Plupload and MediaElement.js teams for working closely with us to coördinate and fix these issues.

\n

Download WordPress 4.5.2 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.5.2.

\n

Additionally, there are multiple widely publicized vulnerabilities in the ImageMagick image processing library, which is used by a number of hosts and is supported in WordPress. For our current response to these issues, see this post on the core development blog.

\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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:36:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 4.5.1 Maintenance Release\";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:71:\"https://wordpress.org/news/2016/04/wordpress-4-5-1-maintenance-release/\";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, 26 Apr 2016 18:58:18 +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: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:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.5\";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:34:\"https://wordpress.org/news/?p=4269\";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:358:\"After about six million downloads of WordPress 4.5, we are pleased to announce the immediate availability of WordPress 4.5.1, a maintenance release. This release fixes 12 bugs, chief among them a singular class issue that broke sites based on the Twenty Eleven theme, an incompatibility between certain Chrome versions and the visual editor, and an […]\";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:16:\"Adam Silverstein\";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:2134:\"

After about six million downloads of WordPress 4.5, we are pleased to announce the immediate availability of WordPress 4.5.1, a maintenance release.

\n

This release fixes 12 bugs, chief among them a singular class issue that broke sites based on the Twenty Eleven theme, an incompatibility between certain Chrome versions and the visual editor, and an Imagick bug that could break media uploads. This maintenance release fixes a total of 12 bugs in Version 4.5. For more information, see the release notes or consult the list of changes.

\n

Download WordPress 4.5.1 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.5.1.

\n

Thanks to everyone who contributed to 4.5.1:

\n

Aaron Jorbin, Andrea Fercia, Andrew Ozz, Boone Gorges, Dominik Schilling, Felix Arntz, Gary Pendergast, gblsm, Helen Hou-Sandi, Joe McGill, John Blackbourn, Nick Halsey, Pascal Birchler, and Pieter.

\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:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:36:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress 4.5 “Coleman”\";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:43:\"https://wordpress.org/news/2016/04/coleman/\";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, 12 Apr 2016 19:15:32 +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: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:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.5\";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:34:\"https://wordpress.org/news/?p=4203\";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:383:\"Version 4.5 of WordPress, named “Coleman” in honor of jazz saxophonist Coleman Hawkins, is available for download or update in your WordPress dashboard. New features in 4.5 help streamline your workflow, whether you’re writing or building your site. Editing Improvements Inline Linking Stay focused on your writing with a less distracting interface that keeps you in […]\";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:13:\"Mike Schroder\";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:27103:\"

Version 4.5 of WordPress, named “Coleman” in honor of jazz saxophonist Coleman Hawkins, is available for download or update in your WordPress dashboard. New features in 4.5 help streamline your workflow, whether you’re writing or building your site.

\n

\n
\n

Editing Improvements

\n

\"illustration-short-inlinelinks\"

\n

Inline Linking

\n

Stay focused on your writing with a less distracting interface that keeps you in place and allows you to easily link to your content.

\n

\"editing-shortcuts-big\"

\n

Formatting Shortcuts

\n

Do you enjoy using formatting shortcuts for lists and headings? Now they’re even more useful, with horizontal lines and <code>.

\n
\n

Customization Improvements

\n

\"illustration-short-responsive-preview\"

\n

Live Responsive Previews

\n

Make sure your site looks great on all screens! Preview mobile, tablet, and desktop views directly in the customizer.

\n

\n

Custom Logos

\n

Themes can now support logos for your business or brand. Try it out with Twenty Sixteen and Twenty Fifteen in the Site Identity section of the customizer.

\n
\n

Under the Hood

\n
\n
\n

Smart Image Resizing

\n

Generated images now load up to 50% faster with no noticeable quality loss. It’s really cool.

\n
\n
\n

Selective Refresh

\n

The customizer now supports a comprehensive framework for rendering parts of the preview without rewriting your PHP code in JavaScript.

\n
\n
\n

Script Loader Improvements

\n

Better support has been added for script header/footer dependencies. New wp_add_inline_script() enables adding extra code to registered scripts.

\n

Better Embed Templates

\n

Embed templates have been split into parts and can be directly overridden by themes via the template hierarchy.

\n

JavaScript Library Updates

\n

jQuery 1.12.3, jQuery Migrate 1.4.0, Backbone 1.2.3, and Underscore 1.8.3 are bundled.

\n
\n
\n
\n
\n

The Crew

\n

\"MikeThis release was led by Mike Schroder, backed up by Adam Silverstein as Release Deputy, Mel Choyce as Release Design Lead, and the help of these fine individuals. There are 298 contributors with props in this release. Pull up some Coleman Hawkins on your music service of choice, and check out some of their profiles:

\n@mercime, Aaron D. Campbell, Aaron Edwards, Aaron Hockley, Aaron Jorbin, Abiral Neupane, Ahmad Awais, aidanlane, Alex Dimitrov, Alice Brosey, Amanda Rush, Andrea Fercia, Andrea Gandino, Andrew Nacin, Andrew Ozz, Andrew Rockwell, Andy Meerwaldt, Ankit K Gupta, Anton Timmermans, apaliku, Aram Zucker-Scharff, ash.matadeen, Ashok Kumar Nath, BandonRandon, Barry Ceelen, Ben Dunkle, berengerzyla, Bernhard Riedl, Bhushan S. Jawle, Birgir Erlendsson (birgire), Boone B. Gorges, Brad Williams, Brady Vercher, Brandon Allen, Brandon Hubbard, Brandon Kraft, Brian Krogsgard, Bruno Borges, Callum Macdonald, Cami Kaos, Chandra Patel, Charles Fulton, Chetan Chauhan, Chouby, ChriCo, Chris Christoff, Chris Mok, christophherr, ckoerner, Claudio Sanches, Compute, coreymcollins, d4z_c0nf, Daisuke Takahashi, danhgilmore, Daniel Bachhuber, Daniel Bailey, Daniel Jalkut (Red Sweater), Daniel Llewellyn, Daniele Scasciafratte, danielpataki, Danny van Kooten, Dave Clements, David A. Kennedy, David Brumbaugh, David Herrera, David Newton, David Shanske, Davide \'Folletto\' Casali, Denis de Bernardy, Dennis Ploetner, Derek Herman, Dion Hulse, dmsnell, Dominik Schilling, Dossy Shiobara, Dotan Cohen, Dreb Bits, Drew Jaynes, duaneblake, Dzikri Aziz, Elio Rivero, Ella Iseulde Van Dorpe, Emerson Maningo, Enej Bajgoric, Eric Andrew Lewis, Eric Binnion, Eric Daams, Erick Hitter, Evan Herman, Fabien Quatravaux, faishal, fantasyworld, Felix Arntz, finnj, firebird75, Fredrik Forsmo, fusillicode, Gary Jones, Gary Pendergast, gblsm, George Stephanis, Giuseppe Mamone, Giustino Borzacchiello, Grant Palin, groovecoder, Guido Scialfa, Gustavo Bordoni, hakre, Helen Hou-Sandí, Henry Wright, Hinaloe, Hugh Lashbrooke, Hugo Baeta, Iain Poulson, Ignacio Cruz Moreno, imath, Ionut Staicu, Ivan Kristianto, J.D. Grimes, jadpm, James DiGioia, Jason Adams, Jasper de Groot, Jeffrey de Wit, Jeffrey Schutzman, Jennifer M. Dodd, Jeremy Felt, Jeremy Herve, Jeremy Pry, Jesin A, Jess G., Joan Boluda, Joe Hoyle, Joe McGill, joelerr, John Blackbourn, John James Jacoby, JohnnyPea, Jonathan Brinley, Jonny Harris, Jory Hogeveen, Joseph Fusco, Josh Levinson, Josh Pollock, jrchamp, jrf, Juanfra Aldasoro, Juhi Saxena, Julio Potier, katieburch, Kelly Dwan, Kevin Hagerty, Kiran Potphode, Kirk Wight, Kite, kjbenk, Konstantin Kovshenin, Konstantin Obenland, Konstantinos Kouratoras, KrissieV, Lance Willett, leemon, Lew Ayotte, Liam Dempsey, Luan Ramos, luciole135, Lukas Pawlik, Lutz Schröer, madvic, Marco Chiesi, Marin Atanasov, Mario Peshev, Mark Barnes, Mark Jaquith, Mark Uraine, Marko Heijnen, Martin Burke, Matt Felten, Matt Mullenweg, Matt Wiebe, MattGeri, maweder, Mayo Moriyama, mcapybara, Mehul Kaklotar, Meitar, mensmaximus, Michael Arestad, michalzuber, micropat, Mika Epstein, Mike Glendinning, Mike Hansen, Mike Jolley, Milan Dinić, Morgan Estes, moto hachi ( mt8.biz ), Mr Papa, mwidmann, nexurium, Niall Kennedy, Nic Ford, Nick Halsey , Nilambar Sharma, Ninos, oaron, overclokk, Pascal Birchler, Pat O\'Brien, Paul Bearne, Paul de Wouters, Payton Swick, Perez Labs, Pete Nelson, Peter Wilson, petermolnar, Petter Walbø Johnsgård, Pieter, Pippin Williamson, Pirate Dunbar, prettyboymp, Profforg, programmin, Rachel Baker, rahal.aboulfeth, Rami Yushuvaev, Rastislav Lamos, Ricky Lee Whittemore, Ritesh Patel, rob, Roger Chen, RomSocial, Ruud Laan, Ryan Boren, Ryan Kienstra, Ryan McCue, Ryan Welcher, Sagar Jadhav, Sal Ferrarello, salvoaranzulla, Sam Hotchkiss, Sara Rosso, Scott Arciszewski, Scott Kingsley Clark, Scott Reilly, Scott Taylor, scottbrownconsulting, scribu, Sebastian Pisula, Sergej Müller, Sergey Biryukov, Shane, Shinichi Nishikawa, Sidati, Siobhan, sky, slushman, smerriman, stephanethomas, Stephen Edgar, Stephen Harris, Steve Grunwell, Steven Word, Store Locator Plus, Subharanjan, Sudar Muthu, Sumit Singh, Taco Verdonschot, tahteche, Takashi Irie, Takayuki Miyoshi, Tammie Lister, tharsheblows, theMikeD, thomaswm, Timothy Jacobs, timplunkett, tmuikku, Toni Viemerö, Toro_Unit (Hiroshi Urabe), Tracy Levesque, Tran Ngoc Tuan Anh, Travis Smith, Ty Carlson, Ulrich, Utkarsh, vhomenko, virgodesign, vlad.olaru, voldemortensen, vtieu, webaware, Wesley Elfring, Weston Ruter, WisdmLabs, WP Delighter, wp-architect, yetAnotherDaniel, and zinigor.\n

 

\n

Special thanks go to Siobhan McKeown for producing the release video and Jack Lenox for the voice-over.

\n

Finally, thanks to all of the contributors who provided translations for the release. WordPress 4.5 comes fully translated into 44 languages and the release video has been translated into 32 languages!

\n

If you want to follow along or help out, check out Make WordPress and our core development blog. Thanks for choosing WordPress. See you soon for version 4.6!

\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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";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:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";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:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 12 Aug 2016 00:55:44 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 11 Aug 2016 00:31:04 GMT\";s:4:\"link\";s:63:\"; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}}s:5:\"build\";s:14:\"20160812002010\";}','no'), (1195,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1471006544','no'), (1196,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1470963344','no'), (1197,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1471006545','no'), (1198,'_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:73:\"WordPress.tv Blog: How to Get 100 Content Ideas in an Hour: Nicole Kohler\";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:31:\"http://blog.wordpress.tv/?p=571\";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:90:\"http://blog.wordpress.tv/2016/08/11/how-to-get-100-content-ideas-in-an-hour-nicole-kohler/\";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:1094:\"

If there’s one thing worse than writer’s block, it’s running out of ideas for your blog or business — or not having any to begin with. Luckily, the internet has made getting inspired an easy task, not to mention an incredibly quick one. In this talk, Nicole shares tips, tools, and content “lifehacks” you can use to generate 100 (or more!) content ideas in less time than it takes to settle on a new theme. Filmed at WordCamp Boston 2016

\n

\n

Presentation slides

\n

See more WordCamp videos at WordPress.tv!


\"\" \"\"\";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:\"Thu, 11 Aug 2016 03:02:57 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";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: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:37:\"HeroPress: Finding WordPress in Fargo\";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:55:\"http://heropress.com/?post_type=heropress-essays&p=1211\";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:52:\"http://heropress.com/essays/finding-wordpress-fargo/\";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:12851:\"\"Pull

I am sure most of you are wondering “New phone, who dis?” when it comes to me. Okay maybe not those words exactly, but I know I am a no-name and haven’t been around very long. I haven’t created any kick ass plugins (yet), I haven’t contributed to WordPress core (yet), and I haven’t developed any themes (yet).

\n

So why was I asked to write an essay? Maybe it’s because there are a lot of people out there who are also trying to break into this community, probably somewhat introverted like me who don’t know how, or why, or what to do. No, I don’t have all the answers, I don’t have a set plan, and I am not in the position to dish out advice because I am still trying to figure it out and navigate it the best I can. But maybe, just maybe, this essay will ring true with someone who thinks, “SAMESIES.” and they know they’re not the only one out there.

\n

Or maybe it’s because I am awesome. You guys can be the judge.

\n

Let’s get introduced

\n

I am a shy, but not so shy girl, from the great city of Fargo, ND (No, it’s nothing like the awesome movie or TV show, don’tcha know) who started Freelancing in March 2016 after working for a local agency for two and half years.

\n

My story is probably one many have seen. Girl gets job, girl learns a lot, girl’s eyes are opened to a whole new world, girl works hard but doesn’t move up, girl applies for remote jobs with no luck, girl decides she can do this by herself, and girl leaves full time job and joins the million other freelancers in the self-employment world.

\n

Generic sounding, but there is a bit more to it.

\n

Let’s go back in time for a quick second

\n

It all started in my parent’s basement when I was 16. Anyone ever heard of Xanga? It was a social blogging platform that was huge in my school. I made graphics using some freeware Photoshop knock off and custom layouts using basic CSS and HTML for Xanga in my free time, because you know, that’s normal for a 16 year old girl.

\n

My parents encouraged me to go to school for graphic design at our local technical college and (blah blah blah….let’s fast forward.) 4 years later after I graduated for Graphic Design, while I was working for a local school photography lab designing layouts for school ID cards and yearbooks, I graduated a second time after going back for Web Development and Design.

\n

I landed a job doing web design in July 2013. In the interview, they asked me if I knew what WordPress was and I answered honestly like any person would in an interview with something along the lines of, “I have heard of it but I have never used it. BUT I am a go getter and love taking on any new challenges so I don’t doubt I will be able to figure it out.” I dove in and learned a lot of the WordPress basics in a short amount of time.

\n

A whole new world

\n

Fast Forward to May 2014, we decided as a team to go to WordCamp Minneapolis for the first time. I am an introverted extrovert, so networking is not my thing. After I get to know people, I am good, but the first step to introduce yourself to someone is scary.

\n

After day one at WordCamp Minneapolis, my eyes were opened to a whole new world (queue Aladdin song). I didn’t know how my introverted self would do it, but I wanted to be best friends with everyone there. The WordPress community is so friendly, and so welcoming. I left feeling so inspired and wanted to go to every WordCamp that ever was. I went home with a goal of learning everything I can about WordPress.

\n

Shortly thereafter, I started to dabble in front-end development. Custom post types, short codes, page templates, etc. I looked at how the themes were created, reversed engineered them, and started to mess around with it. If I hit a bump, I researched it, and of course there was a tutorial or someone in the WordPress community had a solution. (Reason #785 why the WordPress community is fantastic, #ThoseSupportForumsTho.)

\n

In November 2015, I started to feel this shift within myself; that I wanted to do more than I could do in my current position.

\n

The company was going in one way and I was going the other. I wanted to grow as a designer and a developer.

\n

After a few months of indecision, wondering if I should move to Minneapolis and not hearing back from some remote positions I applied for, a former co-worker reached out to me and said she wanted to work with me. After discussing this with some friends, I had another former colleague that said they would hire me to develop their website, so the wheels started to turn in my head.

\n

Let me just say, freelancing full time was not anything I considered before. My typical response “Me? Run my own business? Say what? HAHAHA, right.” I thought of every reason why I shouldn’t do it. Lack of steady income, mortgage, self-employment taxes, not having other clients interested in working with me. I could go on and on, really.

\n

Yet there I was, considering quitting my full time job to work for myself. How else was I going to grow? How else was I going to get my name out there?

\n

I only had about a full week to decide what I wanted to do and this wasn’t an easy decision at all. After some sleepless nights and having the same conversation with my husband at least 100 times, who did nothing but encourage me while I talked myself out of it, I came to a decision.

\n

I followed my gut instinct to grab the opportunity that was presented and go for it.

\n

I didn’t 100% know what I was doing, but I knew I loved WordPress, I knew I had the design chops, and I knew I was great with clients. I was raised with a can-do attitude, so I was going to freelance my little heart out, and on March 5th, 2016, I entered the self-employment world.

\n

Fast forward to May 2016, I bought my ticket to WordCamp Minneapolis (because duh, it’s amazing). I then proceeded to buy my ticket to the Prestige Conference, which was taking place two days after WordCamp. I planned on going to both of these conferences by myself (and anyone who knows me on a personal level knows how much of an accomplishment this was for me). Because I was alone, WordCamp was a bit different this year. I didn’t have coworkers to talk to so I went in there with a mission to network, but my high anxiety and introverted side decided I should sit quietly and take it all in.

\n

Prestige Conference, for those who aren’t familiar, is a smaller conference and focused on running your small business. As a noobie freelancer, I needed to know how other like-minded people were running their businesses, how they were succeeding. So, there I was, a full-time freelancer for a whole 3 months, sitting in this conference with some of these big industry names. Intimidating? Yep, just a bit. The speakers left me in awe and I felt so out of my league but I was just happy to be there, learning and absorbing what everyone was saying.

\n

Topher and Cate DeRosia were also at this conference. Topher came up to me and started chatting and I quickly explained my background. He gave me some super helpful tips and resources for freelancing. I may have not emoted it, but I was elated. I made a connection. Not exactly because I was outgoing, BUT STILL, I NETWORKED!

\n

A couple weeks later, Topher contacted me to see if I was interested in making blog images for this very blog. Taken aback, but ever so grateful, I accepted. And after communicating over Twitter, Slack, and email for a couple more weeks, he asked if I wanted to write my own essay. Once again, shocked, dumbfounded, and hesitant because who would want to read my story, but after some encouragement, I was writing my essay.

\n

Started from a basement now I’m here

\n

So from where I started 12 years ago messing around with graphics, CSS & HTML for Xanga in my parents basement in Fargo, ND, I am back in a basement, my own this time, doing pretty much the same thing. Doesn’t sound like a big upgrade, but believe me, it is.

\n

I am sure I wouldn’t be where I am right now if I skipped out on any of the conferences I went to.

\n

Where is my future going? Who knows. I am not a ‘go with a flow’ person, but for the first time, I am trying to go with the flow. I am going to be going to more events and plan on going to WordCamp USA so I can take another stab at networking.

\n

To sum it up

\n

TL/DR version: My story may be generic, but my love for WordPress is anything but generic. Before WordPress I enjoyed doing graphic design and web design, but discovering the WordPress community helped me find that missing spark I needed. It’s helped me realize my goals and it’s helped me find my drive and ambition I didn’t know I had.

\n

The WordPress community is a huge support system in my life and they don’t even know who the heck I am.

\n

I can honestly say I love my job, I love working with clients, and I am damn lucky to be able to do what I do every day.

\n

It’s not all sunshine and rainbows. I still stress about everything that almost stopped me from doing this and I have my moments where I still question why I quit my full-time job. It may not pan out, it may go in a different direction, but I am along for the ride with WordPress in my backpack and I cannot wait to see where I end up.

\n

Special thanks to: My husband for dealing with my indecisiveness, my sister for being my cheerleader when I doubt myself, and my family for supporting my every decision, Topher for taking a couple minutes out of his day to talk to me and everything else that followed, Kelsey and the Enclave team for being my very first client, and everyone else who has supported this venture.

\n

The post Finding WordPress in Fargo appeared first on HeroPress.

\";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:\"Wed, 10 Aug 2016 12:00:51 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Stacey Barton\";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:2;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:74:\"Post Status: Choosing plugins, libraries, and frameworks — Draft Podcast\";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:31:\"https://poststatus.com/?p=25965\";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:75:\"https://poststatus.com/choosing-plugins-libraries-frameworks-draft-podcast/\";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:1693:\"

Welcome to the Post Status Draft podcast, which you can find on iTunesGoogle PlayStitcher, and via RSS for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and me, Brian Krogsgard.

\n

In this episode, Joe and I discuss how we choose plugins, code libraries, and frameworks for our projects.

\n\nhttps://audio.simplecast.com/44063.mp3\n

Direct Download

\n

Topics & Links

\n
    \n
  • How we pick plugins
  • \n
  • Analyzing a plugin on WordPress.org
  • \n
  • Using GitHub
  • \n
  • Picking libraries or drop-in frameworks
  • \n
  • Dealing with updates
  • \n
  • Differentiating between picking tools for our personal or internal projects, versus doing so for clients
  • \n
\n

Sponsor: WooCommerce

\n

WooCommerce makes the most customizable eCommerce software on the planet, and it’s the most popular too. You can build just about anything with WooCommerce. Try it today, and thanks to the team at WooCommerce being a Post Status partner

\";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:\"Sat, 06 Aug 2016 14:57:45 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";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:3;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:33:\"HeroPress: The Joy of Giving Back\";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:55:\"http://heropress.com/?post_type=heropress-essays&p=1190\";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:44:\"http://heropress.com/essays/joy-giving-back/\";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:8817:\"\"Thanks

I was born and brought up in a very small town called Patiyali. Patiyali is on the banks of the river Ganga. It is in India’s most populous state, Uttar Pradesh. Patiyali was laid back and idyllic, with no real opportunities in IT or computers. My father never wanted me to go for IT Job because I wouldn’t get chance to work near my town. He preferred I live closer home.

\n

My mother supported me and somehow she convinced my father to let me follow my dreams. Thanks to my mother; she has always supported me, without her I would not be here.

\n

In my college there was choice between Dot Net and Java, I choose Java. I have always been fan of Open Source. I loved Java, I had also started my blog on Java in my college time. After completing my MCA I had joined my first Job as a Java Developer. I did it for 1.5 years.

\n

I never wanted to quit my job as Java Developer, but I had to because of my sister health issues. Doctors said she would not survive, it was very critical time.

\n

How I got into WordPress (Hello WordPress!)

\n

Unemployed for 6 months, Java was still on my mind. I could not get any Job. Meantime I had started teaching. I was hopeless, I thought I would never get a chance to work in any IT company again. Then a friend, Ankit, who worked in rtCamp, a company based in Pune told me to look up WordPress and asked me to apply for a QA opening. That lucky day I got call from rtCamp and cleared my interview. Now the challenge was to convince my parents to allow me to go Pune. Pune is in Maharashtra, almost 1000 miles away from my hometown.

\n

My parents are from a smaller town, they were worried about me living alone in a big city. It was a challenge to convince them to let go.

\n

Some things they worried about:

\n
    \n
  • Place to stay: It was too tough to find a place when I had no one in Pune.
  • \n
  • Female Count: My mother was most worried about female count. rtCamp had only two female employees including me. (now they have 7)
  • \n
\n

Before my first day, my father and I went to rtCamp’s address and looked up the office. Convinced the neighborhood where it was located was semi-residential and safe, he felt much better about Pune.

\n

But WordPress is just a blogging platform

\n

Before joining rtCamp I had known WordPress as only a blogging platform. My friends who worked in MNCs usually dismissed it as a blogging platform that could create only static sites at best. I did not have a very different opinion than my friends.

\n

Working in rtCamp was fun. I made friends but to be honest I did not find WordPress very interesting for the first six months in the beginning.

\n

WordPress community called out to me

\n

Then I saw my colleagues involved in the WordPress community as Core contributors and in many other ways. I saw how my company was encouraging people to get involved in community.

\n

That encouraged me to get involved in with make.WordPress.org. I highly recommend you do that too.

\n

First Contribution Core Patch

\n

My first contribution was a small patch in the core. I was helped by colleagues and when it was accepted I was thrilled. Now something I did was on millions of websites. It might be a small line or two but still it was on millions of websites.

\n

In September 2015, I took part in WordCamp Pune. It was my first WordCamp. I met so many wonderful people; Topher, Mahangu, Raghavendra Satish Peri, I got to learn so many new things from them.

\n

I try to contribute (Giving back to community) in every possible way, by giving support, translating, Review themes, and documentation.

\n

Theme Review

\n

Theme review was the challenge for me as I had no idea about WordPress development so I thought to learn by seeing other people’s code. It was challenge for me because I am QA (non- WordPress Developer), other people assume that we can not get involved in any code related activity. I learned a lot by reviewing themes, every day I review a theme I learn so many new things. The theme review team is wonderful, there are so many wonderful people like Kevin Archibald, Carolina Nymark, Jon, Nilambar, who are ready to help you always. I am happy to be part of theme review team.

\n

I love WordPress, it’s wonderful, it has wonderful community.

\n

Why do I love being part of WordPress?

\n

Recognition.

\n

I have always been crazy for being known for something. In college time when I used to get likes for my blog post or any comment, I used to feel like……wow, I can not even express that feeling in words. So that feeling WordPress gives me every time I gets mention in any WP.org posts. It gives me recognition.

\n

https://make.wordpress.org/themes/2016/06/28/thank-you-reviewers-2/
\nhttps://make.wordpress.org/docs/2016/07/12/summary-for-helphub-meeting-12-july/
\nhttp://make.wordpress.org/core/2015/09/21/week-in-core-sept-13-21-2015/
\nhttps://wordpress.org/news/2016/02/contributor-weekend-one-hour-video/

\n

A Thank You Note

\n

All this wonderful adventure would not have been possible without someone back in Patiyali, who stood up for me and encouraged me to follow my dreams. My mother.

\n

The post The Joy of Giving Back appeared first on HeroPress.

\";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:\"Wed, 03 Aug 2016 12:00:21 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Juhi Saxena\";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:4;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:50:\"Post Status: Using Kickstarter to fund open source\";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:31:\"https://poststatus.com/?p=25896\";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:55:\"https://poststatus.com/kickstarter-open-source-project/\";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:12695:\"

Open source is how we create raw ingredients for the digital economy. It’s a rough, organic, and hugely important process. In fact, open source represented $143 million of Instagram’s $1 billion acquisition. Yet the role of open source as economic infrastructure is perilous at best — the next Heartbleed could be any day. Bridges don’t collapse often, but sustainably maintained open source projects are few and far between. Unless a project has the backing of a benevolent organization, it’s all too easy to fall into a state of disrepair.

\n

I do my part by volunteering several hours each week to maintain an open source project called WP-CLI. Last November, I launched a Kickstarter project titled “A more RESTful WP-CLI” to provide a way for me, a self-employed freelancer, to spend a large amount of dedicated time on WP-CLI and the WordPress REST API. The funding wrapped up last month, so I thought it might be helpful to provide a retrospective on what worked, what I’d improve upon next time, and where I think this is all headed.

\n

We all love #shipping

\n

As a very brief summary of how I used the money:

\n
    \n
  • Over seven months, I spent 226 total hours on WP-CLI (150 of which were funded by the Kickstarter project) and 111 total hours on the WordPress REST API (92 of which were funded by the Kickstarter project).
  • \n
  • I shipped three major versions of WP-CLI, and helped with three releases of the WordPress REST API v2 plugin.
  • \n
  • In each release, I personally introduced dozens of new features to each project, fixed ten times as many bugs, provided code review, answered support questions, and revised documentation.
  • \n
\n

There’s a very complete project landing page if you’d like to go through all of the details.

\n

“I’d love to get paid to work on open source too”

\n

On the surface, using Kickstarter seems like a great way to fund open source involvement: create a campaign, people give you money, and you get paid to work on your project. It’s actually fraught with challenges, though. The more appropriate way to think about using Kickstarter for open source is that you’re creating a one-time project for yourself, and have hundreds of customers to serve.

\n

Kickstarter can help freelancers make significant open source contributions

\n

It’s worth highlighting the single most important outcome of the crowdfunding campaign: I was able to spend dedicated time on WP-CLI and the WordPress REST API that I wouldn’t have been able to spend otherwise (or at least in such a concentrated period).

\n

As a freelancer, I evaluate every hour of my working day as either billable or non-billable. While I’m fortunate I can already spend a large amount of non-billable time as I please, at the end of the day the time I don’t spend on billable hours is money out of my pocket. Kickstarter enabled me to consider open source contributions as billable, and rationalize dedicating a large number of hours each week to the projects.

\n

In hindsight, the timing of the Kickstarter project turned out really well too. Because I didn’t have any clients when I quit my full-time job, the funds were a helpful cushion during the slow holiday period, and I had something to work on in January.

\n

It’s important to have backers with deep pockets

\n

Incorporating higher contribution levels, which I had primed by chatting with prospective backers in advance, meant the funding leapt forward in huge bounds. Every time one of those contributions came in, it moved the needle in a substantial way, and kept the excitement level up. This also helped keep lower level contributors engaged and willing to participate. I can’t imagine how difficult it would be to try and fund a Kickstarter exclusively on sub-$100 contributions.

\n

Ben Welch-Bolen, who I hadn’t met until he snagged the top contribution slot, explains:

\n

What attracted us to the WP CLI Kickstarter project was the higher pledge options that had some meaningful exposure for us to his community, and to him as a resource. Plus it was great to give back to a tool we use ourselves and follow closely.

\n

I consider myself fortunate to have an existing audience willing to financially back my open source contributions. Because of my track record, I was able to put my own social capital on the line as collateral, to “guarantee” the project. If you can’t name fifty people who would realistically fund your project, then you’ll need to have a substantial marketing budget (of time or money) to raise awareness.

\n

Scope in open source is a double-edged sword

\n

While I had an established objective for the Kickstarter, I didn’t have a clearly defined scope. This meant that some intermediate implementation details blocked later features. For instance, you can’t use RESTful WP-CLI to manage menus, because the menu endpoints don’t yet exist in the WordPress REST API.

\n

At the same time, not having a super defined scope meant I could take the liberty to spend some of the time on what I thought was most useful. WP-CLI package management and the documentation portal essentially launched because I burned out working on the WordPress REST API.

\n

Crowdfunding requires a certain type of personality

\n

As far as honoring my commitments to my backers goes, I’d consider my Kickstarter a success. I did what I said I was going to do, on the schedule I communicated. I was able to do this, in part, because I’m a very meticulous person. I produce reasonably accurate estimates, keep track of how I spend my time, and over-communicate with stakeholders.

\n

If this doesn’t sound like you, then crowdfunding might not be a great fit. As a freelancer, you need to know in advance how the work will fit alongside client commitments. As a full-time employee, you need to make sure you’re capable of completing the project on nights and weekends.

\n

Josh Strebel, to whom I’m thankful for a great deal of early feedback, thinks:

\n

The open source community is primarily reputation based, WordPress especially. Getting a campaign funded on Kickstarter is about trust. Trust and reputation are shades of the same color so to speak. If you build a reputation of trust, launching and promoting a Kickstarter project should be fairly easy as your peers trust you to execute against your stated goals (their money is used for it’s stated intent and appears to achieve the desired outcome). I do not think you can reverse the order, the reputation in the community must be cultivated prior to seeking funds.

\n

One huge challenge with a Kickstarter project is that you have to do all of the work after you receive the money, which can be really difficult for procrastinators. You’re also faced with dozens of stakeholders to make happy, with your credibility and reputation on the line, so you need to make sure they’re regularly kept in the loop.

\n

Most of what goes into open source isn’t very sexy

\n

Contributing to open source isn’t just cranking out lines of code.

\n

I spent a huge amount of the funded WordPress REST API time on discussion, code review, and support. These maintenance tasks aren’t very appealing for crowdfunding, and probably wouldn’t make it very far as a part of a Kickstarter project. People want to fund sexy new features, not bug fixes, maintenance, documentation, etc.

\n

At the same time, this type of work is hugely expensive, and represents a substantial majority of the effort involved in maintaining an open source project.

\n

Fortunately, Josh Koenig has a healthy understanding of where open source fits into his business:

\n

We believe that open source software is a crucial part of the internet’s value proposition to humanity. However, at this stage in the development of our company, investments in open source have to be strategic. Any sustained contribution we make has to be justifiable in terms of hour it helps us improve our platform or grow our business.

\n

As such our primary code and sponsorship contributions tend to be down the stack, to projects or libraries that we depend on to run our platform. When it comes to WordPress or Drupal, we typically contribute in ways that will have the most impact for our core audience: professional developers. So that means tools and utilities like WP-CLI, Redis or Solr integration, diagnostic tools, etc.

\n

Simplicity means more time spent on the project

\n

On the practical side, offering consulting-time rewards instead of physical swag helped me keep reward costs manageable. Only two-thirds of backers redeemed their rewards, so I spent a total of 41.25 hours on that part of the project.

\n

As it turns out, Jason Resnick even appreciated the open-ended approach to rewards:

\n

The best part of the project was the ability to choose my own path, so to speak. Kind of like those Choose Your Own Adventure books when you were a kid. WP-CLI can be used in so many different ways for different tasks, it was awesome to be able to just hop on a call with you and one or two other folks that also wanted to learn the same thing, and get the answers to the specific questions.

\n

It also proved helpful to produce a landing page for the project with the overall goal, links to blog posts and milestones, and over-communication on how I was “spending” the money. In hindsight, I wish I had been more diligent about my progress updates and communication about what I was actually working on.

\n

My favorite production trick: I used HTML and CSS to produce a graphic in my browser, and took a screenshot of it — quite possibly the easiest way to create a Kickstarter header image, for you other non-designers.

\n

Kickstarter is only the beginning

\n

Kickstarter is an amazing platform for funding creativity. The next time I launch a crowdfunding project, I’ll make sure to:

\n
    \n
  • Get feedback on the idea from as many people as possible, as a way of generating interest and buy-in.
  • \n
  • Establish a project scope with features people want, while making sure there’s ample budget for the unglamorous work.
  • \n
  • Keep the rewards rewarding, and as simple to deliver as possible.
  • \n
  • Over-communicate progress, knowing I have hundreds of customers to make happy.
  • \n
\n

In the case of WP-CLI, runcommand is my new company to pick up where Kickstarter leaves off.

\n

An increasing number of businesses use WP-CLI as a key part of their infrastructure. Right now, each business has to internalize much of the cost associated with creating WP-CLI-based features. For instance, many web hosts would benefit from offering a web browser interface for running WP-CLI commands. However, there isn’t yet a great way for them to collaborate and produce a common solution.

\n

runcommand provides a platform for these businesses to co-produce a shared open source roadmap, and offload much of the burden of developing and maintaining infrastructural components.

\n

Thinking about using Kickstarter to fund your open source projects? Have questions about runcommand? I’d love to hear from you — daniel@runcommand.io or @danielbachhuber on Twitter.

\";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, 02 Aug 2016 21:03:32 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Daniel Bachhuber\";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:5;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:48:\"Post Status: Scaling WordPress — Draft Podcast\";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:31:\"https://poststatus.com/?p=25850\";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:40:\"https://poststatus.com/scaling-wp-draft/\";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:2270:\"

Welcome to the Post Status Draft podcast, which you can find on iTunesGoogle PlayStitcher, and via RSS for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and Brian Krogsgard.

\n

In this episode, Joe and Brian talk scaling WordPress, and what to do when you think you might’ve reached WordPress’s limits. From meta data, to users, to traffic management, they break down some of the most common scaling issues.

\nhttps://audio.simplecast.com/43493.mp3\n

Direct Download

\n

Topics

\n
    \n
  • Posts
  • \n
  • Meta
  • \n
  • Search
  • \n
  • Database
  • \n
  • Users
  • \n
  • Traffic (types of caching)
  • \n
\n

Links

\n\n

Sponsor: iThemes

\n

iThemes has a full suite of excellent products to help you level up your WordPress website. From iThemes Security, to BackupBuddy’s new live backups, to Exchange for your next membership site, iThemes has you covered. Thanks to the team at iThemes being a Post Status partner!

\";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:\"Fri, 29 Jul 2016 17:55:41 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";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:6;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:72:\"WordPress.tv Blog: Matt Gibbs: Diving Into Commercial Plugin 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.wordpress.tv/?p=544\";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:89:\"http://blog.wordpress.tv/2016/07/28/matt-gibbs-diving-into-commercial-plugin-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1207:\"

Learn key takeaways from my running a plugin business. Matt Gibbs goes over how to determine whether your plugin idea can sell, how to set the price, deciding on the business model, whether to self-host, and handling support.

\n
\n
\n

Slides

\n

From WordCamp Asheville 2016

\n

More WordCamp videos


\"\" \"\"
\"Matt
\";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:\"Thu, 28 Jul 2016 05:15:23 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";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:7;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:65:\"WPTavern: Cory Miller and Matt Danner Launch New Business Podcast\";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:29:\"https://wptavern.com/?p=57918\";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:76:\"https://wptavern.com/cory-miller-and-matt-danner-launch-new-business-podcast\";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:2723:\"\"photophoto credit: Maciej Korsan\n

WordPress professionals have demonstrated a decent appetite when it comes to listening to and supporting podcasts on a wide variety of topics, including industry news, development, e-commerce, marketing, and startups. Cory Miller, founder of iThemes, and Matt Danner, the company’s COO, are adding a new business podcast to the mix with the launch of Leader.team.

\n

The first episode introduces the hosts and the goals of the show and is now available on iTunes. Miller and Danner, who often have casual chats about business strategy, decided to start recording their conversations to share with others who might benefit from their mistakes and successes in entrepreneurship.

\n

“We’re going to talk about values, beliefs, philosophies, tools, all kinds of things that we have learned over the years, either accidentally or on purpose, about how to lead and manage teams and grow a business,” Miller said in the opening episode.

\n

Leader.team will feature a short (15-25 minute) episode twice a month on Thursdays with practical advice for leaders and managers. The second episode will be available tomorrow, and Miller and Danner have already outlined the topics for the next four episodes with questions that will guide the discussion on the show:

\n
    \n
  • The Beliefs, Values, Philosophies We Hold Dear
  • \n
  • The Culture We Cherish And Protect
  • \n
  • Finding, Recruiting and Hiring the Best People
  • \n
  • Leading a Hybrid Team of In-Office and Remote Team Members
  • \n
\n

While Miller and Danner are not necessarily marketing the show as a WordPress-focused podcast, many of their shared experiences have come from growing one of the longest-running, successful product companies in the WordPress ecosystem. Upcoming episodes will feature big picture business topics that can be applied to many different types of industries. Leader.team episodes have been submitted to both iTunes and Google Play and will also be available on the show’s website.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jul 2016 22:19:49 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:8;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:108:\"WPTavern: WordPress for Android 5.6 Adds Screen to Invite New Users, Expands Reader to Include Related Posts\";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:29:\"https://wptavern.com/?p=58328\";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:118:\"https://wptavern.com/wordpress-for-android-5-6-adds-screen-to-invite-new-users-expands-reader-to-include-related-posts\";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:2114:\"

Version 5.6 of the WordPress for Android app was released today with expanded features for WordPress.com sites. The previous release added user management capabilities under a new ‘People’ menu and 5.6 introduces the ability to invite new users.

\n

\"invite-new-users\"

\n

This release also adds a related posts section to posts found in the Reader. It appears directly underneath likes on posts and pulls in three related articles from the WordPress.com community of sites.

\n

Version 5.6 adds the ability to customize the notification sound for new activity from the WordPress app. A handful of other small changes are also included in 5.6, as detailed in the release post:

\n
    \n
  • Post list: Posts in the middle of being uploaded will be disabled and shown a progress indicator. A publish button is added on drafts.
  • \n
  • “View Site” and “View Admin” will now open the device browser.
  • \n
  • A comment is automatically approved when you reply to it.
  • \n
\n

If you use the app to manage both WordPress.com and self-hosted sites, you will notice a growing discrepancy between the site management screens and options available for each. Self-hosted site owners still cannot use the app to manage themes or users, and the gap is widening for each release. Version 5.6 expands features for WordPress.com users, while the capabilities for self-hosted sites fall further behind. We have requested a comment from Automattic’s mobile engineers regarding the roadmap for managing self-hosted sites and will update when we receive a response.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jul 2016 20:19:41 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:9;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:68:\"WPTavern: IncludeWP: A Directory That Caters to WordPress Frameworks\";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:45:\"https://wptavern.com?p=58222&preview_id=58222\";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:78:\"https://wptavern.com/includewp-a-directory-that-caters-to-wordpress-frameworks\";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:3745:\"

Earlier this year, the WordPress plugin directory review team reminded developers that frameworks are not allowed in the directory. WordPress core doesn’t have a built-in way to support plugin dependencies which creates extra hassle for users.

\n

Seeing an opportunity, Vova Feldman, founder of Freemius, created IncludeWP, a directory specifically catered to listing WordPress theme and plugin frameworks.

\n\"IncludeWPFrontpage.png\"IncludeWP Front Page Displaying Theme and Plugin Frameworks\n

Frameworks are listed using their public GitHub repositories. Visitors can sort frameworks by stars, forks, issues, or name. Selecting a framework displays information including, how many sites it’s on and the number of plugins and themes hosted on the official directory that are using it.

\n\"IncludeWPSinglePageView.png\"IncludeWP Framework Single Page View\n

To identify which plugins and themes are used by frameworks, Feldman collaborated with Luca Fracassi of Addendio. “We realized that we can leverage the WordPress.org APIs and SVN to automatically identify plugins and themes associated with frameworks on WordPress.org,” Feldman said. “So we decided to join forces.”

\n

Fracassi developed a framework identification system and ran it against WordPress.org. The data was exposed via a custom API endpoint that allowed Feldman to display it on IncludeWP. “We leveraged Fracassi’s endpoint to fetch the plugins and themes data from WordPress.org and present it under the framework’s page,” Feldman said.

\n

Like the frameworks listed on IncludeWP, the code powering the site is open source and available on GitHub. “I’m preaching about code reusability,” Feldman said.

\n

“The least I can do is provide the option for other developers to reuse our code for their projects. By reusing this code base, everyone can easily create a similar category type listing mini-site for GitHub repos.”

\n

Developers interested in having their frameworks listed need to fork the IncludeWP repository on GitHub, add the framework as a .php in the src/frameworks folder, and submit a Pull Request. However, in order to be listed, frameworks must meet the following guidelines.

\n
    \n
  • The framework must be GPL Licensed.
  • \n
  • The framework must have a public repository on GitHub
  • \n
  • Complete each field in the src/frameworks area
  • \n
  • Add a reference to the plugin or theme’s slug if it’s hosted on WordPress.org
  • \n
  • Have a short description
  • \n
\n

Feldman says he doesn’t plan on generating revenue through the site and considers IncludeWP as one of many contributions back to the WordPress community.

\n

IncludeWP is a great resource for developers whose frameworks are spread across GitHub who are looking for ways to generate more exposure. It’s also an excellent way to see what’s available in the WordPress ecosystem. Take a look around IncludeWP and let us know what you think in the comments.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jul 2016 15:07:37 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:10;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:83:\"HeroPress: 16 Little Things That Grew Into Big Things (My Life in a Bunch of Words)\";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:55:\"http://heropress.com/?post_type=heropress-essays&p=1177\";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:66:\"http://heropress.com/essays/16-little-things-grew-into-big-things/\";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:34430:\"\"Pill

I suppose I’ve always had the “entrepreneurial spirit.” My first taste of being in business likely occurred prior to this, but the first time I *remember* really enjoying building my own business was in the fifth grade.

\n

Little Thing #1

\n

For Christmas, I had gotten a new handheld electronic game. I suspect that most readers here will not remember these, but the one I had gotten was the race car game. It was a game with a button that slid only left and right, the goal to be to dodge the oncoming LEDs with the LED you controlled with the slider. It was a simple game but fun. I brought it to school and started charging people .25 per game to play. I averaged $9.00 a day. That’s a lot to a fifth grader. I learned about profit and expenses (batteries do, after all, cost money). I learned about friendly competition when a friend of mine and classmate brought his electronic handheld football game to school and charged .50 per game. I learned about volume sales (my game would last about a minute or two whereas the football game lasted substantially longer). I also learned about charging what the market would bear (I couldn’t get .50 per game but I could do .25 all day long). And lastly, I learned about “The Man” and how something that is going so well can go away in the blink of an eye when the school, after about a month of my enterprise, decided that these games were too much of a distraction to “real learning” and shut both myself and my competitor down.

\n

Little did the school know that I learned more with my business experience in that short time than I did my whole fifth grade year

\n

(it was my worst experience in elementary school, yet one of my most formative). When all was said and done, though, I had made a couple hundred dollars from a game that cost about $40 (which I hadn’t even paid for). Not a bad return.

\n

Little Thing #2

\n

In High School economics class, we learned how the stock market worked. We split the class into several groups and formed “corporations.” The members of these corporations then bought stock with real money. This money went to buy product that we would sell to the student body over a period of a couple weeks. I had been asked to be a member of the one corporation due to a previous simulation in which I had almost successfully beaten another team by coordinating an uprising against them (the other team was far more powerful) by secretly putting several of the smaller, less powerful teams together to try to take out the big team. It almost worked. Almost.

\n

This team asked me to be part of this new corporation because they were impressed. We decided that the thing we were going to sell to the student body was going to be candy. I invested $9.00 into the company. Of the members of this newly formed team, I invested the most. We talked about what types of candy to buy. It mostly involved peanut butter cups and skittles as I recall.

\n

I don’t remember what the other corporations sold. It didn’t matter. It was not true competition because we each were exclusive with our products. During breaks, lunch, and after school, we all had our tables set up in the quad and sold our goods. Our corporation slaughtered all the others. It wasn’t even close.

\n

At the end of it all, we determined the stock value based on costs of goods sold and profit left over. We sold our stocks for what they were worth. My $9.00 had turned into about $75.00 in the two weeks. I made, far and away, more money than anyone else in the class (and according to the teacher, more than anyone ever had in that simulation). Making money was easy, and it was what I was meant to do. Or so I thought.

\n

Little Thing #3

\n

Back to Fifth Grade. At the time, my best friend, Jack, had introduced me to Basic programming. My dad worked at a local University and as a result, the head of the Math & Computing Department granted me a student account on the mainframe (their department was right across from my dad’s “Modern Languages” Department). It was here that I learned that a simple Basic statement such as “10 goto 10” could actually take down a campus-wide system as these mainframes were really not built to do multi-tasking. The joy of an endless loop. I hate to admit that there were times that I would laugh maniacally as other students in the lab would start literally banging their keyboards because nothing was happening. To all of you, I most humbly and heartily apologize. I was a jerk. I blame Jack.

\n

None the less, I had been bitten by the programming bug.

\n

I expanded my knowledge beyond causing others brain damage for fun and actually started to program useful things. My dad hired me at .50 an hour (which I’m pretty sure came out of his own pocket) and I worked on programs that would quiz his students. It’s also probable that he did it to keep me out of trouble.

\n

My brain wrapped itself around programming rather quickly and, as a general rule, every day after school, you’d find me back up in one of the University labs hacking away. It wasn’t a bad life. I liked it a lot. My favorite lab was the one right outside the server room. I got to know the students who kept the systems up. I remember when they got some new storage. I want to say it was a drive that could store 20 megabytes. It was literally as big (and heavy) as a washing machine. Oh. . . the good ol’ days.

\n

Little Thing #4

\n

I believe it was during the summer between Eighth Grade and Ninth Grade (circa 1980-81) that a representative from a company called Commodore came and demonstrated this great new personal computer. It was better than a TRS80 and far more affordable than the Apple ][. It had color and a whopping 5 KB of RAM. That is pretty impressive. All you needed to do was hook it up to your TV. I don’t remember what I paid for it, but I knew this was the machine for me, so I ponied up with my hard-earned money for the computer that looked like nothing more than a keyboard and a tape drive. Before I knew it (well . . . four to six weeks later), I was a programming fool from the comfort of my own home. I could get used to this. It was a few months later that I had saved up enough for a 300 baud modem (If you don’t know what 300 baud is, let me explain: It’s SLOW) and learned how I could hook up to my account at the college. It was my first taste of remote work and I knew that, one day, it was going to be the life I’d be living. The world would just have to catch up (ya, I was just a scosche cocky back then).

\n

A year later, I upgraded to a Commodore 64 and purchased my first Commodore 1541 5.25” floppy drive. I learned about sprite graphics and created a game based on the Saturday Night Live character, “Mr. Bill.” The game totally sucked, but suffice it to say, Mr. Bill died a LOT at the hands of Sluggo. A LOT.

\n

Little Thing #5

\n

Between my Junior and Senior years of high school, I was going to take a trip to Europe. I knew that Europe was no place to take my computers, and what I really needed was to make memories. I had always envied my sister’s camera and decided that it was time for me to dive into 35mm photography, so I sold my whole computer setup and purchased my first 35mm camera; a Canon AE1-Program with a couple of lenses and some books and accessories. I quickly learned how to actually use the thing and gained a basic understanding of the math behind the exposure you want. During that trip, I shot as many rolls of film as I could afford and discovered that maybe a life in photography was what I really wanted.

\n

I came back, my senior year, where I was the head photographer for the yearbook. I was rather proud of that yearbook and I put a lot of time and effort into it. So much so, that the yearbook staff felt obligated to give me an award. As mentioned earlier, in my younger years, I was sort of a jerk, so I cannot remember what the award was. At the time it meant a lot to me, though.

\n

I loved photography and I loved technology. If only there was some way to combine photography with technology. . . Maybe one day.

\n

Little Thing #6

\n

After high school, I went to about one semester of College. I say, “about,” because I think the only class I regularly attended was the photography class I was taking. I really enjoyed the class and the teacher. But most of all, I enjoyed the full access to the dark room where I was the head know-it-all and all the other students came to me for assistance. My ego was riding pretty high around that time.

\n

Little Thing #7

\n

After deciding to drop out of college (much to the chagrin of my dad – did I mention he was a University Professor?), I knew I needed to make money. I applied for (and got) a job with a company called Lifetouch National School Studios. Many of you might be familiar with this company. They specialize in school photography. I worked there for two school years, the first being an assistant and general runner and then the next year I did a lot of darkroom work. I was in my zone. I got to be good friends with a guy named Gene who was the world’s biggest Raiders fan and even got me a press pass a couple years later to shoot from the sidelines.

\n

During that game, I met people like Howie Long, Bo Jackson and Bob Golic.

\n

I also met James Garner who got to stand by the bench because, well, he was James Garner. Incidentally, he was exactly what you’d have expected him to be. Gene also introduced me to the world of Santa Claus mall photography; possibly the worst job I ever had. No, I was not the Santa. I was the photographer. The problem was never the kids. It was always the parents. You try telling parents that their kid is hysterical, will never calm down, and will never smile for Santa because he or she is scared to death of the man with the beard. Or, maybe, try to find something to clean up the pee on the floor because some parent made their kid wait in line for two hours while he had to go to the bathroom (usually the two hours was because of a number of the aforementioned parents living in their dreamland of a smiling child). Or, having a parent make you tell their child that Santa has gone home for the day (because the parents waited until after the mall closed before they decided to get in line). All true stories. Ya – I only did it one Christmas. Ironically, I lasted longer than most.

\n

Little Thing #8

\n

I quickly realized that I needed to be making more money and that commissioned sales was where I needed to be. I applied for (and got) a job at a company called Circuit City. They sold electronics of all sorts. I originally wanted to work in their Camera Department, only to discover that they didn’t have one. So, it was Small Electronics for me, where I quickly became Assistant Manager of the department.

\n

After cutting my teeth in electronics, I figured out that where I really wanted to be was in the Video Department. It’s where the money was. So I put in for a transfer and that’s where I got to be good friends with Gregg Franklin. Gregg and I forged a strong friendship and discovered that neither one of us ever really had a desire to work for “The Man,” so we decided to look for business opportunities. This was around 1987 or 1988.

\n

Little Thing #9

\n

In 1989, Gregg and I decided to venture off from Circuit City and we bought a little camera store for $10,000.00. It had been around for a while and, honestly, neither one of us did much due diligence. Had we done so, we would have discovered the reputation the owner of the store had. We spent the next two years working on re-branding, building up a local reputation of supporting schools and professional photographers in the area, and eventually became a reputable business in town. The local photographers would come and chat for hours on end with us and we became friends with many who remain our friends to this day. During this time, we built a darkroom and did a lot of custom work.

\n

Additionally, a friend from school had started his own company in which he built custom PCs. It was time for me to return to the world of computing, where, after purchasing an XT PC running MS-DOS 2.0 (I believe), and a piece of database software called Q&A, I developed a fully operational Point of Sale system. It was my first foray into data mining. I had finally figured out a way to combine my love of photography with my love for computing. It wasn’t what I initially imagined, but it would do.

\n

During the time of the camera store, I also started my own WWIV BBS called “The Dragon’s Tavern”, a precursor to the Internet. It had software and games (can you say, “Global Thermal Nuclear War?). At one point, I was the only one in the area with a BBS and ONE GIG of storage space. Modem tech had advanced and I got myself a USRobotics 14.4 Courier HST modem. I was the king of the local BBS world. WWIV was an open source BBS platform and I spent a lot of time writing mods for it in Turbo C++. I met people from all over the world and spent hours on the phone with some of them as we worked through programming issues and ideas. It was my first experience with remote collaboration.

\n

The camera store lasted a couple of years, but we suffered a bit from trying to do too much too fast, along with a failing economy, and we realized that our model was not really sustainable. Rather than getting buried under a mountain of debt, we made the choice to shut the place down.

\n

From there Gregg and I tried our hands at a few things, the most significant being a sign company (we had actually been running it as a side business from the camera story for some time, to help bolster our income). To be honest, I didn’t like that job that much. Gregg got to have all the fun doing the creative work, then he, our alcoholic partner who showed us the ropes, and myself would go and install them. Vinyl cutting was fun and the tech behind it still fascinates me, but it didn’t take long for us to learn that we were not the right fit with the third partner, so Gregg and I split from him.

\n

Little Thing #10

\n

Fast forward a couple years. Gregg and I had been doing our own things separately for a while, trying to find our place in life. Owning and shutting down a couple of businesses does make you realize that you’re not as perfect as you think you are and may even be a bit of cause for some soul searching. I cannot speak for Gregg, but I know that for myself, that was the case.

\n

I was burnt out on photography.

\n

Doing something for a couple of years for others and none for yourself sort of takes the passion out of it.

\n

Running a free BBS was not exactly a business model that worked. I think it was around 1995 that I discovered Netcom. It was one of the first real internet providers. I bit. I was hooked. It was *like* a BBS but SO much more! The world had opened up to me and I saw my vision of one day becoming a remote worker come that much closer. Before long, a feeling had returned that I had not had in awhile: the desire to learn something new in technology. I wanted to gain an understanding of how the back end of this wondrous new tool worked. I knew it was the future, and it was within my grasp. It had been a while since I had been that excited about anything.

\n

It was then that Gregg and I reconnected. Gregg had told me that some other mutual friends of ours were about to embark on starting a regional Internet Service Provider, servicing schools and running a digital technology called ISDN. They had invested in the equipment but needed someone to run it. They had asked Gregg, and when I expressed interest, we formed a partnership and got to work. During this time, I learned about routers, IP traffic, DNS, collaboration with people on a global level, scalability, building departments and efficiently servicing customers through no more than email and a telephone connection. I learned about the value of good documentation and I learned how to deal with big, huge companies and their lawyers. I learned all of these things and yet, I wouldn’t say that any of those shaped my future and my life and business operating philosophy more than the epiphany I had once I hired our first employee.

\n

Until this point, I had always been about making money and a name for myself. It was ALWAYS about the money for me. Always. But I remember that moment like it was yesterday. That moment I looked at the empty desk of our first employee and realized that we were embarking on something great. We were building a company that would help sustain the lives of others and their families. If all went well, it wouldn’t be just a few. It would be many.

\n

In the blink of an eye, it went from being about me and what I could take home, to being about them.

\n

To being about us. All of us. That one moment changed everything for me.

\n

Little (ok BIG) Thing #11

\n

In 2003, my wife and I decided to move to Wisconsin from sunny Southern California. I was going to continue to work remotely with the ISP we had built up to over 40 employees and my wife Jessica was going to also work remotely with the Electronic Funds Transfer company she had worked to build up while in California (she was their first employee). Wisconsin was a nice break from the rat race of Southern California. We bought a house, set up our office and before I knew it, I discovered that the people back home at the ISP didn’t understand the concept of remote work. I was a shareholder of a company that had no use for me sitting a couple thousand miles away. Sure, from time to time they’d call me, but overall, out of sight meant out of mind where I was concerned.

\n

We moved to a pretty small town where we were happy to have high speed internet, but there was not a lot of demand for a network engineer or software programmer. I had, once again, found myself somewhat without a professional purpose.

\n

Soon after our first year there, we found out that Jessica was pregnant. Our main purpose in moving to Wisconsin was to start a family, but Jessica had always had issues carrying a pregnancy to full term. It was heartbreaking to deal with multiple miscarriages, but we had found a doctor in Green Bay (2.5 hours away) who thought he might be able to narrow down the issue. He was right, and nine months (and two weeks) later, we were introduced to our son, Eli. Hard to believe it’s been 11 years. And while I was struggling to find my place professionally, there was no doubt that I knew my place personally, as a father.

\n

I was 38 and suddenly felt it was what I was meant to do.

\n

I attempted to work for a local computer place during this time, but that simply didn’t take. I had, for a long time, said that employment may not be for me and certainly, in that situation, I was proven right. I am not, and never have been, a “Yes” man, I would tell people. I needed to reinvent myself and I needed to figure out my place.

\n

This time put a lot of strain on my marriage to Jessica. She was the main bread winner and while she was appreciative of the fact that I was really good with taking care of Eli and doing things around the house, she felt the pressures of being responsible for the family’s financial well-being. “Just find something – anything,” she’d say. She wanted me to find something that made me happy. She knew that while I loved being a father, I also felt the pressure to contribute to our stability. I struggled. A lot.

\n

Little Thing #12

\n

During the short time that I worked for the computer company, we moved again. This time, we bought the home of one of the city’s founders. It was on the river and while the place needed work, it was on about 3 acres of land and was a pretty nice place. I had my eye on the house next to it which was a big Victorian (and at one point, part of the same property). It was owned by a couple of empty-nesters and I knew that owning the house we had just purchased would put us in a prime position to buy it when it became available. It was my five year plan.

\n

Two years later, I was approached by our neighbor. We bought the house and moved in. We still had not been able to sell the first house that we bought and it was sitting empty. We were about to have two empty houses. I had been doing tech work as I could, but still was without a purpose. Fortunately, Jessica was still plugging away. Throughout it all, she was supportive of my desire to find something. I admit, there were those moments where I was just happy to be a dad (that’s my way of saying I might have gotten a little lazy looking for an income).

\n

In the new house for a bit, I was talking to one of my friends back in California. He was going through some pretty major life changes and was looking for his own purpose. I remember asking him what he’d like to do and he said that he enjoyed going to motorcycle swap meets, buying parts and then selling them on Ebay. And just like that, a business was born. He needed a new start. I needed something to do – a way to make money. And I knew Ebay and tech really well. It seemed like a match made in heaven.We moved him into the empty first house that we had and ran the business out of that house for a while. We made contacts and started buying larger and larger lots, liquidating them almost as fast as we were getting them. We were starting to make a little bit of money, but we kept turning that money into bigger lots, which meant we needed more storage, which meant it was time to get office space. Our specialty was Harley Davidson parts and it only took a short time for me to go from only knowing that most Harleys had two wheels to being able to identify the part, year and bike it came from; to know its value; and to have an idea on its demand. I became a tougher negotiator and walked away from a deal or two that just didn’t feel right. The biker world was definitely a world I never imagined myself within, but I certainly, for the first time in my professional life, actually felt like I was part of a community.

\n

Soon after we started that company, though, the company Jessica had been working for shut its doors, literally overnight. She was not making money, in an industry where there was no local demand, and I was trying to grow a company. For those wondering, that is not a sustainable personal financial model. The housing market crashed, and I was spending nights doing database patient record merging at the local hospital.

\n

Before we knew it, we were flat broke. We literally lost almost everything.

\n

The two empty houses were taken by the banks and we were just fighting to keep the house we were in. It was also about this time that Jessica announced that she was pregnant with Brenna. It was the only good news we had at the time. I was 42 and, for the first time in my adult life, had to actually go to my parents and ask for help. I honestly don’t know where I’d be today if I didn’t have them.

\n

The company we had was starting to see dwindling sales. When the economy crashes, people suddenly learn to live with that little ding in their gas tank or that other non-critical noise their bike may be making. Ebay started raising their fees and our business model became unsustainable.

\n

Little Thing #13

\n

With money quickly dwindling away in our bank account, I suddenly had this wonderful idea to start making money off of our competitors on Ebay. They had an affiliate program and I needed to figure out a way to leverage that. But how?

\n

It was then that I discovered WordPress.

\n

Like many, I had always thought of it as a blogging platform and nothing more. But then I discovered a plugin that would read in a feed from Ebay and worked within WordPress. It took me about an hour to set up a WordPress site and another minute to figure out how to install the plugin. The next two days was spent populating categories, and a little over a month later, I got my first direct deposit from Ebay. This could work. But even more importantly, for the first time, I saw that WordPress could be so much more than a blogging platform.

\n

It wasn’t much longer before I was starting to develop websites for others. My design skills have always lacked, so to start, it was mostly out of the box themes, but as I got more seasoned, I learned more and more about the power of WordPress.

\n

Eventually, we closed down the motorcycle liquidation business.

\n

We tried our hand at running a Renaissance Faire booth (along with touring the country), but that, too, was not really sustainable.

\n

I even drove a truck with staging equipment for Fox Sports a couple of times. Anything to pay the bills.

\n

Little Thing #14

\n

During one of my driving trips, I had been talking to Gregg. Turns out he had been doing WordPress development for a while and he was looking for some help. I was not a good designer, and I had barely dipped my feet into being a developer, but Gregg was willing to teach me everything he knew. Every morning, I’d wake up, Gregg and I would get on a call and he’d explain really cool ways to customize WordPress. We’d strip a theme down to the bones and build it up. We’d find frameworks and build them out. We’d bang our heads over CSS (something, I think, neither of us ever really were able to wrap our minds around), and we had work. Lots of work.

\n

Though financially ruined, Jessica and I were finally starting to see some light.

\n

I had finally found something I really liked and she had finally found herself with a position working for another company. We had lost all our homes except the one in which we lived and had depleted all our bank accounts and college funds, yet we were hopeful. We had our two kids, a roof over our heads and work which generated income.

\n

Most of the work Gregg and I did was working with agencies. We liked it that way. Neither of us really enjoyed pounding pavement, so it was nice to have people who specialized in sales do that part of the lifting. But despite the fact that we were getting busier, we knew that we needed to work on passive income possibilities.

\n

Little Thing #15

\n

In 2012, Gregg brought up the idea of me going to WordCamp San Diego. Now, I hate conferences and conventions. This sounded to me about as far from fun as I could get. He offered to pay for the badge if I paid for my plane ticket. Not knowing *really* what a WordCamp was, I figured it was a fair deal. It was only after I spoke with Jessica about going that I realized the cost of the ticket. I tell people that I still feel like I got the better end of the deal.

\n

That trip to WordCamp San Diego changed everything for me.

\n

I had always believed that businesses could succeed while also being part of a community that supported and built each other up. For the first time in my adult life, I got to witness it first hand. I had a blast! WordCamp was not a conference, it was a sharing of ideas. It was not a convention, it was a place to build actual relationships. It was a business event, educational event, and social event all in one package. I knew I was in the right place (finally).

\n

44 years old and I finally found my place.

\n

But how could I actively participate? Part of being in a community is that desire and need to give back. I was green and hardly knew anything.

\n

Little Thing #15(a)

\n

One of the people I met while in San Diego in 2012 was Stephen Carroll. He had developed this really cool tool called DesktopServer; a tool Gregg and I used almost every day during our development days. Gregg was having an issue with a site we were building and Stephen offered to help us figure it out. I was blown away that someone would give up their time so freely with no interest in remuneration. He just wanted to help. Stephen and I spoke a little bit, but he mostly focused on helping Gregg get through the issue he had. He was kind and generous, and I liked him immediately.

\n

Little Thing #16

\n

In 2013 Gregg and I were working together on a project and, as often happened, the conversation turned back to what we could do for some passive income. He and I came up with an idea for a theme we wanted to build. It would be unlike anything anyone had seen. Robust, clean code, efficient. In other words, it was a theme that was above our skill levels, over our heads, and somewhat out of reach. We needed a developer with a skill that far exceeded our own. Gregg said it: “We need someone like Stephen.”

\n

I totally agreed with Gregg and so the call was placed. Gregg was to get in touch with Steve and see if he’d be interested in helping us out. It was a good plan.

\n

An hour later, Gregg called me back to let me know the result of the conversation. Steve was, indeed, anxious to work with us (if pressed slightly, I think he would tell you that he was anxious to work with Gregg since he only really knew me through Facebook). But what he wanted was for US to help HIM at ServerPress. He wanted to simply code while we handled the rest. I contacted him directly to ask him some questions, set up a path for the company under the new structure and the rest, as they say, is history.

\n
\n

This past June marked three years since we re-formed the company and it’s been a thrill ride to say the least. Since then, we’ve grown the company by over 400%, I’ve had the opportunity to travel the country and speak at several WordCamps (2014 saw me at over 20) and I actually look forward to Mondays every bit as much as I look forward to weekends. ServerPress, LLC is a company that’s respected within the WordPress Community, and it has afforded me the ability to help financially sustain my family.

\n

In 2013 Jessica, Eli, Brenna, and I moved to Milwaukee where we bought an older home (117 years) with the purpose of restoring it, building it out (and up), and fostering to adopt sibling groups (you can read about it on my blog, http://twotofive.us).

\n

We currently have six foster kids which puts us at a family of 10.

\n

None of this would have been possible without all the little things, a couple of big things, and WordPress (the most important of which, is its Community).

\n

While we’re still digging ourselves out of the mess of a few years ago, that light is getting brighter every day.

\n

The post 16 Little Things That Grew Into Big Things (My Life in a Bunch of Words) appeared first on HeroPress.

\";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:\"Wed, 27 Jul 2016 12:00:18 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Marc Benzakein\";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:11;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:50:\"WP Mobile Apps: WordPress for Android: Version 5.6\";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:33:\"http://apps.wordpress.com/?p=3488\";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:72:\"https://apps.wordpress.com/2016/07/27/wordpress-for-android-version-5-6/\";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:3187:\"

Hello WordPress users! Version 5.6 of the WordPress for Android app is now available in the Google Play Store.

\n

Related Posts in the Reader

\n

Discover relevant work from the WordPress community. A section of related posts will now appear just underneath Likes on a post:

\n

\"Related

\n

Custom Notification Sound

\n

You’ve got activity! With 5.6, you’ll be able to customize your notification sound:

\n

\"Custom

\n

Invite New Users

\n

A cordial invitation. Invite users to your site from the People management screen, designate their roles, and customize a message to send to them:

\n

\"Invite

\n

Other Changes

\n

Version 5.6 also comes with a few other changes and fixes:

\n
    \n
  • Post list: Posts in the middle of being uploaded will be disabled and shown a progress indicator. A publish button is added on drafts.
  • \n
  • “View Site” and “View Admin” will now open the device browser.
  • \n
  • A comment is automatically approved when you reply to it
  • \n
\n

You can track our development progress for the next release by visiting our 5.7 milestone on GitHub.

\n

Beta

\n

Do you like keeping up with what’s new in the app? Do you enjoy testing new stuff before anyone else? Our testers have access to beta versions with updates shipped directly through Google Play. The beta versions may have new features, new fixes — and possibly new bugs! Testers make it possible for us to improve the overall app experience, and offer us invaluable development feedback.

\n

Want to become a tester? Opt-in!

\n

Thank you

\n

Thanks to our GitHub contributors: @0nko, @aforcier, @bummytime, @daniloercoli, @hypest, @khaykov, @kwonye, @maxme, @mzorz, @nbradbury, @oguzkocer, @theck13, @thomasleplus and @tonyr59h.

\"\"\";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:\"Wed, 27 Jul 2016 06:51:53 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Maxime\";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:12;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:85:\"WPTavern: Easily Hide WordPress’ Blogging Features With the Disable Blogging Plugin\";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:45:\"https://wptavern.com?p=58111&preview_id=58111\";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:93:\"https://wptavern.com/easily-hide-wordpress-blogging-features-with-the-disable-blogging-plugin\";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:2643:\"

WordPress strikes a good balance by offering users the ability to publish dynamic content via posts and static content via pages. However, if you’d like to use WordPress primarily as a static content management system without the features related to blogging, check out a new plugin developed by Fact Maven Corp. and Ethan Jinks O’Sullivan called Disable Blogging.

\n

Disable Blogging hides a number of features including:

\n
    \n
  • Posts, Comments, and items related to blogging from the admin menus.
  • \n
  • Comments from pages.
  • \n
  • Blog related widgets.
  • \n
  • Pingbacks, Trackbacks, and XML-RPC header links.
  • \n
  • Biographical info and Admin Color schemes on the user profile page.
  • \n
  • Press This Bookmarklet.
  • \n
  • Posts via email.
  • \n
  • Howdy, help tabs, and query strings from static resources.
  • \n
\n

To really get a sense for what it’s like to use WordPress without its blogging capabilities, I activated the plugin on a fresh install.

\n\"DisableBloggingOnFreshInstall\"Disable Blogging Enabled on a Fresh Install\n

There are two things that immediately stand out during testing. The first is that logging in takes users to their profile page instead of the Dashboard. Second, the Dashboard and the link to it are gone.

\n

I found the removal of the Dashboard creates a jarring experience that’s different from what users might expect. It’s usefulness to display widgets with site specific information, even for sites based on pages, is a huge benefit and therefore, its removal should be reconsidered.

\n

The nice thing about Disable Blogging is that it doesn’t permanently remove features or data. Regaining access to WordPress’ blogging capabilities is as simple as deactivating the plugin.

\n

Browsing, using, and navigating WordPress with the blogging features hidden is an interesting experience that I encourage you to try for yourself. I tested Disable Blogging on a fresh install of WordPress 4.5.3 and didn’t encounter any problems. The next time you or a client wants an easy way to disable WordPress’ blogging capabilities, give this plugin a shot.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 27 Jul 2016 02:27:32 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:13;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:71:\"WPTavern: TechCrunch Hacked by OurMine, Attackers Target Weak Passwords\";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:29:\"https://wptavern.com/?p=58081\";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:81:\"https://wptavern.com/techcrunch-hacked-by-ourmine-attackers-target-weak-passwords\";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:3051:\"

TechCrunch is the latest victim in OurMine’s summer hacking rampage. The site, which is powered by WordPress and hosted via WordPress.com VIP, was hacked this morning and defaced with a message from the attackers who identify themselves as an “elite hacker group.”

\n

TechCrunch’s news ticker was updated to display: “Hello guys it’s OurMine Team, we are just testing TechCrunch Security, don’t worry we never change your passwords. Please contact us.” OurMine gained access to a contributor account and posted a similar message.

\n

\"techcrunch-hacked-by-ourmine\"

\n

According to a report from Engadget, TechCrunch’s sister site, the hackers gained access via a contributor’s weak password, not by exploiting a vulnerability in WordPress or the site’s plugins. TechCrunch was able to regain control of the site within minutes and delete the content created by the attackers in the admin.

\n

OurMine is the same group that hacked Mark Zuckerberg’s Twitter, Pinterest, and LinkedIn accounts after he used the same password for multiple sites. Bad password security can make even the most secure websites vulnerable to these types of attacks. Although OurMine is primarily targeting high profile individuals and publications, WordPress sites are constantly the target of brute force attacks.

\n

Security plugins like Wordfence, iThemes Security, and Jetpack’s Brute Protect module can help deter brute force attacks, but it’s virtually impossible to eliminate the human factor in poor password selection or the practice of using the same password for multiple online services. WordPress site owners, especially those who run publications that have many users with permissions, are especially vulnerable to attacks that target bad password security.

\n

Although WordPress warns users about weak passwords, it doesn’t force them to create a strong one. Site owners who want to make this a requirement can use a plugin like Force Strong Passwords for extra security.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Jul 2016 19:35:42 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:14;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:100:\"WPTavern: WooCommerce Releases Square Integration to Sync Online and Offline Purchases and Inventory\";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:29:\"https://wptavern.com/?p=58049\";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:111:\"https://wptavern.com/woocommerce-releases-square-integration-to-sync-online-and-offline-purchases-and-inventory\";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:3478:\"

\"woocommerce-logo\"

\n

WooCommerce, which powers more than 37% of all online stores, announced today that the plugin now integrates with the millions of offline stores that use Square for payment processing. The new Square for WooCommerce extension tracks and syncs payments and inventory for products sold via online and offline stores.

\n

Before agreeing to work with Square on building an integration for WooCommerce inventory management, the Woo team verified customer demand via its ideas board where the feature received more than 900 votes. Prior to today’s extension release, those who managed stores in online and offline environments had to perform manual updates to ensure accuracy of the current inventory. Manually tracking inventory between stores is a tedious, never-ending task, especially for larger operations. This is why Square integration was the most-requested feature in WooCommerce history.

\n

After store owners connect a Square account to WooCommerce, they can perform a manual sync from WooCommerce to Square or back the other way. This will sync SKU’s, categories, details, and images for products that have been set up on either platform.

\n

\"square-woocommerce-sync\"

\n

The ability to accept payments with WooCommerce using Square means store owners need only update products once and push changes to either store when ready to sell online or offline.

\n

“WooCommerce and Square have a close working relationship around this integration, where we’re working together to on-board new merchants, receive their feedback, and adjust the integration to make sure the initial version is the best it can be,” said Matt Cohen, product lead for WooCommerce.

\n

When asked if Automattic gets a percentage of Square’s fee based on the volume of sales it drives through its payment system, Cohen said that the companies have an agreement in place to promote the extension on WooCommerce.com and in Square’s catalog. He would not elaborate on the terms of the agreement. However, with WooCommerce powering more than a third of all online stores, it would be surprising if Automattic did not secure a custom volume rate.

\n

Square customers who want to automatically connect their online and offline stores can find the new Square for WooCommerce extension on WooCommerce.com. Current Square customers can use their existing account details to configure their stores to accept payments with Square and start syncing inventory.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Jul 2016 14:39:56 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:15;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:83:\"WPTavern: Automattic Will Continue to Use React.js in Calypso Despite Patent Clause\";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:29:\"https://wptavern.com/?p=58065\";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:94:\"https://wptavern.com/automattic-will-continue-to-use-react-js-in-calypso-despite-patent-clause\";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:3234:\"

Calypso is an application developed by Automattic that is built entirely with JavaScript using the Node and React libraries. React, etc., a site that covers news related to the React library, recently published an article highlighting how a license to use it in projects can be revoked.

\n

React contains a patent clause that allows Facebook to revoke the license if certain conditions are met. The clause has raised concerns that Automattic could have its license revoked for Calypso if it competes directly with Facebook.

\n

Not long after the public release of Calypso, Paul D. Fernhout created an issue on the project’s GitHub page. Among a number of other reasons, Fernhout suggested that React be replaced with Mithril, an alternative JavaScript library that doesn’t contain a clause.

\n

Paul Sieminski, General Legal Counsel for Automattic, responded to the ticket explaining why the company will continue to use React in its products.

\n

“Automattic looked at the legal issues with Facebook’s patent license on React,” Sieminski said. “The termination provisions of the patent license aren’t ideal, but are not a blocker to using React as part of Calypso.”

\n

“The termination provisions don’t apply to the right to use the code – just the license included in the ‘PATENTS’ file. This license gives React users permission to use Facebook’s patents on React. Facebook’s intentions in including this additional license are admirable. As they say here – ‘[t]his grant was designed to ensure that developers can use our projects with confidence.\'”

\n

According to Sieminski, “The companies with the greatest concern are those that have large patent portfolios and engage in offensive patent litigation, especially against Facebook.”

\n

“Automattic isn’t in that boat, and has no plans to be, so we’re comfortable using React under its current license,” he said.

\n

Considering how complex patent laws are, developers using React are encouraged to seek legal advice from a reputable lawyer to determine if your use case violates Facebook’s patent clause.

\n

Has the clause kept you from using React in your projects? Let us know in the comments.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Jul 2016 08:05:39 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:16;a:6:{s:4:\"data\";s:11:\"\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:27:\"HeroPress: Defining Success\";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:28:\"http://heropress.com/?p=1170\";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:38:\"http://heropress.com/defining-success/\";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:6937:\"\"You\'ll

When I first started HeroPress I assumed we’d get at least 1000 page views per day. How many WordPress developers are there in the world? Tens of thousands? Hundreds of thousands? What about bloggers? Users? Millions of them? Surely even a tiny tiny fraction of that would make for thousands of page views, right?

\n

I’m writing this on a warm Sunday afternoon in July. HeroPress operates on GMT, so we’re about 20 hours into the day. Want to know how many page views we’ve had so far today?

\n

\"16\"

\n

And that’s pretty average for a Sunday. Only once in the history of HeroPress have we had a 1000+ page view day. It was very exciting.

\n

There was a time when the (apparently) low traffic on HeroPress.com bothered me. I even thought about shutting it down a few times. Why bother if so few people read?

\n

The reason it bothered me is that I was measuring success by numbers. Page views, repeat visitors, even number of concurrent readers on a Wednesday . It was all about the numbers. How many people pull up the site in the browser? That’s what I wanted.

\n

Shifting Perspectives

\n

My perspective first started to shift when I went to WordCamp Pune. A young woman came up to me with tears in her eyes, shook my hand, whispered “Thank you” and slipped back into the crowd.  I didn’t see her again, but I’ll never forget her.

\n

People introduced themselves and told me their story with shining eyes, full of excitement.

\n

That trip was a huge boost for my spirits, but I still watched the numbers.

\n

Stories That Need To Be Told

\n

Typically I seek out HeroPress contributors. People rarely think their own story is interesting, I usually have to show them. In the months that followed Pune however, several people came to me and said “I have a story, and I really need to share it, can I share it on HeroPress?” So far I’ve accepted all of those, so you’ve read them.

\n

Their stories burned in their hearts, and they needed other people to know. To know there are people out there who want to help them learn, grow, and have a better life. That there are second, third, and fourth chances.

\n

Comments from people both on the site and in person let me know that it worked. People find hope in the essays. Not just happy feel-good, but actual hope, that maybe there’s something better out there for them too.

\n

Casting a Wider Net

\n

I recently visited WordCamp Europe in Vienna. I was truly surprised by how many people had heard of HeroPress, and even knew my name. Story after story came to me from a dozen different cultures about how HeroPress stories give people confidence to try new things, talk to people outside their culture, or try to use WordPress to make a better life.

\n

It was humbling to me to hear those individual stories. People whose lives had been been changed by their contact with our community, inspired by HeroPress essays.

\n

Defining Success by Different Numbers

\n

I still define success by numbers, but it’s not page views anymore. I’d be lying if I didn’t say it’s a little about stats, because countries matter to me. A wide net matters to me.

\n

The numbers I really watch these days are the number of people who tell me HeroPress means something to them. I don’t keep an actual tally, but as long as I keep hearing from even one person that they’ve been made better by what’s on this site I consider it a success.

\n

I don’t know if we’ll ever get huge readership, and at this point I’m not sure I care. What has HeroPress meant to you? I’d love to hear in the comments.

\n

And You?

\n

How do you define success in what you do? Is it number of sales? Number of support tickets answered? Page views?

\n

I’d like to suggest that you’ll be happiest when you define success by the number of lives you touch for the better.  Sure, that might be measured by a stat somewhere, but always remember the real value is in the sparkle in their eyes, and the joy in their hearts.

\n

The post Defining Success appeared first on HeroPress.

\";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:\"Mon, 25 Jul 2016 00:28:33 +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:\"\";}}}}}i:17;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:70:\"HeroPress: How WordPress (literally) turned me into a brand new person\";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:55:\"http://heropress.com/?post_type=heropress-essays&p=1147\";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:72:\"http://heropress.com/essays/wordpress-literally-turned-brand-new-person/\";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:35565:\"\"Pull

In the beginning…

\n

I’ve always been a geek. When I was in the third grade, I wanted to grow up to be an Egyptologist (or maybe a Marine Biologist; I changed my mind often). My dad built custom computers for a living, and early on, he taught me how to build and wire a computer from spare components.

\n

I built my first web page when I was eleven years old; basic HTML, tables for layout, animated GIFs, and all. My first true web site that actually had more than one page was a Star Trek: Voyager fan site. For that site, I learned how to use frames to make a site that looked like a Star Trek computer interface, and I found Javascript snippets that allowed me to change content in one frame when a new page loaded in another frame.

\n

As I learned more and more about the web, I was hooked. I started learning about PHP, and realized I could make header and footer files, so that I didn’t have to edit every web page on my site when I added a new page.

\n

Discovering WordPress

\n

And then, about 12 years ago, I installed WordPress for the first time. Blogging was this brand new thing that lots of other geeks were doing, and so I jumped on the bandwagon. I was 19 years old, living with my mom, working a low-paying job at a book store, and going to school part time. Ya know, basically living the dream.

\n

WordPress was just about a year old at this point. There were no plugins or themes; you hacked core if you wanted to change the look of your blog. It was like the Wild West.

\n

And I loved it.

\n

Really, I enjoyed the process of changing the layout of my blog, editing the “theme” to make it look how I wanted. I got more of a kick out of that, than I did actually writing about myself.

\n

Fast forward a few years; I left the book store I’d been working at behind, and started working as a Pharmacy Technician. I loved that job, but it was stressful. I got yelled at by patients when their doctor didn’t call in their prescription, and somehow it was my fault their copay went up when their insurance changed in the new year.

\n

Blogging became sort of a catharsis; a way to vent when I got home about everything that stressed me out during the day.

\n

It also helped me find community. I followed and commented on a ton of other pharmacy blogs. The pharmacy blogging community was, and still is, a really tight-knit group. I made friends in the WordPress Forums. I made friends from all over the world and all walks of life.

\n

In 2009, I moved here to New York, from where I’d grown up, in the Washington, DC area. I’d only been to New York a couple of times before; once on a school field trip, and once to see a comedy film at the Staten Island film festival.

\n

But I needed a change of scenery from the non-stop politics of the DC beltway, and after that trip to New York, I had decided that I wanted to move here.

\n

My first WordCamp

\n\"NewNew York City, my home for a little over five years.\n

Fairly soon after I got to New York, I learned that there was going to be this event called “WordCamp,” where you could spend two whole days learning about WordPress and meeting other people from the WordPress community. And tickets were only $40, including a t-shirt and lunch on both days!

\n

Now, I’d just moved to New York. I was working in a retail job, and I was renting a room in an apartment in Washington Heights (the upper end of Manhattan).

\n

There were nights I ate popcorn for dinner because I didn’t get paid until Friday. I was lucky if I had ramen.

\n

So, as you might imagine, even $40 for something like this was hard to come by.

\n

And then, I heard that if you volunteered at WordCamp, you could get a free ticket! For anybody  who knows me, it’ll come as no great shock that I spent most of the weekend volunteering. I’d only signed up to help with folding t-shirts the night before, and to help with registration on both mornings.

\n

But I ended up spending most of the event walking from room to room, making sure everything was running on time.

\n

By the end of Saturday, I was exhausted, but I was hooked.

\n

I’m an introvert; socializing doesn’t come easy for me. But volunteering at WordCamp gave me a purpose in talking to people. My common interest with other attendees made it easy to strike up conversation.

\n

After lunch on Sunday, my feet had finally given out, and I’d collapsed in a chair in our registration area.

\n

And finally, Sunday afternoon, as WordCamp was ending, and everybody was coming down from the high generated by all of the weekend’s excitement, I found out that there was going to be another WordCamp in Boston a couple of months later.

\n

For those two months, I scrimped and saved, begged and borrowed, every penny I could, and just barely managed to come up with enough to take the bus up to Boston for the weekend. I made even more friends, from even more places. They didn’t need any more volunteers, so I actually spent the weekend attending sessions!

\n

Over the course of that weekend, I found myself talking with people in the hallways a lot. And I guess I sounded like I knew what I was talking about, because a lot of those conversations involved me giving advice about people’s sites, what plugin to use to solve a problem, stuff like that.

\n

And I realized a couple of things:

\n

A. I knew way more about WordPress than I realized, and

\n

B. I really loved being able to help people.

\n

Wanderlust

\n

Over the next couple of years, I went to half a dozen WordCamps, in Philadelphia, Baltimore, Chicago, New York again.

\n

I became hooked on traveling. Every few months, I visited a new city for the first time. I used WordCamp as an excuse to visit my older brothers in Minneapolis. I volunteered or spoke at almost every WordCamp I went to. And I ended up becoming one of the lead organizers for WordCamp NYC in 2012 and 2014.

\n

By that time, I’d also moved on from working in a pharmacy to working at the Apple Store. I eventually moved to the Genius Bar, where, even though it wasn’t WordPress, I got to help people solve tech problems.

\n

It was a job I enjoyed a lot more, one that payed a decent amount better, and made it easier to travel to far off places–which at this point, I already knew I couldn’t get enough of.

\n

I wanted to travel the world.

\n

It became an obsession, really. I spent hours online reading stories about people traveling around, working odd jobs here and there to make their way from country to country. And then, I found out, since I was under 30, I was eligible for something called a “Working Holiday” visa in Australia. Basically, it lets you move there for up to a year and work to pay your way, with the only caveat being you could only work for the same company for up to 6 months.

\n

So again, I scrimped and I saved, and planned for over a year. The visa itself cost almost $500, but that was nothing compared to the total cost of picking up roots and moving halfway around the world. It certainly wasn’t cheap, but I was lucky enough to be in a position in life that allowed me to do it. For that whole year, I didn’t go out to the movies. I rarely ate out, even at fast food. Foolishly or not, I took some money out of my 401k, so that I’d have enough money to get me through until I could get set up down under.

\n

And when I had enough money, I bought a one way ticket from New York to Australia.

\n

My finger hovered over that “purchase” button for what seemed like hours, but was probably just a few minutes. After I clicked, a wave of emotion hit me like a tsunami:

\n\"II worked at the iconic glass cube on Fifth Avenue in New York (we often called it the Fruit Stand). This was taken on my last morning of work before setting off for the great unknown.\n

“Wow, I’m really doing this!”

\n

“Wait, am I really doing this?”

\n

“Oh, crap, I’m really doing this.”

\n

A few months later, I said goodbye to my job at the Apple Store. I’d worked there for nearly 4 years, and some of my coworkers were my closest friends. My last day was the iPhone 6 launch.

\n

Apple has a tradition of “clapping out” employees on their last day, and at the end of my final shift, I was no exception. My coworkers gathered in the hallway outside the backroom, cheered for me, hugged me–I was in tears. It really hadn’t hit me until this moment that I was leaving almost everything and everyone I knew behind.

\n

I did have a few stops on my way out of the country. I wanted to visit my family in Minnesota one more time before leaving. Also, WordCamp San Francisco, which I’d been asked to help run volunteers for, was happening a couple of weeks before I was due to leave. So I decided to spend a few weeks in California.

\n

The first WordCamp that changed my life

\n

Most of the people who ran WordCamp San Francisco worked at Automattic, the company that runs WordPress.com, Jetpack, Akismet, and more. And I’d been wanting to work for Automattic ever since my very first WordCamp, when I first met people who worked there.

\n\"II was too busy making sure everything was in place for volunteers at WCSF, but I did manage to take one photo during lunch.\n

I arrived in San Francisco about a week before WordCamp, and spent the week working out of Automattic’s offices there, making sure everything was in place for the weekend. I got to talk to even more Automatticians, and since I was in charge of volunteers for the weekend, I got to boss a lot of them around.

\n

I had a rare opportunity to spend a lot of time with the people who worked there. An experience made even more rare by the fact that, since pretty much everybody at the company works from home–wherever that may be–it’s not very often that that many employees are in one place.

\n

By the end of the weekend, more than one of them encouraged me to submit an application to work for Automattic.

\n

And I could feel in my bones that it was where I was supposed to be. So that very night, I polished up my resume, and sent it in by email.

\n

But the application process takes time–WordCamp ended, and I had a plane to catch.

\n

Out into the great unknown

\n

Before I left the US altogether, I visited a few friends in San Diego, and even attended one last WordCamp–the smallest one to date, with only about 50 attendees–WordCamp Ventura. It was one last opportunity to see and make friends before leaving a continent behind.

\n

I boarded a plane at LAX at about 9:00 on a Tuesday night. I should have been exhausted, but I was so excited, I had energy to burn. Sitting there on the tarmac, waiting for takeoff, I reflected on how far I’d come, and how far I was about to go, and even though I had a 12-hour overnight flight ahead of me, I didn’t sleep a wink.

\n

As luck would have it, the best flight deal I could find from the US to Australia had a layover in Fiji, for just under 24 hours. When I booked the flight, I checked, and it turned out making the layover 5 days instead of one only added about $100 to the cost of the flight. I found accommodation at a hostel right on the beach for about $8/night, and that included a free ride to and from the airport.

\n

I was like “$150 side trip to Fiji for 5 days? Sign me up!”

\n

I got to the hostel about 6:00 in the morning, long before my bed was ready; check-in was normally at 1pm, I was told.

\n

Being awake for 36 hours finally had caught up to me, so I collapsed in a hammock outside in the shade, and finally went to sleep.

\n\"TheThe view from the hammock I slept in while waiting for my bed to be ready.\n

They managed to get my bed ready a couple hours early, and so at 11:00, I dragged my feet and my suitcase over to the building I’d be sleeping in for the next few days, and slept until just after dusk.

\n

I spent the next few days lounging in hammocks, taking swims in the ocean, and exploring the tiny town of Nandi just outside of the airport. I took day tours, and spent an afternoon relaxing in mud baths, then getting a deep tissue massage that seemed to go on forever. One day, a bunch of people from the hostel took a bus all the way across the island–about a 2 hour journey–to watch a Rugby tournament that some of the hostel’s staff members were playing in. Our team didn’t win, but it was fun to watch, so we didn’t care.

\n

We spent the nights sitting around a fire, singing songs, and drinking Kava–a somewhat intoxicating drink that tasted like dirt, but made you happy and carefree.

\n

Those five days seemed like a lifetime, but they did finally end, and I had another plane to catch.

\n

Back to reality

\n\"WhenWhen I first laid eyes on the Sydney Opera House, I stood in wonder for what felt like hours.\n

So, after one last flight, this one, mercifully only about 5 hours, I finally landed in Australia, Sydney to be exact. As corny as it sounds, I’d fallen in love with the city after watching Finding Nemo.

\n

I had spent so much time planning the “getting to Australia,” part of my journey, that I didn’t really have any solid plans for what to do after I got there.

\n

The first order of business was finding a long-term place to stay, and the second was finding a job.

\n

I had originally planned to transfer to an Apple Store in Sydney. But, as happens in large companies, I got caught in a quagmire of bureaucracy, and didn’t actually have a job waiting for me when I got to Australia. I met with managers at the store, and they were excited to have me come aboard, but there was a lot of red tape to get through.

\n

And so a couple of months went by, and my savings were rapidly depleting.

\n

For a couple of weeks, just to pay my rent and buy some food, I spent hours every day as a street performer in one of the popular shopping areas in Sydney.

\n

I’d gone to the Aussie equivalent of Best Buy, bought an amp and a microphone, and connected it all to my phone playing some Karaoke tracks.

\n

It was summertime, and just before Christmas, so there were lots of shoppers out and about, and in a giving mood. The Saturday before Christmas, I took in $300 in about 4 hours. It was really fun, and I made a lot of friends in other buskers, and some of our regular fans, but I couldn’t keep it up forever.

\n

Finally, a paycheck…

\n

Just as my savings were about to run out, and it looked like I might have to borrow money to head back to the States, I heard back from Apple. They wanted me to start working at the store in a couple of weeks. On that very same day, I got an email from Automattic. Over the previous few weeks, I’d interviewed with a hiring manager, and done a small project, and that day, they asked me to start a 6 week trial as a Happiness Engineer.

\n

I’d gone from having no jobs, singing on the street just so I wouldn’t be living on the street, to having two full time jobs at the same time, and raking in the dough.

\n

And so, I would wake up early in the morning, and spend a couple hours answering WordPress support tickets, then walk to the Apple Store and work a full 8 hour shift, and still come home and spend a few more hours working on tickets. I didn’t take a day off for over a month.

\n

But, six weeks into my trial, I found out I was going to be passed on to Automattic’s CEO– a guy you might have heard of, named Matt Mullenweg–for the final interview. I had to ping him every day to ask if he was available, and after about a week, we chatted for hours-six long, but engaging hours, about everything from Karaoke, to what books I liked, to my traveling around the world.

\n

And at the end of the chat, Matt offered me the job. I would start full time at Automattic in a couple of weeks.

\n

And so, I gave my notice at Apple, and to celebrate, in the long weekend I had before starting at Automattic, I took a trip to the Great Barrier Reef.

\n\"TheThe kangaroos at the sanctuary were quite friendly! As long as you had food to offer them, anyway.\n

I had to fly up to Brisbane, then take an all day tour bus to a town hear the coast. We stopped at tourist traps along the way, including a sanctuary for kangaroos, koalas, emus, and more. That evening, we finally got to a small coastal town, with a population of maybe a few hundred.

\n

The next day, the winds were too high on the seas for us to safely take a boat out. Instead, our tour guide took us to the top of a cliff overlooking the beach that night.

\n

There were no cities for miles around, and I saw the entirety of the Milky Way in the sky for the first time in my life. That had a profound effect on me; it really hit home just how insignificant we really are in the universe.

\n

The next day, we took a boat out to the reef, and I got to snorkel for a few hours. I did what Finding Nemo had made me want to do; watch see turtles play and look for “annemenenennones.”

\n

And I found Nemo!

\n

On my own for the first time…

\n

Once I got back to Sydney, it was time to buckle down, and get to work. I had to buy, then set up my new computer. I went through some more training, settled into a routine, and attended my team’s weekly chats, which were at midnight, thanks to the time zone difference.

\n

That didn’t stop me from exploring, though.

\n\"40,00040,000 feet over the Australian outback, on my way to Bali, it seemed like I was over an alien planet.\n

Easter weekend, I took a side trip to Bali, Indonesia; flying there was actually cheaper than most destinations within Australia!

\n

I traveled inland to a small town near the center of the island named Ubud. And while I was there, I stayed in a treehouse (albeit, a treehouse with wifi and air conditioning).

\n

Every night, I got a full body oil massage for about $15 USD. I went to a monkey forest reserve, and spent hours playing with the monkeys. One even climbed up on my shoulder to grab a piece of fruit I was offering it.

\n

A month or so later, I went to a WordCamp in Brisbane. Since I could work from anywhere, I rented an AirBNB for the month there, and had an apartment all to myself, for the first time in my life.

\n

A moment in crisis

\n

It’s funny how living in a place by yourself is a completely different mentality from sharing one with family or roommates.

\n

What I didn’t know was just how much it would affect me.

\n

You see, I’d been struggling with something all my life; something I’d kept hidden from everybody around me, sometimes even from myself.

\n

Growing up, I always knew I was different somehow. It wasn’t until my teenage years that I was able to put a name to it, though.

\n

All my life, I was told I was a boy, by family, by friends, by society. I believed it, too. After all, if everyone calls you something for long enough, you tend to end up believing it’s true.

\n

But, in my heart, I knew I was different. I was really a girl.

\n

I’d find out later that this was called being transgender.

\n

Looking back, I can see signs that I wasn’t what everyone thought I was from my earliest memories, but it wasn’t until puberty hit that everything really started feeling wrong. My body wasn’t growing the way it was supposed to.

\n

The teen years are known for being a pressure-filled, anxiety-ridden period in anybody’s life.

\n

Mine was that way for the same reasons as most teenagers, but also because I had to hide who I really was. At the time, all I knew about trans people was what you saw on Maury and Jerry Springer, and the occasional transphobic jokes in TV shows and movies.

\n

I didn’t want to be one of those caricatures, so I buried my feelings deep down into myself, so that eventually, even I believed they weren’t real.

\n

But, every once in a while, they’d resurface. And I’d bury them back down because I was afraid. I was afraid that roommates would see me for the impostor that I felt like. Or that they’d be disgusted. I could never let my guard down.

\n

When I moved into that first apartment of my own, though, a couple of things happened:

\n

First, I was able to let my guard down. There was nobody around to worry about seeing me.

\n

More importantly, though, I came across a Facebook post of a former coworker who had transitioned earlier in the year.

\n

She’d originally made a big post on Facebook announcing that she was transitioning, but it happened during a time when I wasn’t really looking at Facebook, and by the time I was looking again, I had missed the post, and she had changed her name and profile image, so that I didn’t put two and two together.

\n

But in June, for the first time since transitioning (that I saw anyway), she posted a picture of herself. I practically did that double-take that they show in cartoons: “Is that who I think it is?”

\n

And so, I spent that evening reading back through all of her posts from the last six months. She talked about the feelings she’d had since she was a kid, and how she came to terms with them.

\n

I sat there for hours, until the sun came up. At some point–I don’t know when–I started sobbing. Everything she was saying punched me in the gut like a prize-fighter.

\n

These were the same feelings I’d suppressed all of these years–to a tee.

\n

I’ve heard before that when you’re transgender, before you can accept yourself and start to transition, two things need to happen:

\n

First, you need to realize you can do it.

\n

Then, you need to realize that you can do it.

\n

I already knew that it was possible to transition. Back when I worked in the pharmacy, I filled lots of hormone prescriptions for trans women.

\n

But reading my friend’s posts helped me realize that transitioning was something I could do. That I needed to do.

\n

I was in crisis mode. I was half a world away from everyone I knew, my family, my friends.

\n

I was scared. I wanted to go home, but I still had about four months to go until I came back to the US.

\n

Starting a new journey, while already on another one

\n

I wanted to go home early. Several times, I’d gone to booking sites, and held my finger over the purchase button with a different kind of trepidation than I’d had when I originally bought my ticket to Australia.

\n

But I’d already agreed to speak at a WordCamp in Pune, India in September, so if I went home early, it would mean cancelling that (and letting down one of my coworkers who’d worked hard to get me invited and approved to go in the first place).

\n

So, I carried on. I found a therapist that would talk with me online, to help me through all of the anxiety and depression I was going through. By the time we finished a couple of sessions, I was absolutely certain that transitioning was right for me.

\n

I muddled through the rest of my time abroad. I didn’t really go out much and explore the cities I had left to visit, though I did some. I’d started chatting with my friend whose posts had led to my own epiphany. Both she and the therapist I was talking to helped me through the worst of the homesickness.

\n

I kept working, and eventually, the trip to India came. I had a weekend in Pune, a month in Mumbai, then back home to the US. I enjoyed India a lot. I met a lot of people at WordCamp, who treated me like a rockstar for working at Automattic. And oh yeah, Topher (ya know, the guy who runs this site?) was there, too. \"?\"

\n

Finally back home

\n

After those final few weeks in India, September 30th finally came, and I was glad to be heading back home to the US. I’d spent the last few months making plans, and one of them was to tell my family.

\n\"TheThe view from the plane over Greenland, as I was finally on my way back home.\n

After two 9.5 hour flights from Mumbai to Paris, then Paris to Minneapolis, I was home. I wanted to tell my family (who I knew would be supportive) right away.

\n

But every time I tried, my throat closed up and my eyes started to well up with tears.

\n

Once I told them, there would be (in my mind, anyway) no going back. It took a few days, but I ended up telling them one at a time–via text message, so that I could say everything I wanted to say without stumbling.

\n

Of course, my family accepted me for who I was, like I knew they would. But I still had to tell the rest of the world. So many people at work and in the WordPress community knew me already, so doing it under the radar wasn’t going to happen. And really, I’d spent my whole life hiding this part of me, and I didn’t want to hide anything any longer than I had to.

\n

So, I made another plan to tell my coworkers, my WordPress friends, then everybody else.

\n

The second WordCamp that changed my life

\n

As it turned out, WordCamp US was coming up in December, just about a week before my birthday. I thought that would be the perfect opportunity to tell a small group of people, just so they would have my back in case anybody acted like a jerk when I later posted online that I’d be changing my name.

\n

I’d already worked with my HR at work to come up with the right language for a blog post on our internal updates blog. And I would later use almost the same text when I posted to Facebook and my blog.

\n

So WordCamp came, and I pulled over the few people that I wanted to talk to, and started telling people.

\n

I told that small group of 5 during the community summit before WordCamp. Every single one of them told me they were happy for me, and thanked me for trusting them enough to tell them first.

\n

And so, that was that. I’d already scheduled the blog posts (both internal at work and my own blog) and the Facebook post to go out a few days after WordCamp.

\n

Or so I thought.

\n

What I didn’t realize is just how much I’d missed my friends from the WordPress community.

\n

I made new WP friends while traveling in Australia and India, for sure, but most of my friends were in Europe and the US, so WordCamp US was my first opportunity to see most of them.

\n

I saw people I hadn’t seen in over a year, sometimes longer, and I didn’t want to pretend with them anymore. And so, I started pulling them aside, one at a time.

\n

Every single one of them pretty much had the same three responses:

\n

“Congratulations on finally being able to be yourself,”

\n

“If you need to talk to someone, let me know,” and

\n

“If anybody gives you trouble, I’ll punch them.” (Thankfully that one didn’t become necessary.)

\n

Every time I told someone, and they reacted that way, I felt happier and happier. By the end of the weekend, when I’d planned to tell 5 people, I ended up telling several hundred; who knew I had that many WordPress friends?!

\n

The community I’d surrounded myself made me feel loved, and I knew what I was doing was right.

\n

A few days later, the blog and Facebook posts went out, and all of my friends and coworkers who weren’t at WordCamp finally knew.

\n

And I felt free.

\n

And it’s all thanks to WordPress

\n

Discovering WordPress opened up a whole new world for me. It started me on a whirlwind journey that nobody could’ve known where it would eventually take me.

\n

I look back at myself–when I started using WordPress–and I’m amazed. It’s hard to imagine that I was once that 19 year old kid, with a low paying job, living at home with a single parent, struggling to make ends meet, and just going through the motions of life without really living.

\n

Now, I’ve got an amazing job, friends and family that love me for who I am, and I can finally live my life without pretending to be someone I’m not.

\n

Twelve years ago, I could never have imagined that I’d end up working for a company, and part of a community, that was full of so many accepting people. A community that placed a priority on making sure that all were welcome.

\n

It’s fair to say that without the support of the WordPress community, I wouldn’t be the person I am today–literally.

\n

And to think it’s all because I started a blog over a decade ago.

\n

All photos in this post were taken by Amy Lane, and are licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.

\n

The post How WordPress (literally) turned me into a brand new person appeared first on HeroPress.

\";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:\"Sun, 24 Jul 2016 20:45:17 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Amy Lane\";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:18;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:62:\"HeroPress: How to Learn WordPress Without Doing It on Your Own\";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:55:\"http://heropress.com/?post_type=heropress-essays&p=1138\";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:73:\"http://heropress.com/essays/learn-wordpress-without-doing-it-on-your-own/\";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:10290:\"\"Pullquote:

Wait, what?

\n

Okay, the headline might be a bit confusing, but bear with me. It all makes sense, I promise.

\n

Let’s start somewhere else, though.

\n

Hi, I’m Madalin Milea, and I am a technology professional based out of Rennes, France. I’m self-employed, a WordPress enthusiast, collaborating with CodeinWP (one of the top blogs about WordPress), and a member of the support team at ThemeIsle. I also maintain my own blog at M.Online, writing about a variety of topics such as blogging, WordPress and programming.

\n

\"Screen

\n

But I didn’t start like that. I studied Management and Economics for three years. It seemed like a sensible option, but while I knew I was gaining some useful skills, I also wanted more. I had a feeling I wasn’t yet on the right track.

\n

So I went right back to square one and started out on a new path – programming; a field that had always had a magical allure for me, something I’d always dreamed of doing but never thought possible.

\n

I obviously needed to learn a lot about WordPress, programming, and all things related before I could collaborate with companies like ThemeIsle, or before anyone would even hire me as a freelancer, for that matter.

\n

So how do you do that? How do you go from studying Economics and being a phone center technician (which I used to do), to a WordPress developer?

\n

Well, WordPress and programming in general are very interesting fields. First off, the way “mastering those fields” works is unheard of when compared to other fields. For example, if you want to be a doctor, you have no way of obtaining the necessary education on your own, through blog posts or whatever. You need to go to school. With programming, you very well can be self-taught, right from the start, all the way to being an expert.

\n

But maybe this is not the best path to take after all… Maybe you’re better off not learning everything all on your own? I mean, I found the amount of info available out there on the web rather overwhelming. There’s just soooo much stuff. Where does one start?

\n

How to begin pursuing a new skill

\n

I, for instance, decided to look for some online courses that could help me learn in a more easy-to-grasp way. So, after several hours of searching, I stumbled upon some Udemy courses on sale over at Creative Bloq Deals.

\n

At first, they seemed interesting, but after a few days, I felt quite discouraged. It all seemed too complicated, I thought I’d never manage to learn anything. For a moment, I worried that I would never become a programmer. But I’m certainly not the one to give up easily, so I asked around for other ideas.

\n

One friend of mine recommended the Treehouse courses and told me that there’s two weeks of free trial available (with full access). That seemed fair enough, so I gave it a go.

\n

Long story short, it turned out to be a brilliant decision, and looking back, perhaps one of the best career decisions I’ve ever made. After only two weeks, I was already fascinated by the courses and the team running them.

\n

It was during this time that I found my enthusiasm for WordPress and developed my skills. The Treehouse course structure really made things easy to follow. I was really taken with the whole experience.

\n

In just one year, I’ve learned PHP, JavaScript, CSS, and HTML. This has helped me to grow my new career as a freelancer, and allowed me to feel comfortable with things like creating themes, websites, and even plugins. This gives me a great feeling of satisfaction.

\n

In hindsight, I could have started with random free info that’s available on countless websites, but it wouldn’t have given me a natural step-by-step progression that a structured course does.

\n

So my message is this:

\n

Even if you set out to learn a new skill on your own, you don’t actually need to be on your own the whole time.

\n

Get guidance from someone or someplace that really knows what they’re doing!

\n

And please don’t get me wrong, I’m not saying that Udemy courses aren’t any good, but in my case, Treehouse has just turned out to be perfect, considering my newbie level. I want to thank the team (especially Zac Gordon and Nick Pettit, my favorite teachers) for their wonderful work.

\n

“Can I make the move?”

\n

You might be at that point when you just can’t decide what you want to do with your life, or maybe all your previous ideas or your parents’ ideas don’t seem all that exciting anymore.

\n

That’s alright.

\n

You can always pivot. Change really isn’t as hard as you might think if you’re motivated and hard working. There’s nothing that will spur you on more in life than following your dream. Whether you’d love to be a web developer, write mobile apps, computer games or start your own award winning blog, you can do it.

\n

There are so many resources out there, some you pay for, but many are free. You can easily find a wealth of knowledge or even just people willing to share their expertise.

\n

Once you find the right route for you, like I did, you’ll be full of motivation, and it’s this motivation that will get you there. The thought of a new career doing what you love will inspire you to put in a couple of hours each evening after work mastering a new skill.

\n

Over the years I’ve learned a lot. These days, my areas of expertise include WordPress development, team management, programming and SEO. It’s my desire to learn more that has always pushed me forward. Every day, I expand my knowledge and hone my skills as a problem solver and effective developer.

\n

You always have to remember that nothing is easy, but when you overcome obstacles, you get a huge sense of achievement. For me, it’s so frustrating when I just can’t understand something. It would be easy to give up and think it’s simply beyond me, but if you persevere, the sense of achievement when you have that “A-ha!” moment is incredible. Just in the last year, I gained a set of skills that seemed pretty much impossible to me before.

\n

So again, whatever skill you want to master, don’t set out to do it on your own. Find quality sources of information, and don’t stop until you stumble upon something that fits.

\n

What’s your dream career? Have you taken the first steps to make it a reality?

\n

The post How to Learn WordPress Without Doing It on Your Own appeared first on HeroPress.

\";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:\"Sun, 24 Jul 2016 20:45:17 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Madalin Milea\";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:19;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:24:\"HeroPress: Making Family\";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:55:\"http://heropress.com/?post_type=heropress-essays&p=1101\";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:42:\"http://heropress.com/essays/making-family/\";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:19817:\"\"Pullquote:

It’s not uncommon for me to ask someone to write a HeroPress essay and have them respond with “Why me? I’m not really on the periphery of anything. WordPress didn’t really help me overcome any hardship”. Almost every time I help them realize what an impact WordPress has made on their life, and how it has enabled them.

\n

It took me quite a while to walk that path myself. I was a web developer for 15 years before I started working with WordPress, and if I hadn’t found WordPress I’d still be a web developer, and making a good happy living.

\n

While WordPress as a technology made my career more pleasant, and certainly easier, the thing that has changed my life, and the life of my family, is unquestionably the WordPress community.

\n

Who I Am

\n

Another common requirement for writing a HeroPress essay is that you need to write to an audience. Who is this message for? This essay is for people like me. Read on and see if you’re like me.

\n

People call me Topher, and for the new folks, I manage this little site. I’ve often said that everyone is on the periphery of something. I don’t feel like I’m on the periphery of anything. I’m an educated white American man. That right there puts me smack in the middle of most things. But if I had to pick something a little different I’d have to say it’s the way I was brought up.

\n\"PhotoThe shed we started in is in the top right, then we stayed in that trailer for a summer. The largest thing is the foundation of the house.\n

In 1979 my parents sold almost everything they had and moved 100 miles north. They bought a little plot of forest in the middle of a very large plot of forest and put up a tent and we moved in. Then we built a little shed, and my dad, my uncle, and I moved into that while mom and my sisters moved back to the city for a few months. We cleared the land and started building a house.

\n

When it came time to hook up to the electrical grid we were told it would be $20,000 for the hookup. That’s nearly $70,000 at today’s rate. My dad simply said no. We didn’t get connected to the electrical grid for another 15 years.

\n

If you’d like to read more of that story I did a nice long series on my own blog.

\n

How I Got Here

\n

I taught myself to type in high school because it was way better than writing all that stuff by hand. When I got to college and it came time to write a paper I found that the library had a typewriter I could use.  It was an old IBM Selectric with a little motor that spun and hummed the end entire time.

\n

One day a guy said to me “Why don’t you use The Computer?”.

\n

“We have a computer?” I asked.  He showed me where the IBM 286 with WordPerfect was and I spent about a week learning everything I could about it. Soon I was typing papers for other people at a penny a word. That’s about $2 a page.

\n

Then one day someone donated a new computer to the college.  It was a Microsoft Xenix server, with 5 dumb terminals. Five people could use it at the same time! It also had something called “email”.  It wasn’t on any network, so we could only email people in that room. But we loved it. Everyone swapped emails.

\n

Fast forward a couple years and I went to a different school which ALSO had a server. This one was a giant VAX/VMS system. The machine was about the size of an old Volkswagen bug. There were terminals all over campus. You could send an electronic message to someone who was almost a mile away! It was amazing, and I was enthralled.

\n

In my 4th year of college I was told that we could soon be connected to The Internet. I’d never heard of that, so I started learning. I found out that it would be just like what we had, but we could send emails to other schools! And people all over the world. It was AMAZING.

\n

To try to keep a long story short(er) I moved through telnet, Gopher, and finally the web.

\n

One day a friend came to me and said “Hey, look what I made!”.  It was a web page. With his own content on it! He said “It’s really easy, you should try it!” I told him no, it looked far too complicated. He said it really wasn’t, and showed me.

\n

That afternoon I learned every HTML tag there was. All 40 of them. And I started making web pages. Page after page. I made lists of interesting websites, and connected them all together. I built an unofficial website for my college. I joined the local Freenet, even though I didn’t have a computer of my own, and started building pages for them, for my city. It became an obsession.

\n

Eventually I talked the college into paying me to build them a real website. Here’s a screenshot:

\n

\"Screenshot

\n

Leveling Up

\n

After college I took a 6 month contract building an intranet website for Kellogg’s (the cereal people). It was their first internal website, and I had to make sure there was backward compatability for Netscape 1.0. It was still all plain HTML though.  CSS hadn’t been invented yet.  If there was back-end scripting to be done it was CGI in perl.

\n

Fast forward to 1998 and I was working in my office with some co-workers and one of our designers came into the room. He said “I have a contract to build a site for a realtor, but I need someone who knows PHP”. No-one said anything, so I said “I’ll do it!”.

\n

That night I went home and learned PHP.

\n

I built the site and got paid. Let’s just say I’m glad it’s not around anymore.

\n

I started taking more PHP jobs, getting better and better. A new thing became popular on the web called “web logging”, basically keeping a journal on the web.  People soon shortened it to “blogging”, which confused all the old people.

\n

I tried some blog software, but it was crazy hard to set up. One platform even required an Apache module of its own. I decided blogging wasn’t for me, and probably wouldn’t be going very far.

\n

Enter WordPress

\n

In 2003 I was working as a PHP/MySQL developer at a radio station attached to a college (the very same at which I started so long ago). I was teaching a class called Intro To Web Development. I’d recently heard about WordPress and tried it out. I wasn’t very impressed. I could build that. I required each student to have a project for the year, and I took one for myself. Build something better than WordPress.

\n

What I came up with wasn’t better than WordPress, but it was good enough that I used it as my main blogging software for 10 years. Looking back, I really wish I had become involved in the community then. Where would I be now?

\n

Spinning Off Into Chaos

\n

In 2010 I had been doing side work non-stop for several years. I did the math and realized that I was wasting a LOT of time and money going to my day job every day. Literally tens of thousands of dollars being lost by going there 5 days a week.

\n

I quit.

\n

I went freelance and the work poured in. I took a contract that used WordPress and was pretty impressed by its blogging abilities. It was still a chore to make any other kind of site with it, but I was able to bend it to my will. I loved that WordPress took care of permissions and user management for me. I quickly found out that most of the “WordPress developers” out there didn’t really know PHP. I had a huge advantage.

\n

I used WordPress occasionally until 3.0 came out.  Everything changed.

\n

Custom Post Types made practically anything possible! It was literally breathtaking. I hadn’t been so excited since the early days of web development, when a new browser version meant major new web technology.

\n

Everything in my life began to change rapidly as well. I went from freelancing to being CTO in a startup to being a WordPress VIP developer at a major agency to trying something cool (HeroPress) to writing documentation. 5 different job changes in 6 years. It was pretty stressful for my family.

\n

There was something consistent through most of the last 6 years though.

\n

You

\n

My first experience with The Community was when I went looking for a Theme Framework.  I found Startbox, by a guy named Brian Richards. I found out he lived only a few miles from my house! He answered SO MANY QUESTIONS. I wouldn’t be the WordPress developer I am today without him.

\n

We formed a local WordPress meetup, and one of the first things he said was “We need a WordCamp”. What’s a WordCamp? He told me all about it and said he wanted to pull one together in only 4 months.  I thought he was CRAZY, but sure enough he did it, and WordCamp Grand Rapids was born.

\n

I was hooked. I couldn’t wait until NEXT year when we could have another one!

\n

Then I learned they happen all over the place! ALL THE TIME!

\n

My first Away WordCamp was Austin in April 2014, and it felt like it changed everything. I mustered up the courage to approach Siobhan McKeown and ask her about writing docs. 15 minutes later (literally) I had admin rights to work on the Plugin Handbook. I spent the next 6 months finishing it.

\n

I met Shayda Torabi, Chris Lema, Shawn and Kay Hesketh. I met for the first time my own co-workers at XWP.

\n

And my father died.

\n

My sister called on a quiet Sunday morning at sunrise and told me he was gone. My dear brother Luke Carbis cried with me. I’m crying now as I write this.

\n

More of You

\n

I was surprised to learn soon after that XWP wanted me to go to WordCamp Miami. I didn’t expect two WordCamps in one year! I met David Bisset, Karim Marucchi, Joe Hoyle, and dozens of other people who are now solid friends.

\n

Then another, I found out I was going to WordCamp San Francisco! I met Rocio Valdivia, Julie Kuehl, Dave Rosen, Shane Pearlman, Jake Goldman, and more and more and more.

\n

It was at that WordCamp that someone nominated me to be XWP’s WordCamp Outreach person. Dave Rosen looked at me with a sparkle in his eye and asked “Would you like that?”. That moment was the true beginning of HeroPress. That’s where he started thinking “What if?”

\n

HeroPress

\n

Until HeroPress WordPress was a tool to further my career. I’d made some dear dear friends, but maybe I would have made dear friends without WordPress. Dave Rosen came to me and told me he wanted me to do something great for WordPress. He told me it was my journey to discover. He wanted a business, a new product that would change everything.

\n

He also sent me a picture.

\n

It was a narrow alley in India. I don’t know what city. In the center of the alley was a small child, maybe 3 years old, getting a bath. His or her mother was pouring water to rinse.

\n

“I want to help that child” Dave said. “I want to make a world where that child has the ability to make a good healthy living, without having to leave home.” The child was looking right at the camera.

\n

Right at me.

\n

Dave also made available to me a WordPress agency. “If you need to build anything, use them, I have them on retainer” he said. They were from Kolkata. I got to know one person there, a young man named Jeet. We spent months together trying to come up with something great to do for WordPress. I learned about his family, and he learned about mine. He got married in that time.

\n

One day Jeet let go of some frustration. He was trying to get enough work for his agency to stick together.  It was really a group of friends who had been freelancing, and they wanted to make it work as a team. But he couldn’t get good work.  There was plenty of work for “cheap labor from India where they work for almost nothing”.  But that doesn’t work for actual grown up developers feeding families. He asked me how to get good work.

\n

I felt helpless. I’d never been to India. I wasn’t any good at business really. What do I know?

\n

So I set out to find someone who DID know. Someone who’d made a successful WordPress business in India.

\n

That’s where the core idea of HeroPress started. That’s why HeroPress essays now need an audience. It’s about connecting people to each other to share wisdom.

\n

I lost track of Jeet not long after the HeroPress Kickstarter failed, and I’ve been looking for him ever since. If anyone knows where to find Soumyajit Saha, I’d love to know.

\n

Failure

\n

The Kickstarter failed. My job situation was uncertain. Jeet never got his advice. The kid in the alley would certainly never get a good job. That’s ridiculous of course, but I could still see those eyes.

\n

Then people started saying things like “HeroPress is such a good idea, please don’t let it die.” People who couldn’t afford to give more than they had, or any at all.  People said “I couldn’t afford to give any money, but I have time, if you need anything done, I’ll do it”. Dozens of them.

\n

I started thinking about how I could make it work. If I gave up on video, and went with plain text, how hard could it be? What could it cost besides hosting? I decided to go for it.

\n

I emailed Dave and asked permission but he didn’t write back. He was busy on something else at the time. I asked again.  Nothing.

\n

So I did it anyway.

\n

I found Rarst and asked him if he’d do his presentation in text form, and he said yes. We published. It was breathtaking.

\n

Then I thought “I should have another, right? Umm… next week?” So I tracked down Saurabh Shukla, who had given so much great advice on how to talk to people from other cultures. “Sure!” he said. Then I needed another. For about the first 3 months I got contributors merely days, sometimes hours before publish time.

\n

Failure turned to success. Text is BETTER than video. It’s cheaper, faster, more accessible.

\n

It’s not a viable business. No-one’s making their living from it. From the viewpoint of the original goal, it has been a failure. From the eyes of everyone who talks to me about it, I can see it’s a success.

\n

Making Family

\n

In the spring of 2014 I went with my wife and two children to WordCamp Chicago. We all made new, wonderful friends. My children know people from all over the world, some of them that I don’t even know, because of WordPress. My wife now has dear friends she talks to all the time because of that WordCamp.

\n

\"SomeWe were hooked. We decided to go to another WordCamp. Then another. We went to Chicago, Dayton, North Canton, Milwaukee, Miami, Orlando, Tampa, Virginia Beach, St. Louis, Kansas City, Columbus, and WordCamp US.

\n

Without my family I went to Pressnomics and WordCamp Pune.

\n

At every one of these places we made more friends. More people with whom we still stay in touch and to whom we have become close. Some of them we saw over and over at WordCamps all year, and traded stories of travel and family and life.

\n

The longer we’re a part of the WordPress community the more I realize we’re not making friends, we’re making family.

\n

Family from India, Ukraine, England, Argentina, Nepal, Lebanon, Sri Lanka, and literally hundreds of other countries.

\n

WordPress didn’t rescue me from anything. The code shaped my career sure, but what has changed me is you. The lives of myself and my family will forever be better because of you.

\n

Thank you.

\n

The post Making Family appeared first on HeroPress.

\";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:\"Sun, 24 Jul 2016 20:45:17 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Topher DeRosia\";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:20;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:70:\"HeroPress: WordPress, Where I Found What I Didn’t Know I Was Missing\";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:55:\"http://heropress.com/?post_type=heropress-essays&p=1088\";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:60:\"http://heropress.com/essays/what-i-didnt-know-i-was-missing/\";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:13262:\"\"Banner:

Backstory

\n

My grandparents used to have a photograph that showed me as a child, just old enough to start walking; and in it I was trying to climb onto this little cement horse sculpture they had in their yard.

\n

For as long as I can recall I’ve always had an interest in horses, and it was always believed that my primary career path in life would somehow revolve around riding or training horses.

\n

I had the first chance to work around horses when I was nine, my parents wouldn’t pay for riding lessons but I was given the green light to volunteer at a handicapped riding facility near our home. So I would go there a few times each week to lead the horses around and assist the riders. I was in heaven.

\n

After some months of this my parents finally conceded to riding lessons, then buying a horse and things seemed to be on course for a career in horses for me.

\n

When I was 14 years old, we had moved to our own little property where we could keep our own horses. I would have been entering the 9th grade that fall, but instead I proposed to my parents that I should drop out of school and start a horse business instead; and surprisingly they agreed.

\n

For the next 6 years, I would spend a significant amount of time learning how to build, maintain and improve my own website for that business; it started with a basic WYSIWYG website builder but I quickly learned I needed to dig directly into the code to achieve what I wanted. I broke things and learned how to fix by poking at them with a stick, possibly the most ineffectual method of learning but this was before Google contained all the answers to all the questions..

\n

What about *WordPress*?

\n

Bear with me, I’m getting to that point! It’s now 2005 and I’m packing up my truck and horse trailer with a reasonable amount of belongings and one of my horses to drive 2000 miles from southern Wisconsin to the Seattle, Washington area. The next step in my journey will be as working-student for a year, which is just a fancy way of saying I’ll be doing hard physical labor for gruelingly long hours in exchange for a few hours of one-on-one instruction when the trainer has time.

\n

I wanted to learn more about Classical Dressage, and with few options in my immediate location, began looking outside the Midwest until I found a small facility in the Pacific NorthWest that was teaching what I wanted to learn.

\n

So where does WordPress fit in here? From the time I started working at the farm, I had to maintain an online blog and post to it daily. I chose WordPress as my blogging platform, possibly it was a choice of complete chance. But **that was my introduction to WordPress**, the requirement to maintain a simple online blog every day.

\n

Momentum

\n

Every day, I blogged, and slowly I decided I wanted to do more with my blog. So I began exploring plugins and themes, and then how I could break and fix them to suit my own needs.

\n

People I knew in the horse community would hire me from time to time to work on their site or build them one, and I was doing this in HTML and CSS until I got started with WordPress; and soon I was converting everyone I could to a WordPress site.

\n

Distractions

\n

There were a lot of other things going on in my life at this time unrelated to WordPress and websites as I continued to search for what I really wanted to do with my life.

\n

I returned from Washington and began giving riding lessons in my area. I wrote and published a book about working with horses, “Centered Self, Centered Horse.” Despite the outward successes I was having, my career path with training horses was really just reaching its peak before fizzling out.

\n\"EricaOne of the last times I exhibited my horses, this was at a fundraiser for a therapeutic riding facility.\n

I began practicing Therapeutic Massage to help bring in additional income, sadly my arms would only hold out for a few years before severe chronic tendonitis forced me to quit altogether.

\n

The economy in the gutter and I felt this might be a good time for me to pursue higher education, so I went to college for my Bachelor of Fine Arts degree.

\n

School was a welcome distraction as my involvement with the horse community became less satisfying. I felt more at odds every day with the common methods used to train and ride horses until I decided I needed a full break from all-things-horses.

\n

Even through all of this, I was still plugging away with WordPress, freelancing and slowly gaining more and more clients.

\n

The Big (little) Change

\n

In 2013, a freelance client I had just started working with wanted to use a very specific WordPress theme – Marketer’s Delight.

\n

It’s funny when you think back to something small that can completely change the course you’re on. But it was this tiny thing that I believe began a full-stop to the path I was travelling at that time and helped re-route me to where I am today.

\n

Marketer’s Delight, at that time, was a skin for the Thesis framework. So as I was working with it I would pop into the forum support to ask a few questions about whether certain functionality was supported out of the box, and Alex was looking to hire someone to help with forum support.

\n

On a lark, I sent him an email. I loved working with Marketer’s Delight and felt I’d enjoy helping others in the forum as they navigated their way through customizing the theme for their own site.

\n

And that was it, I joined Kolakube and worked in the support forum for about 3 months.

\n

After that opportunity I realized some very important things. 1) I love figuring things out and finding out what the cause of a problem is, and 2) I really love helping people.

\n

Taking a chance at a random opportunity

\n

I had continued to freelance while working in the support forum, but after that time I really wanted to work with another support team again.

\n

I wasn’t yet actively looking at job openings or submitting resumes to any companies; but opened up Twitter and one of the few people I was following at the time had retweeted a link to a job opening for OptinMonster.

\n

I worked with creating “optins” with OptinMonster on a few of my clients’ sites so was already somewhat familiar with the product and and really enjoyed using it.

\n

Of course there was some immediate self-doubt about whether I was really qualified for the position because customer support wasn’t a field I had been pursuing for a long time or had a long history of experience in.

\n

“Ah, the worst that can happen is they actually respond with a ‘no’.”

\n\"EricaNot a resume to be easily forgotten.\n

So I got to work putting together a resume to submit that I felt would convey both my personality and highlight my motivation.

\n

I actually listed the following as a skill-set in my resume:

\n

“Owner of unicorns,
\nslayer of dragons,
\nrider of lightning”

\n

Long story short, I got the job!

\n

Time flies when you love what you do

\n

It’s been a year and a half now that I’ve been working not only with OptinMonster, but also with Soliloquy and Envira Gallery plugins which are part of the same company (AwesomeMotive).

\n

I work with the really great, diverse team of people, who feel more like family.

\n

In the short time I’ve worked at AwesomeMotive, I’ve learned so much and grown a lot with respect to my knowledge and skills in development even. I gained confidence to begin writing my own plugins and have some published now in the WordPress Plugin Repository.

\n

This last fall I was promoted to Head of Customer Happiness and have the honor to oversee support for thousands of customers.

\n

Reflection

\n

Sometimes it’s difficult to look ahead and see clearly where your destination will be.

\n

If you had asked me 10 years ago what I would be doing today, customer support or a career largely built on WordPress would not have been part of my answer.

\n

But in all the little paths I’ve travelled that eventually got me here, what I’ve always been looking for was a place where I fit.

\n

Since I first began writing a little daily blog in WordPress, to today working every day with this amazing team of incredibly skilled individuals, has been this comforting feeling that the world is right and my place in it correct.

\n

The incredible thing about WordPress is the diversity of what you can pursue. WordPress is more than a blog, more than a website or online store.

\n

WordPress is people coming together, sharing their own unique sets of skills and personalities to make something greater than could be achieved by any one person alone.

\n

WordPress allows me to learn and grow as a person every day. It challenges me to think about problems from completely different perspectives as I work with individuals from around the world who share with me their experience and thoughts.

\n

I doubt I would have a similar opportunity without WordPress; and really without each and every person who is using, extending and contributing to it. My gratitude for WordPress is really my gratitude for you, the person reading this story about my journey, because we are all helping support each others journey through WordPress.

\n

The post WordPress, Where I Found What I Didn’t Know I Was Missing appeared first on HeroPress.

\";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:\"Sun, 24 Jul 2016 20:45:17 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Erica Franz\";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:21;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:31:\"HeroPress: My Road to WordPress\";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:55:\"http://heropress.com/?post_type=heropress-essays&p=1038\";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:49:\"http://heropress.com/essays/my-road-to-wordpress/\";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:17052:\"\"Banner:

What do you want to do for living? Depending on where you stand in life, this question can either be the most easiest or an incredibly tough one to answer. When you are ten or fifteen this question is exciting and it has the power to open a whole box of wishes and dreams that seem to just be waiting to be realized.

\n

Well, with 25 and a university degree in civil engineering in my pocket, that was probably the most unpleasant question you could have asked me. This was not like I imagined it to be. The feeling was wrong. Instead of being eager to finally put the acquired knowledge into practice, I somehow felt like I’ve just spent the last 6 years of my life for nothing. There was zero enthusiasm in picturing me working in civil engineering field…not now…not ever.

\n

Life is perfect…well almost \"?\"

\n

The year was 2009 and some big events are underway in my life. First, on April 4th I turned 25. OK, that doesn’t sound like much now, but for me, then, it surely was:). In May I got married to Marko. By the way, he is helping me write this and he won’t let me write epics about him, but otherwise I certainly would:). In June I finished my studies and in September I officially moved to Germany to live with my husband. Somehow, it still sounds strange when I say “my husband”, soo serious \"?\" .

\n

When I recall these events now I can see what a great year that was. Still, there was this big question mark hanging above my head; what am I going to do for living? Beside having a major in a field I had no intention of pursuing a career, I now had another barrier… german language. If you’ve ever heard German talking you probably know it doesn’t sound like a piece of cake thing to learn:).

\n

The first year in Germany I spent learning the language and working some part time jobs in restaurants, hotels and even giving dancing lessons. It was fun, new country, new language, new people. I even applied for a couple of jobs related to civil engineering, but luckily didn’t get them due to insufficient German knowledge.

\n

Why study something you don’t want to do?

\n

I guess this question might have crossed your mind at least once by now. To better describe the whole thing I need to give a bit more insight into my background and life prior to meeting Marko.

\n

I was born in Kotor, Montenegro that was then a part of Yugoslavia. Kotor is a relaxed small town on the coast and in my memory it imprinted itself as a great place to be a child. Most people that heard of Kotor, probably visited it on board of one of one of the large cruising ships that stop there daily.

\n

Unfortunately, in the beginning of 90’s terrible things started to happen all over Yugoslavia, the country started to fall apart and my family decided to move to Croatia that have just announced independence from Yugoslavia. We ended up on the small island Losinj, another tourist destination, where I lived with my parents until I was 18 and was time to go to college.

\n

Although spending childhood in such beautiful small towns like Kotor and Losinj may seem like living in paradise for many people, there is always another side of the coin. For me that other side were missing options. It was like, there is a way how things work here and you have to get used to it. The sooner you forget about some unconventional ideas about your future the better \"?\" . And I’ve had a lot of those. I was interested in playing piano, dancing, design and so on. It was all acceptable as a hobby, but no one really considered those to be a serious occupation option.

\n

Well, with time, I forgot about many of them as I tried to fit in and as a result I ended up studying civil engineering for the sole reason that it is, among maybe 3-4 other studies, traditionally considered “a good choice” in this country.

\n

Nothing without a support

\n

As people say, “better ever than never”. I don’t know and don’t want to know what my life would be like if I’ve forced myself to follow the path I had in front of me at that time, but I guess forcing yourself to do anything long term is receipt for failure.

\n

I figured out that “a good choice” doesn’t mean much if you’re not satisfied with it.

\n

It is a common saying that there are always alternatives, but sometimes it is really hard to see them. Especially if you live in an environment that doesn’t want or is afraid to see them. Moving to Germany to live with Marko changed my views and I started to open myself to new opportunities.

\n

Although Marko originally comes from the same small island my family moved to in the 90’s, we first met in 2006 when he was already living in Germany. His way of thinking is quite unconventional by Croatian standards and although he also tried to ignore his own urges for some time, he dropped out of “a good choice” college just before the finish line and went to Germany to work as a musician.

\n

He inspired me to rethink my options and supported me from the day one no matter what choice I make. All at once my choice was clear.

\n

Let’s Design

\n

I always wanted to do something creative and design was my wish for a long time although I’ve never done anything even remotely like it. Marko and I sat down, I told him what I’d want and he was like; great, take your time, start learning and sooner or later it will pay off.

\n

So, I started browsing all over the net trying to find good sources that I can learn from. First I actually started creating logos, but very soon I was hooked on web design. I started learning HTML/CSS and even enrolled myself in the online based web design course that turned out to be a waste of time as the concepts that they taught were 10 years behind the times. However, persistence does pay off and within a year I was ready to try selling my first template.

\n

Themeforest was an obvious choice, but the quality was not there yet. When I look at those first templates, they make me laugh, but you have to start somewhere:). Anyway, the templates got better, got accepted and I started to feel comfortable in what I was doing.

\n

WordPress all the way

\n

The year was 2012, I’ve had a couple of templates and a couple of small clients behind me, but with all these CMS solutions growing, HTML templates seemed like a dead end. In the meantime Marko and I decided to try to build a business selling only finished templates instead of developing custom websites for clients.

\n

Our goal was to build a business that is independent of the place of living.

\n

The way I got introduced to WordPress wasn’t very romantic and there is nothing really inspiring in that story. We were looking for a bigger market that could make our plan work and growing sales themes on Themeforest led us to one conclusion… WordPress.

\n

I didn’t know anything about it and was quite reluctant to start learning it, but Marko can be quite stubborn:). He was like, “common it can’t be that hard”, although at that time he didn’t have any knowledge of it what so ever:) However, that kept me going and the more I learned about WordPress the more I liked the whole idea behind it.

\n

Community of like minded people

\n

From my very first steps with WordPress I was pleasantly surprised how helpful people in the WordPress community can be. Complete strangers were ready to take their precious time and help a beginner learn some basic concepts. This is something I’ve never experienced before and that is one of the greatest values of being a part of such a community.

\n

In 2013 we launched our own site Anariel Design where we offered our HTML template as well as the first theme or two. Here again complete strangers, that run a very popular site Codrops, help us promote the site at the very beginning. In the meantime we got to know them in person so they are not strangers anymore :). Thank you Manoela and Pedro!

\n

2014 was a turning point when, out of the blue, we got an email from Philip Arthur Moore ( work for Automattic at the time ) asking if we’d like to sell our themes on WordPress.com. It was such honor for me to be invited. It was like an ultimate confirmation that I’m doing something right an that was finally something I actually enjoyed doing. Thank you Philip!

\n

When You Least Expect It

\n

2013 had its dark side as I was going through a series of panic attacks that seemed to start out of nothing. It was completely confusing as everything was going great in my life and then all of a sudden such a horror. I even ended up in a hospital for 2 days cause I felt as if I was having a heart attack so they kept me to do some tests.

\n

Marko helped me analyze the situation and I discovered how much baggage I’ve been carrying around for a long long time. Things I’ve never talked about. Things I was ashamed or afraid of. Things I should have straighten out a long time ago, but didn’t. Opening up helped me a lot and it got better with time.

\n

At the time the panic attacks started happening I got a gift, cute small teddy bear. It may sound funny or strange, but this teddy bear we named Bubi helped me calm down in my worst hours. Especially when Marko wasn’t at home. In the meantime Bubi became our lucky charm and he’s now with us where ever we go.

\n

\"Small

\n

A Glance at the Future

\n

The last two years were really a joyride. We achieved our goal of running a business that doesn’t tide us to a certain location. In 2014 Marko took a long needed break from music to learn WordPress and beside doing the business side of things he became an awesome support agent:).

\n

We are now working from a home office or from where ever we find ourselves at the moment. We like to attend WordCamps whenever we can and meet new people. There are so many interesting stories as most of these people lead unconventional lives.

\n

No one knows what the future brings and how my life will be in a year or in five years.

\n

However, WordPress showed me that everything is possible if you invest enough time and effort. It helped me grow confidence in myself and in other people. That is something that no one can take away and that is what I’m most thankful for.

\n
\n

Thank you note

\n

With every project you, me or anyone else ever started there is always someone who knows something you don`t. Someone who can help you out when you get stuck, someone from whom you can always learn something new.
\nSo, in this last part i’d like to thank all the people that helped me on my way:

\n
    \n
  • First thanks Topher DeRosia for inviting me to write the essay and go out of my comfort zone \"?\"
  • \n
  • special thanks to Marko for all the help & support, without you I wouldn’t manage all this
  • \n
  • Big thanks to Matt Mullenweg & Mike Little and to all that are contributing to WordPress
  • \n
  • Philip Arthur Moore ( you are my “hero” \"?\" ), Caroline Moore, David A. Kennedy, Ola Laczek, Ernesto Méndez, Jack Lenox, Tammie Lister, Fränk Klein & all Automatticians – I learned so much from you, thanks a bunch \"?\"
  • \n
  • Thanks to all volunteers and organizers of the WordCamps, you are doing a great job :). Special thanks to Emanuel Blagonic & all other Croatian organizers and volunteers for organizing amazing WordCamp Croatia ( next one is in September in Split: https://2016.split.wordcamp.org/ )
  • \n
  • Big thanks to theme reviewers on WordPress.org, specially to Joe Dolson for the theme accessibility reviews, I learned a lot from you \"?\"
  • \n
  • Thanks to Manoela & Pedro from Codrops
  • \n
  • Big thanks to Jonathan Atkinson & Andrei Surdu, you advices helped a lot at the beginning \"?\"
  • \n
  • and thanks to all great people & friends I met during my work & WordCamps, so many beautiful & inspiring people out there \"?\"
  • \n
\n

The post My Road to WordPress appeared first on HeroPress.

\";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:\"Sun, 24 Jul 2016 20:45:17 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Ana Segota\";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:22;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:47:\"HeroPress: The Making of a WordPress Journalist\";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:55:\"http://heropress.com/?post_type=heropress-essays&p=1020\";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:56:\"http://heropress.com/essays/making-wordpress-journalist/\";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:17958:\"\"Banner:

I went from being an Electrical Engineer to a WordPress Journalist cum Researcher. I review products, provide WordPress support and handle technical documentations. Here’s my story.

\n

October 27th, 2010 — The day my passion became my paycheck, and I was hopeful and excited about trying out something I always wanted to do i.e. to blog!

\n

The Backstory

\n

I was always a shy kid. But had a great inclination towards all the creative writing opportunities which were offered in the school. Be it contributing to the school’s annual magazine or joining the editorial team of the Buzz (the monthly newsletter), I always considered myself an amateur writer. I also remember how anxiously; I used to wait for the weekly edition of the US Magazine and used to pile up all its copies neatly in a big plastic folder bag. (I still have that big bundle stacked in my cupboard. \"?\" )

\n

Throughout my school, the laser focus on my career was to become a doctor and take up writing as a side profession. Even if I wanted to take writing as a full-time career at that time, my parents would not have allowed it (every parent wants their kids to be an engineer or a doctor — professions with less uncertainty).

\n

So, I knew that just aiming to become a professional writer would only do more harm than good. Anywho, long story short, I ended up joining the Engineering field mostly because the profession ran in my blood. (Duh… my dad is an Engineer).

\n

The general perception is that if you’re passionate about something, you’re more willing to take risks. But this wasn’t true for me. Honestly, I’m not a life-hacking kind of girl. Nor can I pretend to be one who has fully recovered from giving up on her passion. But somewhere in there I still wanted to write (as in professionally).

\n

The Hard Truth

\n

I was now on track to become an Electrical Engineer, which was not anywhere close to writing, except for that only Communications Skills course which included a few PPT presentations, technical writing and a 20-page report as a semester project. There was nothing creative about it since we were supposed to write like they write a research paper. There was more fuss about syntax than the content itself. It’s safe to assume that I didn’t enjoy that kind of writing.

\n

Stepping Forward Professionally

\n

Five years ago during my 4th semester at the university, I met an amazing team of entrepreneurs led by Ahmad Awais; it was a small team of passionate developers and bloggers. Better yet, they were looking to add one more resource to their team. I knew this was my chance to be a writer again.

\n

For me, writing meant putting my voice out there and wanting it to matter even a tiny bit. After a few articles that I contributed, I was offered a part-time job, and I quickly jumped on it. I was like “Holly Smokes! It’s getting real”. I got started by writing on different niches like technology, design, food, fashion, hospitality, the web, etc.

\n

Re-living my passion once again induced new hope and rejuvenated me a lot.

\n

Whatever I wrote, came profoundly from my heart and this instinct made me believe I might have a chance to take a stab on writing once again. But writing for technology blogs wasn’t that simple as I had hoped.

\n

Defining Parts of a Copywriter

\n

Becoming a professional and sound copywriter is an intimidating struggle because there’s a lot of jargon. Unfortunately, you’re going to find some new mantra each time you browse this topic. So, I’m just writing what I found is necessary for one to become one such copywriter.

\n
    \n
  • Writing (of course!)
  • \n
  • Code
  • \n
  • Design
  • \n
\n

One needs to know at least the basics of these three bullet points listed above. So, that was my goal. Mostly, because I worked with a team of developers and being an engineer, development was not a remote concept either. I knew that having basic design and development skills will only allow me to push beyond the limits of a normal copywriter.

\n

A Turning Point!

\n

Ahmad had always been a big fan of WordPress, and all three of our blogs were built with WordPress. The CMS was entirely new to me but when I gave it a spin found it surprisingly easy to learn. We had internal workshops about WordPress almost every other week. I made a point to sit through these workshops and even went through project RFP’s and init meetings. During the next semesters, I had fallen for two things, writing and yes, you guessed it, WordPress.

\n

Now the biggest challenge for me was to pace things up as quickly as possible so that by the time I graduate, I don’t end up working in a Grid Station in a remote area. (I mean no offense to the Electrical Engineers out there. But it wasn’t the thing for me.)

\n

I started getting a firm grip over WordPress. I kicked off with video tutorials from Lynda and then started reading authentic web resources like WPBeginner, WP Tavern, etc. After toying around with the basic setup and configurations, the next step was to face my biggest fear i.e. coding.

\n

Did I mention that initially I knew very little of code?

\n

Encountering the Gap

\n

My first real interaction with the code was via C Programming in the first semester and believe me it was a deeply rooted bizarre.

\n

I found the fact development jobs “are for men” ridiculous and therefore, continued to focus on progressing my career.

\n

This was only possible if I would learn how to code.

\n

I learned HTML5 followed by CSS3 and then jumped to high-level programming languages like PHP and JavaScript. And guess what… just after six months of coding, things started to make sense. I began with teeny tiny modifications of simple HTML templates and worked through the complex frameworks like Redux and Titan. I think this was because I was more focused on speed than I was on building a solid understanding of what I was doing.

\n

It Isn’t Enough

\n

With time, I started noticing an encouraging shift in my life. I knew I was up to something. My next step was to evolve with the local community and hence, I started attending design conferences and workshops. Why design? Because this would fulfill my third component to become a professional copywriter and it let me interact with people around me. Images play a vital role in making your content appealing, and a basic knowledge of Photoshop would be sufficient to achieve my goal.

\n

My next step eventually hit the brick wall, and I started speaking at workshops too. I assisted the leading speakers at most of the workshops which made me gain experience that proved its worth just some time later.

\n

Be The Change

\n

By the time I graduated, I was leading the team of bloggers and had expanded my team to about 15 people. Believe me; it feels great to be working on what I want and when I want! Delegating to a team of emerging writers was an achievement itself. Obviously, it’s not an easy thing, but I enjoyed every single bit of it.

\n

At that time, we thought of starting a new company focused on teaching people all things web. That also meant selling our blogging network. So, we have begun prepping for that and by the end of the year, we had have sold almost 80% of our blogs.

\n

The Startup — FinkTanks

\n

By now, I’ve realized that the only person who can get in the way of your career progress is YOU. One has to keep moving forward regardless of what you’re up against. The work you do may not bring drastic and immediate results, but your efforts will not go to waste. And I knew that the career path which I’ve opted for can directly impact the future of our next generation of women.

\n

So, it just hit me that I should teach others how I did it, not much of a success story, but at least I could spread the word. Then I came up with the idea of a startup with my team. FinkTanks — as we called it was launched in 2013 and then again in 2014. I searched for my target audience and the perfect fit for this venture were the young girls just like me — fresh graduate looking to learn a few extra skill.

\n

When Women Engineer…

\n

I surveyed a little and realized that a number of females were interested in working from home (mostly coz it is easier, flexible and no transportation mess). There could not be a better choice for them other than blogging & copywriting. I mean you don’t have to go for a job you just need to work hard wherever you are. All you need is a laptop and an uninterrupted internet connection which fortunately is available to almost all of us. So this was my biggest inspiration and hence I got started.

\n\n\"Small\n\"Small\n\"4\n\n

I conducted training sessions on a monthly basis where I taught how to be a blogger and how to be self-employed. I taught all the essential components which a blogger needs to know starting from WordPress to design, code, and of course copywriting.

\n

So far, I’ve trained more than 700 women from almost every walk of life, and about 80% of them are now earning a living with WordPress.

\n

WordPress is my new gluten

\n

All this was only possible because of WordPress. Had I not started early on with this open source script I had never been able to positively affect so many lives. WordPress had started to change my life.

\n

When I started publishing content with WordPress, I knew little about its technical insights but gradually became aware of it. I started as a 360 writer who could pen down her thoughts on any niche, but soon I realized that instead of doing something of everything, I should learn everything of something. And that everything was WordPress.

\n

Yes! WordPress is my new gluten and since 2013, this open source script has become a life-changing experience for me. I think that my passion for writing is the best fit to convey my thoughts and opinions on WordPress. Currently, I’m a part of WPTie and working as the Creative Director.

\n

A Competitive Advantage

\n

My day to day routine involves reading about WordPress (and boy I read a lot of it), slacking through WP Slack, improving documentation of our products, providing WordPress support and blogging about WordPress. I also try listening to the popular podcasts. I follow folks like Chris Lema, Tom McFarlin, and Matt Cromwell. Recently, I’ve also started a new venture with Ahmad Awais, i.e. a blog about stuff that couples well with WordPress WPCouple.com.

\n

Working at WPTie has been amazing. It has provided me with an excellent opportunity to work with a talented lot of the community ranging from beginners all the way up to professional developers, bloggers, designers, and WordPress core contributors, etc. So, interacting with like-minded people who are heading towards the same career goals as me is fascinating.

\n

All Set To Grow as a WordPress Journalist

\n

I have turned my life around from being an Electrical Eng. to becoming a WordPress Journalist. By now, I have reviewed several plugins, themes, and frameworks, and now I’m heading towards a big goal. My team and I are working on a brand new online content agency through which we can offer copywriting services to the WordPress community.

\n

One of my goals has to never be just a copywriter, and that’s what I am up to. I write on complex WordPress topics which help me experiment and learn how to develop with WordPress while following the coding standards set by the community.

\n

If you think my story has a lot of WordPress in it, then you cannot be more right.

\n

I believe that sharing more than 26% of the web; WordPress has empowered many ordinary people.  I also find myself gearing for the same queue. My prime focus will be towards reviewing WordPress products as they are here to stay for sure. Likewise, I’m also brainstorming about my content agency.

\n

With that said, I am planning to enter the services market, and one of my huge inspirations and motivations have been Jennifer Bourn. I truly admire the way she is maintaining a perfect blend of both personal and professional life. Because there always exists a big either for most of the women when it comes to choosing a professional career versus being a traditional housewife. Likewise, I’m planning to attend WordCamps next year and looking forward to meeting her.

\n

I’ll conclude by stating the obvious ~ It’s hard to write about yourself. I don’t call myself a hero, hell I am no hero. On the contrary I am embarking on a journey to be better at what I do, and I cannot wait to see what is in store for me. Right now I’m happy and satisfied with what I do, I am surrounded by great people trying to accomplish great things and not many people can say that about their career. That’s because of WordPress and the community around it. So, Thank You, WordPress!

\n

Thanks for reading! I’d love to hear back from you. You can reach out to me on Twitter or at my personal blog.

\n

The post The Making of a WordPress Journalist appeared first on HeroPress.

\";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:\"Sun, 24 Jul 2016 20:45:17 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Maedah Batool\";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:23;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:36:\"HeroPress: You Really Have No Excuse\";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:55:\"http://heropress.com/?post_type=heropress-essays&p=1011\";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:45:\"http://heropress.com/essays/really-no-excuse/\";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:11696:\"\"Vlad

Topher really dropped it on me with this article. There I was happily mumbling away about philosophy and life lessons (with regards to our experience at PixelGrade) when he said: “I’d love a message from you to other Romanians about what a business around WordPress can do for them”. I kept on mumbling anyway (it’s a thing I am really good at \"?\" ). “Sure, I can do that!

\n

But when it came to writing my “message”, damn. Talk about brain freeze. Should I write about this or that? Does this really relate to Romanians or it’s just something general? Are Romanians different in this respect? We have good coders here… but boy how lame we are when it comes to… There is talent here but… And on and on it went — procrastination 101.

\n

I just couldn’t put my finger on it. I needed a solid reason. Something worthwhile. Something that I could get behind as being useful to others (Romanians included) from a new point of view (at least for me).

\n

But you know what? I am going to mumble away about what I think kept us alive and kicking all these years and what is keeping others from joining the fun. WordPress, with it’s capital_P_dangit(), is an important part of it. Consider it an open letter to the Romanian community (and others in a similar situation), worthy of HeroPress, but most importantly helpful to some of you.

\n

Where do I start?

\n

You start from yourself. The rest will come later, with time. Right now all you have is you: you the wannabe coder, designer, marketer, what have you.

\n

Just like me and my brother George. When we’ve started, we were just two kids (he was really a kid in highschool; I was in university — but age doesn’t show on me \"?\" ) wanting to do something NOW. Not tomorrow, not when we finished our formal education, not when the opportunity presented itself to us. NOW! This sense of urgency is important to seed early on and hang on to it.

\n

We knew some HTML, CSS, coding on my part (but not PHP), and that was pretty much it. No business experience, no mentors, no friends that were already doing this, no internet acquaintances that would give us some work to start from. Just us, a computer and the internet (that is, Romania’s internet speed — lucky us).

\n

So where to start? From the obvious place, of course. Freelancing marketplaces. After some looking around, we’ve settled for vWorker.com (mainly because it seemed more upper class than the likes of freelancer.com — it got bought by the latter in the meantime). We started with very small gigs and worked our way (in a couple of years) to larger projects.

\n

This is the point where we were forcibly introduced to WordPress. At first small customizations for themes, then the classic by now PSD-to-WP. We were getting the hang of it and loving it. We were honing our skills, making more money than most around us (it pays to have low living standards), and making a good name for ourselves.

\n

So stop making excuses and start doing something. Keep at it and good things will happen, with time.

\n

But I want to be the Michelangelo of coders…

\n

Oh please! I know you want to be the best you can be, that you think learning that extra technique will make you even greater, that exploring that extra framework will widen your possibilities. No it won’t. It will only postpone the day when you actually do something and put it to the test of actual people. I know, it scares the shit out of you. It surely did scare us.

\n

But that is the only way you will truly learn. You will hone your skills, but more importantly, you will learn what you actually need to know to get something done. That extra framework that you know will only drag you down. When faced with a problem you will have a hard time attacking it because you know so many “wonderful” ways it could be done. You will try to code for the sake of code.

\n

Trust me. You don’t really want to be Michelangelo (I think neither did he). You want to be happy and satisfied with your end results. This is where WordPress comes into play once again.

\n

It’s code base is not beautiful by any current standard. It’s not cutting edge, it’s not very “automagical”, part of it is truly out-dated, the templating is cumbersome bordering ancient in today’s landscape. You know it, I know it, and everybody else with some coding experience knows it. So what? Is it stopping you from crafting a sweet design and letting your customers enjoy it? Far from it.

\n

Stop agonizing about what it can’t do for your coder ego, and focus on what it can do for your life and your customers.

\n

Praise the internet gods for having such a low barrier of entry, for the gargantuan community, for the endless snippets of code laying around just ripe for copy-pasting. But above all else, thank each contributor that it hasn’t given up on “the user comes first”. It means your customers will also come first. What a great partner to have when starting out.

\n

And don’t worry, you will get plenty of opportunities to focus on crafting clever code in your themes and/or plugins. Just not at the scale of Google. But then again, you are not Google. It’s healthy to keep a firm footing in reality.

\n

It sounds complicated, and I don’t have the resources

\n

Are you committed to this or not? Good! Then stop for a moment and think. Do you have to build everything yourself? Do you have to learn everything? How could you cut some corners without anyone noticing?

\n

Welcome to the WordPress way (it could very well be the open-source way). The ones before you have literally put millions and millions worth of work on the table (that is dollars, not lei) for anyone to grab and use. You know CSS but not much PHP? Great, grab a starter theme. Or better yet, grab any free theme and hack it to your heart’s desire. And then sell it. Weird right?

\n

You envision your design with some fancy (aka complicated) functionality? I am sure there is a WordPress plugin out there that does pretty much that. Recommended it, offer styling for it and you are good to go — bootstrapping 101.

\n

One day, when you will afford it (and if really really makes sense), you can build your own bespoke solutions. But they better be damn good, ‘cuz otherwise few will notice the change.

\n

When we build a new theme, we purposely try to match the design specs with what is available on WP.org or as a paid add-on to a certain “master” plugin (like WooCommerce). This way we make sure we leave enough time/resources on the table for the things we are really good at: fine tuning the front-end, ensuring a smooth customization experience on the back-end, crafting the copy to help make the complex less so, and so on. Even with 11 strong as we are today, we wouldn’t be able to get at those without leveraging open-source.

\n

As you can see, the entire WordPress ecosystem is built on a can-do attitude. It’s fun being part of it. Don’t forget to give something back from time to time.

\n

The WordPress “stain” will never wash

\n

Sadly I still hear about this among developers. And I am sure it can be quite the deterrent for newcomers. I mean you don’t want to hang out with the wrong kind of people right from the start. You’ve got big, long term plans for you life. You could almost envision yourself interviewing for your dream job and being laughed upon for stating WordPress as your experience. It must suck, big time.

\n

Unless… you realize early on that you simply want to be happy, and that no convoluted line of code will make you happy. Come to think of it, you could create your own dream job.

\n

Choose your own team mates. Forge your own values.

\n

Maybe even a huge WordPress logo outside the office (just to spite the non-believers — or that’s what WordCamps are for?).

\n

The PixelGrade crew is filled with sinners from all walks of life. We bathe daily in less-than-perfect code, we shamelessly copy-paste code from StackOverflow (with proper attribution of course), we kick browser-compatibility’s butt with !importants… I should really stop. We are actually serious people — sort of.

\n

Anyway, if you’ve peeked inside the WordPress world and you truly feel it would hold you back, despite all the advantages, leave right ahead. But don’t avoid it just because of misconceptions. You may be missing out.

\n
\n

I could go on mumbling for a long time (it’s a thing I am really good at :) — remember?). Better leave the rest for another time.

\n

Now, you Romanian (or less so) WordPress enthusiasts (or less so), do let me know your thoughts about the above.

\n

The post You Really Have No Excuse appeared first on HeroPress.

\";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:\"Sun, 24 Jul 2016 20:45:17 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Vlad Olaru\";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:24;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:59:\"HeroPress: How WordPress Taught Me To Be a Better Developer\";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:55:\"http://heropress.com/?post_type=heropress-essays&p=1001\";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:62:\"http://heropress.com/essays/wordpress-taught-better-developer/\";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:9239:\"

I might seem like a curious choice to write a post at HeroPress. I haven’t done any WP dev since around 2.0. I’ve done some work here and there setting up a couple WP installs since, but it’s been years since I was on a first-name basis with the code of WP.

\n

After having written some fairly complex plugins, I was pretty cynical about it. Generally I felt that it was a pretty solid front-end, but the codebase was a mess. It may still be a mess, I dunno. I do remember being super disappointed that WP didn’t go all-in with PHP5 when it stabilized, like some other CMSes. I also spent a fair bit of time criticizing what I felt were technical shortcomings or the codebase. A quick glance at the current codebase tells me it hasn’t changed much in it’s approach, and were I to judge the project just based on it’s codebase, I’d say it was… problematic.

\n

I was at php|tek 2013, and one of the keynotes was by Andrew Nacin. Andrew knew he was speaking to a room filled with a lot of folks who felt like I did — that WordPress was somehow an embarassment to PHP because it wasn’t following current best practices. Some people took this quite personally, and spent a lot of time on Twitter during his keynote expressing disagreement with his assertions.

\n

I, however, found myself in wholesale agreement with Andrew. From the talk description:

\n

Why is [WordPress] so ubiquitous? The answer lies … in a core philosophy that holds the user above all else.

\n

The WordPress lead developers weren’t stupid, contrary to what so many people thought in that room. They just put the concerns of users over developers.

\n

The purpose of the project is to empower users

\n

The purpose is not to make developers’ lives easier.

\n

That meant making hard choices about living with legacy code, and being very, very careful about breaking backwards compatibility. Several of Andrew’s slides showed how utilizing newer PHP libraries or extensions would make it impossible for hundreds of thousands — sometimes millions — of WP users to run it on their current hosting provider. API changes due to major code refactors would break popular plugins that users rely on, and likely splinter the WP add-on developer community beyond recognition.

\n

“Fixing” WordPress would in fact make it useless to many, if not most, of the users.

\n

Ultimately I believe that this is the correct approach. The purpose of creating software, web or otherwise is to empower people to do things that they’d otherwise find more difficult or impossible.

\n

Web technologies are building blocks. We use them to build solutions to people’s problems. The point is not the thing we make, nor is the point how we make it. The point is to help the user.

\n

Have we given them more time to do other things by making a task take less time?

\n

Have we given them access to information they didn’t have before?

\n

Have we empowered them to create something they could not?

\n

Have we given them a voice they didn’t possess until now?

\n

Those are the kinds of questions we have to ask. Anything that we choose to do must be in the service of those questions.

\n

Harper Reed described technology as a force multiplier, and I think it’s important to consider it in that respect. The intent is the matter of the user; the things we create take the user’s intent and amplify it.

\n

This is key to really being great at what we do — we empathize with the user, understand their intent, and create something to amplify their intent.

\n

Sometimes they need a bit of help applying their intent in the most effective ways, but our technology and technique choices can only serve that intent. The work I’ve done in the past few years hasn’t led me to use WordPress, but that doesn’t mean it’s not a very powerful, very useful tool for many people.

\n

The philosophy of the project continues to guide my thinking as a developer, a speaker at tech conferences, a school board member, and an advocate for mental wellness. In all of these, I have to find the intent, such as allowing a business owner to communicate more easily to customers, or to help others have satisfying careers, or to educate kids in the most effective way possible, or to help others who struggle with mental illness get the help they need.

\n

Then I have to find what I am able to do that serves that intent. Sometimes it means making a web-based tool. Sometimes it means practicing my technique to be a better speaker. Sometimes it means writing a letter to a frustrated parent. Sometimes it means pushing myself to do things I’m afraid to do, because it will make a big difference for people who are hurting, and are to afraid to ask for help.

\n

\"Banner

\n

Ultimately what I find most satisfying in life is not the particular actions I’ve chosen, but the impact they have upon the people around me.

\n

When I spoke at the Kalamazoo X conference this spring, I was tasked by the organizers to come up with a six-word memoir. It was an exercise that made me reflect on where I’ve been, where I hope I’m going, and how I want to be remembered. This is what I came up with:

\n

“By helping others, I save myself.”

\n

That’s what WordPress taught me.

\n

The post How WordPress Taught Me To Be a Better Developer appeared first on HeroPress.

\";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:\"Sun, 24 Jul 2016 20:45:17 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Ed Finkler\";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:25;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:36:\"HeroPress: Growing Through WordPress\";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:54:\"http://heropress.com/?post_type=heropress-essays&p=996\";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:54:\"http://heropress.com/essays/growing-through-wordpress/\";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:6853:\"

Having coded on visual studio for quite a while an older fellow of mine got me more interested in web and developing for web by saying “developing for a desktop is not as fun and as challenging as developing for web, things can get very boring soon on desktop, on web you have more problems to solve and more things to learn” This was all enough to get me interested in programming for web. With a bit of Yahooing ( googling was not really common or even known back then) I learned about the simplest ui factors of web, CSS and HTML, so thought CSS is the first thing I would like to learn. You know I love colors, colors are attractive after all, specially compared to all the skeleton looking HTML which was never fun enough for me to learn about its font and color attributes.

\n

CSS and the appetite to learn more got me to this lovely blog of Chris Coyier, namely css-tricks.com. Man you could find a lot in there and most interesting was the videos he did to teach new stuff every week or so. There was this converting photoshop mockup videos and designing for WordPress videos by him that brought me in touch with WordPress. Promise you won’t laugh and I will reveal a secret; before watching these WordPress templating video I was always mistaking WordPress logo for of that of Volkswagen, and was always really confused about the sentences on wordpress.org homepage and how they could relate to Volkswagen. Add to this my bad English, yea my English was even worse than what you see now in those days.

\n

I was already making some little money developing in vb, but the exposure to WordPress brought an even more fun and well in demand skill-to-be to my plate. I was learning more and more about WordPress here and there, getting a few clients to create some kind of online catalogues for them while trying to bring a CMS out of this blogging platform. Back then without all the fancy custom post types and custom taxonomies and all the rest that came with them was not an easy thing to treat WordPress as a CMS.

\n

Expanding to the web

\n

WordPress was great company for the situation of those days. I was a freshman university student with very little computer science education, almost no money to buy extracurricular courses but very eager to be independent and learn things on my own with the help of not-so-fast internet of those days. jQuery was just around as well and I was making JavaScript more fun and easy. Remember, JavaScript demand of those days was hardly anything other than manipulating the DOM, so the ease and fun of WordPress and the life-saver jQuery was empowering me to get clients and make them happy. Honestly I learned WordPress before even learning PHP, HTML, CSS, a bit of jQuery and some knowledge about WordPress was just enough for me to create websites, mostly in the online-catalogue realm.

\n

In those days Joomla and Drupal were much more advanced than WordPress since WordPress hadn’t added the more advanced features we have today.

\n

So as I was learning more about WordPress, Web, and PHP, WordPress was getting bigger and more advanced.

\n

Perfect timing right? It was small when I had little knowledge but was getting bigger and more advanced while I was educating myself more about WordPress.

\n

How WordPress makes things easy keeps me using it and developing for it even after  good experience with a couple of other PHP and JavaScript frameworks.  This is why after developing with some other PHP frameworks I was thrilled to receive an email from WPMUDEV telling me about their job vacancy for WordPress plugin developer, so I applied for this position with them and was lucky enough to get back to work with this lovely and fun tool after a while being away from it.

\n

The post Growing Through WordPress appeared first on HeroPress.

\";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:\"Sun, 24 Jul 2016 20:45:17 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Sam Najian\";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:26;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:69:\"HeroPress: Groomed for Real Estate, Destined for Something Else . . .\";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:54:\"http://heropress.com/?post_type=heropress-essays&p=987\";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:72:\"http://heropress.com/essays/groomed-real-estate-destined-something-else/\";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:7787:\"

While other kids played with beanie babies I was hawking mine on eBay. I was always enamored with business and marketing. My family had a successful real estate business and at a young age I knew I wanted to go into business. I realized the importance of online marketing early on with my beanie baby business. Heck, I made two thousand dollars selling beanie babies when I was 13. I was not making that kind of money when I set up booths at collector shows. It’s all about the E-Commerce, baby!

\n

Bubble burst

\n

When I was 19, I obtained my real estate license. College was never really in my “life” plan. My plan was to work for the family business, in real estate.

\n

Unfortunately for me, I became a real estate agent in 2007. As you recall, the real estate market crashed in 2008 and it crashed hard. This is when I realized I had to change my career path because of the economy. I was heartbroken that I had to start over. Little did I know this was a blessing in disguise.

\n

Diversification

\n

Fast forward to my college years. -Oh boy!

\n

\"LogoWith an entrepreneurship spirit, a few of my friends and I joined forces to make the best t-shirt company ever. Our business model was flawless, well at least that’s what we had thought. The name of our company was 33.3 (I know, how cliché). We had a developer, graphic designer and a marketing/sales person.

\n

While our developer used Dreamweaver, this was the first time I understood the importance of web development. Watching Diggnation and conjuring up our next business scheme, I began to understand more about development, different kinds of files, and the difference between serif and sans serif (everything I now take for granted). The t-shirt business failed \"?\" but the lessons it taught me were priceless. This was the first time I knew I had to be a part of the web development process.

\n

Back at it again

\n

My family stumbled upon some land that was a great investment. It was a “no-brainer” to purchase because the price was too good to pass up. My sister and I decided it was time to learn how the building industry works. Trinity Home Builders emerged where I spent the next four years developing our marketing strategy and web presence.

\n

After working with three different web developers, I was still not happy with the end result of our website. So, I became obsessed with web development. After the website was in a good place, I was no longer content at Trinity. The CRM and PPC campaigns were on autopilot. Purchasing lumber and dealing with draw sheets was not my forte. I separated myself from Trinity and went back to school to finish the remaining two classes I needed to graduate in Marketing.

\n

HTML & CSS 101

\n

Last summer I spend two nights a week learning the fundamentals of web development. I obtained a social media certificate after completing that course.

\n

During the course, we were assigned the task of developing a WordPress website. I finally had my “ah-ha” moment – now everything I was trying to do for so long made sense.

\n

Now, just because I can create a site on WordPress, this does not mean I’m a developer. It’s the organic SEO, GA, GSC, social media, and all other inbound marketing that drives me.

\n

After a combination of my HTML class and WordCamp sessions, WordPress became my CMS of choice and I never looked back.

\n

WordCamp

\n

I was fortunate to be able to volunteer the first year I attended WordCamp Milwaukee. It was the beginning of my initiation into the WordCamp community. I met many talented individuals during the sessions, volunteering, snagging swag and at the social events. These individuals were not just acquaintances I met in passing, but they became friends and invaluable resources. It was and continues to be a wonderful experience.

\n

During last year’s WordCamp at the speaker/sponsor after party, I had the privilege of meeting Topher. I shared my story with him and told him how WordPress had impacted my life for the better. He told me about HeroPress. He asked me if I would be interested in writing an essay about my WordPress journey thus far. And, here I am.

\n

Currently, I work for Tuna Traffic as a Digital Marketing Technologist, and every day I am learning something new. I’m excited to see where my WordPress journey takes me next!

\n

The post Groomed for Real Estate, Destined for Something Else . . . appeared first on HeroPress.

\";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:\"Sun, 24 Jul 2016 20:45:17 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Nicole Osburn\";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:27;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:89:\"WPTavern: WordPress to Bump Recommended PHP Version From 5.6 to 7.0 By The Middle of 2017\";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:29:\"https://wptavern.com/?p=58030\";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:100:\"https://wptavern.com/wordpress-to-bump-recommended-php-version-from-5-6-to-7-0-by-the-middle-of-2017\";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:5703:\"

Over the years, WordPress has been developed so that users and site owners don’t need to have a lot of technical knowledge to install and maintain it. Andrey Savchenko believes that WordPress is causing technical irresponsibility due to site owners not having to know technical details like which PHP version their site is running.

\n

Is not knowing good for you as a site owner?

\n

Few good things ever happened by accident and ignorance.

\n

Running your own site takes learning and effort. It is admirable of WordPress to make that easier. It is self–serving and insincere of it to pretend you don’t have to know anything.

\n

You have to know. You are responsible.

\n

The post generated a healthy discussion on Twitter that included Matt Mullenweg.

\n

@perezbox @Rarst shallow article: straw man assumptions and arguments, poor understanding of hosting ecosystem, faux controversial ending.

\n

— Matt Mullenweg (@photomatt) July 19, 2016

\n

\n

Although it’s not happening at break neck speeds, there is an effort underway to increase WordPress’ recommended PHP version from 5.6 to 7.

\n

In September of 2015, Aaron Jorbin published a post on the Make WordPress Core blog that explains what was accomplished in order for WordPress to officially support PHP 7. In the comments of the post, Rahul286 suggests that a warning be displayed that informs users they’re using an outdated version of PHP.

\n

Samuel ‘Otto’ Wood succinctly explains why a notice wouldn’t do any good.

\n

A notice by itself is massively pointless to show the end user, who likely neither knows nor cares how their hosting service runs.

\n

However, it might be worth considering trying to detect the host in question, and providing valuable information for that specific host, such as links and other methods the end user can do to update themselves. Many hosts have a choice, somewhere, and if we know that, we can provide guidance.

\n

Unlike WordPress’ Browse Happy notifications added in WordPress 3.2 that notifies users to update their browser, it appears WordPress is unlikely to perform a similar role with PHP versions.

\n

Jorbin also commented on the article suggesting that developers reach out to their local user groups and inform users why they need to care about which version of PHP their site is using.

\n

One thing everyone can do to help move these numbers is to talk to your local user group about why they need to care about the PHP version they run. Show them how they can upgrade, show them benchmarks of PHP 7 vs. earlier versions (especially vs 5.2).

\n

Three months ago, Jorbin created a trac ticket with the suggestion that the PHP requirement for WordPress be increased from 5.6 to 7. Although many of the commenters agree with the move, Gary Pendergast says it’s best to wait. Dominik Schilling, WordPress 4.6 release lead, agrees.

\n

Given that we have until the end of the year before we have to bump it, there’s no harm in holding off until major plugins are confirmed to work without notices or warnings. Until we can confirm that, I’m -1 on bumping the version for now.

\n

This is remembering that we’re talking about the recommended PHP version. The recommended version should be providing an ideal experience for folks, we shouldn’t be bumping to a bigger number just because it’s there.

\n

Given the PHP 5.6 support timeline, we’ll be bumping it by WordPress 4.8 at the latest, so it’d be nice to use those intervening months to ensure the UX for the wider WordPress ecosystem under PHP 7 is solid.

\n

Major plugins like the WordPress Importer are not yet compatible with PHP 7. Developers are highly encouraged to use the time before PHP 5.6 reaches end of life to thoroughly test their plugins and themes for PHP 7 compatibility.

\n

Mullenweg has made it clear that he will not use WordPress’ marketshare to force webhosting companies to upgrade to PHP 7 but rely on established relationships instead. In order to move the needle and get site owners to know and care about PHP versions, it’s going to take a continuous effort on the part of the WordPress community to educate them.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 23 Jul 2016 00:42:55 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:28;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:65:\"WPTavern: BuddyPress 2.8 Will Bump Minimum PHP Requirement to 5.3\";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:29:\"https://wptavern.com/?p=57943\";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:76:\"https://wptavern.com/buddypress-2-8-will-bump-minimum-php-requirement-to-5-3\";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:3951:\"

\"buddypress-logo-blue\"

\n

BuddyPress lead developers have decided to bump the minimum PHP requirement for version 2.8 of the plugin to 5.3+. The new guidelines for BuddyPress’ PHP version support, authored by Boone Gorges on behalf of the team, states that the plugin will offer full support for all stable versions of PHP officially supported by the PHP project (currently, 5.6.x and 7.0.x). Gorges outlined what “full support” means:

\n
    \n
  • BuddyPress should run error-free (ie, without fatal errors or PHP notices) on the PHP version.
  • \n
  • If a new version of BP includes a feature that requires a more recent version of PHP, the feature should be gracefully disabled on earlier PHP versions.
  • \n
  • The PHP version will be included in the plugin’s automated testing build matrix.
  • \n
\n

The BP leadership team agreed that the project will provide basic support for legacy versions of PHP “until the cost-benefit ratio for supporting a given version suggests that it should be dropped.” That is the case with 5.2, which is currently in use on 7.6% of WordPress sites. Gorges acquired additional statistics from WordPress.org that indicate only 3.23% of BuddyPress sites are running on PHP 5.2:

\n

Unknown - 1.08%
\n5.2 - 3.23%
\n5.3 - 12.92%
\n5.4 - 34.44%
\n5.5 - 22.38%
\n5.6 - 23.02%
\n7.0 - 2.92%

\n

Another factor in the team’s decision is the project’s recent shift in focus towards developers and site builders, prioritizing building out the BuddyPress REST API.

\n

“Coupled with these numbers is the recognition that PHP 5.3 introduced features that have a meaningful effect on our ability to write a modern PHP application: namespaces, closures, guaranteed access to SPL, late static binding, and so on,” Gorges said. “As BuddyPress aims to build a major new feature – a REST API – it frees us up significantly to be able to take advantage of these and other features unavailable in PHP 5.2.”

\n

Gorges also explained why BuddyPress isn’t bumping the minimum version all the way up to 5.6, which is the oldest version for which the PHP project is still issuing security updates. With roughly three quarters of BuddyPress sites running on PHP versions 5.5 or older, a major jump to 5.6 would break the majority of sites using the plugin.

\n

“For many (most?) people running BuddyPress, updating PHP is emphatically not a simple task,” Gorges said. “As such, we would simply lose these users, or cause them to stay on old and unsupported versions of BuddyPress. We support WordPress’ ongoing, progressive efforts to work with webhosts to move sites off of old versions of PHP.”

\n

These changes will go into effect as of BuddyPress 2.8. In the meantime, contributors are working on adding a notice when activating BuddyPress on a site that doesn’t meet system requirements as well as preventing the plugin from being updated when minimum requirements are not met.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Jul 2016 18:56:27 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:29;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:53:\"WPTavern: Stack Overflow Documentation is Now in Beta\";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:29:\"https://wptavern.com/?p=57906\";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:64:\"https://wptavern.com/stack-overflow-documentation-is-now-in-beta\";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:4516:\"

\"stack-overflow\"

\n

Building on the success of its Q&A communities, Stack Overflow announced that its new Documentation product is now in beta. For the past eight years, the site has rewarded expert advice by floating high quality answers to the top and allowing users to earn reputation points. This formula has turned out to be more successful than traditional forums where it’s often difficult, if not impossible, to discern the quality of answers provided to questions.

\n

Stack Overflow Documentation is curated by the community and focuses on providing code examples for developers. It offers versioning, collaborative authoring, and voting, which helps surface the best contributions. The documentation segment of the site has a new set of reputation badges and is open to contribution and feedback from anyone.

\n

“Documentation gives a home to a lot of this good content that has been turned away, or very hard to ‘get right’ in the Q&A format. Namely, the canonical, general reference, instructional content,” Stack Overflow developer Kevin Montrose said in the announcement.

\n

“It’s need-driven and self-healing,” Montrose said. “The best, most diligent technical writer out there still can’t beat thousands of actual users trying to learn a function or concept while writing real code. They’ll determine what topics or examples are needed most. And whenever something fails to explain something clearly, they can ask for it to be improved.”

\n

The WordPress Stack Exchange is a thriving community and a WordPress documentation tag is already active on Stack Overflow with 10 topics, 12 topic requests, and 13 proposed. A sampling of topics so far include the Loop, registering custom post types, making network requests with HTTP API, and enqueuing scripts.

\n

\"wordpress-documentation-stack-overflow\"

\n

It would take many months, if not years, for the Stack Overflow WordPress Documentation to even come close to the quantity of official documentation on WordPress.org, but the site has the potential to become a valuable alternative resource. The fact that anyone can jump in and contribute using an existing Stack Overflow account makes the barrier to entry very low.

\n

“From my experience with WP docs over years there is a significant issue with people using code snippets over and over again, while they become long outdated,” said Andrey Savchenko, a longtime WordPress Stack Exchange contributor and moderator.

\n

“However, my first impression is that Documentation is considerably harder to use than the Q&A sites,” he said. “It will take some time to see if it will be easier to contribute to than say Codex and Devhub, as well as if it manages to gather a community of WP experts to consistently participate.”

\n

For whatever reason, many developers are not fond of writing documentation, especially when it comes to documenting products that are not their own. Stack Overflow’s Documentation beta will show whether recognition in the form of badges and reputation can attract people who otherwise wouldn’t be inclined to contribute to documentation.

\n

If Stack Overflow can motivate developers to write documentation with the same success as the Q&A sites, the company may potentially explore adding this feature to its Enterprise version, which is built to support private instances of 500 or more users.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Jul 2016 16:57:56 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:30;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:113:\"WPTavern: WPCampus Survey Results Indicate Misconceptions of WordPress Are Slowing its Growth in Higher Education\";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:45:\"https://wptavern.com?p=57793&preview_id=57793\";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:124:\"https://wptavern.com/wpcampus-survey-results-indicate-misconceptions-of-wordpress-are-slowing-its-growth-in-higher-education\";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:3611:\"

Before the first inaugural WPCampus took place last weekend, the organizing team conducted a survey to learn how WordPress is used in higher education. A total of 486 people responded to the survey. Modern Tribe has not only made the survey results available to the public, they have also published an in-depth review of the data.

\n

There are a couple of items that stand out to me. Misconceptions that have plagued WordPress for years are affecting people’s decision to use it.

\n

For instance, 18% of respondents said scalability is a barrier to being accepted at their school. Meanwhile, 37% of respondents said that WordPress’ reputation of being just a blogging platform hindered its ability to be the platform of choice.

\n

The WordPress showcase is filled with sites both large and small that prove WordPress’ scalability. It’s also filled with sites that show WordPress is used for far more than blogging.

\n

As WordPress continues to evolve from being a blogging platform to something capable of doing much more, it’s disappointing that this misconception still exists. Is there any hope that people can discover and realize that blogging is something WordPress is great at, but at its core, provides people the ability to go above and beyond?

\n

Another fascinating part of the survey is the security aspect where 42% of respondents reported that they do not have a list of vetted plugins for their network. In addition, 13% of respondents said their networks are not running the latest version of WordPress.

\n

How survey questions are asked can be the difference between receiving actionable or unusable data. ModernTribe acknowledges that the questions in future versions of the survey can be worded better to increase the accuracy of data.

\n

If you take a look at the multi-part question we used to help qualify the institutions represented in the survey, you’ll that it could have been written much better. Since the main part of the question was mandatory, the survey also made the subsection where you could input your URL mandatory as well.

\n

Other areas we can improve include better categorization for multiple-choice questions, including an option for ‘n/a’ or ‘I don’t know’ in more questions, and fewer write-in responses.

\n

If you’re interested in reviewing the survey results, you can access them via this spreadsheet on Google Docs.

\n

For those that didn’t get a chance to attend WPCampus in person or watch it live, I highly encourage you to read this review from David Bisset, who has organized a number of large WordPress conferences. There’s also this review by Josh Pollock of CalderaWP. Last but not least, Adam Warner shares his experience on the SiteLock blog.

\n

What do you think of the WPCampus survey results? Is there any data that surprises you? Let us know in the comments.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Jul 2016 23:56:36 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:31;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:60:\"WPTavern: WPWeekly Episode 242 – Interview with Eric Meyer\";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:45:\"https://wptavern.com?p=57789&preview_id=57789\";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:67:\"https://wptavern.com/wpweekly-episode-242-interview-with-eric-meyer\";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:2812:\"

In this episode of WordPress Weekly, Marcus Couch and I are joined by Eric Meyer. Meyer is an American web design consultant and author. He is best known for his advocacy work on behalf of web standards, most notably Cascading Style Sheets (CSS), which is a technique for managing how HTML is displayed.

\n

We start off the show by discussing the technology of the 70s and 80s and how Meyer got involved with the CSS language. We then go in-depth on a number of topics covered in his WordCamp Northeast Ohio keynote presentation on Designing for Real Life. Near the end of the interview, we find out what the state of CSS is and some of the key developments to keep an eye on.

\n

Stories Discussed:

\n

WordPress 4.6 Beta 4
\nEric Meyer – Designing for Real Life

\n

Plugins Picked By Marcus:

\n

WooCommerce Order Delivery or Pickup with Date and Time is a plugin that allows customers to choose a desired delivery/pickup date and time for WooCommerce’s orders through a frontend widget. You can control number of days required to place an order, delivery hours to choose from, and the pickup hours available.

\n

HAREMO Social Screenshots creates screenshots of Posts and Pages and uses the screen grabs as thumbnail images when the URL is shared on Facebook or Twitter.

\n

Cf7 Messenger works with Contact Form 7 and immediately sends submissions to Facebook Messenger.

\n

WPWeekly Meta:

\n

Next Episode: Wednesday, August 3rd 9:30 P.M. Eastern

\n

Subscribe To WPWeekly Via Itunes: Click here to subscribe

\n

Subscribe To WPWeekly Via RSS: Click here to subscribe

\n

Subscribe To WPWeekly Via Stitcher Radio: Click here to subscribe

\n

Listen To Episode #242:
\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Jul 2016 20:42:19 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:32;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:141:\"WPTavern: Ford Foundation Publishes Non-Technical White Paper on Open Source Software and the Challenges of Sustaining Digital Infrastructure\";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:29:\"https://wptavern.com/?p=57765\";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:152:\"https://wptavern.com/ford-foundation-publishes-non-technical-white-paper-on-open-source-software-and-the-challenges-of-sustaining-digital-infrastructure\";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:6254:\"\"photophoto credit: Khara Woods\n

Last week the Ford Foundation published a white paper titled “Roads and Bridges: The Unseen Labor Behind Our Digital Infrastructure.” The foundation, established in 1936 by Edsel Ford, president of the Ford Motor Company, is currently working to challenge inequality and advance human welfare. This new document in the foundation’s library, written by Nadia Eghbal, addresses the challenges of sustaining our digital infrastructure:

\n

Everybody relies on shared code to write software, including Fortune 500 companies, government, major software companies and startups. In a world driven by technology, we are putting increased demand on those who maintain our digital infrastructure. Yet because these communities are not highly visible, the rest of the world has been slow to notice.

\n

Just like physical infrastructure, digital infrastructure needs regular upkeep and maintenance. But financial support for digital infrastructure is much harder to come by.

\n

Eghbal, an amateur software developer who previously worked in venture capital, drew from her experience using open source code when preparing the 143-page report. She also interviewed many leaders and contributors in various open source software communities.

\n

“After I left my job in venture capital last year, I set off to explore the paradox I couldn’t stop thinking about: that there were valuable software tools that couldn’t be supported by commercial models, and that they lacked any form of institutional support,” she said.

\n

The unique thing about this extraordinary contribution from the Ford Foundation is that Eghbal wrote the document to help consumers and companies understand the toll open source software takes on its contributors and offers strategies for how they can be supportive of the world’s shared digital infrastructure. It bridges a critical gap in understanding between the open source software development community and the people who use the software every day.

\n

“Most of us take opening a software application for granted, the way we take turning on the lights for granted,” Eghbal said. “We don’t think about the human capital necessary to make that happen.”

\n

Eghbal compares the physical infrastructure of the transportation industry to that of the digital world. She contends that the decentralized nature of digital infrastructure makes it more difficult to maintain as a public good. Since the progress is driven by citizens working together, and not by any official governing body, it requires consumers and companies to be supportive of how software communities work if we hope to achieve long-term sustainability of the open source projects we depend on.

\n

Eghbal introduces consumers to common ways that open source projects find financial support but also highlights how many widely used projects can fall through the cracks. The document opens with the example of OpenSSL and the Heartbleed vulnerability which was exposed in 2014.

\n

“A 2015 study by the Federal University of Minas Gerais in Brazil looked at 133 of the most actively used projects hosted on GitHub, across programming languages, and found that 64%, or nearly two-thirds, relied upon just one or two developers to survive,” Eghbal said. “Although there may be a long tail of casual or infrequent contributors, for many projects, the major responsibilities of project management fall on just a few people.”

\n

In offering a brief history of open source software, Eghbal cites WordPress as a prime example (on page 34) of software that is flexible to customize thanks to the freedom its creators gave the project when licensing it under the GPL. Nevertheless, our community shares many of the struggles identified in the document, as maintainers of some of our most important development tools often cannot find financial support that will enable them to keep working on these projects.

\n

The white paper covers many important topics that help non-technical consumers understand the critical need to support the creators of our digital infrastructure. A few example chapters include:

\n
    \n
  • How not charging for software transformed society
  • \n
  • Why digital infrastructure support problems are accelerating
  • \n
  • Open source’s complicated relationship with money
  • \n
  • Business models for digital infrastructure
  • \n
  • Institutional efforts to support digital infrastructure
  • \n
\n

Eghbal advocates treating digital infrastructure as a necessary public good and working with existing software communities. She calls for a more holistic approach to project support, beyond just code and money.

\n

Many of the topics in this white paper are completely new ideas for software consumers but Eghbal’s explanations make them easy for anyone to understand. She includes basic explanations for software terms like frameworks, libraries, and languages, and explains why certain types of open source projects have a more difficult time finding a means of financial support.

\n

I highly recommend reading this document, whether you are an open source project maintainer, a company decision maker who contracts software development, or a consumer. The white paper doesn’t just explore the challenges but also offers constructive ways that people of all walks of life can work together to support our digital infrastructure. You can download the PDF for free from the Ford Foundation.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Jul 2016 20:11:07 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:33;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:108:\"WPTavern: Downtime Expected for Some WP Engine Customers as Linode Patches A Critical Security Vulnerability\";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:45:\"https://wptavern.com?p=57724&preview_id=57724\";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:119:\"https://wptavern.com/downtime-expected-for-some-wp-engine-customers-as-linode-patches-a-critical-security-vulnerability\";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:2128:\"

WP Engine customers on legacy Xen Linode host servers are being notified via email and the company’s status blog about impending downtime between July 21st and July 25th. According to an email forwarded to the Tavern from a WP Engine customer, Linode’s legacy Xen host servers contain a critical security vulnerability.

\n

We are contacting you today regarding an upcoming emergency security maintenance being performed at one of our cloud infrastructure providers. The majority of cloud infrastructure providers across the world will be conducting maintenance due to this situation.

\n

The details of the vulnerability are embargoed until July 26th giving Linode a limited amount of time to patch its systems. According to Linode, the company has no control over the disclosure date.

\n

WP Engine expects the maintenance procedure to be conducted at some point on July 23rd. Downtime could last anywhere from 20-40 minutes during the migration.

\n

This isn’t the first time both companies have been in the news due to security issues. Earlier this year, Linode confirmed that it experienced a data breach which resulted in resetting all of its customer’s passwords. The data breach was similar to one experienced by WP Engine where an attacker bypassed multiple layers of security to gain access to an administrative panel.

\n

Linode is encouraging customers using its legacy Xen servers outside of hosting providers to review the following document to prepare for the reboot. WP Engine customers affected by this issue are encouraged to check the company’s status blog for further updates.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Jul 2016 22:48:43 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:34;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:117:\"WPTavern: 18 WordPress Plugins Updated Due to Summer of Pwnage Findings, 40+ Vulnerabilities Still in Reporting Stage\";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:29:\"https://wptavern.com/?p=57668\";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:126:\"https://wptavern.com/18-wordpress-plugins-updated-due-to-summer-of-pwnage-findings-40-vulnerabilities-still-in-reporting-stage\";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:3211:\"

\"summer-of-pwnage\"

\n

Summer of Pwnage, a Dutch community program for anyone interested in software security, is focusing on WordPress for its current open source security bug hunting event. The community program hosts meetups and workshops on the weekend where anyone from “enthusiastic beginners to the 1337est hackers” is welcome to share findings and demonstrate skills and exploits.

\n

The goal of the community event is to contribute to the security of widely used open source software projects and participants are strongly encouraged to responsibly disclose vulnerabilities to the authors of the original code. WordPress and its thousands of plugins are the target for this month, which organizers call “a bug hunter’s paradise.”

\n

Summer of Pwnage July 2016 findings includes dozens of vulnerabilities discovered in popular WordPress plugins. So far, 18 vulnerabilities have been fixed by the plugin authors and more than 40 others are currently in the reporting stage.

\n

This week Ninja Forms, which has more than 600,000 active installs, issued a security release that fixed multiple Cross-Site Scripting (XSS) vulnerabilities discovered by Summer of Pwnage participants. The bug hunters also discovered a XSS vulnerability in WooCommerce (active on over a million installs), which was subsequently patched.

\n

Security updates are also available for other popular plugins as the result of the program’s efforts, including Paid Memberships Pro, WP Fastest Cache, Easy Forms for MailChimp, and others. The list of reported vulnerabilities includes links to describe each and is being updated frequently, as WordPress plugin authors release patches to their plugins.

\n

Summer of Pwnage is hosted at Securify, a software security company. Organizers provide users with VMs and set them loose hunting bugs. The focus of the event is sharing knowledge and teaching others and has been highly beneficial to the WordPress community so far.

\n

With WordPress plugin vulnerabilities so plentiful, even within the top professionally supported plugins, it would be great to see a niche conference or virtual event focused on security with a contributor day. WordPress needs more guardians spread across the community that can specialize in contributing back in this way. Educational events like Summer of Pwnage demonstrate how successful this kind of event can be for hunting down serious vulnerabilities in the software that millions of people use every day.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Jul 2016 21:38: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:35;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:86:\"WPTavern: Human Made is Giving Away Two Full Scholarships to A Week of REST Conference\";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:29:\"https://wptavern.com/?p=57650\";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:97:\"https://wptavern.com/human-made-is-giving-away-two-full-scholarships-to-a-week-of-rest-conference\";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:1349:\"

A Week of REST, a four-day conference devoted to the WordPress REST API that takes place September 4-9 in Darwin Lake, Matlock in the United Kingdom, has announced it is offering two full scholarships for students and under-represented groups in the tech industry.

\n

“The WordPress REST API is transforming how people use WordPress, opening it up to new technologies and communities. We want to enable people from under-represented groups in technology to develop the skills they need to use the REST API and further their career,” said Siobhan McKeown, Events Director at Human Made.

\n

The scholarships are worth £1500, and include all of the workshops, training, accommodation, meals, and transfer to Derby or Matlock station. To qualify for the scholarships, you must be employed or looking for work in the field of web development or design.

\n

Those interested in applying have until July 29th, Midnight CET, to submit an application. Applicants will receive an email by August 5th with details on who received a scholarship.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Jul 2016 20:40:59 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:36;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:69:\"WPTavern: WP-CLI GUI: An Interface to Speed Up WordPress Installation\";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:29:\"https://wptavern.com/?p=57554\";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:79:\"https://wptavern.com/wp-cli-gui-an-interface-to-speed-up-wordpress-installation\";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:2563:\"

\"wp-cli-gui\"

\n

WP-CLI GUI is a new tool from WordPress developer Tim Brugman, created to speed up the creation of new WordPress sites when using WP-CLI. The tool captures the details required to configure the database, site info, admin user, and password. It outputs one long command that WP-CLI users can copy and paste.

\n

At first it might seem counterintuitive – if you use the command line to manage WordPress, why would you want to add an extra interface to your workflow? Brugman explained the problem that led him to create WP-CLI GUI:

\n

“I heard about WP-CLI and gave it a shot,” he said. “I thought it was very neat for managing your sites but a bit of a hassle for new installs. Because installing WP with the CLI is a sequence of commands, if you don’t concatenate them, you have wait for each to end. It’s especially annoying because the first, downloading WP, takes the longest.”

\n

If you concatenate all of the commands into one giant command with all of the installation variables, the risk of typos increases to where you need to copy and paste.

\n

“Once I started copy pasting, I figured I might as well automate that with JavaScript,” Brugman said. “That became the ridiculous GUI for the CLI.”

\n

Brugman plans to expand with options for removing Akismet and Hello Dolly and is considering adding a list of optional plugins to install.

\n

“Depending on the number of plugins you ‘always’ use, could save some more time,” he said. “Tasks beyond the installation I haven’t yet looked at. Requests are welcome.”

\n

WP-CLI GUI is supported by Toscani, a web development company. Brugman and his colleagues there use the tool to speed up installation of new WordPress sites. He said the tool is ideally suited for developers who often create new WordPress sites and are comfortable with the command line but don’t use WP-CLI at every opportunity.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Jul 2016 16:55:38 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:37;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:106:\"WPTavern: John James Jacoby Publishes 35 Part Tweetstorm on WordPress Leadership, Community, and Economics\";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:29:\"https://wptavern.com/?p=57643\";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:115:\"https://wptavern.com/john-james-jacoby-publishes-35-part-tweetstorm-on-wordpress-leadership-community-and-economics\";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:6722:\"

\"jjj\"John James Jacoby, lead developer of bbPress and BuddyPress, published a 35 part tweetstorm sharing his thoughts on leadership in the WordPress project, the community, and the WordPress economy. A tweetstorm is a series of tweets linked together in chronological order around a particular topic.

\n

There are a number of useful nuggets of wisdom in his tweets that I think can benefit from more exposure to a wider segment of the WordPress community outside of Twitter. It’s a snapshot of one individual’s eight year plus journey in trying to create a sustainable business using WordPress. With Jacoby’s permission, I’ve republished his tweetstorm into a blog post to make it easier to read and digest.

\n
\n

No exacting leadership hierarchy provides the perception of opportunity for anyone to step-up. This is actually really important. Having @photomatt (Matt Mullenweg) be the BDFL (Benevolent Dictator For Life) means we always have a safety net, to help the community be true-north during times of unrest.

\n

Don’t forget that @photomatt purposely has made monumental gestures to remove himself and @automattic as a WordPress dependency. It’s up to the 99% of us that aren’t @photomatt to learn from what he’s accomplished, and find the ways to invest that he hasn’t yet.

\n

Core, Plugins, Themes, etc… none of this in WordPress is easy or directly profitable. It’s all a very long gamble to sustainability. Some WordPress companies/agencies have long-term investment strategies outside of employee retention/satisfaction. Again, it’s a long game.

\n

Ultimately, WordPress needs more than @Automattic‘s bank-roll to help empower the next generation of awesome plugins/themes as products. Some people in the WordPress community that have labeled me: Hot-Lava: Do Not Touch – that makes me sad, because I don’t feel that way.

\n

People will choose to stonewall professional progress because of misperception. Biases exist all around the WordPress community. Some of the most prolific contributors to WordPress (@alexkingorg, @koop, etc…) ultimately were shunned and exiled. It can be toxic.

\n

When @johnbillion (John Blackbourn) says there’s a lack of leadership – there is plenty of leadership, it’s all just currently in a holding pattern. Holding patterns are not bad things, they are necessary to assess what happens next. And there is more happening than ever before.

\n

WordPress is about to get real. Reporting will shape your perception of progress, because there is too much progress to report on. @post_status & @wptavern are our CNN and BBC. They are plugged in so the rest of us do not have to be, and can worry about other things.

\n

I’ve made a lot of friends and allies through WordPress, and accidentally made foes somehow too. That’s not fair. We all need each other. So many individuals are pouring their lives into passion projects surrounding WordPress, hoping to eventually pay their kids tuition.

\n

Talented individuals wanting a better life for their families than they had, busting their butts 24/7 on great ideas, need our support. When someone says this plugin sucks because whatever – it’s an OPPORTUNITY to help someone. Take it, be helpful, that’s the spirit.

\n

When someone says this WordCamp talk was bad – provide that person with feedback yourself, in private, and help elevate them. The problems of the relatively small WordPress community are systemic across all communities. Be ready to be wrong, learn, and recover.

\n

I’d be lying if I said I wanted to take a vow of poverty, relinquish my earthly possessions, and accept WordPress as my CMS and savior. I do want to be profitable enough (thanks to my WordPress experience) to provide others with stable and comfortable living conditions.

\n

I’m eight solid years in, with a thorough understanding of the entire WordPress landscape, and know there are good people struggling. There’s no reason for qualified professionals to struggle in the WordPress space anymore. There is LIMITLESS opportunity and ability.

\n

I deeply want WordPress to continue down the trajectory of success, and I want everyone following me to succeed along with it. Angel rounds dramatically increase the odds of success. Companies like @10up (the bootstrapped anomalies) need a @jakemgold (Jake Goldman) to work.

\n

People are VERY quick to categorize. Yes; I’m an engineer. I also love philosophy, business, yo-yo’s, and clearly tweet-storms. The next time someone says something negative about someone/thing WordPress related, please remind them super-villains are not real.

\n

To make money in WordPress, you need to be likable, and build products where your likability shines through. Like @pippinsplugins (Pippin Williamson). Being likable and profitable in open-source means having integrity, focusing on people more than product, and hoping it pays off in the end.

\n

I think I’m likable, and I’d always like to be more likable, but I also know tweet-storms like this make people think you’re crazy. If you think there is ANYTHING I can do personally or professionally to help you, please know that I desperately want to.

\n

I used to know @photomatt very well. He’s not a bad guy; he’s a great guy. Also an easy target. Concentrate on you. Shout-out to my starving indie plugin and theme artists out there. You rule. Don’t give up. We’ll figure it out together. Thanks for listening; sorry to muck-up your day. WordPress rules because of all of you.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Jul 2016 21:49:33 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:38;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:81:\"WPTavern: Easily Add, Remove, and Rearrange Columns With The Admin Columns Plugin\";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:45:\"https://wptavern.com?p=57565&preview_id=57565\";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:90:\"https://wptavern.com/easily-add-remove-and-rearrange-columns-with-the-admin-columns-plugin\";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:2834:\"

If you find yourself wanting more control over the columns on the posts, post types, pages, media, comments, links, and users administration screens, take a look at the Admin Columns plugin. Admin Columns, developed by Codepress, is a free plugin that is actively installed on more than 60K sites that enables administrators to add, remove, and rearrange columns.

\n

Each column type has its own options panel where you can control settings such as width, label, and in the case of the featured image, preview size.

\n

\"AddingAFeaturedImageColumn\"

\n

There are a number of column types available but if you need additional flexibility, there’s a Custom Field column type. Admin Columns also has built-in support for the Advanced Custom Fields, Pods, and Types plugins.

\n

One of the things I found particularly useful as a new user is the Help tab. This tab in the upper right corner of the screen is often overlooked or not utilized by plugins. Admin Columns uses the tab to provide basic information about the plugin and how to navigate its user interface.

\n

\"AdminColumnsHelpTab\"

\n

Although the free version likely takes care of most use cases, there is a commercial version available that adds sorting, filtering, import/export, inline editing, and multiple column sets. If you maintain a number of sites that uses Admin Columns, the ability to import and export column configurations can be a huge time saver.

\n

I thoroughly tested Admin Columns on WordPress 4.6 beta 3 and didn’t encounter any issues. To see a demo of the plugin in action, check out the following video.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Jul 2016 23:33:00 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:39;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:46:\"WP Mobile Apps: WordPress for iOS: Version 6.3\";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:33:\"http://apps.wordpress.com/?p=3471\";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:68:\"https://apps.wordpress.com/2016/07/16/wordpress-for-ios-version-6-3/\";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:2227:\"

Hi there, WordPress users! Version 6.3 of the WordPress for iOS app is now available in the App Store.

\n

What’s New:

\n

Access your site’s media library — even if WordPress isn’t given permission to access your personal photo library.

\n\n\"IMG_2282\"\n\n

An improved design makes updating your WordPress.com profile and account settings easier and faster than ever.

\n

Several UI fixes. A bevy of fixes for WordPress for iPad, including search field, date picker, and layout improvements.

\n

And much more! You can see the full list of changes here.

\n

Thank You

\n

Thanks to all of the contributors who worked on this release:
\n@aerych, @astralbodies, @claudiosmweb, @diegoreymendez, @frosty, @jleandroperez, @koke, @kurzee, @kwonye, @oguzkocer, @sendhil, @SergioEstevao.

\n

You can track the development progress for the next update by visiting our 6.4 milestone on GitHub. Until next time!

\"\"\";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:\"Sat, 16 Jul 2016 21:12:54 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"diegoreymendez\";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:40;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:73:\"WordPress.tv Blog: Staff Pick: Theming in WordPress – Where do I start?\";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:31:\"http://blog.wordpress.tv/?p=524\";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:85:\"http://blog.wordpress.tv/2016/07/16/staff-pick-theming-in-wordpress-where-do-i-start/\";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:1125:\"

From the stage of WordCamp Europe 2016 here is Edmund Turbin’s great presentation on how to get started in creating WordPress themes.

\n

\n

Base theme, child theme, framework – These are a few of the options you can use for creating a WordPress Theme. Wether you are developing a theme for your personal blog, a clients website, or a theme to be used by other sites and the WordPress community, it is important to know the different approaches for getting started with theme development.

\n

Presentation Slides

\n

Watch more great videos on WordPress.tv!


\"\" \"\"\";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:\"Sat, 16 Jul 2016 02:49:11 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";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:41;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:51:\"Post Status: Medium and WordPress — Draft Podcast\";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:31:\"https://poststatus.com/?p=25489\";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:54:\"https://poststatus.com/medium-wordpress-draft-podcast/\";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:2496:\"

Welcome to the Post Status Draft podcast, which you can find on iTunesGoogle PlayStitcher, and via RSS for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and Brian Krogsgard.

\n

In this episode, Joe and Brian talk about Medium & WordPress and whether Medium and similar platforms are a significant threat to WordPress. They also discuss the benefits and challenges of open source platforms versus proprietary ones, and WordPress’s potential as a lower level item in the site stack.

\n

https://audio.simplecast.com/41890.mp3
\nDirect Download

\n

Links

\n\n

Sponsor

\n

This episode is sponsored by Pippin’s Plugins. If you want to sell downloads, setup content restriction, or start an affiliate program, Pippin’s Plugins have you covered. If you need all three, even better. Pippin’s Plugins is well known for making some of the best coded and most reliable plugins in the market. Check out PippinsPlugins.com for more information.

\";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:\"Fri, 08 Jul 2016 23:28:43 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";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:42;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:91:\"WordPress.tv Blog: WordCamp Videos – Copywriting for SEO and improving your site security\";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:31:\"http://blog.wordpress.tv/?p=507\";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:105:\"http://blog.wordpress.tv/2016/07/08/wordcamp-videos-copywriting-for-seo-and-improving-your-site-security/\";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:1545:\"

Aaron Campbell: Website Security – The Big Picture w/ Simple Steps to Take

\n

Security can be complex, intimidating, and even frightening. Don’t let the enormity of it scare you into inaction. Learn what some of the security researchers and security professionals deal with, and then find out some simple steps you can take to secure your sites.

\n

\n

More videos from WordCamp Europe 2016

\n

Beyond SEO – Copywriting for professionals – Marieke van de Rakt & Joost de Valk

\n

SEO has gone from a technical trade to being more marketing focussed. Joost & Marieke will talk about how to gain great rankings & satisfied visitors by writing good content. Focussing on SEO copywriting has a major pitfall. We give examples and tips on how to write a post that is both readable as well as SEO-friendly.

\n

\n

Presentation slides

\n

More videos from WordCamp Europe 2016


\"\" \"\"\";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:\"Fri, 08 Jul 2016 16:29:24 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";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:43;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:72:\"Post Status: WordCamp Europe 2016, held in Vienna, was a massive success\";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:31:\"https://poststatus.com/?p=25313\";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:60:\"https://poststatus.com/wordcamp-europe-2016-massive-success/\";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:34867:\"

WordCamp Europe 2016 — held in Vienna’s beautiful MuseumsQuartier — was wonderfully executed, and a highlight of the year in WordPress conferences. Organized by a huge team of dedicated volunteers, many of whom worked near full time in the weeks leading up to the events, pulled off the largest WordCamp ever.

\n

Nearly 2,000 attendees streamed into Vienna for WordCamp Europe, and over the course of two conference days and a contributor day, showed just how diverse and special the WordPress community is.

\n

There were many great talks, and I unfortunately didn’t get to see near enough of them, but fortunately the team got videos onto WordPress.tv incredibly fast, and you can now watch all WordCamp Europe sessions for yourself.

\n

I had the privilege to take part in the conference in two sessions, first as a moderator of a panel of business owners, on the topic of cultivating happy teams. I also greatly enjoyed interviewing Matt Mullenweg for the event keynote.

\n

I really recommend you check out all of the talks and choose those which you may learn from. I have pictures from some of those I attended, as well as from the event in general and contributor day.

\n\n\"Emcee\"\n\"Welcome\n\"WCEU\n\"WCEU\n\"Mike\n\"The\n\"John\n\"Rarst\"\n\"More\n\"Remkus\n\"Simon\n\"Helen\"\n\"Siobhan\n\"Adam\n\"Wapuu\n\"Joe\n\"Joe\n\"MuseumsQuartier\"\n\"Nacin\"\n\"WCEU\n\"More\n\"Tom\n\"K.Adam\n\"More\n\"Sara\n\"Barry\"\n\"Ivelina\"\n\"Mike\n\"Family\n\"Kari\n\"audience\"\n\"Dancing\n\"Jenny\n\"WCEU\n\"Kari\n\"WCEU\n\"Petya\n\"Hall\n\"Courtyard\"\n\"Picture\n\"Goodbye\"\n\"Robert\n\"Robert,\n\"Tom\n\"Probably\n\"Winky\n\"Suave\n\"Bronson\"\n\"Oh,\n\"Serious\n\"Sneaky\n\"Human\n\"Can\'t\n\"Shinichi\"\n\"Matt\n\"Ben\n\"masked\n\"Ladies\n\"Nacin\'s\n\"Nacin\'s\n\"Nacin\'s\n\"Blue\n\"Nacin\n\"Human\n\"Human\n\"Even\n\"Ball\n\"Ball\n\"WordPress\n\"Joost\'s\n\"Joost\n\"Mark\n\"Power\n\"Aaron\"\n\"Mika\"\n\"Jean\"\n\"Hat\n\"Alain\"\n\"Contributors\"\n\"Nice\n\"Cassidy\"\n\"Pascal\"\n\"Tammie\"\n\"Hugo\n\"Contributors\"\n\"Phone\n\"More\n\"Seriously,\n\"Matthew\n\"Impressed\n\"Collaboration\"\n\"More\n\"Contributor\n\"Break\"\n\"Konstantin\"\n\"Recording\"\n\"Chris\"\n\"Can\'t\n\"\"\n\"Laughing\"\n\"Dominik\"\n\"Nikolay\"\n\"Working\n\"Helen\n\"New\n\"Adam\n\"New\n\"Accessibility\n\"a11y\n\"Morten\"\n\"Listening\"\n\"Contributor\"\n\"Plugins\"\n\"Discussion\"\n\"Lior\"\n\"Brad\"\n\n

 

\n

I’ll have more takeaways from WordCamp Europe in the member newsletter, but for now, I hope you enjoy a few pictures! Thank you to the WordCamp Europe organizing team and volunteers for your efforts, and the entire European community for welcoming those of us who traveled from abroad. It was a blast, and I hope to see you again next year in Paris!

\";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:\"Thu, 07 Jul 2016 20:28:23 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";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:44;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:43:\"Joseph: Trying Out The Twenty Sixteen Theme\";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:32:\"https://josephscott.org/?p=15135\";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:76:\"https://blog.josephscott.org/2016/02/10/trying-out-the-twenty-sixteen-theme/\";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:547:\"

Switched to the Twenty Sixteen WordPress Theme.

\n

\"twentysixteen-screenshot\"

\n

I opted to remove the sidebar, to give more focus on the content of the page.

\";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, 05 Jul 2016 18:30:13 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"josephscott\";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:45;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:42:\"WordPress.tv Blog: Most popular this month\";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:31:\"http://blog.wordpress.tv/?p=488\";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:60:\"http://blog.wordpress.tv/2016/06/30/most-popular-this-month/\";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:1603:\"

For the last month on WordPress.tv we had a little under 100,000 visits to our little corner of the internet.  Here are the most popular videos from the last month.  Enjoy!

\n

Mika Epstein: Plugin Reviews Demystified (How to Review a Plugin)

\n

When you submit a plugin, it seems to fall into a big black box. Then, suddenly, you get an email telling you things that are incorrect and need some attention. What actually happens is at once incredibly simple and painstakingly annoying. I should know. I do it every single day. And I’m here to help you understand what it is.

\n

\n

Presentation Slides

\n

Kyle Maurer and Adam Silver: WP Battles: Plugins vs. Themes

\n

The classic contest. Themes against plugins. Which are better? Which can solve your problems, fix your site and grow your business? In this epic showdown we’ll explore the purposes and use cases, pros and cons, strengths and weaknesses of these two critical components of any WordPress website.

\n

\n

Presentation Slides


\"\" \"\"\";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:\"Thu, 30 Jun 2016 16:41:47 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";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:46;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:50:\"WP Mobile Apps: WordPress for Android: Version 5.5\";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:33:\"http://apps.wordpress.com/?p=3429\";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:72:\"https://apps.wordpress.com/2016/06/28/wordpress-for-android-version-5-5/\";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:3145:\"

Visual Editor

\n

We’ve worked hard to bring a new editor to the app — it’s a complete rewrite designed to bring you a much smoother editing experience. When you open a draft or a published post, you’ll now get a new visual editing experience with image, link, and styling tools like the ones you use in the full web version of WordPress.

\n

Advanced users, don’t worry! You’ll be able to switch to HTML view and edit code by tapping HTML on the bottom right:

\n

\"screenshot-2016-05-04_11.49.14.480\"

\n
\n
\n

People Management

\n

You can now manage your WordPress.com site users. Simply access your user list with People link from My Sites screen and update your users’ role or remove them from your site.

\n

\"People

\n

Other Changes

\n

Version 5.5 also comes with a few other fixes:

\n
    \n
  • Fixed an issue when selecting a hidden site from search
  • \n
\n

You can track our development progress for the next release by visiting our 5.6 milestone on GitHub.

\n

Beta

\n

Do you like keeping up with what’s new in the app? Do you enjoy testing new stuff before anyone else? Our testers have access to beta versions with updates shipped directly through Google Play. The beta versions may have new features, new fixes — and possibly new bugs! Testers make it possible for us to improve the overall app experience, and offer us invaluable development feedback.

\n

Want to become a tester? Opt-in!

\n

Thank you

\n

Thanks to our GitHub contributors: @aerych, @aforcier, @daniloercoli, @hypest, @kwonye, @maxme, @mzorz, @nbradbury, @oguzkocer, @roundhill, and @tonyr59h.

\"\"
\"demo-visual-editor-edited2\"
\";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, 28 Jun 2016 14:54:16 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Maxime\";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:47;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:49:\"WordPress.tv Blog: Spotlight: WordCamp Miami 2016\";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:31:\"http://blog.wordpress.tv/?p=464\";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:66:\"http://blog.wordpress.tv/2016/06/22/spotlight-wordcamp-miami-2016/\";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:2223:\"

WordCamp Miami helped kick off the 2016 WordCamp season with sunny skies and great presentations on how to take your WordPress site to the next level. You can see all the WordCamp Miami sessions here, but below are a few that stood out for us.

\n

\nRachel Carden: Tools and Techniques for Evaluating Accessibility

\n
\n
\n

When your website is accessible, all users can access your content no matter their abilities. Visually-impaired users can visit your website using a screen reader. Those who can’t use the mouse can navigate your site using a keyboard or other input device. Some accessibility features might also improve your SEO. When your site is inaccessible, research shows you could be excluding up to 20 percent of your users. This talk for all skill levels will review tools and techniques you can use to test and improve your site’s accessibility.

\n

Presentation Slides

\n

 

\n

Kids WordPress Panel Discussion

\n
\n
\n

Kids talking about WordPress and blogging at WordCamp Miami 2016.

\n

 

\n

 


\"\" \"\"
\"Rachel
\"Kids
\";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:\"Wed, 22 Jun 2016 16:41:54 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";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:48;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:84:\"WordPress.tv Blog: Developing for WordPress with Pippin Williamson and Danilo Ercoli\";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:31:\"http://blog.wordpress.tv/?p=439\";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:102:\"http://blog.wordpress.tv/2016/06/15/developing-for-wordpress-with-pippin-williamson-and-danilo-ercoli/\";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:1891:\"

Pippin Williamson: Ask Me Anything About Plugins

\n

Pippin is a prolific plugin developer and founder of several successful commercial WordPress plugin projects. This session is a Q&A style format where the audience asked question related to plugin development, the WordPress.org plugins directory, selling plugins, building a development team, and anything else related to plugins.

\n

\n

More from WordCamp San Diego 2016

\n

 

\n

Danilo Ercoli: Migliorare le performance di WordPress con il caching e l’esecuzione differita di codice

\n

Questo talk è rivolto sia a chi ha appena iniziato a sviluppare con WordPress, sia agli sviluppatori più esperti che lo conoscono già da parecchio tempo, ed è un’introduzione ad alcuni argomenti come il caching e l’esecuzione differita di codice PHP, che sono utili per migliorare notevolmente le performance del tuo sito. Alcuni degli argomenti trattati sono il corretto utilizzo della cache e dei plugin di caching. Un’introduzione al WordPress Jobs System, e come eseguire codice differito senza dover quindi rallentare il rendering della pagina.

\n

\n

Presentation Slides

\n

More from WordCamp Torino 2016


\"\" \"\"\";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:\"Wed, 15 Jun 2016 16:37:35 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jerry Bates\";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:49;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:57:\"Post Status: How WordPress news happens — Draft podcast\";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:31:\"https://poststatus.com/?p=25018\";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:60:\"https://poststatus.com/wordpress-news-happens-draft-podcast/\";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:1557:\"

Welcome to the Post Status Draft podcast, which you can find on iTunesGoogle PlayStitcher, and via RSS for your favorite podcatcher. This episode of Post Status Draft is hosted by Sarah Gooding — another WordPress journalist — and Brian Krogsgard.

\n

In this episode, Sarah and Brian discuss how they do WordPress news, manage working remotely, and handle family life.

\nhttps://audio.simplecast.com/39891.mp3\n

Direct Download

\n

Links

\n\n

Sponsor

\n

This episode is sponsored by Valet. Valet helps keep your clients happy & coming back. They offer expert services and keep the websites they manage functioning flawlessly. They offer preventative care that provides peace of mind around the clock. For more information, check out their website and thank you to Valet for being a Post Status partner.  

\";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:\"Wed, 15 Jun 2016 13:35:17 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";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:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 12 Aug 2016 00:55:44 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 12 Aug 2016 00:45:15 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20160812002010\";}','no'); INSERT INTO `wporg_33_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1199,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1471006545','no'), (1200,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1470963345','no'), (1201,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1471006545','no'), (1202,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','
  • WordPress 4.6 RC2 August 11, 2016
    The second release candidate for WordPress 4.6 is now available. We’ve made over 30 changes since the first release candidate. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.6 on Tuesday, August 16, but we need […]
','no'), (1203,'_transient_timeout_plugin_slugs','1471049797','no'), (1204,'_transient_plugin_slugs','a:41:{i:0;s:19:\"akismet/akismet.php\";i:1;s:19:\"bbpress/bbpress.php\";i:2;s:41:\"wporg-bbp-redirect/wporg-bbp-redirect.php\";i:3;s:59:\"wporg-bbp-term-subscription/wporg-bbp-term-subscription.php\";i:4;s:51:\"wporg-bbp-topic-archive/wporg-bbp-topic-archive.php\";i:5;s:57:\"wporg-bbp-topic-resolution/wporg-bbp-topic-resolution.php\";i:6;s:55:\"wporg-bbp-user-moderation/wporg-bbp-user-moderation.php\";i:7;s:57:\"wporg-bbp-version-dropdown/wporg-bbp-version-dropdown.php\";i:8;s:41:\"wporg-bbp-codexify/wporg-bbp-codexify.php\";i:9;s:23:\"debug-bar/debug-bar.php\";i:10;s:33:\"debug-bar-cron/debug-bar-cron.php\";i:11;s:41:\"email-post-changes/email-post-changes.php\";i:12;s:45:\"wporg-gp-js-warnings/wporg-gp-js-warnings.php\";i:13;s:35:\"wporg-gp-routes/wporg-gp-routes.php\";i:14;s:47:\"wporg-gp-custom-stats/wporg-gp-custom-stats.php\";i:15;s:53:\"wporg-gp-custom-warnings/wporg-gp-custom-warnings.php\";i:16;s:31:\"wporg-gp-help/wporg-gp-help.php\";i:17;s:55:\"wporg-gp-plugin-directory/wporg-gp-plugin-directory.php\";i:18;s:49:\"wporg-gp-rosetta-roles/wporg-gp-rosetta-roles.php\";i:19;s:59:\"wporg-gp-slack-integrations/wporg-gp-slack-integrations.php\";i:20;s:53:\"wporg-gp-theme-directory/wporg-gp-theme-directory.php\";i:21;s:51:\"wporg-gp-customizations/wporg-gp-customizations.php\";i:22;s:57:\"glotpress-translate-bridge/glotpress-translate-bridge.php\";i:23;s:21:\"handbook/handbook.php\";i:24;s:36:\"handbook/functionality-for-pages.php\";i:25;s:19:\"jetpack/jetpack.php\";i:26;s:55:\"official-wordpress-events/official-wordpress-events.php\";i:27;s:49:\"p2-new-post-categories/p2-new-post-categories.php\";i:28;s:37:\"plugin-directory/plugin-directory.php\";i:29;s:39:\"speakerdeck-embed/speakerdeck-embed.php\";i:30;s:27:\"supportflow/supportflow.php\";i:31;s:39:\"syntaxhighlighter/syntaxhighlighter.php\";i:32;s:35:\"theme-directory/theme-directory.php\";i:33;s:45:\"tinymce-code-element/tinymce-code-element.php\";i:34;s:41:\"trac-notifications/trac-notifications.php\";i:35;s:75:\"wporg-profiles-wp-activity-notifier/wporg-profiles-wp-activity-notifier.php\";i:36;s:41:\"wordpress-importer/wordpress-importer.php\";i:37;s:31:\"wp-i18n-teams/wp-i18n-teams.php\";i:38;s:41:\"wp-multibyte-patch/wp-multibyte-patch.php\";i:39;s:49:\"wporg-meeting-posttype/wporg-meeting-posttype.php\";i:40;s:24:\"phpdoc-parser/plugin.php\";}','no'); /*!40000 ALTER TABLE `wporg_33_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_33_p2p # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_33_p2p`; CREATE TABLE `wporg_33_p2p` ( `p2p_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `p2p_from` bigint(20) unsigned NOT NULL, `p2p_to` bigint(20) unsigned NOT NULL, `p2p_type` varchar(44) NOT NULL DEFAULT '', PRIMARY KEY (`p2p_id`), KEY `p2p_from` (`p2p_from`), KEY `p2p_to` (`p2p_to`), KEY `p2p_type` (`p2p_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; # Dump of table wporg_33_p2pmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_33_p2pmeta`; CREATE TABLE `wporg_33_p2pmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `p2p_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `p2p_id` (`p2p_id`), KEY `meta_key` (`meta_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; # Dump of table wporg_33_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_33_postmeta`; CREATE TABLE `wporg_33_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_33_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_33_postmeta` DISABLE KEYS */; INSERT INTO `wporg_33_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (4,6,'_edit_last','1'), (5,6,'_edit_lock','1403588316:1'), (6,6,'_wp_page_template','page-home-landing.php'), (7,5,'_edit_last','1'), (8,5,'_edit_lock','1403588315:1'), (9,5,'_wp_page_template','page-reference-landing.php'), (13,10,'_wp-parser_args','a:0:{}'), (14,10,'_wp-parser_line_num','39'), (15,10,'_wp-parser_end_line_num','46'), (16,10,'_wp-parser_tags','a:1:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:2:\"MU\";}}'), (17,11,'_wp-parser_args','a:0:{}'), (18,11,'_wp-parser_line_num','45'), (19,11,'_wp-parser_end_line_num','45'), (20,11,'_wp-parser_tags','a:1:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}}'), (21,11,'_wp-parser_hook_type','action'), (22,12,'_wp-parser_args','a:0:{}'), (23,12,'_wp-parser_line_num','54'), (24,12,'_wp-parser_end_line_num','64'), (25,12,'_wp-parser_tags','a:1:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:2:\"MU\";}}'), (26,13,'_wp-parser_args','a:0:{}'), (27,13,'_wp-parser_line_num','32'), (28,13,'_wp-parser_end_line_num','32'), (29,13,'_wp-parser_tags','a:1:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}}'), (30,13,'_wp-parser_hook_type','action'), (131,34,'_wp-parser_args','a:0:{}'), (132,34,'_wp-parser_line_num','231'), (133,34,'_wp-parser_end_line_num','231'), (134,34,'_wp-parser_tags','a:1:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.1.0\";}}'), (135,34,'_wp-parser_hook_type','action'), (211,50,'_wp-parser_args','a:1:{i:0;a:3:{s:4:\"name\";s:4:\"$msg\";s:7:\"default\";N;s:4:\"type\";s:0:\"\";}}'), (212,50,'_wp-parser_line_num','37'), (213,50,'_wp-parser_end_line_num','41'), (214,50,'_wp-parser_tags','a:1:{i:0;a:4:{s:4:\"name\";s:5:\"param\";s:7:\"content\";s:56:\"Error Message. Assumed to contain HTML and be sanitized.\";s:5:\"types\";a:1:{i:0;s:6:\"string\";}s:8:\"variable\";s:4:\"$msg\";}}'), (220,52,'_wp-parser_args','a:0:{}'), (221,52,'_wp-parser_line_num','23'), (222,52,'_wp-parser_end_line_num','47'), (223,52,'_wp-parser_tags','a:3:{i:0;a:2:{s:4:\"name\";s:6:\"global\";s:7:\"content\";s:49:\"string $wp_version The current WordPress version.\";}i:1;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.2.0\";}i:2;a:3:{s:4:\"name\";s:6:\"return\";s:7:\"content\";s:53:\"A list of all of the contributors, or false on error.\";s:5:\"types\";a:2:{i:0;s:5:\"array\";i:1;s:4:\"bool\";}}}'), (224,53,'_wp-parser_args','a:3:{i:0;a:3:{s:4:\"name\";s:13:\"$display_name\";s:7:\"default\";N;s:4:\"type\";s:0:\"\";}i:1;a:3:{s:4:\"name\";s:9:\"$username\";s:7:\"default\";N;s:4:\"type\";s:0:\"\";}i:2;a:3:{s:4:\"name\";s:9:\"$profiles\";s:7:\"default\";N;s:4:\"type\";s:0:\"\";}}'), (225,53,'_wp-parser_line_num','60'), (226,53,'_wp-parser_end_line_num','62'), (227,53,'_wp-parser_tags','a:6:{i:0;a:2:{s:4:\"name\";s:6:\"access\";s:7:\"content\";s:7:\"private\";}i:1;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.2.0\";}i:2;a:4:{s:4:\"name\";s:5:\"param\";s:7:\"content\";s:67:\"&$display_name The contributor\'s display name, passed by reference.\";s:5:\"types\";a:1:{i:0;s:6:\"string\";}s:8:\"variable\";s:0:\"\";}i:3;a:4:{s:4:\"name\";s:5:\"param\";s:7:\"content\";s:27:\"The contributor\'s username.\";s:5:\"types\";a:1:{i:0;s:6:\"string\";}s:8:\"variable\";s:9:\"$username\";}i:4;a:4:{s:4:\"name\";s:5:\"param\";s:7:\"content\";s:52:\"URL to the contributor\'s WordPress.org profile page.\";s:5:\"types\";a:1:{i:0;s:6:\"string\";}s:8:\"variable\";s:9:\"$profiles\";}i:5;a:3:{s:4:\"name\";s:6:\"return\";s:7:\"content\";s:74:\"A contributor\'s display name, hyperlinked to a WordPress.org profile page.\";s:5:\"types\";a:1:{i:0;s:6:\"string\";}}}'), (228,54,'_wp-parser_args','a:1:{i:0;a:3:{s:4:\"name\";s:5:\"$data\";s:7:\"default\";N;s:4:\"type\";s:0:\"\";}}'), (229,54,'_wp-parser_line_num','73'), (230,54,'_wp-parser_end_line_num','75'), (231,54,'_wp-parser_tags','a:4:{i:0;a:2:{s:4:\"name\";s:6:\"access\";s:7:\"content\";s:7:\"private\";}i:1;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.2.0\";}i:2;a:4:{s:4:\"name\";s:5:\"param\";s:7:\"content\";s:50:\"&$data External library data, passed by reference.\";s:5:\"types\";a:1:{i:0;s:6:\"string\";}s:8:\"variable\";s:0:\"\";}i:3;a:3:{s:4:\"name\";s:6:\"return\";s:7:\"content\";s:29:\"Link to the external library.\";s:5:\"types\";a:1:{i:0;s:6:\"string\";}}}'), (232,55,'_wp-parser_line_num','16'), (233,55,'_wp-parser_end_line_num','429'), (234,55,'_wp-parser_tags','a:3:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}i:1;a:2:{s:4:\"name\";s:7:\"package\";s:7:\"content\";s:9:\"WordPress\";}i:2;a:2:{s:4:\"name\";s:10:\"subpackage\";s:7:\"content\";s:14:\"Administration\";}}'), (235,55,'_wp-parser_final',''), (236,55,'_wp-parser_abstract',''), (237,55,'_wp-parser_extends',''), (238,55,'_wp-parser_implements','a:0:{}'), (239,55,'_wp-parser_properties','a:3:{i:0;a:7:{s:4:\"name\";s:22:\"$admin_header_callback\";s:4:\"line\";i:25;s:8:\"end_line\";i:25;s:7:\"default\";N;s:6:\"static\";b:0;s:11:\"visibililty\";s:6:\"public\";s:3:\"doc\";a:3:{s:11:\"description\";s:35:\"Callback for administration header.\";s:16:\"long_description\";s:0:\"\";s:4:\"tags\";a:3:{i:0;a:4:{s:4:\"name\";s:3:\"var\";s:7:\"content\";s:0:\"\";s:5:\"types\";a:1:{i:0;s:8:\"callback\";}s:8:\"variable\";s:0:\"\";}i:1;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}i:2;a:2:{s:4:\"name\";s:6:\"access\";s:7:\"content\";s:7:\"private\";}}}}i:1;a:7:{s:4:\"name\";s:25:\"$admin_image_div_callback\";s:4:\"line\";i:34;s:8:\"end_line\";i:34;s:7:\"default\";N;s:6:\"static\";b:0;s:11:\"visibililty\";s:6:\"public\";s:3:\"doc\";a:3:{s:11:\"description\";s:24:\"Callback for header div.\";s:16:\"long_description\";s:0:\"\";s:4:\"tags\";a:3:{i:0;a:4:{s:4:\"name\";s:3:\"var\";s:7:\"content\";s:0:\"\";s:5:\"types\";a:1:{i:0;s:8:\"callback\";}s:8:\"variable\";s:0:\"\";}i:1;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}i:2;a:2:{s:4:\"name\";s:6:\"access\";s:7:\"content\";s:7:\"private\";}}}}i:2;a:7:{s:4:\"name\";s:5:\"$page\";s:4:\"line\";i:43;s:8:\"end_line\";i:43;s:7:\"default\";s:2:\"\'\'\";s:6:\"static\";b:0;s:11:\"visibililty\";s:6:\"public\";s:3:\"doc\";a:3:{s:11:\"description\";s:25:\"Holds the page menu hook.\";s:16:\"long_description\";s:0:\"\";s:4:\"tags\";a:3:{i:0;a:4:{s:4:\"name\";s:3:\"var\";s:7:\"content\";s:0:\"\";s:5:\"types\";a:1:{i:0;s:6:\"string\";}s:8:\"variable\";s:0:\"\";}i:1;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}i:2;a:2:{s:4:\"name\";s:6:\"access\";s:7:\"content\";s:7:\"private\";}}}}}'), (240,56,'_wp-parser_args','a:2:{i:0;a:3:{s:4:\"name\";s:22:\"$admin_header_callback\";s:7:\"default\";s:2:\"\'\'\";s:4:\"type\";s:0:\"\";}i:1;a:3:{s:4:\"name\";s:25:\"$admin_image_div_callback\";s:7:\"default\";s:2:\"\'\'\";s:4:\"type\";s:0:\"\";}}'), (241,56,'_wp-parser_line_num','53'), (242,56,'_wp-parser_end_line_num','59'), (243,56,'_wp-parser_tags','a:4:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}i:1;a:4:{s:4:\"name\";s:5:\"param\";s:7:\"content\";s:0:\"\";s:5:\"types\";a:1:{i:0;s:8:\"callback\";}s:8:\"variable\";s:22:\"$admin_header_callback\";}i:2;a:4:{s:4:\"name\";s:5:\"param\";s:7:\"content\";s:42:\"Optional custom image div output callback.\";s:5:\"types\";a:1:{i:0;s:8:\"callback\";}s:8:\"variable\";s:25:\"$admin_image_div_callback\";}i:3;a:3:{s:4:\"name\";s:6:\"return\";s:7:\"content\";s:0:\"\";s:5:\"types\";a:1:{i:0;s:17:\"Custom_Background\";}}}'), (244,56,'_wp-parser_final',''), (245,56,'_wp-parser_abstract',''), (246,56,'_wp-parser_static',''), (247,56,'_wp-parser_visibility','public'), (248,57,'_wp-parser_args','a:0:{}'), (249,57,'_wp-parser_line_num','66'), (250,57,'_wp-parser_end_line_num','78'), (251,57,'_wp-parser_tags','a:1:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}}'), (252,57,'_wp-parser_final',''), (253,57,'_wp-parser_abstract',''), (254,57,'_wp-parser_static',''), (255,57,'_wp-parser_visibility','public'), (256,58,'_wp-parser_args','a:0:{}'), (257,58,'_wp-parser_line_num','85'), (258,58,'_wp-parser_end_line_num','105'), (259,58,'_wp-parser_tags','a:1:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}}'), (260,58,'_wp-parser_final',''), (261,58,'_wp-parser_abstract',''), (262,58,'_wp-parser_static',''), (263,58,'_wp-parser_visibility','public'), (264,59,'_wp-parser_args','a:0:{}'), (265,59,'_wp-parser_line_num','112'), (266,59,'_wp-parser_end_line_num','172'), (267,59,'_wp-parser_tags','a:1:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}}'), (268,59,'_wp-parser_final',''), (269,59,'_wp-parser_abstract',''), (270,59,'_wp-parser_static',''), (271,59,'_wp-parser_visibility','public'), (272,60,'_wp-parser_args','a:0:{}'), (273,60,'_wp-parser_line_num','179'), (274,60,'_wp-parser_end_line_num','339'), (275,60,'_wp-parser_tags','a:1:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}}'), (276,60,'_wp-parser_final',''), (277,60,'_wp-parser_abstract',''), (278,60,'_wp-parser_static',''), (279,60,'_wp-parser_visibility','public'), (280,61,'_wp-parser_args','a:0:{}'), (281,61,'_wp-parser_line_num','346'), (282,61,'_wp-parser_end_line_num','393'), (283,61,'_wp-parser_tags','a:1:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}}'), (284,61,'_wp-parser_final',''), (285,61,'_wp-parser_abstract',''), (286,61,'_wp-parser_static',''), (287,61,'_wp-parser_visibility','public'), (288,62,'_wp-parser_args','a:1:{i:0;a:3:{s:4:\"name\";s:12:\"$form_fields\";s:7:\"default\";N;s:4:\"type\";s:0:\"\";}}'), (289,62,'_wp-parser_line_num','400'), (290,62,'_wp-parser_end_line_num','402'), (291,62,'_wp-parser_tags','a:1:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.4.0\";}}'), (292,62,'_wp-parser_final',''), (293,62,'_wp-parser_abstract',''), (294,62,'_wp-parser_static',''), (295,62,'_wp-parser_visibility','public'), (296,63,'_wp-parser_args','a:1:{i:0;a:3:{s:4:\"name\";s:5:\"$tabs\";s:7:\"default\";N;s:4:\"type\";s:0:\"\";}}'), (297,63,'_wp-parser_line_num','409'), (298,63,'_wp-parser_end_line_num','411'), (299,63,'_wp-parser_tags','a:1:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.4.0\";}}'), (300,63,'_wp-parser_final',''), (301,63,'_wp-parser_abstract',''), (302,63,'_wp-parser_static',''), (303,63,'_wp-parser_visibility','public'), (312,65,'_wp-parser_line_num','16'), (313,65,'_wp-parser_end_line_num','1285'), (314,65,'_wp-parser_tags','a:3:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"2.1.0\";}i:1;a:2:{s:4:\"name\";s:7:\"package\";s:7:\"content\";s:9:\"WordPress\";}i:2;a:2:{s:4:\"name\";s:10:\"subpackage\";s:7:\"content\";s:14:\"Administration\";}}'), (315,65,'_wp-parser_final',''), (316,65,'_wp-parser_abstract',''), (317,65,'_wp-parser_extends',''), (318,65,'_wp-parser_implements','a:0:{}'), (319,65,'_wp-parser_properties','a:5:{i:0;a:7:{s:4:\"name\";s:22:\"$admin_header_callback\";s:4:\"line\";i:25;s:8:\"end_line\";i:25;s:7:\"default\";N;s:6:\"static\";b:0;s:11:\"visibililty\";s:6:\"public\";s:3:\"doc\";a:3:{s:11:\"description\";s:35:\"Callback for administration header.\";s:16:\"long_description\";s:0:\"\";s:4:\"tags\";a:3:{i:0;a:4:{s:4:\"name\";s:3:\"var\";s:7:\"content\";s:0:\"\";s:5:\"types\";a:1:{i:0;s:8:\"callback\";}s:8:\"variable\";s:0:\"\";}i:1;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"2.1.0\";}i:2;a:2:{s:4:\"name\";s:6:\"access\";s:7:\"content\";s:7:\"private\";}}}}i:1;a:7:{s:4:\"name\";s:25:\"$admin_image_div_callback\";s:4:\"line\";i:34;s:8:\"end_line\";i:34;s:7:\"default\";N;s:6:\"static\";b:0;s:11:\"visibililty\";s:6:\"public\";s:3:\"doc\";a:3:{s:11:\"description\";s:24:\"Callback for header div.\";s:16:\"long_description\";s:0:\"\";s:4:\"tags\";a:3:{i:0;a:4:{s:4:\"name\";s:3:\"var\";s:7:\"content\";s:0:\"\";s:5:\"types\";a:1:{i:0;s:8:\"callback\";}s:8:\"variable\";s:0:\"\";}i:1;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}i:2;a:2:{s:4:\"name\";s:6:\"access\";s:7:\"content\";s:7:\"private\";}}}}i:2;a:7:{s:4:\"name\";s:16:\"$default_headers\";s:4:\"line\";i:43;s:8:\"end_line\";i:43;s:7:\"default\";s:7:\"array()\";s:6:\"static\";b:0;s:11:\"visibililty\";s:6:\"public\";s:3:\"doc\";a:3:{s:11:\"description\";s:22:\"Holds default headers.\";s:16:\"long_description\";s:0:\"\";s:4:\"tags\";a:3:{i:0;a:4:{s:4:\"name\";s:3:\"var\";s:7:\"content\";s:0:\"\";s:5:\"types\";a:1:{i:0;s:5:\"array\";}s:8:\"variable\";s:0:\"\";}i:1;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}i:2;a:2:{s:4:\"name\";s:6:\"access\";s:7:\"content\";s:7:\"private\";}}}}i:3;a:7:{s:4:\"name\";s:17:\"$uploaded_headers\";s:4:\"line\";i:52;s:8:\"end_line\";i:52;s:7:\"default\";s:7:\"array()\";s:6:\"static\";b:0;s:11:\"visibililty\";s:6:\"public\";s:3:\"doc\";a:3:{s:11:\"description\";s:42:\"Holds custom headers uploaded by the user.\";s:16:\"long_description\";s:0:\"\";s:4:\"tags\";a:3:{i:0;a:4:{s:4:\"name\";s:3:\"var\";s:7:\"content\";s:0:\"\";s:5:\"types\";a:1:{i:0;s:5:\"array\";}s:8:\"variable\";s:0:\"\";}i:1;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.2.0\";}i:2;a:2:{s:4:\"name\";s:6:\"access\";s:7:\"content\";s:7:\"private\";}}}}i:4;a:7:{s:4:\"name\";s:5:\"$page\";s:4:\"line\";i:61;s:8:\"end_line\";i:61;s:7:\"default\";s:2:\"\'\'\";s:6:\"static\";b:0;s:11:\"visibililty\";s:6:\"public\";s:3:\"doc\";a:3:{s:11:\"description\";s:25:\"Holds the page menu hook.\";s:16:\"long_description\";s:0:\"\";s:4:\"tags\";a:3:{i:0;a:4:{s:4:\"name\";s:3:\"var\";s:7:\"content\";s:0:\"\";s:5:\"types\";a:1:{i:0;s:6:\"string\";}s:8:\"variable\";s:0:\"\";}i:1;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}i:2;a:2:{s:4:\"name\";s:6:\"access\";s:7:\"content\";s:7:\"private\";}}}}}'), (641,111,'_wp-parser_args','a:1:{i:0;s:5:\"$post\";}'), (642,111,'_wp-parser_line_num','234'), (643,111,'_wp-parser_end_line_num','234'), (644,111,'_wp-parser_tags','a:2:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}i:1;a:4:{s:4:\"name\";s:5:\"param\";s:7:\"content\";s:12:\"Post object.\";s:5:\"types\";a:1:{i:0;s:7:\"WP_Post\";}s:8:\"variable\";s:5:\"$post\";}}'), (645,111,'_wp-parser_hook_type','action'), (696,122,'_wp-parser_args','a:1:{i:0;s:8:\"$comment\";}'), (697,122,'_wp-parser_line_num','140'), (698,122,'_wp-parser_end_line_num','140'), (699,122,'_wp-parser_tags','a:2:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}i:1;a:4:{s:4:\"name\";s:5:\"param\";s:7:\"content\";s:15:\"Comment object.\";s:5:\"types\";a:1:{i:0;s:6:\"object\";}s:8:\"variable\";s:8:\"$comment\";}}'), (700,122,'_wp-parser_hook_type','action'), (701,123,'_wp-parser_args','a:1:{i:0;s:5:\"$link\";}'), (702,123,'_wp-parser_line_num','43'), (703,123,'_wp-parser_end_line_num','43'), (704,123,'_wp-parser_tags','a:2:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"3.0.0\";}i:1;a:4:{s:4:\"name\";s:5:\"param\";s:7:\"content\";s:12:\"Link object.\";s:5:\"types\";a:1:{i:0;s:6:\"object\";}s:8:\"variable\";s:5:\"$link\";}}'), (705,123,'_wp-parser_hook_type','action'), (776,138,'_wp-parser_args','a:1:{i:0;s:29:\"(object) array(\'parent\' => 0)\";}'), (777,138,'_wp-parser_line_num','397'), (778,138,'_wp-parser_end_line_num','397'), (779,138,'_wp-parser_tags','a:3:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"2.1.0\";}i:1;a:2:{s:4:\"name\";s:10:\"deprecated\";s:7:\"content\";s:37:\"Use {$taxonomy}_pre_add_form instead.\";}i:2;a:4:{s:4:\"name\";s:5:\"param\";s:7:\"content\";s:37:\"Optional arguments cast to an object.\";s:5:\"types\";a:1:{i:0;s:6:\"object\";}s:8:\"variable\";s:4:\"$arg\";}}'), (780,138,'_wp-parser_hook_type','action'), (781,139,'_wp-parser_args','a:1:{i:0;s:29:\"(object) array(\'parent\' => 0)\";}'), (782,139,'_wp-parser_line_num','407'), (783,139,'_wp-parser_end_line_num','407'), (784,139,'_wp-parser_tags','a:3:{i:0;a:2:{s:4:\"name\";s:5:\"since\";s:7:\"content\";s:5:\"2.3.0\";}i:1;a:2:{s:4:\"name\";s:10:\"deprecated\";s:7:\"content\";s:37:\"Use {$taxonomy}_pre_add_form instead.\";}i:2;a:4:{s:4:\"name\";s:5:\"param\";s:7:\"content\";s:37:\"Optional arguments cast to an object.\";s:5:\"types\";a:1:{i:0;s:6:\"object\";}s:8:\"variable\";s:4:\"$arg\";}}'), (785,139,'_wp-parser_hook_type','action'); /*!40000 ALTER TABLE `wporg_33_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_33_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_33_posts`; CREATE TABLE `wporg_33_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_33_posts` WRITE; /*!40000 ALTER TABLE `wporg_33_posts` DISABLE KEYS */; INSERT INTO `wporg_33_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 (5,1,'2014-06-24 05:32:31','2014-06-24 05:32:31','','Reference','','publish','open','open','','reference','','','2014-06-24 05:32:31','2014-06-24 05:32:31','',0,'http://developer.wordpressorg.dev/?page_id=5',0,'page','',0), (6,1,'2014-06-24 05:32:25','2014-06-24 05:32:25','','Home','','publish','open','open','','home','','','2014-06-24 05:32:25','2014-06-24 05:32:25','',0,'http://developer.wordpressorg.dev/?page_id=6',0,'page','',0), (7,1,'2014-06-24 05:32:25','2014-06-24 05:32:25','','Home','','inherit','open','open','','6-revision-v1','','','2014-06-24 05:32:25','2014-06-24 05:32:25','',6,'http://developer.wordpressorg.dev/?p=7',0,'revision','',0), (8,1,'2014-06-24 05:32:31','2014-06-24 05:32:31','','Reference','','inherit','open','open','','5-revision-v1','','','2014-06-24 05:32:31','2014-06-24 05:32:31','',5,'http://developer.wordpressorg.dev/?p=8',0,'revision','',0), (10,1,'2014-06-24 05:45:50','2014-06-24 05:45:50','','do_activate_header','Adds an action hook specific to this page that fires on wp_head','publish','open','open','','do_activate_header','','','2014-06-24 05:45:50','2014-06-24 05:45:50','',0,'http://developer.wordpressorg.dev/reference/functions/do_activate_header/',0,'wp-parser-function','',0), (11,1,'2014-06-24 05:45:50','2014-06-24 05:45:50','','\'activate_wp_head\'','Fires before the Site Activation page is loaded, but on the wp_head action.','publish','open','open','','activate_wp_head','','','2014-06-24 05:45:50','2014-06-24 05:45:50','',10,'http://developer.wordpressorg.dev/reference/hooks/activate_wp_head/',0,'wp-parser-hook','',0), (12,1,'2014-06-24 05:45:50','2014-06-24 05:45:50','','wpmu_activate_stylesheet','Loads styles specific to this page.','publish','open','open','','wpmu_activate_stylesheet','','','2014-06-24 05:45:50','2014-06-24 05:45:50','',0,'http://developer.wordpressorg.dev/reference/functions/wpmu_activate_stylesheet/',0,'wp-parser-function','',0), (13,1,'2014-06-24 05:45:50','2014-06-24 05:45:50','','\'activate_header\'','Fires before the Site Activation page is loaded.','publish','open','open','','activate_header','','','2014-06-24 05:45:50','2014-06-24 05:45:50','',0,'http://developer.wordpressorg.dev/reference/hooks/activate_header/',0,'wp-parser-hook','',0), (34,1,'2014-06-24 05:45:54','2014-06-24 05:45:54','','\'admin_notices\'','Print admin screen notices.','publish','open','open','','admin_notices','','','2014-06-24 05:45:54','2014-06-24 05:45:54','',0,'http://developer.wordpressorg.dev/reference/hooks/admin_notices/',0,'wp-parser-hook','',0), (50,1,'2014-06-24 05:45:57','2014-06-24 05:45:57','','comment_footer_die','Display error message at bottom of comments.','publish','open','open','','comment_footer_die','','','2014-06-24 05:45:57','2014-06-24 05:45:57','',0,'http://developer.wordpressorg.dev/reference/functions/comment_footer_die/',0,'wp-parser-function','',0), (52,1,'2014-06-24 05:45:57','2014-06-24 05:45:57','','wp_credits','Retrieve the contributor credits.','publish','open','open','','wp_credits','','','2014-06-24 05:45:57','2014-06-24 05:45:57','',0,'http://developer.wordpressorg.dev/reference/functions/wp_credits/',0,'wp-parser-function','',0), (53,1,'2014-06-24 05:45:57','2014-06-24 05:45:57','','_wp_credits_add_profile_link','Retrieve the link to a contributor\'s WordPress.org profile page.','publish','open','open','','_wp_credits_add_profile_link','','','2014-06-24 05:45:57','2014-06-24 05:45:57','',0,'http://developer.wordpressorg.dev/reference/functions/_wp_credits_add_profile_link/',0,'wp-parser-function','',0), (54,1,'2014-06-24 05:45:57','2014-06-24 05:45:57','','_wp_credits_build_object_link','Retrieve the link to an external library used in WordPress.','publish','open','open','','_wp_credits_build_object_link','','','2014-06-24 05:45:57','2014-06-24 05:45:57','',0,'http://developer.wordpressorg.dev/reference/functions/_wp_credits_build_object_link/',0,'wp-parser-function','',0), (55,1,'2014-06-24 05:45:57','2014-06-24 05:45:57','','Custom_Background','The custom background class.','publish','open','open','','custom_background','','','2014-06-29 21:33:08','2014-06-29 21:33:08','',0,'http://developer.wordpressorg.dev/reference/classes/custom_background/',0,'wp-parser-class','',0), (56,1,'2014-06-24 05:45:57','2014-06-24 05:45:57','','Custom_Background::__construct','Constructor - Register administration header callback.','publish','open','open','','custom_background-__construct','','','2014-06-24 05:45:57','2014-06-24 05:45:57','',55,'http://developer.wordpressorg.dev/reference/classes/custom_background/__construct/',0,'wp-parser-method','',0), (57,1,'2014-06-24 05:45:57','2014-06-24 05:45:57','','Custom_Background::init','Set up the hooks for the Custom Background admin page.','publish','open','open','','custom_background-init','','','2014-06-29 21:33:08','2014-06-29 21:33:08','',55,'http://developer.wordpressorg.dev/reference/classes/custom_background/init/',0,'wp-parser-method','',0), (58,1,'2014-06-24 05:45:57','2014-06-24 05:45:57','','Custom_Background::admin_load','Set up the enqueue for the CSS & JavaScript files.','publish','open','open','','custom_background-admin_load','','','2014-06-29 21:33:08','2014-06-29 21:33:08','',55,'http://developer.wordpressorg.dev/reference/classes/custom_background/admin_load/',0,'wp-parser-method','',0), (59,1,'2014-06-24 05:45:57','2014-06-24 05:45:57','','Custom_Background::take_action','Execute custom background modification.','publish','open','open','','custom_background-take_action','','','2014-06-29 21:33:08','2014-06-29 21:33:08','',55,'http://developer.wordpressorg.dev/reference/classes/custom_background/take_action/',0,'wp-parser-method','',0), (60,1,'2014-06-24 05:45:58','2014-06-24 05:45:58','','Custom_Background::admin_page','Display the custom background page.','publish','open','open','','custom_background-admin_page','','','2014-06-29 21:33:08','2014-06-29 21:33:08','',55,'http://developer.wordpressorg.dev/reference/classes/custom_background/admin_page/',0,'wp-parser-method','',0), (61,1,'2014-06-24 05:45:58','2014-06-24 05:45:58','','Custom_Background::handle_upload','Handle an Image upload for the background image.','publish','open','open','','custom_background-handle_upload','','','2014-06-29 21:33:08','2014-06-29 21:33:08','',55,'http://developer.wordpressorg.dev/reference/classes/custom_background/handle_upload/',0,'wp-parser-method','',0), (62,1,'2014-06-24 05:45:58','2014-06-24 05:45:58','','Custom_Background::attachment_fields_to_edit','Unused since 3.5.0.','publish','open','open','','custom_background-attachment_fields_to_edit','','','2014-06-29 21:33:08','2014-06-29 21:33:08','',55,'http://developer.wordpressorg.dev/reference/classes/custom_background/attachment_fields_to_edit/',0,'wp-parser-method','',0), (63,1,'2014-06-24 05:45:58','2014-06-24 05:45:58','','Custom_Background::filter_upload_tabs','Unused since 3.5.0.','publish','open','open','','custom_background-filter_upload_tabs','','','2014-06-29 21:33:08','2014-06-29 21:33:08','',55,'http://developer.wordpressorg.dev/reference/classes/custom_background/filter_upload_tabs/',0,'wp-parser-method','',0), (65,1,'2014-06-24 05:45:58','2014-06-24 05:45:58','','Custom_Image_Header','The custom header image class.','publish','open','open','','custom_image_header','','','2014-06-29 21:33:08','2014-06-29 21:33:08','',0,'http://developer.wordpressorg.dev/reference/classes/custom_image_header/',0,'wp-parser-class','',0), (111,1,'2014-06-24 05:45:59','2014-06-24 05:45:59','

The dynamic portion of the hook, $post_type, refers to the post type of the post.

','\'add_meta_boxes_\' . $post_type','Fires after all built-in meta boxes have been added, contextually for the given post type.','publish','open','open','','add_meta_boxes_-post_type','','','2014-06-24 05:45:59','2014-06-24 05:45:59','',0,'http://developer.wordpressorg.dev/reference/hooks/add_meta_boxes_-post_type/',0,'wp-parser-hook','',0), (122,1,'2014-06-24 05:46:02','2014-06-24 05:46:02','','\'add_meta_boxes_comment\'','Fires when comment-specific meta boxes are added.','publish','open','open','','add_meta_boxes_comment','','','2014-06-24 05:46:02','2014-06-24 05:46:02','',0,'http://developer.wordpressorg.dev/reference/hooks/add_meta_boxes_comment/',0,'wp-parser-hook','',0), (123,1,'2014-06-24 05:46:02','2014-06-24 05:46:02','','\'add_meta_boxes_link\'','Fires when link-specific meta boxes are added.','publish','open','open','','add_meta_boxes_link','','','2014-06-24 05:46:02','2014-06-24 05:46:02','',0,'http://developer.wordpressorg.dev/reference/hooks/add_meta_boxes_link/',0,'wp-parser-hook','',0), (138,1,'2014-06-24 05:46:05','2014-06-24 05:46:05','','\'add_category_form_pre\'','Fires before the Add Category form.','publish','open','open','','add_category_form_pre','','','2014-06-29 21:33:15','2014-06-29 21:33:15','',0,'http://developer.wordpressorg.dev/reference/hooks/add_category_form_pre/',0,'wp-parser-hook','',0), (139,1,'2014-06-24 05:46:05','2014-06-24 05:46:05','','\'add_link_category_form_pre\'','Fires before the link category form.','publish','open','open','','add_link_category_form_pre','','','2014-06-29 21:33:15','2014-06-29 21:33:15','',0,'http://developer.wordpressorg.dev/reference/hooks/add_link_category_form_pre/',0,'wp-parser-hook','',0); /*!40000 ALTER TABLE `wporg_33_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_33_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_33_term_relationships`; CREATE TABLE `wporg_33_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_33_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_33_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_33_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (10,3,0), (10,4,0), (10,5,0), (11,3,0), (11,5,0), (11,6,0), (12,3,0), (12,4,0), (12,5,0), (13,3,0), (13,5,0), (13,6,0), (34,5,0), (34,10,0), (34,17,0), (34,18,0), (50,5,0), (50,10,0), (50,25,0), (52,5,0), (52,10,0), (52,26,0), (52,27,0), (53,5,0), (53,10,0), (53,26,0), (53,27,0), (54,5,0), (54,10,0), (54,26,0), (54,27,0), (55,5,0), (55,6,0), (55,10,0), (55,28,0), (56,5,0), (56,6,0), (56,10,0), (56,28,0), (57,5,0), (57,6,0), (57,10,0), (57,28,0), (58,5,0), (58,6,0), (58,10,0), (58,28,0), (59,5,0), (59,6,0), (59,10,0), (59,28,0), (60,5,0), (60,6,0), (60,10,0), (60,28,0), (61,5,0), (61,6,0), (61,10,0), (61,28,0), (62,5,0), (62,10,0), (62,28,0), (62,29,0), (63,5,0), (63,10,0), (63,28,0), (63,29,0), (65,5,0), (65,9,0), (65,10,0), (65,30,0), (111,5,0), (111,6,0), (111,10,0), (111,35,0), (122,5,0), (122,6,0), (122,10,0), (122,37,0), (123,5,0), (123,6,0), (123,10,0), (123,38,0), (138,5,0), (138,9,0), (138,10,0), (138,41,0), (139,5,0), (139,10,0), (139,14,0), (139,41,0), (150,5,0), (150,10,0), (150,36,0), (150,42,0), (151,5,0), (151,10,0), (151,23,0), (151,43,0), (152,5,0), (152,10,0), (152,18,0), (152,43,0), (153,5,0), (153,10,0), (153,23,0), (153,43,0), (154,5,0), (154,10,0), (154,23,0), (154,43,0), (155,5,0), (155,10,0), (155,47,0), (155,48,0), (156,5,0), (156,10,0), (156,47,0), (156,48,0), (157,5,0), (157,10,0), (157,47,0), (157,48,0), (158,5,0), (158,10,0), (158,47,0), (158,48,0), (159,5,0), (159,10,0), (159,18,0), (159,47,0), (160,5,0), (160,10,0), (160,18,0), (160,47,0), (161,5,0), (161,10,0), (161,18,0), (161,47,0), (162,5,0), (162,10,0), (162,18,0), (162,47,0), (163,5,0), (163,10,0), (163,18,0), (163,47,0), (164,5,0), (164,10,0), (164,29,0), (164,47,0), (165,5,0), (165,10,0), (165,29,0), (165,47,0), (166,5,0), (166,10,0), (166,29,0), (166,47,0), (167,5,0), (167,10,0), (167,31,0), (167,47,0), (168,5,0), (168,10,0), (168,18,0), (168,47,0), (169,5,0), (169,10,0), (169,18,0), (169,47,0), (170,5,0), (170,10,0), (170,18,0), (170,47,0), (171,5,0), (171,10,0), (171,18,0), (171,47,0), (172,5,0), (172,10,0), (172,18,0), (172,47,0), (173,5,0), (173,10,0), (173,18,0), (173,47,0), (174,5,0), (174,10,0), (174,18,0), (174,47,0), (175,5,0), (175,10,0), (175,18,0), (175,47,0), (176,5,0), (176,10,0), (176,47,0), (177,5,0), (177,10,0), (177,18,0), (177,47,0), (178,5,0), (178,10,0), (178,18,0), (178,47,0), (179,5,0), (179,10,0), (179,18,0), (179,47,0), (180,5,0), (180,10,0), (180,18,0), (180,47,0), (181,5,0), (181,10,0), (181,18,0), (181,47,0), (182,5,0), (182,10,0), (182,18,0), (182,47,0), (183,5,0), (183,10,0), (183,18,0), (183,47,0), (184,5,0), (184,10,0), (184,18,0), (184,47,0), (185,5,0), (185,10,0), (185,29,0), (185,47,0), (186,5,0), (186,10,0), (186,18,0), (186,47,0), (187,5,0), (187,10,0), (187,18,0), (187,47,0), (188,5,0), (188,10,0), (188,18,0), (188,47,0), (189,5,0), (189,10,0), (189,18,0), (189,47,0), (190,5,0), (190,10,0), (190,18,0), (190,47,0), (191,5,0), (191,10,0), (191,18,0), (191,47,0), (192,5,0), (192,6,0), (192,10,0), (192,47,0), (193,5,0), (193,10,0), (193,18,0), (193,47,0), (194,5,0), (194,10,0), (194,18,0), (194,47,0), (195,5,0), (195,10,0), (195,18,0), (195,47,0), (196,5,0), (196,10,0), (196,18,0), (196,47,0), (197,5,0), (197,10,0), (197,18,0), (197,47,0), (198,5,0), (198,10,0), (198,18,0), (198,47,0), (199,5,0), (199,10,0), (199,18,0), (199,47,0), (200,5,0), (200,10,0), (200,18,0), (200,47,0), (201,5,0), (201,10,0), (201,18,0), (201,47,0), (202,5,0), (202,10,0), (202,18,0), (202,47,0), (203,5,0), (203,10,0), (203,18,0), (203,47,0), (204,5,0), (204,10,0), (204,11,0), (204,47,0), (205,5,0), (205,10,0), (205,11,0), (205,47,0), (206,5,0), (206,10,0), (206,47,0), (206,51,0), (207,5,0), (207,10,0), (207,47,0), (207,49,0), (208,5,0), (208,10,0), (208,18,0), (208,47,0), (209,5,0), (209,10,0), (209,18,0), (209,47,0), (210,5,0), (210,10,0), (210,18,0), (210,47,0), (211,5,0), (211,10,0), (211,18,0), (211,47,0), (212,5,0), (212,10,0), (212,18,0), (212,47,0), (213,5,0), (213,10,0), (213,18,0), (213,47,0), (214,5,0), (214,10,0), (214,47,0), (214,49,0), (215,5,0), (215,10,0), (215,18,0), (215,47,0), (216,5,0), (216,10,0), (216,23,0), (216,47,0), (217,5,0), (217,10,0), (217,23,0), (217,47,0), (218,5,0), (218,10,0), (218,36,0), (218,47,0), (219,5,0), (219,10,0), (219,23,0), (219,47,0), (220,5,0), (220,10,0), (220,23,0), (220,47,0), (221,5,0), (221,10,0), (221,23,0), (221,47,0), (222,5,0), (222,10,0), (222,23,0), (222,47,0), (223,5,0), (223,10,0), (223,23,0), (223,47,0), (224,5,0), (224,10,0), (224,47,0), (224,48,0), (225,5,0), (225,10,0), (225,47,0), (225,48,0), (226,5,0), (226,10,0), (226,47,0), (226,48,0), (227,5,0), (227,10,0), (227,47,0), (227,48,0), (228,5,0), (228,10,0), (228,47,0), (228,48,0), (229,5,0), (229,10,0), (229,47,0), (229,50,0), (230,5,0), (230,10,0), (230,47,0), (230,51,0), (231,5,0), (231,10,0), (231,52,0), (231,53,0), (232,5,0), (232,10,0), (232,52,0), (232,53,0), (233,5,0), (233,10,0), (233,52,0), (233,53,0), (234,5,0), (234,10,0), (234,52,0), (234,53,0), (235,5,0), (235,10,0), (235,52,0), (235,53,0), (236,5,0), (236,10,0), (236,52,0), (236,54,0), (237,5,0), (237,9,0), (237,10,0), (237,52,0), (238,5,0), (238,10,0), (238,52,0), (238,53,0), (239,5,0), (239,10,0), (239,52,0), (239,53,0), (240,5,0), (240,10,0), (240,52,0), (240,53,0), (241,5,0), (241,10,0), (241,52,0), (241,53,0), (242,5,0), (242,9,0), (242,10,0), (242,52,0), (243,5,0), (243,10,0), (243,52,0), (243,53,0), (244,5,0), (244,10,0), (244,23,0), (244,52,0), (245,13,0), (245,56,0), (245,58,0), (245,59,0), (246,56,0), (246,58,0), (247,56,0), (247,58,0), (248,56,0), (248,58,0), (249,56,0), (249,58,0), (250,56,0), (250,58,0), (251,56,0), (251,58,0), (252,56,0), (252,58,0), (253,56,0), (253,58,0), (254,56,0), (254,58,0), (255,56,0), (255,58,0), (256,56,0), (256,58,0), (257,56,0), (257,58,0), (271,56,0), (271,60,0), (272,56,0), (272,60,0), (273,56,0), (273,60,0), (274,56,0), (274,60,0), (275,56,0), (275,60,0), (276,56,0), (276,60,0), (277,56,0), (277,60,0), (278,56,0), (278,60,0), (279,56,0), (279,60,0), (280,56,0), (280,60,0), (281,56,0), (281,60,0), (282,56,0), (282,60,0), (283,56,0), (283,60,0), (284,56,0), (284,60,0), (285,56,0), (285,60,0), (286,56,0), (286,60,0), (287,56,0), (287,60,0), (288,56,0), (288,60,0), (289,56,0), (289,60,0), (290,56,0), (290,60,0), (291,56,0), (291,60,0), (292,56,0), (292,60,0), (293,56,0), (293,60,0), (294,56,0), (294,60,0), (295,56,0), (295,60,0), (296,56,0), (296,60,0), (297,56,0), (297,60,0), (298,56,0), (298,60,0), (299,56,0), (299,60,0), (300,56,0), (300,60,0), (301,56,0), (301,60,0), (302,56,0), (302,60,0), (303,56,0), (303,60,0), (304,56,0), (304,60,0), (305,56,0), (305,60,0), (306,56,0), (306,60,0), (307,56,0), (307,60,0), (308,56,0), (308,60,0), (309,56,0), (309,60,0), (310,56,0), (310,60,0), (311,56,0), (311,60,0), (312,56,0), (312,60,0), (313,56,0), (313,60,0), (314,56,0), (314,60,0), (315,56,0), (315,60,0), (316,56,0), (316,60,0), (317,56,0), (317,60,0), (318,56,0), (318,60,0), (319,56,0), (319,60,0), (320,61,0), (321,61,0), (322,61,0), (323,61,0), (324,61,0), (325,61,0), (326,61,0), (327,61,0), (328,61,0), (329,61,0), (330,61,0), (331,61,0), (332,61,0), (333,61,0), (334,61,0), (335,61,0), (336,61,0), (337,61,0), (338,61,0), (339,61,0), (340,61,0), (341,61,0), (342,61,0), (343,61,0), (344,61,0), (345,61,0), (346,61,0), (347,61,0), (348,61,0), (349,61,0), (350,61,0), (351,61,0), (352,61,0), (353,61,0), (354,61,0), (355,61,0), (356,61,0), (357,61,0), (358,61,0), (359,61,0), (360,61,0), (361,61,0), (362,61,0), (363,61,0), (364,61,0), (365,61,0), (366,61,0), (367,61,0), (368,61,0), (369,61,0), (370,61,0), (371,61,0), (372,61,0), (373,61,0), (374,61,0), (375,61,0), (376,61,0), (377,5,0), (377,18,0), (377,62,0), (377,63,0), (378,5,0), (378,62,0), (378,63,0), (379,5,0), (379,62,0), (379,63,0), (380,5,0), (380,62,0), (380,63,0), (381,5,0), (381,62,0), (381,63,0), (382,5,0), (382,19,0), (382,62,0), (382,63,0), (383,5,0), (383,62,0), (383,63,0), (384,5,0), (384,62,0), (384,63,0), (385,5,0), (385,13,0), (385,62,0), (385,63,0), (386,5,0), (386,62,0), (386,63,0), (387,5,0), (387,62,0), (387,63,0), (388,5,0), (388,31,0), (388,62,0), (388,63,0), (389,5,0), (389,23,0), (389,62,0), (389,63,0), (390,5,0), (390,13,0), (390,62,0), (390,63,0), (391,5,0), (391,62,0), (391,63,0), (392,5,0), (392,62,0), (392,63,0), (393,5,0), (393,62,0), (393,63,0), (394,5,0), (394,62,0), (394,63,0), (395,5,0), (395,62,0), (395,63,0), (396,5,0), (396,62,0), (396,63,0), (397,5,0), (397,62,0), (397,63,0), (398,5,0), (398,62,0), (398,63,0), (399,5,0), (399,62,0), (399,63,0), (400,5,0), (400,62,0), (400,63,0), (401,5,0), (401,62,0), (401,63,0), (402,5,0), (402,11,0), (402,62,0), (402,63,0), (403,5,0), (403,18,0), (403,62,0), (403,63,0), (404,5,0), (404,62,0), (404,63,0), (405,5,0), (405,62,0), (405,63,0), (406,5,0), (406,62,0), (406,63,0), (407,5,0), (407,62,0), (407,63,0), (408,5,0), (408,13,0), (408,64,0), (408,65,0), (409,5,0), (409,64,0), (409,65,0), (410,5,0), (410,31,0), (410,64,0), (410,65,0), (411,5,0), (411,31,0), (411,64,0), (411,65,0), (412,5,0), (412,31,0), (412,64,0), (412,65,0), (413,5,0), (413,31,0), (413,64,0), (413,65,0), (414,5,0), (414,27,0), (414,64,0), (414,65,0), (415,5,0), (415,13,0), (415,64,0), (415,65,0), (416,5,0), (416,13,0), (416,64,0), (416,65,0), (417,5,0), (417,31,0), (417,64,0), (417,65,0), (418,5,0), (418,31,0), (418,64,0), (418,65,0), (419,5,0), (419,13,0), (419,64,0), (419,65,0), (420,5,0), (420,13,0), (420,64,0), (420,65,0), (421,5,0), (421,31,0), (421,64,0), (421,65,0), (422,5,0), (422,13,0), (422,64,0), (422,65,0), (423,5,0), (423,13,0), (423,64,0), (423,65,0), (424,5,0), (424,13,0), (424,64,0), (424,65,0), (425,5,0), (425,13,0), (425,64,0), (425,65,0), (426,5,0), (426,13,0), (426,64,0), (426,65,0), (427,5,0), (427,13,0), (427,64,0), (427,65,0), (428,5,0), (428,13,0), (428,64,0), (428,65,0), (429,5,0), (429,13,0), (429,64,0), (429,65,0), (430,5,0), (430,13,0), (430,64,0), (430,65,0), (431,5,0), (431,13,0), (431,64,0), (431,65,0), (432,5,0), (432,13,0), (432,64,0), (432,65,0), (433,5,0), (433,13,0), (433,64,0), (433,65,0), (434,5,0), (434,13,0), (434,64,0), (434,65,0), (435,5,0), (435,13,0), (435,64,0), (435,65,0), (436,5,0), (436,13,0), (436,64,0), (436,65,0), (437,5,0), (437,13,0), (437,64,0), (437,65,0), (438,5,0), (438,13,0), (438,64,0), (438,65,0), (439,5,0), (439,13,0), (439,64,0), (439,65,0), (440,5,0), (440,13,0), (440,64,0), (440,65,0), (441,5,0), (441,13,0), (441,64,0), (441,65,0), (442,5,0), (442,13,0), (442,64,0), (442,65,0), (443,5,0), (443,13,0), (443,64,0), (443,65,0), (444,5,0), (444,13,0), (444,64,0), (444,65,0), (445,5,0), (445,13,0), (445,64,0), (445,65,0), (446,5,0), (446,13,0), (446,64,0), (446,65,0), (447,5,0), (447,13,0), (447,64,0), (447,65,0), (448,5,0), (448,13,0), (448,65,0), (448,66,0), (449,5,0), (449,65,0), (449,66,0), (450,5,0), (450,65,0), (450,66,0), (451,5,0), (451,65,0), (451,66,0), (452,5,0), (452,65,0), (452,66,0), (453,5,0), (453,65,0), (453,66,0), (454,5,0), (454,65,0), (454,66,0), (455,5,0), (455,65,0), (455,66,0), (456,5,0), (456,65,0), (456,66,0), (457,5,0), (457,65,0), (457,66,0), (458,5,0), (458,65,0), (458,66,0), (459,5,0), (459,65,0), (459,66,0), (460,5,0), (460,65,0), (460,66,0), (461,5,0), (461,65,0), (461,66,0), (462,5,0), (462,65,0), (462,66,0), (463,5,0), (463,65,0), (463,66,0), (464,5,0), (464,65,0), (464,66,0), (465,5,0), (465,65,0), (465,66,0), (466,5,0), (466,65,0), (466,66,0), (467,5,0), (467,65,0), (467,66,0), (468,5,0), (468,65,0), (468,66,0), (469,5,0), (469,65,0), (469,66,0), (470,5,0), (470,65,0), (470,66,0), (471,5,0), (471,65,0), (471,66,0), (472,5,0), (472,65,0), (472,66,0), (473,5,0), (473,65,0), (473,66,0), (474,5,0), (474,65,0), (474,66,0), (475,5,0), (475,65,0), (475,66,0), (476,5,0), (476,13,0), (476,65,0), (476,67,0), (477,5,0), (477,65,0), (477,67,0), (478,5,0), (478,65,0), (478,67,0), (479,5,0), (479,65,0), (479,67,0), (480,5,0), (480,65,0), (480,67,0), (481,5,0), (481,65,0), (481,67,0), (482,5,0), (482,65,0), (482,67,0), (483,5,0), (483,65,0), (483,67,0), (484,5,0), (484,65,0), (484,67,0), (485,5,0), (485,65,0), (485,67,0), (486,5,0), (486,65,0), (486,67,0), (487,5,0), (487,65,0), (487,67,0), (488,5,0), (488,65,0), (488,67,0), (489,5,0), (489,65,0), (489,67,0), (490,5,0), (490,65,0), (490,67,0), (491,5,0), (491,65,0), (491,67,0), (492,5,0), (492,65,0), (492,67,0), (493,5,0), (493,65,0), (493,67,0), (494,5,0), (494,65,0), (494,67,0), (495,5,0), (495,65,0), (495,67,0), (496,5,0), (496,65,0), (496,67,0), (497,5,0), (497,65,0), (497,67,0), (498,5,0), (498,65,0), (498,67,0), (499,5,0), (499,65,0), (499,67,0), (500,5,0), (500,65,0), (500,67,0), (501,5,0), (501,65,0), (501,67,0), (502,5,0), (502,65,0), (502,67,0), (503,5,0), (503,65,0), (503,67,0), (504,5,0), (504,65,0), (504,67,0), (505,5,0), (505,65,0), (505,67,0), (506,5,0), (506,13,0), (506,65,0), (506,68,0), (507,5,0), (507,65,0), (507,68,0), (508,5,0), (508,65,0), (508,68,0), (509,5,0), (509,65,0), (509,68,0), (510,5,0), (510,65,0), (510,68,0), (511,5,0), (511,65,0), (511,68,0), (512,5,0), (512,65,0), (512,68,0), (513,5,0), (513,65,0), (513,68,0), (514,5,0), (514,65,0), (514,68,0), (515,5,0), (515,65,0), (515,68,0), (516,5,0), (516,65,0), (516,68,0), (517,5,0), (517,65,0), (517,68,0), (518,5,0), (518,65,0), (518,68,0), (519,5,0), (519,65,0), (519,68,0), (520,5,0), (520,65,0), (520,68,0), (521,5,0), (521,65,0), (521,68,0), (522,5,0), (522,65,0), (522,68,0), (523,5,0), (523,65,0), (523,68,0), (524,5,0), (524,65,0), (524,68,0), (525,5,0), (525,65,0), (525,68,0), (526,5,0), (526,65,0), (526,68,0), (527,5,0), (527,65,0), (527,68,0), (528,5,0), (528,65,0), (528,68,0), (529,5,0), (529,65,0), (529,68,0), (530,5,0), (530,65,0), (530,68,0), (531,5,0), (531,65,0), (531,68,0), (532,5,0), (532,65,0), (532,68,0), (533,5,0), (533,65,0), (533,68,0), (534,5,0), (534,65,0), (534,68,0), (535,5,0), (535,31,0), (535,65,0), (535,69,0), (536,69,0), (537,69,0), (538,69,0), (539,69,0), (540,69,0), (541,69,0), (542,69,0), (543,69,0), (544,69,0), (545,69,0), (546,69,0), (546,70,0), (547,69,0), (548,69,0), (549,69,0), (550,69,0), (551,69,0), (552,69,0), (553,69,0), (554,69,0), (555,69,0), (556,69,0), (557,69,0), (558,69,0), (559,69,0), (560,69,0), (561,69,0), (562,69,0), (563,69,0), (564,69,0), (565,71,0), (566,71,0), (567,71,0), (568,71,0), (569,71,0), (570,71,0), (571,71,0), (572,71,0), (573,71,0), (574,71,0), (575,71,0), (576,71,0), (577,71,0), (578,71,0), (579,5,0), (579,18,0), (579,63,0), (579,72,0), (580,72,0), (581,72,0), (582,72,0), (583,72,0), (584,72,0), (585,72,0), (586,72,0), (587,72,0), (588,72,0), (589,5,0), (589,18,0), (589,63,0), (589,73,0), (590,73,0), (591,18,0), (591,73,0), (592,18,0), (592,73,0), (593,73,0), (594,18,0), (594,73,0), (595,18,0), (595,73,0), (596,18,0), (596,73,0), (597,18,0), (597,73,0), (598,18,0), (598,73,0), (599,18,0), (599,73,0), (600,23,0), (600,73,0), (601,18,0), (601,73,0), (602,18,0), (602,73,0), (603,23,0), (603,73,0), (604,18,0), (604,73,0), (605,18,0), (605,73,0), (606,18,0), (606,73,0), (607,36,0), (607,73,0), (608,18,0), (608,73,0), (609,18,0), (609,73,0), (610,18,0), (610,73,0), (611,18,0), (611,73,0), (612,40,0), (612,73,0), (613,18,0), (613,73,0), (614,18,0), (614,73,0), (615,18,0), (615,73,0), (616,18,0), (616,73,0), (617,23,0), (617,73,0), (618,18,0), (618,73,0), (619,18,0), (619,73,0), (620,18,0), (620,73,0), (621,18,0), (621,73,0), (622,18,0), (622,73,0), (623,18,0), (623,73,0), (624,18,0), (624,73,0), (625,18,0), (625,73,0), (626,18,0), (626,73,0), (627,18,0), (627,73,0), (628,18,0), (628,73,0), (629,73,0), (630,5,0), (630,18,0), (630,63,0), (630,74,0), (631,74,0), (632,74,0), (633,74,0), (634,74,0), (635,74,0), (636,74,0), (637,74,0), (638,74,0), (639,74,0), (640,74,0), (641,23,0), (641,74,0), (642,13,0), (642,74,0), (643,74,0), (644,74,0), (645,74,0), (646,11,0), (646,74,0), (647,5,0), (647,18,0), (647,63,0), (647,75,0), (648,75,0), (649,75,0), (650,75,0), (651,75,0), (652,75,0), (653,75,0), (654,75,0), (655,4,0), (655,75,0), (656,75,0), (657,75,0), (658,18,0), (658,75,0), (659,4,0), (659,75,0), (660,18,0), (660,75,0), (661,5,0), (661,18,0), (661,63,0), (661,76,0), (662,76,0), (663,76,0), (664,76,0), (665,76,0), (666,18,0), (666,76,0), (667,76,0), (668,76,0), (669,76,0), (670,76,0), (671,76,0), (672,76,0), (673,76,0), (674,76,0), (675,76,0), (676,11,0), (676,76,0), (677,18,0), (677,76,0), (678,18,0), (678,76,0), (679,18,0), (679,76,0), (680,18,0), (680,76,0), (681,23,0), (681,76,0), (682,5,0), (682,18,0), (682,63,0), (682,77,0), (683,77,0), (684,77,0), (685,77,0), (686,77,0), (687,77,0), (688,77,0), (689,77,0), (690,4,0), (690,77,0), (691,77,0), (692,77,0), (693,27,0), (693,77,0), (694,18,0), (694,77,0), (695,5,0), (695,18,0), (695,63,0), (695,78,0), (696,78,0), (697,78,0), (698,31,0), (698,78,0), (699,31,0), (699,78,0), (700,36,0), (700,78,0), (701,78,0), (702,78,0), (703,78,0), (704,31,0), (704,78,0), (705,78,0), (706,78,0), (707,78,0), (708,31,0), (708,78,0), (709,5,0), (709,18,0), (709,63,0), (709,79,0), (710,79,0), (711,79,0), (712,79,0), (713,79,0), (714,6,0), (714,79,0), (715,6,0), (715,79,0), (716,79,0), (717,79,0), (718,79,0), (719,79,0), (720,79,0), (721,79,0), (722,79,0), (723,79,0), (724,79,0), (725,79,0), (726,79,0), (727,79,0), (728,13,0), (728,79,0), (729,31,0), (729,79,0), (730,11,0), (730,79,0), (731,18,0), (731,79,0), (732,14,0), (732,79,0), (733,31,0), (733,79,0), (734,5,0), (734,18,0), (734,63,0), (734,80,0), (735,80,0), (736,80,0), (737,80,0), (738,80,0), (739,80,0), (740,80,0), (741,80,0), (742,80,0), (743,9,0), (743,80,0), (744,80,0), (745,80,0), (746,80,0), (747,80,0), (748,23,0), (748,80,0), (749,13,0), (749,80,0), (750,22,0), (750,80,0), (751,6,0), (751,80,0), (752,80,0), (753,80,0), (754,80,0), (755,80,0), (756,18,0), (756,80,0), (757,80,0), (758,11,0), (758,80,0), (759,11,0), (759,80,0), (760,80,0), (760,81,0), (761,13,0), (761,80,0), (762,22,0), (762,80,0), (763,18,0), (763,80,0), (764,18,0), (764,80,0), (765,31,0), (765,80,0), (766,31,0), (766,80,0), (767,31,0), (767,80,0), (768,5,0), (768,18,0), (768,63,0), (768,82,0), (769,82,0), (770,82,0), (771,82,0), (772,11,0), (772,82,0), (773,31,0), (773,82,0), (774,11,0), (774,82,0), (775,82,0), (776,82,0), (777,82,0), (778,82,0), (779,82,0), (780,82,0), (781,82,0), (782,82,0), (783,82,0), (784,82,0), (785,13,0), (785,82,0), (786,11,0), (786,82,0), (787,6,0), (787,82,0), (788,82,0), (789,82,0), (790,82,0), (791,82,0), (792,82,0), (793,11,0), (793,82,0), (794,18,0), (794,82,0), (795,5,0), (795,18,0), (795,63,0), (795,83,0), (796,83,0), (797,83,0), (798,11,0), (798,83,0), (799,11,0), (799,83,0), (800,36,0), (800,83,0), (801,83,0), (802,83,0), (803,83,0), (804,11,0), (804,83,0), (805,83,0), (806,83,0), (807,29,0), (807,83,0), (808,83,0), (809,83,0), (810,83,0), (811,29,0), (811,83,0), (812,29,0), (812,83,0), (813,5,0), (813,18,0), (813,63,0), (813,84,0), (814,84,0), (815,84,0), (816,84,0), (817,84,0), (818,84,0), (819,84,0), (820,84,0), (821,84,0), (822,84,0), (823,84,0), (824,29,0), (824,84,0), (825,5,0), (825,11,0), (825,85,0), (825,86,0), (826,5,0), (826,85,0), (826,86,0), (827,5,0), (827,85,0), (827,86,0), (828,5,0), (828,85,0), (828,86,0), (829,5,0), (829,85,0), (829,86,0), (830,5,0), (830,85,0), (830,86,0), (831,5,0), (831,85,0), (831,86,0), (832,5,0), (832,85,0), (832,86,0), (833,5,0), (833,85,0), (833,86,0), (834,5,0), (834,85,0), (834,86,0), (835,5,0), (835,85,0), (835,86,0), (836,5,0), (836,85,0), (836,86,0), (837,5,0), (837,51,0), (837,85,0), (837,86,0), (838,5,0), (838,11,0), (838,85,0), (838,86,0), (839,5,0), (839,85,0), (839,86,0), (840,5,0), (840,85,0), (840,86,0), (841,5,0), (841,31,0), (841,85,0), (841,86,0), (842,5,0), (842,6,0), (842,85,0), (842,86,0), (843,5,0), (843,85,0), (843,86,0), (844,5,0), (844,85,0), (844,86,0), (845,5,0), (845,85,0), (845,86,0), (846,5,0), (846,85,0), (846,86,0), (847,5,0), (847,85,0), (847,86,0), (848,5,0), (848,85,0), (848,86,0), (849,5,0), (849,85,0), (849,86,0), (850,5,0), (850,85,0), (850,86,0), (851,5,0), (851,85,0), (851,86,0), (852,5,0), (852,85,0), (852,86,0), (853,5,0), (853,85,0), (853,86,0), (854,5,0), (854,85,0), (854,86,0), (855,5,0), (855,51,0), (855,85,0), (855,86,0), (856,5,0), (856,85,0), (856,86,0), (857,5,0), (857,85,0), (857,86,0), (858,5,0), (858,85,0), (858,86,0), (859,5,0), (859,85,0), (859,86,0), (860,5,0), (860,85,0), (860,86,0), (861,5,0), (861,85,0), (861,86,0), (862,5,0), (862,6,0), (862,85,0), (862,86,0), (863,5,0), (863,85,0), (863,86,0), (864,5,0), (864,85,0), (864,86,0), (865,5,0), (865,85,0), (865,86,0), (866,5,0), (866,85,0), (866,86,0), (867,5,0), (867,85,0), (867,86,0), (868,5,0), (868,85,0), (868,86,0), (869,5,0), (869,6,0), (869,85,0), (869,86,0), (870,5,0), (870,11,0), (870,85,0), (870,86,0), (871,5,0), (871,85,0), (871,86,0), (872,5,0), (872,85,0), (872,86,0), (873,5,0), (873,85,0), (873,86,0), (874,5,0), (874,31,0), (874,85,0), (874,86,0), (875,5,0), (875,11,0), (875,85,0), (875,86,0), (876,5,0), (876,85,0), (876,86,0), (877,5,0), (877,85,0), (877,86,0), (878,5,0), (878,85,0), (878,86,0), (879,5,0), (879,11,0), (879,85,0), (879,86,0), (880,5,0), (880,11,0), (880,85,0), (880,86,0), (881,5,0), (881,85,0), (881,86,0), (882,5,0), (882,85,0), (882,86,0), (883,5,0), (883,11,0), (883,85,0), (883,86,0), (884,5,0), (884,36,0), (884,85,0), (884,86,0), (885,5,0), (885,85,0), (885,86,0), (886,5,0), (886,85,0), (886,86,0), (887,5,0), (887,85,0), (887,86,0), (888,5,0), (888,85,0), (888,86,0), (889,5,0), (889,85,0), (889,86,0), (890,5,0), (890,36,0), (890,85,0), (890,86,0), (891,5,0), (891,36,0), (891,85,0), (891,86,0), (892,5,0), (892,85,0), (892,86,0), (893,5,0), (893,85,0), (893,86,0), (894,5,0), (894,85,0), (894,86,0), (895,5,0), (895,85,0), (895,86,0), (896,5,0), (896,85,0), (896,86,0), (897,5,0), (897,85,0), (897,86,0), (898,5,0), (898,85,0), (898,86,0), (899,5,0), (899,85,0), (899,86,0), (900,5,0), (900,85,0), (900,86,0), (901,5,0), (901,11,0), (901,86,0), (901,87,0), (902,5,0), (902,86,0), (902,87,0), (903,5,0), (903,86,0), (903,87,0), (904,5,0), (904,86,0), (904,87,0), (905,5,0), (905,86,0), (905,87,0), (906,5,0), (906,86,0), (906,87,0), (907,5,0), (907,36,0), (907,86,0), (907,87,0), (908,5,0), (908,86,0), (908,87,0), (909,5,0), (909,86,0), (909,87,0), (910,5,0), (910,11,0), (910,86,0), (910,87,0), (911,5,0), (911,11,0), (911,86,0), (911,87,0), (912,5,0), (912,11,0), (912,86,0), (912,87,0), (913,5,0), (913,11,0), (913,86,0), (913,87,0), (914,5,0), (914,86,0), (914,87,0), (915,5,0), (915,86,0), (915,87,0), (916,5,0), (916,11,0), (916,86,0), (916,87,0), (917,5,0), (917,86,0), (917,87,0), (918,5,0), (918,86,0), (918,87,0), (919,5,0), (919,86,0), (919,87,0), (920,5,0), (920,86,0), (920,87,0), (921,5,0), (921,86,0), (921,87,0), (922,5,0), (922,48,0), (922,86,0), (922,87,0), (923,5,0), (923,86,0), (923,87,0), (924,5,0), (924,86,0), (924,87,0), (925,5,0), (925,86,0), (925,87,0), (926,5,0), (926,86,0), (926,87,0), (927,5,0), (927,11,0), (927,86,0), (927,87,0), (928,5,0), (928,86,0), (928,87,0), (929,5,0), (929,86,0), (929,87,0), (930,5,0), (930,86,0), (930,87,0), (931,5,0), (931,86,0), (931,87,0), (932,5,0), (932,86,0), (932,87,0), (933,5,0), (933,86,0), (933,87,0), (934,5,0), (934,86,0), (934,87,0), (935,5,0), (935,86,0), (935,87,0), (936,5,0), (936,86,0), (936,87,0), (937,5,0), (937,86,0), (937,87,0), (938,5,0), (938,86,0), (938,87,0), (939,5,0), (939,86,0), (939,87,0), (940,5,0), (940,36,0), (940,86,0), (940,87,0), (941,5,0), (941,86,0), (941,87,0), (942,5,0), (942,86,0), (942,87,0), (943,5,0), (943,86,0), (943,87,0), (944,5,0), (944,86,0), (944,87,0), (945,5,0), (945,86,0), (945,87,0), (946,5,0), (946,86,0), (946,87,0), (947,5,0), (947,11,0), (947,86,0), (947,87,0), (948,5,0), (948,86,0), (948,87,0), (949,5,0), (949,86,0), (949,87,0), (950,5,0), (950,86,0), (950,87,0), (951,5,0), (951,36,0), (951,86,0), (951,87,0), (952,5,0), (952,36,0), (952,86,0), (952,87,0), (953,5,0), (953,36,0), (953,86,0), (953,87,0), (954,5,0), (954,86,0), (954,87,0), (955,5,0), (955,11,0), (955,86,0), (955,87,0), (956,5,0), (956,86,0), (956,87,0), (957,5,0), (957,86,0), (957,87,0), (958,5,0), (958,36,0), (958,86,0), (958,87,0), (959,5,0), (959,36,0), (959,86,0), (959,87,0), (960,5,0), (960,36,0), (960,86,0), (960,87,0), (961,5,0), (961,36,0), (961,86,0), (961,87,0), (962,5,0), (962,36,0), (962,86,0), (962,87,0), (963,5,0), (963,36,0), (963,86,0), (963,87,0), (964,5,0), (964,36,0), (964,86,0), (964,87,0), (965,5,0), (965,36,0), (965,86,0), (965,87,0), (966,5,0), (966,36,0), (966,86,0), (966,87,0), (967,5,0), (967,36,0), (967,86,0), (967,87,0), (968,5,0), (968,36,0), (968,86,0), (968,87,0), (969,5,0), (969,36,0), (969,86,0), (969,87,0), (970,5,0), (970,50,0), (970,86,0), (970,87,0), (971,5,0), (971,86,0), (971,87,0), (972,5,0), (972,36,0), (972,86,0), (972,87,0), (973,5,0), (973,36,0), (973,86,0), (973,87,0), (974,5,0), (974,36,0), (974,86,0), (974,87,0), (975,5,0), (975,36,0), (975,86,0), (975,87,0), (976,5,0), (976,50,0), (976,86,0), (976,87,0), (977,5,0), (977,18,0), (977,63,0), (977,88,0), (978,18,0), (978,88,0), (979,18,0), (979,88,0), (980,18,0), (980,88,0), (981,18,0), (981,88,0), (982,18,0), (982,88,0), (983,18,0), (983,88,0), (984,18,0), (984,88,0), (985,23,0), (985,88,0), (986,18,0), (986,88,0), (987,18,0), (987,88,0), (988,18,0), (988,88,0), (989,18,0), (989,88,0), (990,18,0), (990,88,0), (991,11,0), (991,88,0), (992,11,0), (992,88,0), (993,5,0), (993,10,0), (993,53,0), (993,89,0), (994,5,0), (994,10,0), (994,53,0), (994,89,0), (995,5,0), (995,10,0), (995,53,0), (995,89,0), (996,5,0), (996,10,0), (996,53,0), (996,89,0), (997,5,0), (997,10,0), (997,14,0), (997,89,0), (998,5,0), (998,10,0), (998,13,0), (998,89,0), (999,5,0), (999,10,0), (999,89,0), (1000,5,0), (1000,10,0), (1000,13,0), (1000,91,0), (1001,5,0), (1001,10,0), (1001,18,0), (1001,91,0), (1002,5,0), (1002,10,0), (1002,18,0), (1002,91,0), (1003,5,0), (1003,10,0), (1003,18,0), (1003,91,0), (1004,5,0), (1004,10,0), (1004,18,0), (1004,91,0), (1005,5,0), (1005,10,0), (1005,13,0), (1005,91,0), (1006,5,0), (1006,10,0), (1006,13,0), (1006,91,0), (1007,5,0), (1007,10,0), (1007,91,0), (1008,5,0), (1008,10,0), (1008,91,0), (1009,5,0), (1009,10,0), (1009,13,0), (1009,91,0), (1010,5,0), (1010,10,0), (1010,31,0), (1010,91,0), (1011,5,0), (1011,10,0), (1011,50,0), (1011,91,0), (1012,5,0), (1012,6,0), (1012,10,0), (1012,91,0), (1013,5,0), (1013,6,0), (1013,10,0), (1013,91,0), (1014,5,0), (1014,10,0), (1014,13,0), (1014,91,0), (1015,5,0), (1015,10,0), (1015,53,0), (1015,91,0), (1016,5,0), (1016,10,0), (1016,91,0), (1017,4,0), (1017,5,0), (1017,10,0), (1017,91,0), (1018,4,0), (1018,5,0), (1018,10,0), (1018,91,0), (1019,4,0), (1019,5,0), (1019,10,0), (1019,91,0), (1020,5,0), (1020,10,0), (1020,50,0), (1020,91,0), (1021,5,0), (1021,10,0), (1021,31,0), (1021,91,0), (1022,5,0), (1022,10,0), (1022,91,0), (1023,5,0), (1023,10,0), (1023,19,0), (1023,91,0), (1024,5,0), (1024,10,0), (1024,50,0), (1024,91,0), (1025,5,0), (1025,10,0), (1025,50,0), (1025,91,0), (1026,5,0), (1026,10,0), (1026,50,0), (1026,91,0), (1027,5,0), (1027,10,0), (1027,13,0), (1027,91,0), (1028,5,0), (1028,10,0), (1028,13,0), (1028,91,0), (1029,5,0), (1029,10,0), (1029,13,0), (1029,91,0), (1030,5,0), (1030,10,0), (1030,13,0), (1030,91,0), (1031,5,0), (1031,10,0), (1031,31,0), (1031,91,0), (1032,5,0), (1032,10,0), (1032,13,0), (1032,91,0), (1033,5,0), (1033,10,0), (1033,14,0), (1033,91,0), (1034,5,0), (1034,10,0), (1034,14,0), (1034,91,0), (1035,5,0), (1035,10,0), (1035,14,0), (1035,91,0), (1036,5,0), (1036,10,0), (1036,14,0), (1036,91,0), (1037,5,0), (1037,10,0), (1037,14,0), (1037,91,0), (1038,5,0), (1038,10,0), (1038,50,0), (1038,91,0), (1039,5,0), (1039,10,0), (1039,13,0), (1039,91,0), (1040,5,0), (1040,6,0), (1040,10,0), (1040,91,0), (1041,5,0), (1041,10,0), (1041,91,0), (1042,5,0), (1042,10,0), (1042,27,0), (1042,91,0), (1043,5,0), (1043,10,0), (1043,91,0), (1044,5,0), (1044,10,0), (1044,27,0), (1044,91,0), (1045,5,0), (1045,10,0), (1045,91,0), (1046,5,0), (1046,10,0), (1046,49,0), (1046,91,0), (1047,5,0), (1047,9,0), (1047,92,0), (1047,93,0), (1048,5,0), (1048,53,0), (1048,92,0), (1048,93,0), (1049,5,0), (1049,53,0), (1049,92,0), (1049,93,0), (1050,5,0), (1050,53,0), (1050,92,0), (1050,93,0), (1051,5,0), (1051,92,0), (1051,93,0), (1051,94,0), (1052,5,0), (1052,9,0), (1052,92,0), (1052,93,0), (1053,5,0), (1053,22,0), (1053,92,0), (1053,93,0), (1054,5,0), (1054,15,0), (1054,92,0), (1054,93,0), (1055,5,0), (1055,31,0), (1055,92,0), (1055,93,0), (1056,5,0), (1056,31,0), (1056,92,0), (1056,93,0), (1057,5,0), (1057,11,0), (1057,92,0), (1057,93,0), (1058,5,0), (1058,11,0), (1058,92,0), (1058,93,0), (1059,5,0), (1059,11,0), (1059,92,0), (1059,93,0), (1060,5,0), (1060,92,0), (1060,93,0), (1061,5,0), (1061,92,0), (1061,93,0), (1062,5,0), (1062,92,0), (1062,93,0), (1063,5,0), (1063,92,0), (1063,93,0), (1064,5,0), (1064,92,0), (1064,93,0), (1065,5,0), (1065,9,0), (1065,92,0), (1065,93,0), (1066,5,0), (1066,92,0), (1066,93,0), (1067,5,0), (1067,92,0), (1067,93,0), (1068,5,0), (1068,6,0), (1068,92,0), (1068,93,0), (1069,5,0), (1069,31,0), (1069,92,0), (1069,93,0), (1070,5,0), (1070,92,0), (1070,93,0), (1071,5,0), (1071,92,0), (1071,93,0), (1072,5,0), (1072,92,0), (1072,93,0), (1073,5,0), (1073,11,0), (1073,92,0), (1073,93,0), (1074,5,0), (1074,11,0), (1074,92,0), (1074,93,0), (1075,5,0), (1075,31,0), (1075,92,0), (1075,93,0), (1076,5,0), (1076,31,0), (1076,92,0), (1076,93,0), (1077,5,0), (1077,92,0), (1077,93,0), (1078,5,0), (1078,92,0), (1078,93,0), (1079,5,0), (1079,92,0), (1079,93,0), (1080,5,0), (1080,92,0), (1080,93,0), (1081,5,0), (1081,92,0), (1081,93,0), (1082,5,0), (1082,92,0), (1082,93,0), (1083,5,0), (1083,92,0), (1083,93,0), (1084,5,0), (1084,92,0), (1084,93,0), (1085,5,0), (1085,31,0), (1085,92,0), (1085,93,0), (1086,5,0), (1086,6,0), (1086,92,0), (1086,93,0), (1087,5,0), (1087,22,0), (1087,92,0), (1087,93,0), (1088,5,0), (1088,53,0), (1088,92,0), (1088,93,0), (1089,5,0), (1089,92,0), (1089,93,0), (1090,5,0), (1090,92,0), (1090,93,0), (1091,5,0), (1091,53,0), (1091,92,0), (1091,93,0), (1092,5,0), (1092,13,0), (1092,92,0), (1092,93,0), (1093,5,0), (1093,15,0), (1093,92,0), (1093,93,0), (1094,5,0), (1094,13,0), (1094,92,0), (1094,93,0), (1095,5,0), (1095,6,0), (1095,92,0), (1095,93,0), (1096,5,0), (1096,31,0), (1096,92,0), (1096,93,0), (1097,5,0), (1097,13,0), (1097,92,0), (1097,93,0), (1098,5,0), (1098,31,0), (1098,92,0), (1098,93,0), (1099,5,0), (1099,53,0), (1099,92,0), (1099,93,0), (1100,5,0), (1100,92,0), (1100,93,0), (1101,5,0), (1101,92,0), (1101,93,0), (1102,5,0), (1102,92,0), (1102,93,0), (1103,5,0), (1103,92,0), (1103,93,0), (1104,5,0), (1104,92,0), (1104,93,0), (1105,5,0), (1105,92,0), (1105,93,0), (1106,5,0), (1106,92,0), (1106,93,0), (1107,5,0), (1107,92,0), (1107,93,0), (1108,5,0), (1108,92,0), (1108,93,0), (1109,5,0), (1109,92,0), (1109,93,0), (1110,5,0), (1110,92,0), (1110,93,0), (1111,5,0), (1111,14,0), (1111,92,0), (1111,93,0), (1112,5,0), (1112,9,0), (1112,92,0), (1112,93,0), (1113,5,0), (1113,9,0), (1113,92,0), (1113,93,0), (1114,5,0), (1114,9,0), (1114,92,0), (1114,93,0), (1115,5,0), (1115,9,0), (1115,92,0), (1115,93,0), (1116,5,0), (1116,9,0), (1116,92,0), (1116,93,0), (1117,5,0), (1117,9,0), (1117,92,0), (1117,93,0), (1118,5,0), (1118,9,0), (1118,92,0), (1118,93,0), (1119,5,0), (1119,9,0), (1119,92,0), (1119,93,0), (1120,5,0), (1120,9,0), (1120,92,0), (1120,93,0), (1121,5,0), (1121,9,0), (1121,92,0), (1121,93,0), (1122,5,0), (1122,9,0), (1122,10,0), (1122,95,0), (1123,5,0), (1123,10,0), (1123,14,0), (1123,95,0), (1124,5,0), (1124,10,0), (1124,13,0), (1124,95,0), (1125,5,0), (1125,9,0), (1125,10,0), (1125,95,0), (1126,5,0), (1126,9,0), (1126,10,0), (1126,95,0), (1127,5,0), (1127,10,0), (1127,14,0), (1127,95,0), (1128,5,0), (1128,10,0), (1128,14,0), (1128,95,0), (1129,5,0), (1129,10,0), (1129,40,0), (1129,95,0), (1130,5,0), (1130,10,0), (1130,40,0), (1130,95,0), (1131,5,0), (1131,10,0), (1131,18,0), (1131,95,0), (1132,5,0), (1132,10,0), (1132,18,0), (1132,95,0), (1133,5,0), (1133,10,0), (1133,14,0), (1133,95,0), (1134,5,0), (1134,10,0), (1134,95,0), (1135,5,0), (1135,9,0), (1135,10,0), (1135,95,0), (1136,5,0), (1136,10,0), (1136,13,0), (1136,95,0), (1137,5,0), (1137,10,0), (1137,19,0), (1137,95,0), (1138,5,0), (1138,10,0), (1138,49,0), (1138,95,0), (1139,5,0), (1139,10,0), (1139,22,0), (1139,96,0), (1140,5,0), (1140,10,0), (1140,22,0), (1140,96,0), (1141,5,0), (1141,10,0), (1141,19,0), (1141,96,0), (1142,5,0), (1142,10,0), (1142,19,0), (1142,96,0), (1143,5,0), (1143,10,0), (1143,22,0), (1143,96,0), (1144,5,0), (1144,10,0), (1144,96,0), (1145,5,0), (1145,10,0), (1145,53,0), (1145,96,0), (1146,5,0), (1146,10,0), (1146,40,0), (1146,96,0), (1147,5,0), (1147,9,0), (1147,10,0), (1147,96,0), (1149,5,0), (1149,10,0), (1149,19,0), (1149,96,0), (1150,5,0), (1150,10,0), (1150,13,0), (1150,96,0), (1151,5,0), (1151,10,0), (1151,36,0), (1151,96,0), (1152,5,0), (1152,10,0), (1152,13,0), (1152,96,0), (1153,5,0), (1153,6,0), (1153,10,0), (1153,96,0), (1154,5,0), (1154,6,0), (1154,10,0), (1154,96,0), (1155,5,0), (1155,6,0), (1155,10,0), (1155,96,0), (1156,5,0), (1156,10,0), (1156,13,0), (1156,96,0), (1157,5,0), (1157,10,0), (1157,13,0), (1157,96,0), (1158,5,0), (1158,10,0), (1158,19,0), (1158,96,0), (1159,5,0), (1159,10,0), (1159,13,0), (1159,96,0), (1160,5,0), (1160,10,0), (1160,19,0), (1160,96,0), (1161,5,0), (1161,10,0), (1161,13,0), (1161,96,0), (1162,5,0), (1162,10,0), (1162,13,0), (1162,96,0), (1163,5,0), (1163,10,0), (1163,40,0), (1163,96,0), (1164,5,0), (1164,10,0), (1164,97,0), (1165,5,0), (1165,10,0), (1165,97,0), (1166,5,0), (1166,10,0), (1166,23,0), (1166,97,0), (1167,5,0), (1167,10,0), (1167,40,0), (1167,97,0), (1168,5,0), (1168,10,0), (1168,97,0), (1169,5,0), (1169,10,0), (1169,23,0), (1169,97,0), (1170,5,0), (1170,10,0), (1170,40,0), (1170,97,0), (1171,5,0), (1171,10,0), (1171,97,0), (1172,5,0), (1172,10,0), (1172,97,0), (1173,5,0), (1173,10,0), (1173,97,0), (1174,5,0), (1174,10,0), (1174,97,0), (1175,5,0), (1175,10,0), (1175,97,0), (1176,5,0), (1176,10,0), (1176,23,0), (1176,97,0), (1177,5,0), (1177,10,0), (1177,40,0), (1177,97,0), (1178,5,0), (1178,10,0), (1178,97,0), (1179,5,0), (1179,10,0), (1179,97,0), (1180,5,0), (1180,10,0), (1180,97,0), (1181,5,0), (1181,9,0), (1181,10,0), (1181,98,0), (1182,5,0), (1182,9,0), (1182,10,0), (1182,98,0), (1183,5,0), (1183,10,0), (1183,40,0), (1183,98,0), (1184,5,0), (1184,10,0), (1184,51,0), (1184,98,0), (1185,5,0), (1185,9,0), (1185,10,0), (1185,98,0), (1186,5,0), (1186,10,0), (1186,13,0), (1186,98,0), (1187,5,0), (1187,10,0), (1187,13,0), (1187,98,0), (1188,5,0), (1188,10,0), (1188,13,0), (1188,98,0), (1189,5,0), (1189,10,0), (1189,13,0), (1189,98,0), (1190,5,0), (1190,10,0), (1190,13,0), (1190,98,0), (1191,5,0), (1191,10,0), (1191,13,0), (1191,98,0), (1192,5,0), (1192,10,0), (1192,13,0), (1192,98,0), (1193,5,0), (1193,10,0), (1193,13,0), (1193,98,0), (1194,5,0), (1194,10,0), (1194,40,0), (1194,98,0), (1195,5,0), (1195,10,0), (1195,40,0), (1195,98,0), (1196,5,0), (1196,10,0), (1196,29,0), (1196,98,0), (1197,5,0), (1197,10,0), (1197,18,0), (1197,98,0), (1198,5,0), (1198,10,0), (1198,18,0), (1198,98,0), (1199,5,0), (1199,10,0), (1199,40,0), (1199,98,0), (1200,5,0), (1200,10,0), (1200,29,0), (1200,98,0), (1201,5,0), (1201,10,0), (1201,53,0), (1201,99,0), (1202,5,0), (1202,10,0), (1202,40,0), (1202,99,0), (1203,5,0), (1203,10,0), (1203,53,0), (1203,99,0), (1204,5,0), (1204,10,0), (1204,53,0), (1204,99,0), (1205,5,0), (1205,10,0), (1205,53,0), (1205,99,0), (1206,5,0), (1206,10,0), (1206,23,0), (1206,99,0), (1207,5,0), (1207,18,0), (1207,63,0), (1207,100,0), (1208,5,0), (1208,31,0), (1208,63,0), (1208,100,0), (1209,5,0), (1209,31,0), (1209,63,0), (1209,100,0), (1210,5,0), (1210,18,0), (1210,63,0), (1210,100,0), (1211,5,0), (1211,63,0), (1211,100,0), (1212,5,0), (1212,63,0), (1212,100,0), (1213,5,0), (1213,63,0), (1213,100,0), (1214,5,0), (1214,10,0), (1214,13,0), (1214,101,0), (1215,5,0), (1215,10,0), (1215,13,0), (1215,101,0), (1216,5,0), (1216,10,0), (1216,13,0), (1216,101,0), (1217,5,0), (1217,10,0), (1217,13,0), (1217,101,0), (1218,5,0), (1218,10,0), (1218,13,0), (1218,101,0), (1219,5,0), (1219,10,0), (1219,13,0), (1219,101,0), (1220,5,0), (1220,10,0), (1220,19,0), (1220,101,0), (1221,5,0), (1221,10,0), (1221,19,0), (1221,101,0), (1222,5,0), (1222,10,0), (1222,19,0), (1222,101,0), (1223,5,0), (1223,10,0), (1223,29,0), (1223,101,0), (1224,5,0), (1224,10,0), (1224,13,0), (1224,101,0), (1225,5,0), (1225,10,0), (1225,13,0), (1225,101,0), (1226,5,0), (1226,10,0), (1226,19,0), (1226,101,0), (1227,5,0), (1227,10,0), (1227,13,0), (1227,101,0), (1228,5,0), (1228,10,0), (1228,40,0), (1228,101,0), (1229,5,0), (1229,10,0), (1229,40,0), (1229,101,0), (1230,5,0), (1230,10,0), (1230,40,0), (1230,101,0), (1231,5,0), (1231,10,0), (1231,13,0), (1231,101,0), (1232,5,0), (1232,10,0), (1232,13,0), (1232,101,0), (1233,5,0), (1233,10,0), (1233,13,0), (1233,101,0), (1234,5,0), (1234,10,0), (1234,101,0), (1235,5,0), (1235,6,0), (1235,10,0), (1235,101,0), (1236,5,0), (1236,10,0), (1236,13,0), (1236,101,0), (1237,5,0), (1237,10,0), (1237,13,0), (1237,101,0), (1238,5,0), (1238,10,0), (1238,13,0), (1238,101,0), (1239,5,0), (1239,10,0), (1239,13,0), (1239,101,0), (1240,5,0), (1240,10,0), (1240,49,0), (1240,101,0), (1241,5,0), (1241,10,0), (1241,11,0), (1241,101,0), (1242,5,0), (1242,10,0), (1242,19,0), (1242,101,0), (1243,5,0), (1243,10,0), (1243,13,0), (1243,101,0), (1244,5,0), (1244,10,0), (1244,13,0), (1244,101,0), (1245,5,0), (1245,10,0), (1245,31,0), (1245,101,0), (1246,5,0), (1246,10,0), (1246,31,0), (1246,101,0), (1247,5,0), (1247,10,0), (1247,49,0), (1247,101,0), (1248,5,0), (1248,10,0), (1248,31,0), (1248,101,0), (1249,5,0), (1249,10,0), (1249,101,0), (1250,5,0), (1250,10,0), (1250,13,0), (1250,101,0), (1251,5,0), (1251,10,0), (1251,13,0), (1251,101,0), (1252,5,0), (1252,10,0), (1252,11,0), (1252,101,0), (1253,5,0), (1253,10,0), (1253,13,0), (1253,101,0), (1254,5,0), (1254,10,0), (1254,13,0), (1254,101,0), (1255,5,0), (1255,10,0), (1255,13,0), (1255,101,0), (1256,5,0), (1256,10,0), (1256,13,0), (1256,101,0), (1257,5,0), (1257,10,0), (1257,13,0), (1257,101,0), (1258,5,0), (1258,10,0), (1258,13,0), (1258,101,0), (1259,5,0), (1259,10,0), (1259,18,0), (1259,101,0), (1260,5,0), (1260,10,0), (1260,13,0), (1260,101,0), (1261,5,0), (1261,10,0), (1261,101,0), (1262,5,0), (1262,10,0), (1262,13,0), (1262,101,0), (1263,5,0), (1263,10,0), (1263,13,0), (1263,101,0), (1264,5,0), (1264,10,0), (1264,23,0), (1264,101,0), (1265,5,0), (1265,10,0), (1265,19,0), (1265,101,0), (1266,5,0), (1266,10,0), (1266,18,0), (1266,101,0), (1267,5,0), (1267,10,0), (1267,49,0), (1267,101,0), (1268,5,0), (1268,10,0), (1268,19,0), (1268,101,0), (1269,5,0), (1269,10,0), (1269,19,0), (1269,101,0), (1270,5,0), (1270,10,0), (1270,19,0), (1270,101,0), (1271,5,0), (1271,10,0), (1271,19,0), (1271,101,0), (1272,5,0), (1272,10,0), (1272,19,0), (1272,101,0), (1273,5,0), (1273,10,0), (1273,13,0), (1273,101,0), (1274,5,0), (1274,10,0), (1274,19,0), (1274,101,0), (1275,5,0), (1275,10,0), (1275,31,0), (1275,101,0), (1276,5,0), (1276,10,0), (1276,49,0), (1276,101,0), (1277,5,0), (1277,10,0), (1277,13,0), (1277,101,0), (1278,5,0), (1278,10,0), (1278,13,0), (1278,101,0), (1279,5,0), (1279,10,0), (1279,18,0), (1279,101,0), (1280,5,0), (1280,10,0), (1280,31,0), (1280,101,0), (1281,5,0), (1281,10,0), (1281,19,0), (1281,101,0), (1282,5,0), (1282,10,0), (1282,19,0), (1282,101,0), (1283,5,0), (1283,10,0), (1283,49,0), (1283,101,0), (1284,5,0), (1284,10,0), (1284,49,0), (1284,101,0), (1285,5,0), (1285,10,0), (1285,23,0), (1285,101,0), (1286,5,0), (1286,10,0), (1286,23,0), (1286,101,0), (1287,5,0), (1287,10,0), (1287,23,0), (1287,101,0), (1288,5,0), (1288,10,0), (1288,36,0), (1288,101,0), (1289,5,0), (1289,10,0), (1289,36,0), (1289,101,0), (1290,5,0), (1290,10,0), (1290,48,0), (1290,101,0), (1291,5,0), (1291,10,0), (1291,48,0), (1291,101,0), (1292,5,0), (1292,10,0), (1292,48,0), (1292,101,0), (1293,5,0), (1293,10,0), (1293,102,0), (1294,5,0), (1294,10,0), (1294,102,0), (1295,5,0), (1295,10,0), (1295,31,0), (1295,102,0), (1296,5,0), (1296,10,0), (1296,102,0), (1297,5,0), (1297,10,0), (1297,18,0), (1297,102,0), (1298,5,0), (1298,10,0), (1298,18,0), (1298,102,0), (1299,5,0), (1299,10,0), (1299,54,0), (1299,102,0), (1300,5,0), (1300,10,0), (1300,18,0), (1300,102,0), (1301,5,0), (1301,10,0), (1301,18,0), (1301,102,0), (1302,5,0), (1302,10,0), (1302,22,0), (1302,102,0), (1303,5,0), (1303,10,0), (1303,11,0), (1303,102,0), (1304,5,0), (1304,10,0), (1304,13,0), (1304,102,0), (1305,31,0), (1305,103,0), (1306,103,0), (1306,104,0), (1307,40,0), (1307,103,0), (1308,31,0), (1308,103,0), (1309,23,0), (1309,103,0), (1310,23,0), (1310,103,0), (1311,18,0), (1311,103,0), (1312,19,0), (1312,103,0), (1313,19,0), (1313,103,0), (1314,19,0), (1314,103,0), (1315,19,0), (1315,103,0), (1316,106,0), (1317,106,0), (1318,106,0), (1319,106,0), (1320,106,0), (1321,106,0), (1322,106,0), (1323,107,0), (1324,107,0), (1325,107,0), (1326,107,0), (1327,107,0), (1328,107,0), (1329,108,0), (1330,108,0), (1331,109,0), (1332,109,0), (1333,109,0), (1334,109,0), (1335,109,0), (1336,110,0), (1337,110,0), (1338,110,0), (1339,110,0), (1340,110,0), (1341,110,0), (1342,110,0), (1343,110,0), (1344,110,0), (1345,110,0), (1346,111,0), (1347,111,0), (1348,111,0), (1349,111,0), (1350,111,0), (1351,111,0), (1352,111,0), (1353,112,0), (1354,112,0), (1355,113,0), (1356,113,0), (1357,113,0), (1358,113,0), (1359,113,0), (1360,113,0), (1361,113,0), (1362,113,0), (1363,5,0), (1363,94,0), (1363,683,0), (1363,859,0), (1364,114,0), (1365,114,0), (1366,114,0), (1367,114,0), (1368,114,0), (1369,114,0), (1370,114,0), (1371,114,0), (1372,114,0), (1373,114,0), (1374,114,0), (1375,114,0), (1376,121,0), (1377,121,0), (1378,121,0), (1379,121,0), (1380,122,0), (1381,122,0), (1382,122,0), (1383,122,0), (1384,122,0), (1385,122,0), (1386,122,0), (1387,122,0), (1388,122,0), (1389,122,0), (1390,122,0), (1391,122,0), (1392,122,0), (1393,122,0), (1394,122,0), (1395,122,0), (1396,122,0), (1397,122,0), (1398,122,0), (1399,123,0), (1400,124,0), (1401,124,0), (1402,125,0), (1403,126,0), (1404,126,0), (1405,126,0), (1406,126,0), (1407,126,0), (1408,126,0), (1409,126,0), (1410,127,0), (1411,128,0), (1412,128,0), (1413,128,0), (1414,129,0), (1415,130,0), (1416,131,0), (1417,132,0), (1418,132,0), (1419,133,0), (1419,134,0), (1420,135,0), (1421,136,0), (1422,137,0), (1423,138,0), (1424,138,0), (1425,139,0), (1426,139,0), (1427,139,0), (1428,139,0), (1429,139,0), (1430,139,0), (1431,140,0), (1432,141,0), (1433,142,0), (1434,143,0), (1435,144,0), (1436,145,0), (1437,146,0), (1438,147,0), (1439,147,0), (1440,147,0), (1441,147,0), (1442,148,0), (1443,148,0), (1444,148,0), (1445,148,0), (1446,148,0), (1447,148,0), (1448,148,0), (1449,148,0), (1450,148,0), (1451,149,0), (1452,150,0), (1453,151,0), (1454,152,0), (1455,153,0), (1456,154,0), (1457,155,0), (1458,155,0), (1459,134,0), (1459,156,0), (1460,156,0), (1461,157,0), (1462,158,0), (1463,158,0), (1464,159,0), (1465,159,0), (1466,159,0), (1467,159,0), (1468,160,0), (1469,160,0), (1470,161,0), (1471,161,0), (1472,162,0), (1473,163,0), (1474,164,0), (1475,164,0), (1476,165,0), (1477,166,0), (1478,167,0), (1479,168,0), (1480,170,0), (1481,170,0), (1482,170,0), (1483,170,0), (1484,171,0), (1485,171,0), (1486,171,0), (1487,171,0), (1488,171,0), (1489,171,0), (1490,171,0), (1491,171,0), (1492,171,0), (1493,171,0), (1494,171,0), (1495,171,0), (1496,171,0), (1497,171,0), (1498,172,0), (1499,172,0), (1500,172,0), (1501,172,0), (1502,173,0), (1503,173,0), (1504,173,0), (1505,174,0), (1505,175,0), (1506,174,0), (1507,174,0), (1508,176,0), (1509,176,0), (1510,176,0), (1511,176,0), (1512,176,0), (1513,176,0), (1514,177,0), (1515,177,0), (1516,177,0), (1517,177,0), (1518,177,0), (1519,177,0), (1520,178,0), (1521,178,0), (1522,178,0), (1523,178,0), (1524,180,0), (1525,180,0), (1526,180,0), (1527,180,0), (1528,180,0), (1529,180,0), (1530,180,0), (1531,180,0), (1534,181,0), (1535,182,0), (1536,182,0), (1537,182,0), (1538,183,0), (1539,183,0), (1540,183,0), (1541,183,0), (1542,183,0), (1543,183,0), (1544,183,0), (1545,183,0), (1546,183,0), (1547,184,0), (1548,184,0), (1549,184,0), (1550,184,0), (1551,184,0), (1552,184,0), (1553,184,0), (1554,184,0), (1555,185,0), (1556,185,0), (1557,185,0), (1558,185,0), (1559,185,0), (1560,185,0), (1561,186,0), (1562,186,0), (1563,186,0), (1564,186,0), (1565,186,0), (1566,186,0), (1567,186,0), (1568,186,0), (1569,186,0), (1570,186,0), (1571,186,0), (1572,186,0), (1573,186,0), (1574,186,0), (1575,187,0), (1576,187,0), (1577,187,0), (1578,187,0), (1579,187,0), (1580,187,0), (1581,188,0), (1582,188,0), (1583,188,0), (1584,188,0), (1585,188,0), (1586,188,0), (1587,188,0), (1588,188,0), (1589,190,0), (1590,190,0), (1591,190,0), (1592,190,0), (1593,190,0), (1594,191,0), (1595,191,0), (1596,191,0), (1597,191,0), (1598,191,0), (1599,191,0), (1600,191,0), (1601,191,0), (1602,192,0), (1603,193,0), (1604,193,0), (1605,193,0), (1606,193,0), (1607,193,0), (1608,193,0), (1609,193,0), (1610,193,0), (1611,194,0), (1612,194,0), (1613,194,0), (1614,194,0), (1615,194,0), (1616,194,0), (1617,194,0), (1618,195,0), (1619,195,0), (1620,195,0), (1621,195,0), (1622,195,0), (1623,195,0), (1624,195,0), (1625,195,0), (1626,196,0), (1627,196,0), (1628,196,0), (1629,196,0), (1630,196,0), (1631,196,0), (1632,196,0), (1633,196,0), (1634,197,0), (1635,197,0), (1636,198,0), (1637,198,0), (1638,199,0), (1639,199,0), (1640,200,0), (1641,200,0), (1642,201,0), (1643,201,0), (1644,202,0), (1645,202,0), (1646,203,0), (1647,203,0), (1648,204,0), (1649,204,0), (1650,205,0), (1651,205,0), (1652,206,0), (1653,206,0), (1654,207,0), (1655,207,0), (1656,208,0), (1657,208,0), (1658,209,0), (1659,209,0), (1660,210,0), (1661,210,0), (1662,211,0), (1663,211,0), (1664,212,0), (1665,212,0), (1666,213,0), (1667,213,0), (1668,214,0), (1669,214,0), (1670,215,0), (1671,215,0), (1672,216,0), (1673,216,0), (1674,217,0), (1675,217,0), (1676,218,0), (1677,218,0), (1678,219,0), (1679,219,0), (1680,220,0), (1681,220,0), (1682,221,0), (1683,221,0), (1684,222,0), (1685,223,0), (1686,224,0), (1687,225,0), (1688,226,0), (1689,227,0), (1690,228,0), (1691,229,0), (1692,229,0), (1693,230,0), (1694,230,0), (1695,231,0), (1696,231,0), (1697,232,0), (1698,232,0), (1699,233,0), (1700,233,0), (1701,234,0), (1702,234,0), (1703,235,0), (1704,235,0), (1705,236,0), (1706,236,0), (1707,237,0), (1708,237,0), (1709,238,0), (1710,238,0), (1711,239,0), (1712,239,0), (1713,240,0), (1714,240,0), (1715,241,0), (1716,241,0), (1717,242,0), (1718,242,0), (1719,243,0), (1720,243,0), (1721,244,0), (1722,244,0), (1723,245,0), (1724,245,0), (1725,246,0), (1726,246,0), (1727,247,0), (1728,247,0), (1729,248,0), (1730,248,0), (1731,249,0), (1732,249,0), (1733,250,0), (1734,250,0), (1735,251,0), (1736,251,0), (1737,252,0), (1738,252,0), (1739,253,0), (1740,253,0), (1741,254,0), (1742,254,0), (1743,255,0), (1744,255,0), (1745,256,0), (1746,256,0), (1747,257,0), (1748,257,0), (1749,258,0), (1750,258,0), (1751,259,0), (1752,259,0), (1753,260,0), (1754,260,0), (1755,261,0), (1756,261,0), (1757,262,0), (1758,262,0), (1759,263,0), (1760,263,0), (1761,264,0), (1762,264,0), (1763,265,0), (1764,265,0), (1765,266,0), (1766,266,0), (1767,267,0), (1768,267,0), (1769,268,0), (1770,268,0), (1771,269,0), (1772,269,0), (1773,270,0), (1774,270,0), (1775,271,0), (1776,271,0), (1777,272,0), (1778,272,0), (1779,273,0), (1780,273,0), (1781,274,0), (1782,274,0), (1783,275,0), (1784,275,0), (1785,276,0), (1786,276,0), (1787,277,0), (1788,277,0), (1789,278,0), (1790,278,0), (1791,279,0), (1792,280,0), (1793,280,0), (1794,280,0), (1795,280,0), (1796,280,0), (1797,281,0), (1798,281,0), (1799,281,0), (1800,281,0), (1801,281,0), (1802,282,0), (1803,282,0), (1804,282,0), (1805,282,0), (1806,282,0), (1807,282,0), (1808,282,0), (1809,282,0), (1810,282,0), (1811,282,0), (1812,282,0), (1813,282,0), (1814,282,0), (1815,282,0), (1816,282,0), (1817,282,0), (1818,283,0), (1819,283,0), (1820,284,0), (1821,284,0), (1822,285,0), (1823,285,0), (1824,286,0), (1825,286,0), (1826,286,0), (1827,287,0), (1828,287,0), (1829,288,0), (1830,288,0), (1831,289,0), (1832,289,0), (1833,290,0), (1834,290,0), (1835,291,0), (1836,291,0), (1837,291,0), (1838,292,0), (1839,292,0), (1840,293,0), (1841,293,0), (1842,294,0), (1843,294,0), (1844,294,0), (1845,294,0), (1846,294,0), (1847,294,0), (1848,295,0), (1849,295,0), (1850,296,0), (1851,297,0), (1852,297,0), (1853,298,0), (1854,298,0), (1855,299,0), (1856,299,0), (1857,300,0), (1858,300,0), (1859,300,0), (1860,300,0), (1861,300,0), (1862,300,0), (1863,301,0), (1864,301,0), (1865,302,0), (1866,302,0), (1867,302,0), (1868,302,0), (1869,302,0), (1870,302,0), (1871,302,0), (1872,302,0), (1873,303,0), (1874,303,0), (1875,304,0), (1876,304,0), (1877,305,0), (1878,305,0), (1879,306,0), (1880,306,0), (1881,307,0), (1882,307,0), (1883,308,0), (1884,308,0), (1885,309,0), (1886,309,0), (1887,310,0), (1888,310,0), (1889,311,0), (1890,311,0), (1891,312,0), (1892,312,0), (1893,313,0), (1894,313,0), (1895,314,0), (1896,314,0), (1897,315,0), (1898,315,0), (1899,316,0), (1900,316,0), (1901,317,0), (1902,317,0), (1903,318,0), (1904,318,0), (1905,319,0), (1906,319,0), (1907,320,0), (1908,320,0), (1909,321,0), (1910,321,0), (1911,321,0), (1912,322,0), (1913,322,0), (1914,322,0), (1915,322,0), (1916,322,0), (1917,322,0), (1918,323,0), (1919,323,0), (1920,324,0), (1921,324,0), (1922,325,0), (1923,325,0), (1924,326,0), (1925,326,0), (1926,327,0), (1927,327,0), (1928,328,0), (1929,328,0), (1930,329,0), (1931,329,0), (1932,330,0), (1933,330,0), (1934,331,0), (1935,331,0), (1936,332,0), (1937,332,0), (1938,333,0), (1939,334,0), (1940,334,0), (1941,335,0), (1942,335,0), (1943,336,0), (1944,336,0), (1945,337,0), (1946,337,0), (1947,338,0), (1948,338,0), (1949,339,0), (1950,341,0), (1951,341,0), (1952,341,0), (1953,341,0), (1954,341,0), (1955,341,0), (1956,341,0), (1957,341,0), (1958,341,0), (1959,341,0), (1960,341,0), (1961,341,0), (1962,341,0), (1963,341,0), (1964,341,0), (1965,341,0), (1966,342,0), (1967,342,0), (1968,343,0), (1969,343,0), (1970,343,0), (1971,343,0), (1972,343,0), (1973,343,0), (1974,345,0), (1975,345,0), (1976,345,0), (1977,345,0), (1978,345,0), (1979,345,0), (1980,347,0), (1981,347,0), (1982,347,0), (1983,347,0), (1984,347,0), (1985,348,0), (1986,348,0), (1987,348,0), (1988,348,0), (1989,348,0), (1990,348,0), (1991,348,0), (1992,348,0), (1993,348,0), (1994,348,0), (1995,348,0), (1996,348,0), (1997,348,0), (1998,348,0), (1999,348,0), (2000,348,0), (2001,348,0), (2002,348,0), (2003,348,0), (2004,348,0), (2005,348,0), (2006,348,0), (2007,348,0), (2008,348,0), (2009,348,0), (2010,348,0), (2011,348,0), (2012,348,0), (2013,348,0), (2014,348,0), (2015,348,0), (2016,348,0), (2017,348,0), (2018,348,0), (2019,348,0), (2020,348,0), (2021,348,0), (2022,348,0), (2023,348,0), (2024,348,0), (2025,348,0), (2026,348,0), (2027,348,0), (2028,348,0), (2029,348,0), (2030,348,0), (2031,348,0), (2032,348,0), (2033,348,0), (2034,348,0), (2035,348,0), (2036,348,0), (2037,348,0), (2038,348,0), (2039,348,0), (2040,348,0), (2041,348,0), (2042,348,0), (2043,348,0), (2044,348,0), (2045,348,0), (2046,348,0), (2047,348,0), (2048,348,0), (2049,348,0), (2050,348,0), (2051,348,0), (2052,348,0), (2053,348,0), (2054,348,0), (2055,348,0), (2056,348,0), (2057,348,0), (2058,348,0), (2059,348,0), (2060,348,0), (2061,348,0), (2062,348,0), (2063,348,0), (2064,348,0), (2065,348,0), (2066,348,0), (2067,348,0), (2068,348,0), (2069,348,0), (2070,348,0), (2071,348,0), (2072,348,0), (2073,348,0), (2074,348,0), (2075,348,0), (2076,348,0), (2077,348,0), (2078,348,0), (2079,348,0), (2080,348,0), (2081,348,0), (2082,348,0), (2083,348,0), (2084,348,0), (2085,348,0), (2086,348,0), (2087,348,0), (2088,348,0), (2089,348,0), (2090,348,0), (2091,348,0), (2092,348,0), (2093,348,0), (2094,348,0), (2095,348,0), (2096,348,0), (2097,348,0), (2098,348,0), (2099,348,0), (2100,348,0), (2101,348,0), (2102,348,0), (2103,348,0), (2104,348,0), (2105,348,0), (2106,348,0), (2107,348,0), (2108,348,0), (2109,348,0), (2110,348,0), (2111,348,0), (2112,348,0), (2113,348,0), (2114,348,0), (2115,348,0), (2116,348,0), (2117,348,0), (2118,348,0), (2119,348,0), (2120,348,0), (2121,348,0), (2122,348,0), (2123,348,0), (2124,348,0), (2125,348,0), (2126,348,0), (2127,348,0), (2128,348,0), (2129,348,0), (2130,348,0), (2131,348,0), (2132,348,0), (2133,348,0), (2134,348,0), (2135,348,0), (2136,348,0), (2137,348,0), (2138,348,0), (2139,348,0), (2140,348,0), (2141,348,0), (2142,348,0), (2143,348,0), (2144,348,0), (2145,348,0), (2146,348,0), (2147,348,0), (2148,348,0), (2149,348,0), (2150,348,0), (2151,348,0), (2152,348,0), (2153,348,0), (2154,348,0), (2155,348,0), (2156,348,0), (2157,348,0), (2158,348,0), (2159,348,0), (2160,348,0), (2161,348,0), (2162,348,0), (2163,348,0), (2164,348,0), (2165,348,0), (2166,348,0), (2167,348,0), (2168,348,0), (2169,348,0), (2170,348,0), (2171,348,0), (2172,348,0), (2173,348,0), (2174,348,0), (2175,348,0), (2176,348,0), (2177,348,0), (2178,348,0), (2179,348,0), (2180,348,0), (2181,348,0), (2182,348,0), (2183,348,0), (2184,348,0), (2185,348,0), (2186,348,0), (2187,348,0), (2188,348,0), (2189,348,0), (2190,348,0), (2191,348,0), (2192,348,0), (2193,348,0), (2194,348,0), (2195,348,0), (2196,348,0), (2197,348,0), (2198,348,0), (2199,348,0), (2200,348,0), (2201,348,0), (2202,348,0), (2203,348,0), (2204,348,0), (2205,348,0), (2206,348,0), (2207,348,0), (2208,348,0), (2209,348,0), (2210,348,0), (2211,348,0), (2212,348,0), (2213,348,0), (2214,348,0), (2215,348,0), (2216,348,0), (2217,348,0), (2218,348,0), (2219,348,0), (2220,348,0), (2221,348,0), (2222,348,0), (2223,348,0), (2224,348,0), (2225,348,0), (2226,348,0), (2227,348,0), (2228,348,0), (2229,348,0), (2230,348,0), (2231,348,0), (2232,348,0), (2233,348,0), (2234,348,0), (2235,348,0), (2236,348,0), (2237,348,0), (2238,348,0), (2239,348,0), (2240,348,0), (2241,348,0), (2242,348,0), (2243,348,0), (2244,348,0), (2245,348,0), (2246,348,0), (2247,348,0), (2248,348,0), (2249,348,0), (2250,348,0), (2251,348,0), (2252,348,0), (2253,348,0), (2254,348,0), (2255,348,0), (2256,348,0), (2257,348,0), (2258,348,0), (2259,348,0), (2260,348,0), (2261,348,0), (2262,348,0), (2263,348,0), (2264,348,0), (2265,348,0), (2266,348,0), (2267,348,0), (2268,348,0), (2269,348,0), (2270,348,0), (2271,348,0), (2272,348,0), (2273,348,0), (2274,348,0), (2275,348,0), (2276,348,0), (2277,348,0), (2278,348,0), (2279,348,0), (2280,348,0), (2281,348,0), (2282,348,0), (2283,348,0), (2284,348,0), (2285,348,0), (2286,348,0), (2287,348,0), (2288,348,0), (2289,348,0), (2290,348,0), (2291,348,0), (2292,348,0), (2293,348,0), (2294,348,0), (2295,348,0), (2296,348,0), (2297,348,0), (2298,348,0), (2299,348,0), (2300,348,0), (2301,348,0), (2302,348,0), (2303,348,0), (2304,348,0), (2305,348,0), (2306,348,0), (2307,348,0), (2308,348,0), (2309,348,0), (2310,348,0), (2311,348,0), (2312,348,0), (2313,348,0), (2314,348,0), (2315,348,0), (2316,348,0), (2317,348,0), (2318,348,0), (2319,348,0), (2320,348,0), (2321,348,0), (2322,348,0), (2323,348,0), (2324,348,0), (2325,348,0), (2326,348,0), (2327,348,0), (2328,348,0), (2329,348,0), (2330,348,0), (2331,348,0), (2332,348,0), (2333,348,0), (2334,348,0), (2335,348,0), (2336,348,0), (2337,348,0), (2338,348,0), (2339,348,0), (2340,348,0), (2341,348,0), (2342,348,0), (2343,348,0), (2344,348,0), (2345,348,0), (2346,348,0), (2347,348,0), (2348,348,0), (2349,348,0), (2350,348,0), (2351,348,0), (2352,348,0), (2353,348,0), (2354,348,0), (2355,348,0), (2356,348,0), (2357,348,0), (2358,348,0), (2359,348,0), (2360,348,0), (2361,348,0), (2362,348,0), (2363,348,0), (2364,348,0), (2365,348,0), (2366,348,0), (2367,348,0), (2368,348,0), (2369,348,0), (2370,348,0), (2371,348,0), (2372,348,0), (2373,348,0), (2374,348,0), (2375,348,0), (2376,348,0), (2377,348,0), (2378,348,0), (2379,348,0), (2380,348,0), (2381,348,0), (2382,348,0), (2383,348,0), (2384,348,0), (2385,348,0), (2386,348,0), (2387,349,0), (2388,349,0), (2389,349,0), (2390,349,0), (2391,349,0), (2392,349,0), (2393,349,0), (2394,349,0), (2395,349,0), (2396,349,0), (2397,349,0), (2398,349,0), (2399,349,0), (2400,349,0), (2401,349,0), (2402,349,0), (2403,349,0), (2404,349,0), (2405,349,0), (2406,349,0), (2407,349,0), (2408,349,0), (2409,349,0), (2410,349,0), (2411,349,0), (2412,349,0), (2413,349,0), (2414,349,0), (2415,349,0), (2416,349,0), (2417,349,0), (2418,349,0), (2419,349,0), (2420,349,0), (2421,349,0), (2422,349,0), (2423,349,0), (2424,349,0), (2425,349,0), (2426,349,0), (2427,349,0), (2428,349,0), (2429,349,0), (2430,349,0), (2431,349,0), (2432,349,0), (2433,349,0), (2434,349,0), (2435,349,0), (2436,349,0), (2437,349,0), (2438,349,0), (2439,349,0), (2440,349,0), (2441,349,0), (2442,349,0), (2443,349,0), (2444,349,0), (2445,349,0), (2446,349,0), (2447,349,0), (2448,349,0), (2449,349,0), (2450,349,0), (2451,349,0), (2452,349,0), (2453,349,0), (2454,349,0), (2455,349,0), (2456,349,0), (2457,349,0), (2458,349,0), (2459,349,0), (2460,349,0), (2461,349,0), (2462,349,0), (2463,349,0), (2464,349,0), (2465,349,0), (2466,349,0), (2467,349,0), (2468,349,0), (2469,349,0), (2470,349,0), (2471,349,0), (2472,349,0), (2473,349,0), (2474,349,0), (2475,349,0), (2476,349,0), (2477,349,0), (2478,349,0), (2479,349,0), (2480,349,0), (2481,349,0), (2482,349,0), (2483,349,0), (2484,349,0), (2485,349,0), (2486,349,0), (2487,349,0), (2488,349,0), (2489,349,0), (2490,349,0), (2491,349,0), (2492,349,0), (2493,349,0), (2494,349,0), (2495,349,0), (2496,349,0), (2497,349,0), (2498,349,0), (2499,349,0), (2500,349,0), (2501,349,0), (2502,349,0), (2503,349,0), (2504,349,0), (2505,349,0), (2506,349,0), (2507,349,0), (2508,349,0), (2509,349,0), (2510,349,0), (2511,349,0), (2512,349,0), (2513,349,0), (2514,349,0), (2515,349,0), (2516,349,0), (2517,349,0), (2518,349,0), (2519,349,0), (2520,349,0), (2521,349,0), (2522,349,0), (2523,349,0), (2524,349,0), (2525,349,0), (2526,349,0), (2527,349,0), (2528,349,0), (2529,349,0), (2530,350,0), (2531,351,0), (2532,351,0), (2535,19,0), (2535,103,0), (2536,19,0), (2536,103,0), (2537,18,0), (2537,103,0), (2538,6,0), (2538,103,0), (2539,11,0), (2539,103,0), (2540,19,0), (2540,103,0), (2541,11,0), (2541,103,0), (2542,19,0), (2542,103,0), (2543,19,0), (2543,103,0), (2544,31,0), (2544,103,0), (2545,49,0), (2545,103,0), (2546,31,0), (2546,103,0), (2547,13,0), (2547,103,0), (2548,19,0), (2548,103,0), (2549,19,0), (2549,103,0), (2550,103,0), (2550,352,0), (2551,19,0), (2551,103,0), (2552,19,0), (2552,103,0), (2553,40,0), (2553,103,0), (2554,51,0), (2554,103,0), (2555,5,0), (2555,10,0), (2555,53,0), (2555,353,0), (2556,5,0), (2556,10,0), (2556,13,0), (2556,353,0), (2557,5,0), (2557,10,0), (2557,36,0), (2557,353,0), (2558,5,0), (2558,10,0), (2558,36,0), (2558,353,0), (2559,5,0), (2559,10,0), (2559,22,0), (2559,353,0), (2560,5,0), (2560,10,0), (2560,22,0), (2560,353,0), (2561,5,0), (2561,10,0), (2561,22,0), (2561,353,0), (2562,5,0), (2562,10,0), (2562,11,0), (2562,353,0), (2563,5,0), (2563,10,0), (2563,22,0), (2563,353,0), (2564,5,0), (2564,9,0), (2564,10,0), (2564,353,0), (2565,5,0), (2565,10,0), (2565,15,0), (2565,353,0), (2566,5,0), (2566,10,0), (2566,53,0), (2566,353,0), (2567,5,0), (2567,9,0), (2567,10,0), (2567,353,0), (2568,5,0), (2568,10,0), (2568,353,0), (2569,5,0), (2569,10,0), (2569,11,0), (2569,353,0), (2570,5,0), (2570,10,0), (2570,11,0), (2570,353,0), (2571,5,0), (2571,10,0), (2571,11,0), (2571,353,0), (2572,5,0), (2572,10,0), (2572,11,0), (2572,353,0), (2573,5,0), (2573,10,0), (2573,11,0), (2573,353,0), (2574,5,0), (2574,10,0), (2574,11,0), (2574,353,0), (2575,5,0), (2575,10,0), (2575,11,0), (2575,353,0), (2576,5,0), (2576,6,0), (2576,10,0), (2576,353,0), (2577,5,0), (2577,10,0), (2577,353,0), (2578,5,0), (2578,10,0), (2578,353,0), (2579,5,0), (2579,10,0), (2579,48,0), (2579,353,0), (2580,5,0), (2580,10,0), (2580,48,0), (2580,353,0), (2581,5,0), (2581,10,0), (2581,48,0), (2581,353,0), (2582,5,0), (2582,10,0), (2582,50,0), (2582,353,0), (2583,5,0), (2583,10,0), (2583,353,0), (2583,354,0), (2584,5,0), (2584,93,0), (2584,355,0), (2585,5,0), (2585,93,0), (2585,355,0), (2586,5,0), (2586,93,0), (2586,355,0), (2587,5,0), (2587,93,0), (2587,355,0), (2588,5,0), (2588,93,0), (2588,355,0), (2589,5,0), (2589,93,0), (2589,355,0), (2590,5,0), (2590,93,0), (2590,355,0), (2591,5,0), (2591,93,0), (2591,355,0), (2592,5,0), (2592,93,0), (2592,355,0), (2593,5,0), (2593,6,0), (2593,356,0), (2593,357,0), (2594,5,0), (2594,6,0), (2594,356,0), (2594,357,0), (2595,4,0), (2595,5,0), (2595,356,0), (2595,357,0), (2596,4,0), (2596,5,0), (2596,356,0), (2596,357,0), (2597,4,0), (2597,5,0), (2597,356,0), (2597,357,0), (2598,5,0), (2598,356,0), (2598,357,0), (2599,4,0), (2599,5,0), (2599,356,0), (2599,357,0), (2600,5,0), (2600,356,0), (2600,357,0), (2601,4,0), (2601,5,0), (2601,356,0), (2601,357,0), (2602,5,0), (2602,356,0), (2602,357,0), (2603,4,0), (2603,5,0), (2603,356,0), (2603,357,0), (2604,5,0), (2604,356,0), (2604,357,0), (2605,4,0), (2605,5,0), (2605,356,0), (2605,357,0), (2606,4,0), (2606,5,0), (2606,356,0), (2606,357,0), (2607,4,0), (2607,5,0), (2607,356,0), (2607,357,0), (2608,5,0), (2608,356,0), (2608,357,0), (2609,5,0), (2609,356,0), (2609,357,0), (2610,5,0), (2610,6,0), (2610,356,0), (2610,357,0), (2611,5,0), (2611,6,0), (2611,356,0), (2611,357,0), (2612,5,0), (2612,356,0), (2612,357,0), (2613,5,0), (2613,356,0), (2613,357,0), (2614,4,0), (2614,5,0), (2614,356,0), (2614,357,0), (2615,5,0), (2615,356,0), (2615,357,0), (2616,5,0), (2616,356,0), (2616,357,0), (2617,5,0), (2617,356,0), (2617,357,0), (2618,5,0), (2618,356,0), (2618,357,0), (2619,4,0), (2619,5,0), (2619,356,0), (2619,357,0), (2620,5,0), (2620,356,0), (2620,357,0), (2621,5,0), (2621,356,0), (2621,357,0), (2622,5,0), (2622,356,0), (2622,357,0), (2623,5,0), (2623,6,0), (2623,356,0), (2623,357,0), (2624,5,0), (2624,6,0), (2624,356,0), (2624,357,0), (2625,5,0), (2625,6,0), (2625,356,0), (2625,357,0), (2626,5,0), (2626,6,0), (2626,356,0), (2626,357,0), (2627,5,0), (2627,6,0), (2627,356,0), (2627,357,0), (2628,5,0), (2628,6,0), (2628,356,0), (2628,357,0), (2629,5,0), (2629,18,0), (2629,356,0), (2629,357,0), (2630,5,0), (2630,18,0), (2630,356,0), (2630,357,0), (2631,5,0), (2631,18,0), (2631,356,0), (2631,357,0), (2632,6,0), (2632,358,0), (2633,6,0), (2633,358,0), (2634,6,0), (2634,358,0), (2635,6,0), (2635,358,0), (2636,6,0), (2636,358,0), (2637,6,0), (2637,358,0), (2638,6,0), (2638,358,0), (2639,48,0), (2639,358,0), (2640,6,0), (2640,358,0), (2641,6,0), (2641,358,0), (2642,27,0), (2642,358,0), (2643,6,0), (2643,358,0), (2644,6,0), (2644,358,0), (2645,6,0), (2645,358,0), (2646,6,0), (2646,358,0), (2647,6,0), (2647,358,0), (2648,6,0), (2648,358,0), (2649,6,0), (2649,358,0), (2650,48,0), (2650,358,0), (2651,5,0), (2651,6,0), (2651,358,0), (2652,6,0), (2652,358,0), (2653,6,0), (2653,358,0), (2654,6,0), (2654,358,0), (2655,6,0), (2655,358,0), (2656,358,0), (2657,6,0), (2657,358,0), (2658,6,0), (2658,358,0), (2659,6,0), (2659,358,0), (2660,5,0), (2660,10,0), (2660,31,0), (2660,359,0), (2661,5,0), (2661,10,0), (2661,31,0), (2661,359,0), (2662,5,0), (2662,10,0), (2662,31,0), (2662,359,0), (2663,5,0), (2663,10,0), (2663,31,0), (2663,359,0), (2664,5,0), (2664,10,0), (2664,31,0), (2664,359,0), (2665,5,0), (2665,10,0), (2665,359,0), (2666,5,0), (2666,10,0), (2666,31,0), (2666,359,0), (2667,5,0), (2667,10,0), (2667,11,0), (2667,359,0), (2668,5,0), (2668,10,0), (2668,23,0), (2668,359,0), (2669,5,0), (2669,10,0), (2669,31,0), (2669,359,0), (2670,5,0), (2670,6,0), (2670,10,0), (2670,359,0), (2671,5,0), (2671,10,0), (2671,31,0), (2671,359,0), (2672,5,0), (2672,10,0), (2672,22,0), (2672,360,0), (2673,5,0), (2673,10,0), (2673,31,0), (2673,360,0), (2674,5,0), (2674,10,0), (2674,11,0), (2674,360,0), (2675,5,0), (2675,10,0), (2675,22,0), (2675,360,0), (2676,5,0), (2676,6,0), (2676,10,0), (2676,360,0), (2677,5,0), (2677,10,0), (2677,18,0), (2677,360,0), (2678,5,0), (2678,6,0), (2678,10,0), (2678,360,0), (2679,5,0), (2679,6,0), (2679,10,0), (2679,360,0), (2680,5,0), (2680,10,0), (2680,13,0), (2680,360,0), (2681,5,0), (2681,10,0), (2681,18,0), (2681,360,0), (2682,5,0), (2682,6,0), (2682,10,0), (2682,360,0), (2683,5,0), (2683,6,0), (2683,10,0), (2683,360,0), (2684,5,0), (2684,10,0), (2684,13,0), (2684,360,0), (2685,5,0), (2685,10,0), (2685,40,0), (2685,360,0), (2686,5,0), (2686,10,0), (2686,53,0), (2686,360,0), (2687,5,0), (2687,10,0), (2687,40,0), (2687,360,0), (2688,5,0), (2688,10,0), (2688,13,0), (2688,360,0), (2689,5,0), (2689,10,0), (2689,40,0), (2689,360,0), (2690,5,0), (2690,10,0), (2690,53,0), (2690,360,0), (2691,5,0), (2691,10,0), (2691,40,0), (2691,360,0), (2692,5,0), (2692,10,0), (2692,19,0), (2692,360,0), (2693,5,0), (2693,10,0), (2693,19,0), (2693,360,0), (2694,5,0), (2694,10,0), (2694,13,0), (2694,360,0), (2695,5,0), (2695,10,0), (2695,13,0), (2695,360,0), (2696,5,0), (2696,10,0), (2696,31,0), (2696,360,0), (2697,5,0), (2697,10,0), (2697,31,0), (2697,360,0), (2698,5,0), (2698,10,0), (2698,31,0), (2698,360,0), (2699,5,0), (2699,10,0), (2699,360,0), (2700,5,0), (2700,10,0), (2700,360,0), (2701,5,0), (2701,10,0), (2701,360,0), (2702,5,0), (2702,10,0), (2702,360,0), (2703,5,0), (2703,10,0), (2703,360,0), (2704,5,0), (2704,10,0), (2704,360,0), (2705,5,0), (2705,10,0), (2705,360,0), (2706,5,0), (2706,10,0), (2706,360,0), (2707,5,0), (2707,10,0), (2707,360,0), (2708,5,0), (2708,10,0), (2708,360,0), (2709,5,0), (2709,10,0), (2709,360,0), (2710,5,0), (2710,10,0), (2710,360,0), (2711,5,0), (2711,10,0), (2711,360,0), (2712,5,0), (2712,10,0), (2712,360,0), (2713,5,0), (2713,10,0), (2713,360,0), (2714,5,0), (2714,10,0), (2714,18,0), (2714,360,0), (2715,5,0), (2715,10,0), (2715,18,0), (2715,360,0), (2716,5,0), (2716,6,0), (2716,10,0), (2716,360,0), (2717,5,0), (2717,10,0), (2717,360,0), (2718,5,0), (2718,10,0), (2718,360,0), (2719,5,0), (2719,10,0), (2719,360,0), (2720,5,0), (2720,10,0), (2720,360,0), (2721,5,0), (2721,10,0), (2721,360,0), (2722,5,0), (2722,10,0), (2722,31,0), (2722,360,0), (2723,5,0), (2723,10,0), (2723,31,0), (2723,360,0), (2724,5,0), (2724,10,0), (2724,31,0), (2724,360,0), (2725,5,0), (2725,10,0), (2725,31,0), (2725,360,0), (2726,5,0), (2726,10,0), (2726,31,0), (2726,360,0), (2727,5,0), (2727,10,0), (2727,31,0), (2727,360,0), (2728,5,0), (2728,10,0), (2728,36,0), (2728,360,0), (2729,5,0), (2729,10,0), (2729,19,0), (2729,361,0), (2730,5,0), (2730,10,0), (2730,22,0), (2730,361,0), (2731,5,0), (2731,10,0), (2731,31,0), (2731,361,0), (2732,5,0), (2732,10,0), (2732,53,0), (2732,361,0), (2733,5,0), (2733,10,0), (2733,22,0), (2733,361,0), (2734,5,0), (2734,10,0), (2734,22,0), (2734,361,0), (2735,5,0), (2735,10,0), (2735,22,0), (2735,361,0), (2736,5,0), (2736,10,0), (2736,53,0), (2736,361,0), (2737,5,0), (2737,9,0), (2737,10,0), (2737,361,0), (2738,5,0), (2738,10,0), (2738,53,0), (2738,361,0), (2739,5,0), (2739,10,0), (2739,15,0), (2739,361,0), (2740,5,0), (2740,10,0), (2740,15,0), (2740,361,0), (2741,5,0), (2741,10,0), (2741,15,0), (2741,361,0), (2742,5,0), (2742,9,0), (2742,10,0), (2742,361,0), (2743,5,0), (2743,10,0), (2743,15,0), (2743,361,0), (2744,5,0), (2744,10,0), (2744,15,0), (2744,361,0), (2745,5,0), (2745,10,0), (2745,14,0), (2745,361,0), (2746,5,0), (2746,10,0), (2746,13,0), (2746,361,0), (2747,5,0), (2747,10,0), (2747,13,0), (2747,361,0), (2748,5,0), (2748,6,0), (2748,10,0), (2748,361,0), (2749,5,0), (2749,10,0), (2749,11,0), (2749,361,0), (2750,5,0), (2750,10,0), (2750,13,0), (2750,361,0), (2751,5,0), (2751,10,0), (2751,13,0), (2751,361,0), (2752,5,0), (2752,10,0), (2752,40,0), (2752,361,0), (2753,5,0), (2753,10,0), (2753,13,0), (2753,361,0), (2754,5,0), (2754,10,0), (2754,27,0), (2754,361,0), (2755,5,0), (2755,10,0), (2755,13,0), (2755,361,0), (2756,5,0), (2756,10,0), (2756,13,0), (2756,361,0), (2757,5,0), (2757,10,0), (2757,40,0), (2757,361,0), (2758,5,0), (2758,10,0), (2758,40,0), (2758,361,0), (2759,5,0), (2759,10,0), (2759,40,0), (2759,361,0), (2760,5,0), (2760,10,0), (2760,13,0), (2760,361,0), (2761,5,0), (2761,10,0), (2761,13,0), (2761,361,0), (2762,5,0), (2762,10,0), (2762,361,0), (2762,362,0), (2763,5,0), (2763,10,0), (2763,48,0), (2763,361,0), (2764,5,0), (2764,10,0), (2764,48,0), (2764,361,0), (2765,5,0), (2765,10,0), (2765,48,0), (2765,361,0), (2766,5,0), (2766,10,0), (2766,48,0), (2766,361,0), (2767,5,0), (2767,19,0), (2767,361,0), (2767,363,0), (2768,5,0), (2768,10,0), (2768,31,0), (2768,361,0), (2769,5,0), (2769,10,0), (2769,354,0), (2769,361,0), (2770,5,0), (2770,10,0), (2770,48,0), (2770,364,0), (2771,5,0), (2771,10,0), (2771,48,0), (2771,364,0), (2772,5,0), (2772,10,0), (2772,48,0), (2772,364,0), (2773,5,0), (2773,10,0), (2773,49,0), (2773,365,0), (2774,5,0), (2774,10,0), (2774,22,0), (2774,365,0), (2775,5,0), (2775,10,0), (2775,19,0), (2775,365,0), (2776,5,0), (2776,10,0), (2776,53,0), (2776,365,0), (2777,5,0), (2777,10,0), (2777,53,0), (2777,365,0), (2778,5,0), (2778,9,0), (2778,10,0), (2778,365,0), (2779,5,0), (2779,10,0), (2779,14,0), (2779,365,0), (2780,5,0), (2780,10,0), (2780,13,0), (2780,365,0), (2781,5,0), (2781,10,0), (2781,19,0), (2781,365,0), (2782,5,0), (2782,10,0), (2782,31,0), (2782,365,0), (2783,5,0), (2783,10,0), (2783,11,0), (2783,365,0), (2784,5,0), (2784,6,0), (2784,10,0), (2784,365,0), (2785,5,0), (2785,10,0), (2785,365,0), (2786,5,0), (2786,6,0), (2786,10,0), (2786,365,0), (2787,5,0), (2787,10,0), (2787,36,0), (2787,365,0), (2788,5,0), (2788,10,0), (2788,31,0), (2788,366,0), (2789,5,0), (2789,6,0), (2789,10,0), (2789,366,0), (2790,5,0), (2790,10,0), (2790,31,0), (2790,366,0), (2791,5,0), (2791,10,0), (2791,31,0), (2791,366,0), (2792,5,0), (2792,10,0), (2792,31,0), (2792,366,0), (2793,5,0), (2793,10,0), (2793,18,0), (2793,366,0), (2794,5,0), (2794,10,0), (2794,49,0), (2794,366,0), (2795,5,0), (2795,10,0), (2795,18,0), (2795,366,0), (2796,5,0), (2796,10,0), (2796,18,0), (2796,366,0), (2797,5,0), (2797,6,0), (2797,10,0), (2797,366,0), (2798,5,0), (2798,10,0), (2798,49,0), (2798,366,0), (2799,5,0), (2799,10,0), (2799,49,0), (2799,366,0), (2800,5,0), (2800,10,0), (2800,49,0), (2800,366,0), (2801,5,0), (2801,6,0), (2801,10,0), (2801,366,0), (2802,5,0), (2802,10,0), (2802,49,0), (2802,366,0), (2803,5,0), (2803,10,0), (2803,23,0), (2803,366,0), (2804,5,0), (2804,10,0), (2804,49,0), (2804,366,0), (2805,5,0), (2805,10,0), (2805,49,0), (2805,366,0), (2806,5,0), (2806,10,0), (2806,49,0), (2806,366,0), (2807,5,0), (2807,10,0), (2807,50,0), (2807,366,0), (2808,5,0), (2808,10,0), (2808,50,0), (2808,366,0), (2809,5,0), (2809,10,0), (2809,50,0), (2809,366,0), (2810,5,0), (2810,10,0), (2810,49,0), (2810,366,0), (2811,5,0), (2811,10,0), (2811,29,0), (2811,366,0), (2812,5,0), (2812,10,0), (2812,29,0), (2812,366,0), (2813,5,0), (2813,10,0), (2813,49,0), (2813,366,0), (2814,5,0), (2814,10,0), (2814,49,0), (2814,366,0), (2815,5,0), (2815,10,0), (2815,49,0), (2815,366,0), (2816,5,0), (2816,10,0), (2816,29,0), (2816,366,0), (2817,5,0), (2817,10,0), (2817,49,0), (2817,366,0), (2818,5,0), (2818,10,0), (2818,29,0), (2818,366,0), (2819,5,0), (2819,10,0), (2819,49,0), (2819,366,0), (2820,5,0), (2820,10,0), (2820,31,0), (2820,366,0), (2821,5,0), (2821,10,0), (2821,31,0), (2821,366,0), (2822,5,0), (2822,10,0), (2822,11,0), (2822,366,0), (2823,5,0), (2823,10,0), (2823,11,0), (2823,366,0), (2824,5,0), (2824,10,0), (2824,366,0), (2825,5,0), (2825,6,0), (2825,10,0), (2825,366,0), (2826,5,0), (2826,10,0), (2826,27,0), (2826,366,0), (2827,5,0), (2827,10,0), (2827,49,0), (2827,366,0), (2828,5,0), (2828,10,0), (2828,49,0), (2828,366,0), (2829,5,0), (2829,10,0), (2829,49,0), (2829,366,0), (2830,5,0), (2830,10,0), (2830,53,0), (2830,367,0), (2831,5,0), (2831,10,0), (2831,53,0), (2831,367,0), (2832,5,0), (2832,10,0), (2832,53,0), (2832,367,0), (2833,5,0), (2833,10,0), (2833,53,0), (2833,367,0), (2834,5,0), (2834,10,0), (2834,53,0), (2834,367,0), (2835,5,0), (2835,10,0), (2835,53,0), (2835,367,0), (2836,5,0), (2836,10,0), (2836,14,0), (2836,367,0), (2837,5,0), (2837,10,0), (2837,14,0), (2837,367,0), (2838,5,0), (2838,10,0), (2838,14,0), (2838,367,0), (2839,5,0), (2839,10,0), (2839,11,0), (2839,367,0), (2840,5,0), (2840,10,0), (2840,11,0), (2840,367,0), (2841,5,0), (2841,10,0), (2841,11,0), (2841,367,0), (2842,5,0), (2842,10,0), (2842,81,0), (2842,368,0), (2843,5,0), (2843,6,0), (2843,10,0), (2843,368,0), (2844,5,0), (2844,10,0), (2844,29,0), (2844,368,0), (2845,5,0), (2845,10,0), (2845,13,0), (2845,368,0), (2846,5,0), (2846,10,0), (2846,81,0), (2846,368,0), (2847,5,0), (2847,10,0), (2847,31,0), (2847,368,0), (2848,5,0), (2848,10,0), (2848,31,0), (2848,368,0), (2849,5,0), (2849,10,0), (2849,31,0), (2849,368,0), (2850,5,0), (2850,10,0), (2850,40,0), (2850,368,0), (2851,5,0), (2851,10,0), (2851,15,0), (2851,368,0), (2852,5,0), (2852,10,0), (2852,13,0), (2852,368,0), (2853,5,0), (2853,10,0), (2853,15,0), (2853,368,0), (2854,5,0), (2854,9,0), (2854,10,0), (2854,368,0), (2855,5,0), (2855,10,0), (2855,94,0), (2855,368,0), (2856,5,0), (2856,10,0), (2856,22,0), (2856,368,0), (2857,5,0), (2857,10,0), (2857,22,0), (2857,368,0), (2858,5,0), (2858,9,0), (2858,10,0), (2858,368,0), (2859,5,0), (2859,10,0), (2859,53,0), (2859,368,0), (2860,5,0), (2860,10,0), (2860,14,0), (2860,368,0), (2861,5,0), (2861,10,0), (2861,13,0), (2861,368,0), (2862,5,0), (2862,10,0), (2862,13,0), (2862,368,0), (2863,5,0), (2863,10,0), (2863,19,0), (2863,368,0), (2864,5,0), (2864,10,0), (2864,48,0), (2864,368,0), (2865,5,0), (2865,10,0), (2865,31,0), (2865,368,0), (2866,5,0), (2866,10,0), (2866,31,0), (2866,368,0), (2867,5,0), (2867,10,0), (2867,31,0), (2867,368,0), (2868,5,0), (2868,10,0), (2868,31,0), (2868,368,0), (2869,5,0), (2869,6,0), (2869,10,0), (2869,368,0), (2870,5,0), (2870,6,0), (2870,10,0), (2870,368,0), (2871,5,0), (2871,6,0), (2871,10,0), (2871,368,0), (2872,5,0), (2872,10,0), (2872,31,0), (2872,368,0), (2873,5,0), (2873,10,0), (2873,31,0), (2873,368,0), (2874,5,0), (2874,10,0), (2874,31,0), (2874,368,0), (2875,5,0), (2875,10,0), (2875,31,0), (2875,368,0), (2876,5,0), (2876,10,0), (2876,31,0), (2876,368,0), (2877,5,0), (2877,10,0), (2877,31,0), (2877,368,0), (2878,5,0), (2878,10,0), (2878,368,0), (2879,5,0), (2879,10,0), (2879,11,0), (2879,368,0), (2880,5,0), (2880,10,0), (2880,368,0), (2881,5,0), (2881,10,0), (2881,27,0), (2881,368,0), (2882,5,0), (2882,10,0), (2882,11,0), (2882,368,0), (2883,5,0), (2883,10,0), (2883,18,0), (2883,368,0), (2884,5,0), (2884,10,0), (2884,18,0), (2884,368,0), (2885,5,0), (2885,10,0), (2885,368,0), (2886,5,0), (2886,10,0), (2886,18,0), (2886,368,0), (2887,5,0), (2887,6,0), (2887,10,0), (2887,368,0), (2888,5,0), (2888,10,0), (2888,48,0), (2888,368,0), (2889,5,0), (2889,10,0), (2889,50,0), (2889,368,0), (2890,5,0), (2890,10,0), (2890,81,0), (2890,368,0), (2891,5,0), (2891,10,0), (2891,81,0), (2891,368,0), (2892,5,0), (2892,10,0), (2892,81,0), (2892,368,0), (2893,5,0), (2893,10,0), (2893,81,0), (2893,368,0), (2894,5,0), (2894,10,0), (2894,81,0), (2894,368,0), (2895,5,0), (2895,10,0), (2895,368,0), (2896,5,0), (2896,10,0), (2896,49,0), (2896,368,0), (2897,5,0), (2897,10,0), (2897,49,0), (2897,368,0), (2898,5,0), (2898,10,0), (2898,368,0), (2899,5,0), (2899,10,0), (2899,368,0), (2900,5,0), (2900,10,0), (2900,368,0), (2901,5,0), (2901,10,0), (2901,368,0), (2902,5,0), (2902,10,0), (2902,368,0), (2903,5,0), (2903,10,0), (2903,368,0), (2904,5,0), (2904,10,0), (2904,368,0), (2905,5,0), (2905,10,0), (2905,368,0), (2906,5,0), (2906,10,0), (2906,368,0), (2907,5,0), (2907,10,0), (2907,49,0), (2907,368,0), (2908,5,0), (2908,10,0), (2908,11,0), (2908,369,0), (2909,5,0), (2909,10,0), (2909,11,0), (2909,369,0), (2910,5,0), (2910,10,0), (2910,11,0), (2910,369,0), (2911,5,0), (2911,10,0), (2911,369,0), (2912,5,0), (2912,10,0), (2912,369,0), (2913,5,0), (2913,10,0), (2913,11,0), (2913,369,0), (2914,5,0), (2914,10,0), (2914,11,0), (2914,369,0), (2915,5,0), (2915,10,0), (2915,11,0), (2915,370,0), (2916,5,0), (2916,10,0), (2916,22,0), (2916,370,0), (2917,5,0), (2917,10,0), (2917,40,0), (2917,370,0), (2918,5,0), (2918,10,0), (2918,31,0), (2918,370,0), (2919,5,0), (2919,10,0), (2919,50,0), (2919,370,0), (2920,5,0), (2920,10,0), (2920,18,0), (2920,370,0), (2921,5,0), (2921,10,0), (2921,11,0), (2921,370,0), (2922,5,0), (2922,10,0), (2922,11,0), (2922,370,0), (2923,5,0), (2923,10,0), (2923,11,0), (2923,370,0), (2924,5,0), (2924,10,0), (2924,11,0), (2924,370,0), (2925,5,0), (2925,10,0), (2925,50,0), (2925,370,0), (2926,5,0), (2926,10,0), (2926,50,0), (2926,370,0), (2927,5,0), (2927,10,0), (2927,31,0), (2927,371,0), (2928,5,0), (2928,10,0), (2928,13,0), (2928,371,0), (2929,5,0), (2929,10,0), (2929,49,0), (2929,371,0), (2930,5,0), (2930,10,0), (2930,49,0), (2930,371,0), (2931,5,0), (2931,10,0), (2931,372,0), (2932,5,0), (2932,10,0), (2932,372,0), (2933,5,0), (2933,10,0), (2933,36,0), (2933,372,0), (2934,5,0), (2934,10,0), (2934,36,0), (2934,372,0), (2935,5,0), (2935,10,0), (2935,372,0), (2936,5,0), (2936,10,0), (2936,372,0), (2937,5,0), (2937,10,0), (2937,372,0), (2938,5,0), (2938,10,0), (2938,372,0), (2939,5,0), (2939,10,0), (2939,372,0), (2940,5,0), (2940,10,0), (2940,372,0), (2941,5,0), (2941,10,0), (2941,372,0), (2942,5,0), (2942,10,0), (2942,372,0), (2943,5,0), (2943,10,0), (2943,372,0), (2944,5,0), (2944,10,0), (2944,11,0), (2944,372,0), (2945,5,0), (2945,10,0), (2945,372,0), (2946,5,0), (2946,10,0), (2946,372,0), (2947,5,0), (2947,10,0), (2947,372,0), (2948,5,0), (2948,10,0), (2948,18,0), (2948,372,0), (2949,5,0), (2949,10,0), (2949,372,0), (2950,5,0), (2950,9,0), (2950,10,0), (2950,373,0), (2951,5,0), (2951,10,0), (2951,51,0), (2951,373,0), (2952,5,0), (2952,9,0), (2952,10,0), (2952,373,0), (2953,5,0), (2953,9,0), (2953,10,0), (2953,373,0), (2954,5,0), (2954,9,0), (2954,10,0), (2954,373,0), (2955,5,0), (2955,10,0), (2955,51,0), (2955,373,0), (2956,5,0), (2956,10,0), (2956,352,0), (2956,373,0), (2957,5,0), (2957,10,0), (2957,373,0), (2957,374,0), (2958,5,0), (2958,10,0), (2958,352,0), (2958,373,0), (2959,5,0), (2959,10,0), (2959,15,0), (2959,373,0), (2960,5,0), (2960,10,0), (2960,22,0), (2960,373,0), (2961,5,0), (2961,10,0), (2961,53,0), (2961,373,0), (2962,5,0), (2962,9,0), (2962,10,0), (2962,373,0), (2963,5,0), (2963,10,0), (2963,14,0), (2963,373,0), (2964,5,0), (2964,10,0), (2964,14,0), (2964,373,0), (2965,5,0), (2965,10,0), (2965,14,0), (2965,373,0), (2966,5,0), (2966,10,0), (2966,54,0), (2966,373,0), (2967,5,0), (2967,10,0), (2967,13,0), (2967,373,0), (2968,5,0), (2968,10,0), (2968,373,0), (2968,375,0), (2969,5,0), (2969,10,0), (2969,19,0), (2969,373,0), (2970,5,0), (2970,10,0), (2970,31,0), (2970,373,0), (2971,5,0), (2971,10,0), (2971,11,0), (2971,373,0), (2972,5,0), (2972,10,0), (2972,40,0), (2972,373,0), (2973,5,0), (2973,6,0), (2973,10,0), (2973,373,0), (2974,5,0), (2974,10,0), (2974,49,0), (2974,373,0), (2975,5,0), (2975,10,0), (2975,29,0), (2975,373,0), (2976,5,0), (2976,10,0), (2976,23,0), (2976,373,0), (2977,5,0), (2977,10,0), (2977,36,0), (2977,373,0), (2978,5,0), (2978,10,0), (2978,373,0), (2978,376,0), (2979,5,0), (2979,10,0), (2979,50,0), (2979,373,0), (2980,5,0), (2980,6,0), (2980,10,0), (2980,373,0), (2981,5,0), (2981,374,0), (2981,381,0), (2981,382,0), (2982,5,0), (2982,10,0), (2982,352,0), (2982,373,0), (2983,5,0), (2983,10,0), (2983,352,0), (2983,373,0), (2984,5,0), (2984,374,0), (2984,381,0), (2984,382,0), (2985,5,0), (2985,10,0), (2985,15,0), (2985,373,0), (2986,5,0), (2986,10,0), (2986,373,0), (2986,377,0), (2987,5,0), (2987,10,0), (2987,22,0), (2987,373,0), (2988,5,0), (2988,10,0), (2988,22,0), (2988,373,0), (2989,5,0), (2989,10,0), (2989,49,0), (2989,373,0), (2990,5,0), (2990,10,0), (2990,49,0), (2990,373,0), (2991,5,0), (2991,10,0), (2991,49,0), (2991,373,0), (2992,5,0), (2992,10,0), (2992,22,0), (2992,373,0), (2993,5,0), (2993,10,0), (2993,22,0), (2993,373,0), (2994,5,0), (2994,10,0), (2994,22,0), (2994,373,0), (2995,5,0), (2995,10,0), (2995,22,0), (2995,373,0), (2996,5,0), (2996,10,0), (2996,22,0), (2996,373,0), (2997,5,0), (2997,10,0), (2997,53,0), (2997,373,0), (2998,5,0), (2998,9,0), (2998,10,0), (2998,373,0), (2999,5,0), (2999,10,0), (2999,54,0), (2999,373,0), (3000,5,0), (3000,10,0), (3000,23,0), (3000,373,0), (3001,5,0), (3001,10,0), (3001,40,0), (3001,373,0), (3002,5,0), (3002,10,0), (3002,373,0), (3003,5,0), (3003,10,0), (3003,53,0), (3003,378,0), (3004,5,0), (3004,10,0), (3004,53,0), (3004,378,0), (3005,5,0), (3005,10,0), (3005,377,0), (3005,378,0), (3006,5,0), (3006,10,0), (3006,11,0), (3006,378,0), (3007,5,0), (3007,10,0), (3007,11,0), (3007,378,0), (3008,5,0), (3008,10,0), (3008,11,0), (3008,378,0), (3009,5,0), (3009,10,0), (3009,104,0), (3009,378,0), (3010,5,0), (3010,10,0), (3010,53,0), (3010,378,0), (3011,5,0), (3011,10,0), (3011,53,0), (3011,378,0), (3012,5,0), (3012,10,0), (3012,53,0), (3012,378,0), (3013,5,0), (3013,10,0), (3013,53,0), (3013,378,0), (3014,5,0), (3014,10,0), (3014,29,0), (3014,378,0), (3015,5,0), (3015,10,0), (3015,40,0), (3015,378,0), (3016,5,0), (3016,9,0), (3016,10,0), (3016,378,0), (3017,5,0), (3017,10,0), (3017,11,0), (3017,378,0), (3018,5,0), (3018,10,0), (3018,11,0), (3018,378,0), (3019,5,0), (3019,10,0), (3019,11,0), (3019,378,0), (3020,5,0), (3020,10,0), (3020,13,0), (3020,379,0), (3021,5,0), (3021,10,0), (3021,18,0), (3021,379,0), (3022,5,0), (3022,10,0), (3022,13,0), (3022,379,0), (3023,5,0), (3023,10,0), (3023,13,0), (3023,379,0), (3024,5,0), (3024,10,0), (3024,379,0), (3025,5,0), (3025,10,0), (3025,13,0), (3025,379,0), (3026,5,0), (3026,10,0), (3026,23,0), (3026,380,0), (3029,5,0), (3029,374,0), (3029,381,0), (3029,382,0), (3030,5,0), (3030,374,0), (3030,381,0), (3030,382,0), (3031,5,0), (3031,10,0), (3031,13,0), (3031,383,0), (3032,5,0), (3032,10,0), (3032,11,0), (3032,383,0), (3033,5,0), (3033,10,0), (3033,94,0), (3033,386,0), (3034,5,0), (3034,10,0), (3034,94,0), (3034,386,0), (3035,808,0), (3037,5,0), (3037,6,0), (3037,390,0), (3037,391,0), (3038,5,0), (3038,10,0), (3038,13,0), (3038,393,0), (3039,5,0), (3039,10,0), (3039,13,0), (3039,393,0), (3040,5,0), (3040,10,0), (3040,13,0), (3040,393,0), (3041,5,0), (3041,10,0), (3041,13,0), (3041,393,0), (3042,5,0), (3042,10,0), (3042,31,0), (3042,395,0), (3043,4,0), (3043,5,0), (3043,10,0), (3043,395,0), (3044,5,0), (3044,10,0), (3044,13,0), (3044,395,0), (3045,5,0), (3045,10,0), (3045,396,0), (3046,5,0), (3046,6,0), (3046,357,0), (3046,399,0), (3047,5,0), (3047,6,0), (3047,357,0), (3047,406,0), (3048,4,0), (3048,5,0), (3048,357,0), (3048,406,0), (3049,4,0), (3049,5,0), (3049,357,0), (3049,406,0), (3050,5,0), (3050,10,0), (3050,407,0), (3051,5,0), (3051,10,0), (3051,48,0), (3051,407,0), (3052,5,0), (3052,10,0), (3052,48,0), (3052,407,0), (3053,5,0), (3053,27,0), (3053,357,0), (3053,409,0), (3054,5,0), (3054,6,0), (3054,357,0), (3054,411,0), (3055,5,0), (3055,18,0), (3055,357,0), (3055,411,0), (3056,4,0), (3056,5,0), (3056,357,0), (3056,419,0), (3057,4,0), (3057,5,0), (3057,357,0), (3057,419,0), (3058,4,0), (3058,5,0), (3058,357,0), (3058,419,0), (3059,5,0), (3059,6,0), (3059,357,0), (3059,423,0), (3060,5,0), (3060,6,0), (3060,357,0), (3060,423,0), (3061,5,0), (3061,18,0), (3061,357,0), (3061,425,0), (3062,5,0), (3062,18,0), (3062,357,0), (3062,425,0), (3063,5,0), (3063,18,0), (3063,357,0), (3063,425,0), (3064,4,0), (3064,5,0), (3064,357,0), (3064,426,0), (3065,4,0), (3065,5,0), (3065,357,0), (3065,426,0), (3066,5,0), (3066,18,0), (3066,357,0), (3066,426,0), (3067,4,0), (3067,5,0), (3067,357,0), (3067,432,0), (3068,4,0), (3068,5,0), (3068,357,0), (3068,432,0), (3069,4,0), (3069,5,0), (3069,357,0), (3069,432,0), (3070,5,0), (3070,357,0), (3070,435,0), (3071,5,0), (3071,6,0), (3071,10,0), (3071,436,0), (3072,5,0), (3072,6,0), (3072,10,0), (3072,436,0), (3073,5,0), (3073,6,0), (3073,10,0), (3073,436,0), (3074,5,0), (3074,6,0), (3074,10,0), (3074,436,0), (3075,5,0), (3075,6,0), (3075,10,0), (3075,436,0), (3076,5,0), (3076,6,0), (3076,10,0), (3076,436,0), (3077,5,0), (3077,6,0), (3077,10,0), (3077,436,0), (3078,5,0), (3078,10,0), (3078,31,0), (3078,437,0), (3079,5,0), (3079,10,0), (3079,19,0), (3079,437,0), (3080,5,0), (3080,10,0), (3080,19,0), (3080,437,0), (3081,5,0), (3081,10,0), (3081,23,0), (3081,438,0), (3082,5,0), (3082,10,0), (3082,31,0), (3082,438,0), (3083,5,0), (3083,10,0), (3083,31,0), (3083,438,0), (3084,5,0), (3084,10,0), (3084,23,0), (3084,441,0), (3085,5,0), (3085,10,0), (3085,23,0), (3085,442,0), (3086,5,0), (3086,10,0), (3086,23,0), (3086,442,0), (3087,5,0), (3087,9,0), (3087,10,0), (3087,442,0), (3088,5,0), (3088,6,0), (3088,10,0), (3088,443,0), (3089,5,0), (3089,10,0), (3089,27,0), (3089,444,0), (3090,5,0), (3090,6,0), (3090,10,0), (3090,444,0), (3091,5,0), (3091,10,0), (3091,31,0), (3091,444,0), (3092,5,0), (3092,10,0), (3092,11,0), (3092,445,0), (3093,5,0), (3093,10,0), (3093,31,0), (3093,446,0), (3094,5,0), (3094,10,0), (3094,31,0), (3094,446,0), (3095,5,0), (3095,10,0), (3095,447,0), (3096,5,0), (3096,6,0), (3096,10,0), (3096,447,0), (3097,5,0), (3097,10,0), (3097,449,0), (3098,5,0), (3098,10,0), (3098,40,0), (3098,449,0), (3099,5,0), (3099,19,0), (3099,450,0), (3099,451,0), (3100,5,0), (3100,19,0), (3100,450,0), (3100,451,0), (3101,5,0), (3101,450,0), (3101,451,0), (3102,5,0), (3102,36,0), (3102,450,0), (3102,451,0), (3103,5,0), (3103,36,0), (3103,450,0), (3103,451,0), (3104,5,0), (3104,36,0), (3104,450,0), (3104,451,0), (3105,5,0), (3105,94,0), (3105,683,0), (3105,787,0), (3106,5,0), (3106,10,0), (3106,11,0), (3106,456,0), (3107,5,0), (3107,10,0), (3107,11,0), (3107,456,0), (3108,5,0), (3108,10,0), (3108,11,0), (3108,458,0), (3109,5,0), (3109,10,0), (3109,459,0), (3110,5,0), (3110,10,0), (3110,459,0), (3111,5,0), (3111,10,0), (3111,31,0), (3111,459,0), (3112,5,0), (3112,10,0), (3112,459,0), (3113,5,0), (3113,10,0), (3113,459,0), (3114,5,0), (3114,10,0), (3114,459,0), (3115,5,0), (3115,10,0), (3115,31,0), (3115,459,0), (3116,5,0), (3116,10,0), (3116,459,0), (3117,5,0), (3117,10,0), (3117,459,0), (3118,5,0), (3118,10,0), (3118,40,0), (3118,459,0), (3119,5,0), (3119,10,0), (3119,27,0), (3119,459,0), (3120,5,0), (3120,10,0), (3120,11,0), (3120,460,0), (3121,5,0), (3121,10,0), (3121,27,0), (3121,465,0), (3122,5,0), (3122,10,0), (3122,31,0), (3122,472,0), (3123,5,0), (3123,6,0), (3123,10,0), (3123,472,0), (3124,5,0), (3124,10,0), (3124,53,0), (3124,472,0), (3125,5,0), (3125,10,0), (3125,31,0), (3125,472,0), (3126,5,0), (3126,10,0), (3126,31,0), (3126,472,0), (3127,5,0), (3127,10,0), (3127,31,0), (3127,472,0), (3128,5,0), (3128,10,0), (3128,53,0), (3128,472,0), (3129,5,0), (3129,10,0), (3129,53,0), (3129,472,0), (3130,5,0), (3130,10,0), (3130,53,0), (3130,472,0), (3131,5,0), (3131,10,0), (3131,53,0), (3131,472,0), (3132,5,0), (3132,10,0), (3132,11,0), (3132,472,0), (3133,5,0), (3133,10,0), (3133,473,0), (3134,5,0), (3134,10,0), (3134,473,0), (3135,5,0), (3135,10,0), (3135,473,0), (3135,474,0), (3136,5,0), (3136,10,0), (3136,29,0), (3136,473,0), (3137,5,0), (3137,10,0), (3137,36,0), (3137,473,0), (3138,5,0), (3138,10,0), (3138,36,0), (3138,473,0), (3139,5,0), (3139,10,0), (3139,377,0), (3139,473,0), (3140,5,0), (3140,10,0), (3140,23,0), (3140,475,0), (3141,5,0), (3141,10,0), (3141,476,0), (3142,5,0), (3142,10,0), (3142,54,0), (3142,476,0), (3143,5,0), (3143,6,0), (3143,10,0), (3143,476,0), (3144,5,0), (3144,10,0), (3144,54,0), (3144,476,0), (3145,5,0), (3145,22,0), (3145,478,0), (3146,5,0), (3146,22,0), (3146,478,0), (3147,5,0), (3147,40,0), (3147,478,0), (3148,5,0), (3148,377,0), (3148,478,0), (3149,5,0), (3149,40,0), (3149,478,0), (3150,5,0), (3150,11,0), (3150,478,0), (3151,5,0), (3151,29,0), (3151,478,0), (3152,5,0), (3152,104,0), (3152,478,0), (3153,482,0), (3154,482,0), (3155,482,0), (3156,482,0), (3157,482,0), (3158,482,0), (3159,482,0), (3160,482,0), (3161,482,0), (3162,482,0), (3163,482,0), (3164,482,0), (3165,482,0), (3166,482,0), (3167,482,0), (3168,482,0), (3169,482,0), (3172,5,0), (3172,10,0), (3172,19,0), (3172,20,0), (3173,5,0), (3173,10,0), (3173,19,0), (3173,20,0), (3174,5,0), (3174,10,0), (3174,19,0), (3174,20,0), (3175,5,0), (3175,10,0), (3175,19,0), (3175,20,0), (3187,5,0), (3187,10,0), (3187,28,0), (3187,483,0), (3188,5,0), (3188,10,0), (3188,28,0), (3188,483,0), (3189,5,0), (3189,10,0), (3189,28,0), (3189,483,0), (3190,5,0), (3190,10,0), (3190,28,0), (3190,483,0), (3200,5,0), (3200,10,0), (3200,30,0), (3200,483,0), (3201,5,0), (3201,10,0), (3201,30,0), (3201,483,0), (3202,5,0), (3202,10,0), (3202,30,0), (3202,483,0), (3203,5,0), (3203,10,0), (3203,30,0), (3203,483,0), (3328,5,0), (3328,10,0), (3328,47,0), (3328,483,0), (3351,5,0), (3351,64,0), (3351,65,0), (3351,483,0), (3352,5,0), (3352,64,0), (3352,65,0), (3352,483,0), (3353,5,0), (3353,64,0), (3353,65,0), (3353,483,0), (3354,5,0), (3354,64,0), (3354,65,0), (3354,483,0), (3423,73,0), (3423,483,0), (3424,73,0), (3424,483,0), (3425,73,0), (3425,483,0), (3426,73,0), (3426,483,0), (3427,73,0), (3427,483,0), (3475,74,0), (3476,18,0), (3476,74,0), (3765,5,0), (3765,63,0), (3765,100,0), (3843,13,0), (3843,103,0), (3865,5,0), (3865,10,0), (3865,353,0), (3865,484,0), (3902,6,0), (3902,358,0), (3912,6,0), (3912,358,0), (3919,13,0), (3919,103,0), (3920,6,0), (3920,358,0), (3921,6,0), (3921,358,0), (3947,5,0), (3947,6,0), (3947,10,0), (3947,361,0), (3983,5,0), (3983,6,0), (3983,10,0), (3983,366,0), (4129,5,0), (4129,10,0), (4129,383,0), (4159,482,0), (4160,482,0), (4161,482,0), (4162,482,0), (4163,482,0), (4164,482,0), (4165,482,0), (4166,482,0), (4167,482,0), (4168,482,0), (4169,482,0), (4170,482,0), (4171,482,0), (4172,482,0), (4173,482,0), (4174,482,0), (4175,482,0), (4176,482,0), (4177,482,0), (4178,482,0), (4179,482,0), (4180,482,0), (4181,482,0), (4182,482,0), (4183,482,0), (4184,482,0), (4185,482,0), (4186,482,0), (4187,485,0), (4188,485,0), (4188,486,0), (4189,485,0), (4190,485,0), (4191,485,0), (4192,485,0), (4193,485,0), (4194,487,0), (4195,487,0), (4196,487,0), (4197,487,0), (4198,487,0), (4199,487,0), (4200,487,0), (4201,487,0), (4202,487,0), (4203,487,0), (4204,487,0), (4205,487,0), (4206,487,0), (4207,487,0), (4208,487,0), (4209,487,0), (4210,487,0), (4211,487,0), (4212,487,0), (4213,487,0), (4214,487,0), (4215,487,0), (4216,487,0), (4217,487,0), (4218,487,0), (4219,487,0), (4220,487,0), (4221,487,0), (4222,487,0), (4223,487,0), (4224,487,0), (4225,487,0), (4226,487,0), (4227,487,0), (4228,487,0), (4229,487,0), (4230,487,0), (4231,487,0), (4232,487,0), (4233,487,0), (4234,495,0), (4235,495,0), (4236,495,0), (4237,495,0), (4238,495,0), (4239,495,0), (4240,495,0), (4241,495,0), (4242,495,0), (4243,495,0), (4244,495,0), (4245,495,0), (4246,495,0), (4247,495,0), (4248,495,0), (4249,495,0), (4250,495,0), (4251,495,0), (4252,495,0), (4253,495,0), (4254,495,0), (4255,495,0), (4256,495,0), (4257,495,0), (4258,495,0), (4259,495,0), (4260,495,0), (4261,495,0), (4262,495,0), (4263,495,0), (4264,495,0), (4265,495,0), (4266,495,0), (4267,495,0), (4268,495,0), (4269,495,0), (4270,495,0), (4271,495,0), (4272,495,0), (4273,495,0), (4274,495,0), (4275,495,0), (4276,495,0), (4277,495,0), (4278,495,0), (4279,495,0), (4280,495,0), (4281,495,0), (4282,495,0), (4283,495,0), (4284,495,0), (4285,495,0), (4286,495,0), (4287,495,0), (4288,495,0), (4289,495,0), (4290,495,0), (4291,495,0), (4292,495,0), (4293,496,0), (4293,497,0), (4294,496,0), (4294,497,0), (4295,496,0), (4295,497,0), (4296,5,0), (4296,502,0), (4296,503,0), (4296,504,0), (4297,5,0), (4297,503,0), (4297,504,0), (4297,505,0), (4298,503,0), (4298,516,0), (4299,5,0), (4299,503,0), (4299,504,0), (4299,519,0), (4300,5,0), (4300,503,0), (4300,504,0), (4300,519,0), (4301,5,0), (4301,503,0), (4301,504,0), (4301,519,0), (4302,5,0), (4302,503,0), (4302,504,0), (4302,519,0), (4303,5,0), (4303,503,0), (4303,504,0), (4303,519,0), (4304,5,0), (4304,503,0), (4304,504,0), (4304,519,0), (4305,5,0), (4305,503,0), (4305,504,0), (4305,519,0), (4306,5,0), (4306,503,0), (4306,504,0), (4306,519,0), (4307,5,0), (4307,503,0), (4307,504,0), (4307,519,0), (4308,5,0), (4308,503,0), (4308,504,0), (4308,519,0), (4309,5,0), (4309,503,0), (4309,504,0), (4309,519,0), (4310,5,0), (4310,503,0), (4310,504,0), (4310,519,0), (4311,5,0), (4311,503,0), (4311,504,0), (4311,519,0), (4312,5,0), (4312,503,0), (4312,504,0), (4312,519,0), (4313,5,0), (4313,503,0), (4313,504,0), (4313,519,0), (4314,5,0), (4314,503,0), (4314,504,0), (4314,519,0), (4315,5,0), (4315,503,0), (4315,504,0), (4315,519,0), (4316,5,0), (4316,503,0), (4316,504,0), (4316,519,0), (4317,5,0), (4317,503,0), (4317,504,0), (4317,519,0), (4318,5,0), (4318,504,0), (4318,519,0), (4318,520,0), (4319,5,0), (4319,503,0), (4319,504,0), (4319,522,0), (4320,5,0), (4320,503,0), (4320,504,0), (4320,523,0), (4321,5,0), (4321,503,0), (4321,504,0), (4321,523,0), (4322,5,0), (4322,504,0), (4322,523,0), (4323,5,0), (4323,503,0), (4323,504,0), (4323,523,0), (4324,5,0), (4324,504,0), (4324,523,0), (4325,5,0), (4325,503,0), (4325,504,0), (4325,523,0), (4326,5,0), (4326,503,0), (4326,504,0), (4326,523,0), (4327,5,0), (4327,503,0), (4327,504,0), (4327,523,0), (4328,5,0), (4328,503,0), (4328,504,0), (4328,523,0), (4329,5,0), (4329,503,0), (4329,504,0), (4329,523,0), (4330,5,0), (4330,503,0), (4330,504,0), (4330,523,0), (4331,5,0), (4331,503,0), (4331,504,0), (4331,523,0), (4332,5,0), (4332,503,0), (4332,504,0), (4332,523,0), (4333,5,0), (4333,504,0), (4333,523,0), (4333,524,0), (4334,5,0), (4334,504,0), (4334,523,0), (4334,524,0), (4335,5,0), (4335,504,0), (4335,523,0), (4335,524,0), (4336,5,0), (4336,504,0), (4336,523,0), (4336,525,0), (4337,5,0), (4337,503,0), (4337,504,0), (4337,523,0), (4338,5,0), (4338,503,0), (4338,504,0), (4338,523,0), (4339,5,0), (4339,503,0), (4339,504,0), (4339,523,0), (4340,5,0), (4340,503,0), (4340,504,0), (4340,523,0), (4341,5,0), (4341,503,0), (4341,504,0), (4341,523,0), (4342,5,0), (4342,503,0), (4342,504,0), (4342,523,0), (4343,5,0), (4343,503,0), (4343,504,0), (4343,523,0), (4344,5,0), (4344,504,0), (4344,523,0), (4344,524,0), (4345,5,0), (4345,504,0), (4345,523,0), (4345,524,0), (4346,5,0), (4346,503,0), (4346,504,0), (4346,526,0), (4347,503,0), (4347,526,0), (4348,503,0), (4348,526,0), (4349,503,0), (4349,526,0), (4350,503,0), (4350,526,0), (4351,503,0), (4351,526,0), (4352,5,0), (4352,503,0), (4352,504,0), (4352,536,0), (4353,553,0), (4353,554,0), (4354,553,0), (4354,554,0), (4355,5,0), (4355,554,0), (4355,556,0), (4355,557,0), (4356,5,0), (4356,556,0), (4356,557,0), (4357,5,0), (4357,554,0), (4357,556,0), (4357,557,0), (4358,5,0), (4358,554,0), (4358,556,0), (4358,557,0), (4359,5,0), (4359,554,0), (4359,556,0), (4359,557,0), (4360,5,0), (4360,554,0), (4360,556,0), (4360,557,0), (4361,5,0), (4361,554,0), (4361,556,0), (4361,557,0), (4362,5,0), (4362,554,0), (4362,556,0), (4362,557,0), (4363,5,0), (4363,554,0), (4363,556,0), (4363,557,0), (4364,5,0), (4364,554,0), (4364,556,0), (4364,557,0), (4365,5,0), (4365,554,0), (4365,556,0), (4365,557,0), (4366,5,0), (4366,554,0), (4366,556,0), (4366,557,0), (4367,5,0), (4367,554,0), (4367,556,0), (4367,557,0), (4368,5,0), (4368,554,0), (4368,556,0), (4368,557,0), (4369,5,0), (4369,554,0), (4369,556,0), (4369,557,0), (4370,5,0), (4370,554,0), (4370,556,0), (4370,557,0), (4371,5,0), (4371,554,0), (4371,557,0), (4371,560,0), (4372,5,0), (4372,554,0), (4372,557,0), (4372,560,0), (4373,5,0), (4373,554,0), (4373,557,0), (4373,560,0), (4374,5,0), (4374,554,0), (4374,557,0), (4374,560,0), (4375,5,0), (4375,554,0), (4375,557,0), (4375,561,0), (4376,5,0), (4376,554,0), (4376,557,0), (4376,561,0), (4377,5,0), (4377,557,0), (4377,561,0), (4378,5,0), (4378,554,0), (4378,557,0), (4378,561,0), (4379,5,0), (4379,554,0), (4379,557,0), (4379,561,0), (4380,5,0), (4380,554,0), (4380,557,0), (4380,562,0), (4381,5,0), (4381,554,0), (4381,557,0), (4381,562,0), (4382,5,0), (4382,554,0), (4382,557,0), (4382,562,0), (4383,5,0), (4383,554,0), (4383,557,0), (4383,562,0), (4384,563,0), (4385,554,0), (4385,563,0), (4386,554,0), (4386,563,0), (4387,554,0), (4387,563,0), (4388,554,0), (4388,563,0), (4389,554,0), (4389,563,0), (4390,554,0), (4390,563,0), (4391,554,0), (4391,563,0), (4392,554,0), (4392,563,0), (4393,554,0), (4393,563,0), (4394,554,0), (4394,563,0), (4395,554,0), (4395,563,0), (4396,554,0), (4396,563,0), (4397,554,0), (4397,563,0), (4398,554,0), (4398,563,0), (4399,554,0), (4399,563,0), (4400,554,0), (4400,563,0), (4401,5,0), (4401,554,0), (4401,557,0), (4401,564,0), (4402,5,0), (4402,554,0), (4402,557,0), (4402,564,0), (4403,5,0), (4403,554,0), (4403,557,0), (4403,564,0), (4404,5,0), (4404,554,0), (4404,557,0), (4404,564,0), (4405,5,0), (4405,554,0), (4405,557,0), (4405,564,0), (4406,5,0), (4406,554,0), (4406,557,0), (4406,564,0), (4407,5,0), (4407,554,0), (4407,557,0), (4407,565,0), (4408,554,0), (4408,565,0), (4409,554,0), (4409,565,0), (4410,554,0), (4410,565,0), (4411,554,0), (4411,565,0), (4412,5,0), (4412,580,0), (4412,581,0), (4412,582,0), (4413,581,0), (4413,585,0), (4414,5,0), (4414,581,0), (4414,582,0), (4414,586,0), (4415,5,0), (4415,581,0), (4415,582,0), (4415,586,0), (4416,5,0), (4416,581,0), (4416,582,0), (4416,586,0), (4417,5,0), (4417,581,0), (4417,582,0), (4417,586,0), (4418,5,0), (4418,581,0), (4418,582,0), (4418,586,0), (4419,5,0), (4419,581,0), (4419,582,0), (4419,586,0), (4420,5,0), (4420,581,0), (4420,582,0), (4420,586,0), (4421,5,0), (4421,581,0), (4421,582,0), (4421,586,0), (4422,5,0), (4422,581,0), (4422,582,0), (4422,586,0), (4423,5,0), (4423,581,0), (4423,582,0), (4423,586,0), (4424,5,0), (4424,581,0), (4424,582,0), (4424,586,0), (4425,5,0), (4425,581,0), (4425,582,0), (4425,586,0), (4426,5,0), (4426,581,0), (4426,582,0), (4426,586,0), (4427,5,0), (4427,581,0), (4427,582,0), (4427,586,0), (4428,5,0), (4428,581,0), (4428,582,0), (4428,586,0), (4429,5,0), (4429,582,0), (4429,586,0), (4429,587,0), (4430,581,0), (4430,590,0), (4431,581,0), (4431,590,0), (4432,603,0), (4432,604,0), (4433,5,0), (4433,604,0), (4433,620,0), (4433,621,0), (4434,5,0), (4434,604,0), (4434,620,0), (4434,621,0), (4435,5,0), (4435,604,0), (4435,620,0), (4435,621,0), (4436,5,0), (4436,604,0), (4436,620,0), (4436,621,0), (4437,5,0), (4437,604,0), (4437,620,0), (4437,621,0), (4438,5,0), (4438,604,0), (4438,620,0), (4438,621,0), (4439,5,0), (4439,604,0), (4439,620,0), (4439,621,0), (4440,5,0), (4440,604,0), (4440,620,0), (4440,621,0), (4441,5,0), (4441,604,0), (4441,620,0), (4441,621,0), (4442,5,0), (4442,604,0), (4442,620,0), (4442,621,0), (4443,5,0), (4443,604,0), (4443,620,0), (4443,621,0), (4444,5,0), (4444,604,0), (4444,620,0), (4444,621,0), (4445,5,0), (4445,604,0), (4445,620,0), (4445,621,0), (4446,5,0), (4446,604,0), (4446,620,0), (4446,621,0), (4447,5,0), (4447,604,0), (4447,620,0), (4447,621,0), (4448,5,0), (4448,604,0), (4448,620,0), (4448,621,0), (4449,5,0), (4449,604,0), (4449,620,0), (4449,621,0), (4450,5,0), (4450,604,0), (4450,621,0), (4450,624,0), (4451,5,0), (4451,604,0), (4451,621,0), (4451,624,0), (4452,5,0), (4452,604,0), (4452,621,0), (4452,624,0), (4453,5,0), (4453,604,0), (4453,621,0), (4453,624,0), (4454,5,0), (4454,604,0), (4454,621,0), (4454,625,0), (4455,5,0), (4455,604,0), (4455,621,0), (4455,625,0), (4456,5,0), (4456,604,0), (4456,621,0), (4456,625,0), (4457,5,0), (4457,604,0), (4457,621,0), (4457,625,0), (4458,5,0), (4458,604,0), (4458,621,0), (4458,625,0), (4459,5,0), (4459,636,0), (4459,637,0), (4459,638,0), (4460,637,0), (4460,647,0), (4461,5,0), (4461,637,0), (4461,638,0), (4461,650,0), (4462,5,0), (4462,638,0), (4462,650,0), (4462,651,0), (4463,5,0), (4463,637,0), (4463,638,0), (4463,650,0), (4464,5,0), (4464,638,0), (4464,650,0), (4464,651,0), (4465,5,0), (4465,637,0), (4465,638,0), (4465,650,0), (4466,5,0), (4466,637,0), (4466,638,0), (4466,650,0), (4467,5,0), (4467,637,0), (4467,638,0), (4467,650,0), (4468,5,0), (4468,637,0), (4468,638,0), (4468,650,0), (4469,5,0), (4469,637,0), (4469,638,0), (4469,650,0), (4470,5,0), (4470,637,0), (4470,638,0), (4470,650,0), (4471,5,0), (4471,637,0), (4471,638,0), (4471,650,0), (4472,5,0), (4472,637,0), (4472,638,0), (4472,650,0), (4473,5,0), (4473,637,0), (4473,638,0), (4473,650,0), (4474,5,0), (4474,637,0), (4474,638,0), (4474,650,0), (4475,5,0), (4475,637,0), (4475,638,0), (4475,653,0), (4476,5,0), (4476,637,0), (4476,638,0), (4476,654,0), (4477,5,0), (4477,638,0), (4477,651,0), (4477,654,0), (4478,5,0), (4478,637,0), (4478,638,0), (4478,654,0), (4479,5,0), (4479,637,0), (4479,638,0), (4479,654,0), (4480,5,0), (4480,637,0), (4480,638,0), (4480,654,0), (4481,5,0), (4481,664,0), (4482,5,0), (4482,14,0), (4482,665,0), (4483,5,0), (4483,11,0), (4483,665,0), (4484,5,0), (4484,14,0), (4484,665,0), (4485,5,0), (4485,36,0), (4485,665,0), (4486,5,0), (4486,31,0), (4486,665,0), (4487,5,0), (4487,36,0), (4487,665,0), (4488,5,0), (4488,36,0), (4488,665,0), (4489,5,0), (4489,36,0), (4489,665,0), (4490,5,0), (4490,49,0), (4490,665,0), (4491,5,0), (4491,23,0), (4491,665,0), (4492,5,0), (4492,665,0), (4493,5,0), (4493,31,0), (4493,665,0), (4494,5,0), (4494,31,0), (4494,665,0), (4495,5,0), (4495,18,0), (4495,665,0), (4496,5,0), (4496,13,0), (4496,666,0), (4496,667,0), (4497,5,0), (4497,377,0), (4497,666,0), (4497,667,0), (4498,5,0), (4498,18,0), (4498,666,0), (4498,667,0), (4499,5,0), (4499,22,0), (4499,666,0), (4499,667,0), (4500,5,0), (4500,11,0), (4500,666,0), (4500,667,0), (4501,5,0), (4501,13,0), (4501,666,0), (4501,667,0), (4502,5,0), (4502,11,0), (4502,666,0), (4502,667,0), (4503,5,0), (4503,36,0), (4503,666,0), (4503,667,0), (4504,5,0), (4504,36,0), (4504,666,0), (4504,667,0), (4505,5,0), (4505,51,0), (4505,666,0), (4505,667,0), (4506,5,0), (4506,6,0), (4506,666,0), (4506,667,0), (4507,5,0), (4507,31,0), (4507,666,0), (4507,667,0), (4508,5,0), (4508,6,0), (4508,666,0), (4508,667,0), (4509,4,0), (4509,5,0), (4509,666,0), (4509,667,0), (4510,5,0), (4510,53,0), (4510,666,0), (4510,667,0), (4511,5,0), (4511,13,0), (4511,666,0), (4511,667,0), (4512,5,0), (4512,53,0), (4512,666,0), (4512,667,0), (4513,5,0), (4513,6,0), (4513,666,0), (4513,667,0), (4514,5,0), (4514,18,0), (4514,666,0), (4514,667,0), (4515,5,0), (4515,6,0), (4515,666,0), (4515,667,0), (4516,4,0), (4516,5,0), (4516,666,0), (4516,667,0), (4517,5,0), (4517,666,0), (4517,667,0), (4517,668,0), (4518,5,0), (4518,6,0), (4518,666,0), (4518,667,0), (4519,5,0), (4519,6,0), (4519,666,0), (4519,667,0), (4520,5,0), (4520,6,0), (4520,666,0), (4520,667,0), (4521,5,0), (4521,6,0), (4521,666,0), (4521,667,0), (4522,5,0), (4522,6,0), (4522,666,0), (4522,667,0), (4523,5,0), (4523,666,0), (4523,667,0), (4523,669,0), (4524,5,0), (4524,14,0), (4524,666,0), (4524,667,0), (4525,5,0), (4525,14,0), (4525,666,0), (4525,667,0), (4526,5,0), (4526,14,0), (4526,666,0), (4526,667,0), (4527,5,0), (4527,40,0), (4527,666,0), (4527,667,0), (4528,5,0), (4528,40,0), (4528,666,0), (4528,667,0), (4529,5,0), (4529,40,0), (4529,666,0), (4529,667,0), (4530,5,0), (4530,6,0), (4530,666,0), (4530,667,0), (4531,5,0), (4531,6,0), (4531,666,0), (4531,667,0), (4532,5,0), (4532,53,0), (4532,666,0), (4532,667,0), (4533,5,0), (4533,9,0), (4533,666,0), (4533,667,0), (4534,5,0), (4534,666,0), (4534,667,0), (4534,670,0), (4535,5,0), (4535,666,0), (4535,667,0), (4535,670,0), (4536,5,0), (4536,53,0), (4536,666,0), (4536,667,0), (4537,5,0), (4537,474,0), (4537,666,0), (4537,667,0), (4538,5,0), (4538,474,0), (4538,666,0), (4538,667,0), (4539,5,0), (4539,474,0), (4539,666,0), (4539,667,0), (4540,5,0), (4540,474,0), (4540,666,0), (4540,667,0), (4541,5,0), (4541,474,0), (4541,666,0), (4541,667,0), (4542,5,0), (4542,474,0), (4542,666,0), (4542,667,0), (4543,5,0), (4543,474,0), (4543,666,0), (4543,667,0), (4544,5,0), (4544,474,0), (4544,666,0), (4544,667,0), (4545,5,0), (4545,474,0), (4545,666,0), (4545,667,0), (4546,5,0), (4546,53,0), (4546,666,0), (4546,667,0), (4547,5,0), (4547,22,0), (4547,666,0), (4547,667,0), (4548,5,0), (4548,53,0), (4548,666,0), (4548,667,0), (4549,5,0), (4549,53,0), (4549,666,0), (4549,667,0), (4550,5,0), (4550,49,0), (4550,666,0), (4550,667,0), (4551,5,0), (4551,36,0), (4551,666,0), (4551,667,0), (4552,5,0), (4552,40,0), (4552,666,0), (4552,667,0), (4553,5,0), (4553,40,0), (4553,666,0), (4553,667,0), (4554,5,0), (4554,666,0), (4554,667,0), (4555,5,0), (4555,36,0), (4555,666,0), (4555,667,0), (4556,5,0), (4556,666,0), (4556,667,0), (4557,5,0), (4557,22,0), (4557,666,0), (4557,667,0), (4558,5,0), (4558,666,0), (4558,667,0), (4559,5,0), (4559,9,0), (4559,666,0), (4559,667,0), (4560,5,0), (4560,9,0), (4560,666,0), (4560,667,0), (4561,5,0), (4561,9,0), (4561,666,0), (4561,667,0), (4562,5,0), (4562,18,0), (4562,666,0), (4562,667,0), (4563,5,0), (4563,18,0), (4563,666,0), (4563,667,0), (4564,5,0), (4564,18,0), (4564,666,0), (4564,667,0), (4565,5,0), (4565,48,0), (4565,666,0), (4565,667,0), (4566,5,0), (4566,18,0), (4566,666,0), (4566,667,0), (4567,5,0), (4567,18,0), (4567,666,0), (4567,667,0), (4568,5,0), (4568,27,0), (4568,666,0), (4568,667,0), (4569,5,0), (4569,23,0), (4569,666,0), (4569,667,0), (4570,5,0), (4570,23,0), (4570,666,0), (4570,667,0), (4571,5,0), (4571,18,0), (4571,666,0), (4571,667,0), (4572,5,0), (4572,18,0), (4572,666,0), (4572,667,0), (4573,5,0), (4573,18,0), (4573,666,0), (4573,667,0), (4574,5,0), (4574,483,0), (4574,666,0), (4574,667,0), (4575,5,0), (4575,483,0), (4575,666,0), (4575,667,0), (4576,5,0), (4576,483,0), (4576,666,0), (4576,667,0), (4577,5,0), (4577,483,0), (4577,666,0), (4577,667,0), (4578,5,0), (4578,483,0), (4578,666,0), (4578,667,0), (4579,5,0), (4579,671,0), (4580,5,0), (4580,27,0), (4580,671,0), (4581,5,0), (4581,11,0), (4581,673,0), (4581,674,0), (4582,5,0), (4582,11,0), (4582,673,0), (4582,674,0), (4583,5,0), (4583,54,0), (4583,673,0), (4583,674,0), (4584,5,0), (4584,54,0), (4584,673,0), (4584,674,0), (4585,5,0), (4585,6,0), (4585,673,0), (4585,674,0), (4586,5,0), (4586,54,0), (4586,673,0), (4586,674,0), (4587,5,0), (4587,54,0), (4587,673,0), (4587,674,0), (4588,5,0), (4588,6,0), (4588,673,0), (4588,674,0), (4589,5,0), (4589,13,0), (4589,673,0), (4589,674,0), (4590,5,0), (4590,40,0), (4590,673,0), (4590,674,0), (4591,5,0), (4591,54,0), (4591,673,0), (4591,674,0), (4592,5,0), (4592,6,0), (4592,673,0), (4592,674,0), (4593,5,0), (4593,54,0), (4593,673,0), (4593,674,0), (4594,5,0), (4594,673,0), (4594,674,0), (4595,5,0), (4595,673,0), (4595,674,0), (4596,5,0), (4596,54,0), (4596,673,0), (4596,674,0), (4597,5,0), (4597,54,0), (4597,673,0), (4597,674,0), (4598,5,0), (4598,51,0), (4598,673,0), (4598,674,0), (4599,5,0), (4599,13,0), (4599,673,0), (4599,674,0), (4600,5,0), (4600,6,0), (4600,673,0), (4600,674,0), (4601,5,0), (4601,51,0), (4601,673,0), (4601,674,0), (4602,5,0), (4602,51,0), (4602,673,0), (4602,674,0), (4603,5,0), (4603,54,0), (4603,673,0), (4603,674,0), (4604,5,0), (4604,54,0), (4604,673,0), (4604,674,0), (4605,5,0), (4605,11,0), (4605,673,0), (4605,674,0), (4606,5,0), (4606,51,0), (4606,673,0), (4606,674,0), (4607,5,0), (4607,54,0), (4607,673,0), (4607,674,0), (4608,5,0), (4608,31,0), (4608,673,0), (4608,674,0), (4609,5,0), (4609,54,0), (4609,673,0), (4609,674,0), (4610,5,0), (4610,54,0), (4610,673,0), (4610,674,0), (4611,5,0), (4611,11,0), (4611,673,0), (4611,674,0), (4612,5,0), (4612,11,0), (4612,673,0), (4612,674,0), (4613,5,0), (4613,6,0), (4613,673,0), (4613,674,0), (4614,5,0), (4614,673,0), (4614,674,0), (4615,5,0), (4615,49,0), (4615,673,0), (4615,674,0), (4616,5,0), (4616,11,0), (4616,673,0), (4616,674,0), (4617,5,0), (4617,11,0), (4617,673,0), (4617,674,0), (4618,5,0), (4618,673,0), (4618,674,0), (4619,5,0), (4619,673,0), (4619,674,0), (4620,5,0), (4620,673,0), (4620,674,0), (4621,5,0), (4621,673,0), (4621,674,0), (4622,5,0), (4622,673,0), (4622,674,0), (4623,5,0), (4623,673,0), (4623,674,0), (4624,5,0), (4624,673,0), (4624,674,0), (4625,5,0), (4625,673,0), (4625,674,0), (4626,5,0), (4626,673,0), (4626,674,0), (4627,5,0), (4627,673,0), (4627,674,0), (4628,5,0), (4628,673,0), (4628,674,0), (4629,5,0), (4629,673,0), (4629,674,0), (4630,5,0), (4630,51,0), (4630,673,0), (4630,674,0), (4631,5,0), (4631,673,0), (4631,674,0), (4632,5,0), (4632,11,0), (4632,673,0), (4632,674,0), (4633,5,0), (4633,673,0), (4633,674,0), (4634,5,0), (4634,11,0), (4634,673,0), (4634,674,0), (4635,5,0), (4635,673,0), (4635,674,0), (4636,5,0), (4636,11,0), (4636,673,0), (4636,674,0), (4637,5,0), (4637,11,0), (4637,673,0), (4637,674,0), (4638,5,0), (4638,673,0), (4638,674,0), (4639,5,0), (4639,673,0), (4639,674,0), (4640,5,0), (4640,673,0), (4640,674,0), (4641,5,0), (4641,11,0), (4641,673,0), (4641,674,0), (4642,5,0), (4642,673,0), (4642,674,0), (4643,5,0), (4643,673,0), (4643,674,0), (4644,5,0), (4644,673,0), (4644,674,0), (4645,5,0), (4645,673,0), (4645,674,0), (4646,5,0), (4646,94,0), (4646,391,0), (4646,675,0), (4647,5,0), (4647,391,0), (4647,675,0), (4647,676,0), (4648,5,0), (4648,391,0), (4648,675,0), (4648,676,0), (4649,5,0), (4649,23,0), (4649,391,0), (4649,675,0), (4650,5,0), (4650,23,0), (4650,391,0), (4650,675,0), (4651,5,0), (4651,23,0), (4651,391,0), (4651,675,0), (4652,5,0), (4652,23,0), (4652,391,0), (4652,675,0), (4653,5,0), (4653,18,0), (4653,391,0), (4653,675,0), (4654,5,0), (4654,18,0), (4654,391,0), (4654,675,0), (4655,5,0), (4655,51,0), (4655,391,0), (4655,675,0), (4656,5,0), (4656,51,0), (4656,391,0), (4656,675,0), (4657,5,0), (4657,13,0), (4657,391,0), (4657,675,0), (4658,5,0), (4658,6,0), (4658,391,0), (4658,675,0), (4659,5,0), (4659,6,0), (4659,391,0), (4659,675,0), (4660,5,0), (4660,6,0), (4660,391,0), (4660,675,0), (4661,5,0), (4661,94,0), (4661,391,0), (4661,675,0), (4662,5,0), (4662,11,0), (4662,391,0), (4662,675,0), (4663,5,0), (4663,11,0), (4663,391,0), (4663,675,0), (4664,5,0), (4664,11,0), (4664,391,0), (4664,675,0), (4665,5,0), (4665,94,0), (4665,391,0), (4665,675,0), (4666,5,0), (4666,14,0), (4666,391,0), (4666,675,0), (4667,5,0), (4667,14,0), (4667,391,0), (4667,675,0), (4668,5,0), (4668,391,0), (4668,483,0), (4668,675,0), (4669,5,0), (4669,94,0), (4669,391,0), (4669,675,0), (4670,5,0), (4670,94,0), (4670,391,0), (4670,675,0), (4671,5,0), (4671,94,0), (4671,391,0), (4671,675,0), (4672,5,0), (4672,13,0), (4672,391,0), (4672,675,0), (4673,5,0), (4673,94,0), (4673,391,0), (4673,675,0), (4674,5,0), (4674,6,0), (4674,391,0), (4674,675,0), (4675,5,0), (4675,51,0), (4675,391,0), (4675,675,0), (4676,5,0), (4676,94,0), (4676,391,0), (4676,675,0), (4677,5,0), (4677,9,0), (4677,391,0), (4677,675,0), (4678,5,0), (4678,51,0), (4678,391,0), (4678,675,0), (4679,5,0), (4679,13,0), (4679,391,0), (4679,675,0), (4680,5,0), (4680,6,0), (4680,391,0), (4680,675,0), (4681,5,0), (4681,6,0), (4681,391,0), (4681,675,0), (4682,5,0), (4682,13,0), (4682,391,0), (4682,675,0), (4683,5,0), (4683,29,0), (4683,391,0), (4683,675,0), (4684,5,0), (4684,94,0), (4684,391,0), (4684,675,0), (4685,5,0), (4685,94,0), (4685,391,0), (4685,675,0), (4686,5,0), (4686,94,0), (4686,391,0), (4686,675,0), (4687,5,0), (4687,94,0), (4687,391,0), (4687,675,0), (4688,5,0), (4688,23,0), (4688,391,0), (4688,675,0), (4689,5,0), (4689,94,0), (4689,391,0), (4689,675,0), (4690,5,0), (4690,22,0), (4690,391,0), (4690,675,0), (4691,5,0), (4691,22,0), (4691,391,0), (4691,675,0), (4692,5,0), (4692,22,0), (4692,391,0), (4692,675,0), (4693,5,0), (4693,13,0), (4693,391,0), (4693,675,0), (4694,5,0), (4694,13,0), (4694,391,0), (4694,675,0), (4695,5,0), (4695,23,0), (4695,391,0), (4695,675,0), (4696,5,0), (4696,31,0), (4696,391,0), (4696,675,0), (4697,5,0), (4697,13,0), (4697,391,0), (4697,675,0), (4698,5,0), (4698,31,0), (4698,391,0), (4698,675,0), (4699,5,0), (4699,19,0), (4699,677,0), (4699,678,0), (4700,5,0), (4700,19,0), (4700,677,0), (4700,678,0), (4701,5,0), (4701,19,0), (4701,677,0), (4701,678,0), (4702,5,0), (4702,19,0), (4702,677,0), (4702,678,0), (4703,5,0), (4703,19,0), (4703,677,0), (4703,678,0), (4704,5,0), (4704,483,0), (4704,677,0), (4704,678,0), (4705,5,0), (4705,483,0), (4705,677,0), (4705,678,0), (4706,5,0), (4706,483,0), (4706,677,0), (4706,678,0), (4707,5,0), (4707,483,0), (4707,677,0), (4707,678,0), (4708,5,0), (4708,483,0), (4708,677,0), (4708,678,0), (4709,5,0), (4709,19,0), (4709,677,0), (4709,678,0), (4710,18,0), (4710,679,0), (4711,18,0), (4711,679,0), (4712,18,0), (4712,679,0), (4713,18,0), (4713,679,0), (4714,18,0), (4714,679,0), (4715,18,0), (4715,679,0), (4716,49,0), (4716,679,0), (4717,50,0), (4717,679,0), (4718,49,0), (4718,679,0), (4719,18,0), (4719,679,0), (4720,49,0), (4720,679,0), (4721,18,0), (4721,679,0), (4722,18,0), (4722,679,0), (4723,18,0), (4723,679,0), (4724,18,0), (4724,679,0), (4725,18,0), (4725,679,0), (4726,18,0), (4726,679,0), (4727,18,0), (4727,679,0), (4728,49,0), (4728,679,0), (4729,49,0), (4729,679,0), (4730,18,0), (4730,679,0), (4731,18,0), (4731,679,0), (4732,18,0), (4732,679,0), (4733,18,0), (4733,679,0), (4734,18,0), (4734,679,0), (4735,18,0), (4735,679,0), (4736,680,0), (4736,681,0), (4737,680,0), (4737,681,0), (4738,680,0), (4738,681,0), (4739,680,0), (4739,681,0), (4740,680,0), (4740,681,0), (4741,680,0), (4741,681,0), (4742,680,0), (4742,681,0), (4743,680,0), (4743,681,0), (4744,680,0), (4744,681,0), (4745,680,0), (4745,681,0), (4746,680,0), (4746,681,0), (4747,680,0), (4747,681,0), (4748,680,0), (4748,681,0), (4749,680,0), (4749,681,0), (4750,680,0), (4750,681,0), (4751,680,0), (4751,681,0), (4752,5,0), (4752,22,0), (4752,682,0), (4752,683,0), (4753,5,0), (4753,40,0), (4753,682,0), (4753,683,0), (4754,5,0), (4754,94,0), (4754,682,0), (4754,683,0), (4755,5,0), (4755,11,0), (4755,682,0), (4755,683,0), (4756,5,0), (4756,11,0), (4756,682,0), (4756,683,0), (4757,5,0), (4757,11,0), (4757,682,0), (4757,683,0), (4758,5,0), (4758,11,0), (4758,682,0), (4758,683,0), (4759,5,0), (4759,11,0), (4759,682,0), (4759,683,0), (4760,5,0), (4760,11,0), (4760,682,0), (4760,683,0), (4761,5,0), (4761,11,0), (4761,682,0), (4761,683,0), (4762,5,0), (4762,682,0), (4762,683,0), (4763,5,0), (4763,9,0), (4763,682,0), (4763,683,0), (4764,5,0), (4764,22,0), (4764,682,0), (4764,683,0), (4765,5,0), (4765,94,0), (4765,682,0), (4765,683,0), (4766,5,0), (4766,15,0), (4766,682,0), (4766,683,0), (4767,5,0), (4767,40,0), (4767,682,0), (4767,683,0), (4768,5,0), (4768,9,0), (4768,682,0), (4768,683,0), (4769,5,0), (4769,9,0), (4769,682,0), (4769,683,0), (4770,5,0), (4770,15,0), (4770,682,0), (4770,683,0), (4771,5,0), (4771,27,0), (4771,682,0), (4771,683,0), (4772,5,0), (4772,27,0), (4772,682,0), (4772,683,0), (4773,5,0), (4773,682,0), (4773,683,0), (4774,5,0), (4774,9,0), (4774,683,0), (4774,684,0), (4775,5,0), (4775,9,0), (4775,683,0), (4775,684,0), (4776,5,0), (4776,54,0), (4776,683,0), (4776,684,0), (4777,5,0), (4777,13,0), (4777,683,0), (4777,684,0), (4778,5,0), (4778,9,0), (4778,685,0), (4778,686,0), (4779,5,0), (4779,14,0), (4779,685,0), (4779,686,0), (4780,5,0), (4780,9,0), (4780,685,0), (4780,686,0), (4781,5,0), (4781,9,0), (4781,685,0), (4781,686,0), (4782,5,0), (4782,14,0), (4782,685,0), (4782,686,0), (4783,5,0), (4783,14,0), (4783,685,0), (4783,686,0), (4784,5,0), (4784,31,0), (4784,685,0), (4784,686,0), (4785,5,0), (4785,53,0), (4785,687,0), (4785,688,0), (4786,5,0), (4786,53,0), (4786,687,0), (4786,688,0), (4787,5,0), (4787,49,0), (4787,687,0), (4787,688,0), (4788,5,0), (4788,53,0), (4788,687,0), (4788,688,0), (4789,5,0), (4789,53,0), (4789,687,0), (4789,688,0), (4790,5,0), (4790,53,0), (4790,687,0), (4790,688,0), (4791,5,0), (4791,49,0), (4791,687,0), (4791,688,0), (4792,5,0), (4792,53,0), (4792,687,0), (4792,688,0), (4793,5,0), (4793,53,0), (4793,687,0), (4793,688,0), (4794,5,0), (4794,53,0), (4794,687,0), (4794,688,0), (4795,5,0), (4795,23,0), (4795,687,0), (4795,688,0), (4796,5,0), (4796,19,0), (4796,687,0), (4796,688,0), (4797,5,0), (4797,19,0), (4797,687,0), (4797,688,0), (4798,5,0), (4798,19,0), (4798,687,0), (4798,688,0), (4799,5,0), (4799,53,0), (4799,687,0), (4799,688,0), (4800,5,0), (4800,483,0), (4800,687,0), (4800,688,0), (4801,5,0), (4801,483,0), (4801,687,0), (4801,688,0), (4802,5,0), (4802,483,0), (4802,687,0), (4802,688,0), (4803,5,0), (4803,483,0), (4803,687,0), (4803,688,0), (4804,5,0), (4804,53,0), (4804,687,0), (4804,688,0), (4805,5,0), (4805,6,0), (4805,687,0), (4805,688,0), (4806,5,0), (4806,49,0), (4806,687,0), (4806,688,0), (4807,5,0), (4807,53,0), (4807,687,0), (4807,688,0), (4808,5,0), (4808,53,0), (4808,687,0), (4808,688,0), (4809,5,0), (4809,53,0), (4809,687,0), (4809,688,0), (4810,5,0), (4810,49,0), (4810,687,0), (4810,688,0), (4811,5,0), (4811,53,0), (4811,687,0), (4811,688,0), (4812,5,0), (4812,6,0), (4812,687,0), (4812,688,0), (4813,5,0), (4813,53,0), (4813,687,0), (4813,688,0), (4814,5,0), (4814,53,0), (4814,687,0), (4814,688,0), (4815,5,0), (4815,23,0), (4815,687,0), (4815,688,0), (4816,5,0), (4816,29,0), (4816,687,0), (4816,688,0), (4817,5,0), (4817,676,0), (4817,687,0), (4817,688,0), (4818,5,0), (4818,676,0), (4818,687,0), (4818,688,0), (4819,5,0), (4819,689,0), (4820,5,0), (4820,14,0), (4820,689,0), (4821,5,0), (4821,14,0), (4821,689,0), (4822,5,0), (4822,29,0), (4822,689,0), (4823,5,0), (4823,14,0), (4823,689,0), (4824,5,0), (4824,689,0), (4825,5,0), (4825,53,0), (4825,690,0), (4825,691,0), (4826,5,0), (4826,49,0), (4826,690,0), (4826,691,0), (4827,5,0), (4827,11,0), (4827,690,0), (4827,691,0), (4828,5,0), (4828,53,0), (4828,690,0), (4828,691,0), (4829,5,0), (4829,6,0), (4829,690,0), (4829,691,0), (4830,5,0), (4830,40,0), (4830,690,0), (4830,691,0), (4831,5,0), (4831,18,0), (4831,690,0), (4831,691,0), (4832,5,0), (4832,53,0), (4832,690,0), (4832,691,0), (4833,5,0), (4833,53,0), (4833,690,0), (4833,691,0), (4834,5,0), (4834,53,0), (4834,690,0), (4834,691,0), (4835,5,0), (4835,6,0), (4835,690,0), (4835,691,0), (4836,5,0), (4836,6,0), (4836,690,0), (4836,691,0), (4837,5,0), (4837,53,0), (4837,690,0), (4837,691,0), (4838,5,0), (4838,53,0), (4838,690,0), (4838,691,0), (4839,5,0), (4839,483,0), (4839,690,0), (4839,691,0), (4840,5,0), (4840,9,0), (4840,690,0), (4840,691,0), (4841,5,0), (4841,23,0), (4841,690,0), (4841,691,0), (4842,5,0), (4842,53,0), (4842,690,0), (4842,691,0), (4843,5,0), (4843,53,0), (4843,690,0), (4843,691,0), (4844,5,0), (4844,53,0), (4844,690,0), (4844,691,0), (4845,5,0), (4845,53,0), (4845,690,0), (4845,691,0), (4846,5,0), (4846,53,0), (4846,690,0), (4846,691,0), (4847,5,0), (4847,53,0), (4847,690,0), (4847,691,0), (4848,5,0), (4848,53,0), (4848,690,0), (4848,691,0), (4849,5,0), (4849,53,0), (4849,690,0), (4849,691,0), (4850,5,0), (4850,53,0), (4850,690,0), (4850,691,0), (4851,5,0), (4851,53,0), (4851,690,0), (4851,691,0), (4852,5,0), (4852,53,0), (4852,690,0), (4852,691,0), (4853,5,0), (4853,53,0), (4853,690,0), (4853,691,0), (4854,5,0), (4854,53,0), (4854,690,0), (4854,691,0), (4855,5,0), (4855,53,0), (4855,690,0), (4855,691,0), (4856,5,0), (4856,53,0), (4856,690,0), (4856,691,0), (4857,5,0), (4857,690,0), (4857,691,0), (4858,5,0), (4858,49,0), (4858,690,0), (4858,691,0), (4859,5,0), (4859,49,0), (4859,690,0), (4859,691,0), (4860,5,0), (4860,49,0), (4860,690,0), (4860,691,0), (4861,5,0), (4861,49,0), (4861,690,0), (4861,691,0), (4862,5,0), (4862,29,0), (4862,690,0), (4862,691,0), (4863,5,0), (4863,49,0), (4863,690,0), (4863,691,0), (4864,5,0), (4864,49,0), (4864,690,0), (4864,691,0), (4865,5,0), (4865,23,0), (4865,690,0), (4865,691,0), (4866,5,0), (4866,9,0), (4866,690,0), (4866,691,0), (4867,5,0), (4867,53,0), (4867,690,0), (4867,691,0), (4868,5,0), (4868,53,0), (4868,690,0), (4868,691,0), (4869,5,0), (4869,53,0), (4869,690,0), (4869,691,0), (4870,5,0), (4870,53,0), (4870,690,0), (4870,691,0), (4871,5,0), (4871,40,0), (4871,690,0), (4871,691,0), (4872,5,0), (4872,53,0), (4872,690,0), (4872,691,0), (4873,5,0), (4873,53,0), (4873,690,0), (4873,691,0), (4874,5,0), (4874,53,0), (4874,690,0), (4874,691,0), (4875,5,0), (4875,53,0), (4875,690,0), (4875,691,0), (4876,5,0), (4876,9,0), (4876,690,0), (4876,691,0), (4877,5,0), (4877,53,0), (4877,690,0), (4877,691,0), (4878,5,0), (4878,40,0), (4878,690,0), (4878,691,0), (4879,5,0), (4879,53,0), (4879,690,0), (4879,691,0), (4880,5,0), (4880,6,0), (4880,690,0), (4880,691,0), (4881,5,0), (4881,374,0), (4881,683,0), (4881,692,0), (4882,5,0), (4882,15,0), (4882,683,0), (4882,692,0), (4883,5,0), (4883,94,0), (4883,683,0), (4883,692,0), (4884,5,0), (4884,18,0), (4884,683,0), (4884,692,0), (4885,5,0), (4885,14,0), (4885,683,0), (4885,692,0), (4886,5,0), (4886,14,0), (4886,683,0), (4886,692,0), (4887,5,0), (4887,94,0), (4887,683,0), (4887,692,0), (4888,5,0), (4888,377,0), (4888,683,0), (4888,692,0), (4889,5,0), (4889,15,0), (4889,683,0), (4889,692,0), (4890,5,0), (4890,15,0), (4890,683,0), (4890,692,0), (4891,5,0), (4891,94,0), (4891,683,0), (4891,692,0), (4892,5,0), (4892,374,0), (4892,683,0), (4892,692,0), (4893,5,0), (4893,9,0), (4893,683,0), (4893,692,0), (4894,5,0), (4894,15,0), (4894,683,0), (4894,692,0), (4895,5,0), (4895,9,0), (4895,683,0), (4895,692,0), (4896,5,0), (4896,9,0), (4896,683,0), (4896,692,0), (4897,5,0), (4897,9,0), (4897,683,0), (4897,692,0), (4898,5,0), (4898,14,0), (4898,683,0), (4898,692,0), (4899,5,0), (4899,14,0), (4899,683,0), (4899,692,0), (4900,5,0), (4900,683,0), (4900,692,0), (4901,5,0), (4901,14,0), (4901,683,0), (4901,692,0), (4902,5,0), (4902,11,0), (4902,683,0), (4902,692,0), (4903,5,0), (4903,14,0), (4903,683,0), (4903,692,0), (4904,5,0), (4904,18,0), (4904,683,0), (4904,692,0), (4905,5,0), (4905,18,0), (4905,683,0), (4905,692,0), (4906,5,0), (4906,9,0), (4906,683,0), (4906,692,0), (4907,5,0), (4907,9,0), (4907,683,0), (4907,692,0), (4908,5,0), (4908,14,0), (4908,683,0), (4908,692,0), (4909,5,0), (4909,14,0), (4909,683,0), (4909,692,0), (4910,5,0), (4910,14,0), (4910,683,0), (4910,692,0), (4911,5,0), (4911,14,0), (4911,683,0), (4911,692,0), (4912,5,0), (4912,14,0), (4912,683,0), (4912,692,0), (4913,5,0), (4913,14,0), (4913,683,0), (4913,692,0), (4914,5,0), (4914,11,0), (4914,683,0), (4914,692,0), (4915,5,0), (4915,11,0), (4915,683,0), (4915,692,0), (4916,5,0), (4916,13,0), (4916,683,0), (4916,692,0), (4917,5,0), (4917,18,0), (4917,683,0), (4917,692,0), (4918,5,0), (4918,13,0), (4918,683,0), (4918,692,0), (4919,5,0), (4919,13,0), (4919,683,0), (4919,692,0), (4920,5,0), (4920,13,0), (4920,683,0), (4920,692,0), (4921,5,0), (4921,40,0), (4921,683,0), (4921,692,0), (4922,5,0), (4922,18,0), (4922,683,0), (4922,692,0), (4923,5,0), (4923,19,0), (4923,683,0), (4923,692,0), (4924,5,0), (4924,18,0), (4924,683,0), (4924,692,0), (4925,5,0), (4925,9,0), (4925,683,0), (4925,692,0), (4926,5,0), (4926,9,0), (4926,683,0), (4926,692,0), (4927,5,0), (4927,9,0), (4927,683,0), (4927,692,0), (4928,5,0), (4928,9,0), (4928,683,0), (4928,692,0), (4929,5,0), (4929,15,0), (4929,683,0), (4929,692,0), (4930,5,0), (4930,9,0), (4930,683,0), (4930,692,0), (4931,5,0), (4931,9,0), (4931,683,0), (4931,692,0), (4932,5,0), (4932,9,0), (4932,683,0), (4932,692,0), (4933,5,0), (4933,9,0), (4933,693,0), (4934,5,0), (4934,31,0), (4934,693,0), (4935,5,0), (4935,377,0), (4935,693,0), (4936,5,0), (4936,9,0), (4936,693,0), (4937,5,0), (4937,14,0), (4937,693,0), (4938,5,0), (4938,374,0), (4938,693,0), (4939,5,0), (4939,374,0), (4939,693,0), (4940,5,0), (4940,9,0), (4940,693,0), (4941,5,0), (4941,14,0), (4941,693,0), (4942,5,0), (4942,14,0), (4942,693,0), (4943,5,0), (4943,14,0), (4943,693,0), (4944,5,0), (4944,14,0), (4944,693,0), (4945,5,0), (4945,14,0), (4945,693,0), (4946,5,0), (4946,9,0), (4946,693,0), (4947,5,0), (4947,14,0), (4947,693,0), (4948,694,0), (4949,694,0), (4950,694,0), (4951,694,0), (4952,11,0), (4952,694,0), (4953,694,0), (4954,694,0), (4955,694,0), (4956,694,0), (4957,694,0), (4958,694,0), (4959,694,0), (4960,5,0), (4960,23,0), (4960,694,0), (4961,694,0), (4962,5,0), (4962,31,0), (4962,695,0), (4962,696,0), (4963,5,0), (4963,31,0), (4963,695,0), (4963,696,0), (4964,5,0), (4964,31,0), (4964,695,0), (4964,696,0), (4965,5,0), (4965,31,0), (4965,695,0), (4965,696,0), (4966,5,0), (4966,31,0), (4966,695,0), (4966,696,0), (4967,5,0), (4967,31,0), (4967,695,0), (4967,696,0), (4968,5,0), (4968,48,0), (4968,695,0), (4968,696,0), (4969,5,0), (4969,31,0), (4969,695,0), (4969,696,0), (4970,5,0), (4970,40,0), (4970,695,0), (4970,696,0), (4971,5,0), (4971,27,0), (4971,695,0), (4971,696,0), (4972,5,0), (4972,36,0), (4972,695,0), (4972,696,0), (4973,5,0), (4973,27,0), (4973,695,0), (4973,696,0), (4974,5,0), (4974,11,0), (4974,695,0), (4974,696,0), (4975,5,0), (4975,40,0), (4975,695,0), (4975,696,0), (4976,5,0), (4976,31,0), (4976,695,0), (4976,696,0), (4977,5,0), (4977,31,0), (4977,695,0), (4977,696,0), (4978,5,0), (4978,31,0), (4978,695,0), (4978,696,0), (4979,5,0), (4979,31,0), (4979,695,0), (4979,696,0), (4980,5,0), (4980,31,0), (4980,695,0), (4980,696,0), (4981,5,0), (4981,695,0), (4981,696,0), (4982,5,0), (4982,31,0), (4982,695,0), (4982,696,0), (4983,5,0), (4983,11,0), (4983,695,0), (4983,696,0), (4984,5,0), (4984,11,0), (4984,695,0), (4984,696,0), (4985,5,0), (4985,695,0), (4985,696,0), (4986,5,0), (4986,36,0), (4986,695,0), (4986,696,0), (4987,5,0), (4987,36,0), (4987,695,0), (4987,696,0), (4988,5,0), (4988,31,0), (4988,695,0), (4988,696,0), (4989,5,0), (4989,31,0), (4989,695,0), (4989,696,0), (4990,5,0), (4990,11,0), (4990,695,0), (4990,696,0), (4991,5,0), (4991,11,0), (4991,695,0), (4991,696,0), (4992,5,0), (4992,36,0), (4992,695,0), (4992,696,0), (4993,5,0), (4993,31,0), (4993,695,0), (4993,696,0), (4994,5,0), (4994,31,0), (4994,695,0), (4994,696,0), (4995,5,0), (4995,31,0), (4995,695,0), (4995,696,0), (4996,5,0), (4996,31,0), (4996,695,0), (4996,696,0), (4997,5,0), (4997,31,0), (4997,695,0), (4997,696,0), (4998,5,0), (4998,11,0), (4998,695,0), (4998,696,0), (4999,5,0), (4999,27,0), (4999,695,0), (4999,696,0), (5000,5,0), (5000,48,0), (5000,695,0), (5000,696,0), (5001,5,0), (5001,31,0), (5001,695,0), (5001,696,0), (5002,5,0), (5002,31,0), (5002,695,0), (5002,696,0), (5003,5,0), (5003,11,0), (5003,695,0), (5003,696,0), (5004,5,0), (5004,11,0), (5004,695,0), (5004,696,0), (5005,5,0), (5005,11,0), (5005,695,0), (5005,696,0), (5006,5,0), (5006,11,0), (5006,695,0), (5006,696,0), (5007,5,0), (5007,11,0), (5007,695,0), (5007,696,0), (5008,5,0), (5008,11,0), (5008,695,0), (5008,696,0), (5009,5,0), (5009,11,0), (5009,695,0), (5009,696,0), (5010,5,0), (5010,11,0), (5010,695,0), (5010,696,0), (5011,5,0), (5011,11,0), (5011,695,0), (5011,696,0), (5012,5,0), (5012,11,0), (5012,695,0), (5012,696,0), (5013,5,0), (5013,23,0), (5013,695,0), (5013,696,0), (5014,5,0), (5014,11,0), (5014,695,0), (5014,696,0), (5015,5,0), (5015,11,0), (5015,695,0), (5015,696,0), (5016,5,0), (5016,11,0), (5016,695,0), (5016,696,0), (5017,5,0), (5017,11,0), (5017,695,0), (5017,696,0), (5018,5,0), (5018,29,0), (5018,695,0), (5018,696,0), (5019,5,0), (5019,11,0), (5019,695,0), (5019,696,0), (5020,5,0), (5020,11,0), (5020,695,0), (5020,696,0), (5021,5,0), (5021,11,0), (5021,695,0), (5021,696,0), (5022,5,0), (5022,11,0), (5022,695,0), (5022,696,0), (5023,5,0), (5023,695,0), (5023,696,0), (5023,697,0), (5024,5,0), (5024,11,0), (5024,695,0), (5024,696,0), (5025,5,0), (5025,48,0), (5025,695,0), (5025,696,0), (5026,5,0), (5026,11,0), (5026,695,0), (5026,696,0), (5027,5,0), (5027,11,0), (5027,695,0), (5027,696,0), (5028,5,0), (5028,11,0), (5028,695,0), (5028,696,0), (5029,22,0), (5029,698,0), (5029,699,0), (5030,698,0), (5030,699,0), (5031,698,0), (5031,699,0), (5032,698,0), (5032,699,0), (5033,698,0), (5033,699,0), (5034,22,0), (5034,698,0), (5034,699,0), (5035,698,0), (5035,699,0), (5036,698,0), (5036,699,0), (5037,698,0), (5037,699,0), (5038,698,0), (5038,699,0), (5039,698,0), (5039,699,0), (5040,22,0), (5040,698,0), (5040,699,0), (5041,698,0), (5041,699,0), (5042,698,0), (5042,699,0), (5043,698,0), (5043,699,0), (5044,698,0), (5044,699,0), (5045,698,0), (5045,699,0), (5046,698,0), (5046,699,0), (5047,698,0), (5047,699,0), (5048,698,0), (5048,699,0), (5049,698,0), (5049,699,0), (5050,698,0), (5050,699,0), (5051,698,0), (5051,699,0), (5052,22,0), (5052,698,0), (5052,699,0), (5053,698,0), (5053,699,0), (5054,698,0), (5054,699,0), (5055,698,0), (5055,699,0), (5056,22,0), (5056,698,0), (5056,699,0), (5057,698,0), (5057,699,0), (5058,698,0), (5058,699,0), (5059,698,0), (5059,699,0), (5060,698,0), (5060,699,0), (5061,698,0), (5061,699,0), (5062,698,0), (5062,699,0), (5063,22,0), (5063,698,0), (5063,699,0), (5064,698,0), (5064,699,0), (5065,698,0), (5065,699,0), (5066,22,0), (5066,698,0), (5066,699,0), (5067,698,0), (5067,699,0), (5068,698,0), (5068,699,0), (5069,698,0), (5069,699,0), (5070,698,0), (5070,699,0), (5071,698,0), (5071,699,0), (5072,698,0), (5072,699,0), (5073,22,0), (5073,698,0), (5073,699,0), (5074,698,0), (5074,699,0), (5075,698,0), (5075,699,0), (5076,22,0), (5076,698,0), (5076,699,0), (5077,698,0), (5077,699,0), (5078,698,0), (5078,699,0), (5079,698,0), (5079,699,0), (5080,698,0), (5080,699,0), (5081,698,0), (5081,699,0), (5082,22,0), (5082,698,0), (5082,699,0), (5083,698,0), (5083,699,0), (5084,698,0), (5084,699,0), (5085,698,0), (5085,699,0), (5086,700,0), (5087,700,0), (5088,700,0), (5089,700,0), (5090,700,0), (5091,700,0), (5092,700,0), (5093,700,0), (5094,700,0), (5095,700,0), (5096,700,0), (5097,700,0), (5098,700,0), (5099,700,0), (5100,700,0), (5103,5,0), (5103,40,0), (5103,701,0), (5103,702,0), (5104,5,0), (5104,40,0), (5104,701,0), (5104,702,0), (5105,5,0), (5105,701,0), (5105,702,0), (5106,5,0), (5106,40,0), (5106,701,0), (5106,702,0), (5107,5,0), (5107,483,0), (5107,701,0), (5107,702,0), (5108,5,0), (5108,483,0), (5108,701,0), (5108,702,0), (5109,5,0), (5109,701,0), (5109,702,0), (5110,5,0), (5110,40,0), (5110,701,0), (5110,702,0), (5111,5,0), (5111,701,0), (5111,702,0), (5112,5,0), (5112,483,0), (5112,701,0), (5112,702,0), (5113,5,0), (5113,40,0), (5113,701,0), (5113,702,0), (5114,5,0), (5114,701,0), (5114,702,0), (5115,5,0), (5115,40,0), (5115,701,0), (5115,702,0), (5116,5,0), (5116,6,0), (5116,701,0), (5116,702,0), (5117,5,0), (5117,6,0), (5117,701,0), (5117,702,0), (5118,5,0), (5118,6,0), (5118,701,0), (5118,702,0), (5119,5,0), (5119,48,0), (5119,701,0), (5119,702,0), (5120,5,0), (5120,701,0), (5120,702,0), (5121,5,0), (5121,40,0), (5121,701,0), (5121,702,0), (5122,5,0), (5122,701,0), (5122,702,0), (5123,13,0), (5123,703,0), (5123,704,0), (5124,703,0), (5124,704,0), (5125,703,0), (5125,704,0), (5126,703,0), (5126,704,0), (5127,703,0), (5127,704,0), (5128,703,0), (5128,704,0), (5129,703,0), (5129,704,0), (5130,703,0), (5130,704,0), (5131,703,0), (5131,704,0), (5132,13,0), (5132,103,0), (5133,6,0), (5133,358,0), (5134,6,0), (5134,358,0), (5135,5,0), (5135,474,0), (5135,666,0), (5135,667,0), (5137,703,0), (5137,704,0), (5138,705,0), (5138,706,0), (5139,705,0), (5139,706,0), (5140,705,0), (5140,706,0), (5141,705,0), (5141,706,0), (5142,705,0), (5142,706,0), (5143,705,0), (5143,706,0), (5144,705,0), (5144,706,0), (5145,705,0), (5145,706,0), (5146,705,0), (5146,706,0), (5147,705,0), (5147,706,0), (5148,705,0), (5148,706,0), (5149,705,0), (5149,706,0), (5150,705,0), (5150,706,0), (5151,705,0), (5151,706,0), (5152,705,0), (5152,706,0), (5153,705,0), (5153,706,0), (5154,705,0), (5154,706,0), (5155,705,0), (5155,706,0), (5156,705,0), (5156,706,0), (5157,705,0), (5157,706,0), (5158,705,0), (5158,706,0), (5159,705,0), (5159,706,0), (5160,705,0), (5160,706,0), (5161,705,0), (5161,706,0), (5162,705,0), (5162,706,0), (5163,705,0), (5163,706,0), (5164,705,0), (5164,706,0), (5165,705,0), (5165,706,0), (5166,705,0), (5166,706,0), (5167,705,0), (5167,706,0), (5168,705,0), (5168,706,0), (5169,705,0), (5169,706,0), (5170,705,0), (5170,706,0), (5171,705,0), (5171,706,0), (5172,705,0), (5172,706,0), (5173,705,0), (5173,706,0), (5174,705,0), (5174,706,0), (5175,705,0), (5175,706,0), (5176,705,0), (5176,706,0), (5177,705,0), (5177,706,0), (5178,705,0), (5178,706,0), (5179,705,0), (5179,706,0), (5180,705,0), (5180,706,0), (5181,705,0), (5181,706,0), (5182,705,0), (5182,706,0), (5183,705,0), (5183,706,0), (5184,705,0), (5184,706,0), (5185,705,0), (5185,706,0), (5186,705,0), (5186,706,0), (5187,705,0), (5187,706,0), (5188,705,0), (5188,706,0), (5189,705,0), (5189,706,0), (5190,705,0), (5190,706,0), (5191,705,0), (5191,706,0), (5192,705,0), (5192,706,0), (5193,705,0), (5193,706,0), (5194,705,0), (5194,706,0), (5195,705,0), (5195,706,0), (5196,705,0), (5196,706,0), (5197,705,0), (5197,706,0), (5198,705,0), (5198,706,0), (5199,705,0), (5199,706,0), (5200,705,0), (5200,706,0), (5201,705,0), (5201,706,0), (5202,705,0), (5202,706,0), (5203,705,0), (5203,706,0), (5204,705,0), (5204,706,0), (5205,705,0), (5205,706,0), (5206,705,0), (5206,706,0), (5207,705,0), (5207,706,0), (5208,705,0), (5208,706,0), (5209,705,0), (5209,706,0), (5210,705,0), (5210,706,0), (5211,705,0), (5211,706,0), (5212,705,0), (5212,706,0), (5213,705,0), (5213,706,0), (5214,705,0), (5214,706,0), (5215,705,0), (5215,706,0), (5216,705,0), (5216,706,0), (5217,705,0), (5217,706,0), (5218,705,0), (5218,706,0), (5219,705,0), (5219,706,0), (5220,705,0), (5220,706,0), (5221,705,0), (5221,706,0), (5222,705,0), (5222,706,0), (5223,705,0), (5223,706,0), (5224,705,0), (5224,706,0), (5225,705,0), (5225,706,0), (5226,705,0), (5226,706,0), (5227,705,0), (5227,706,0), (5228,705,0), (5228,706,0), (5229,707,0), (5230,707,0), (5230,708,0), (5230,709,0), (5231,707,0), (5232,707,0), (5233,707,0), (5234,707,0), (5235,707,0), (5236,707,0), (5237,707,0), (5238,707,0), (5239,707,0), (5240,707,0), (5241,707,0), (5242,707,0), (5243,707,0), (5244,707,0), (5245,707,0), (5246,707,0), (5247,707,0), (5248,707,0), (5249,707,0), (5250,707,0), (5251,23,0), (5251,710,0), (5252,710,0), (5252,711,0), (5252,712,0), (5253,710,0), (5253,713,0), (5254,710,0), (5255,710,0), (5256,710,0), (5256,714,0), (5257,710,0), (5257,713,0), (5258,710,0), (5259,710,0), (5259,713,0), (5260,710,0), (5260,713,0), (5261,710,0), (5261,713,0), (5262,710,0), (5262,713,0), (5263,710,0), (5264,710,0), (5265,710,0), (5266,710,0), (5267,710,0), (5268,710,0), (5269,710,0), (5270,710,0), (5271,710,0), (5272,710,0), (5273,710,0), (5274,710,0), (5275,710,0), (5276,710,0), (5277,710,0), (5278,710,0), (5279,710,0), (5280,710,0), (5281,710,0), (5282,710,0), (5283,710,0), (5284,710,0), (5285,710,0), (5286,710,0), (5287,710,0), (5288,710,0), (5289,710,0), (5290,710,0), (5291,710,0), (5292,710,0), (5293,710,0), (5294,710,0), (5295,710,0), (5296,710,0), (5296,713,0), (5297,710,0), (5298,710,0), (5299,710,0), (5300,710,0), (5301,710,0), (5302,710,0), (5303,710,0), (5303,715,0), (5304,710,0), (5305,710,0), (5305,716,0), (5306,710,0), (5306,717,0), (5307,710,0), (5307,713,0), (5308,710,0), (5308,713,0), (5309,710,0), (5309,713,0), (5310,710,0), (5311,710,0), (5312,710,0), (5312,713,0), (5313,70,0), (5313,710,0), (5314,70,0), (5314,710,0), (5315,710,0), (5315,714,0), (5316,710,0), (5316,714,0), (5317,710,0), (5317,714,0), (5318,710,0), (5318,714,0), (5319,710,0), (5319,713,0), (5320,710,0), (5320,718,0), (5321,710,0), (5322,710,0), (5322,713,0), (5323,710,0), (5323,713,0), (5324,710,0), (5324,713,0), (5325,710,0), (5325,713,0), (5326,710,0), (5326,713,0), (5327,710,0), (5328,710,0), (5329,710,0), (5330,710,0), (5331,710,0), (5332,710,0), (5333,710,0), (5333,718,0), (5334,710,0), (5334,718,0), (5335,710,0), (5336,710,0), (5337,710,0), (5338,710,0), (5339,710,0), (5340,706,0), (5340,719,0), (5341,706,0), (5341,719,0), (5342,706,0), (5342,719,0), (5343,706,0), (5343,719,0), (5344,706,0), (5344,719,0), (5345,706,0), (5345,719,0), (5346,706,0), (5346,719,0), (5347,706,0), (5347,719,0), (5348,706,0), (5348,719,0), (5349,706,0), (5349,719,0), (5350,706,0), (5350,719,0), (5351,706,0), (5351,719,0), (5352,706,0), (5352,719,0), (5353,706,0), (5353,719,0), (5354,706,0), (5354,719,0), (5355,706,0), (5355,719,0), (5356,706,0), (5356,719,0), (5357,706,0), (5357,719,0), (5358,706,0), (5358,719,0), (5359,706,0), (5359,719,0), (5360,706,0), (5360,719,0), (5361,706,0), (5361,719,0), (5362,706,0), (5362,719,0), (5363,706,0), (5363,719,0), (5364,706,0), (5364,719,0), (5365,706,0), (5365,719,0), (5366,706,0), (5366,719,0), (5367,706,0), (5367,719,0), (5368,706,0), (5368,719,0), (5369,706,0), (5369,719,0), (5370,706,0), (5370,719,0), (5371,706,0), (5371,719,0), (5372,706,0), (5372,719,0), (5373,720,0), (5374,720,0), (5375,720,0), (5376,720,0), (5377,720,0), (5378,720,0), (5379,720,0), (5380,720,0), (5381,720,0), (5382,720,0), (5383,720,0), (5384,720,0), (5385,720,0), (5386,720,0), (5387,720,0), (5388,720,0), (5389,720,0), (5390,720,0), (5391,720,0), (5392,720,0), (5393,720,0), (5394,5,0), (5394,18,0), (5394,721,0), (5394,722,0), (5395,721,0), (5396,721,0), (5397,18,0), (5397,721,0), (5398,721,0), (5399,721,0), (5400,721,0), (5401,721,0), (5402,721,0), (5403,721,0), (5404,721,0), (5405,721,0), (5406,49,0), (5406,721,0), (5407,721,0), (5408,721,0), (5409,721,0), (5410,721,0), (5411,721,0), (5412,721,0), (5413,721,0), (5414,721,0), (5415,721,0), (5416,721,0), (5417,18,0), (5417,721,0), (5418,5,0), (5418,9,0), (5418,723,0), (5419,9,0), (5419,723,0), (5420,483,0), (5420,723,0), (5421,483,0), (5421,723,0), (5422,483,0), (5422,723,0), (5423,483,0), (5423,723,0), (5424,9,0), (5424,723,0), (5425,9,0), (5425,723,0), (5426,5,0), (5426,29,0), (5426,33,0), (5426,724,0), (5427,29,0), (5427,724,0), (5428,29,0), (5428,724,0), (5429,29,0), (5429,724,0), (5430,29,0), (5430,724,0), (5431,29,0), (5431,724,0), (5432,29,0), (5432,724,0), (5433,29,0), (5433,724,0), (5434,29,0), (5434,724,0), (5435,29,0), (5435,724,0), (5436,29,0), (5436,724,0), (5437,29,0), (5437,724,0), (5438,29,0), (5438,724,0), (5439,5,0), (5439,29,0), (5439,33,0), (5439,724,0), (5440,29,0), (5440,724,0), (5441,29,0), (5441,724,0), (5442,29,0), (5442,724,0), (5443,29,0), (5443,724,0), (5444,5,0), (5444,29,0), (5444,33,0), (5444,724,0), (5445,29,0), (5445,724,0), (5446,29,0), (5446,724,0), (5447,29,0), (5447,724,0), (5448,5,0), (5448,29,0), (5448,33,0), (5448,724,0), (5449,29,0), (5449,724,0), (5450,724,0), (5450,725,0), (5451,29,0), (5451,724,0), (5452,29,0), (5452,724,0), (5453,29,0), (5453,724,0), (5454,29,0), (5454,724,0), (5455,29,0), (5455,724,0), (5456,29,0), (5456,724,0), (5457,29,0), (5457,724,0), (5458,5,0), (5458,29,0), (5458,33,0), (5458,724,0), (5459,29,0), (5459,724,0), (5460,29,0), (5460,724,0), (5461,29,0), (5461,724,0), (5462,724,0), (5463,724,0), (5464,724,0), (5465,724,0), (5466,724,0), (5467,724,0), (5468,724,0), (5469,724,0), (5470,724,0), (5471,724,0), (5472,724,0), (5473,724,0), (5474,724,0), (5475,724,0), (5476,29,0), (5476,726,0), (5477,29,0), (5477,726,0), (5478,29,0), (5478,726,0), (5479,5,0), (5479,29,0), (5479,33,0), (5479,726,0), (5480,29,0), (5480,726,0), (5481,29,0), (5481,726,0), (5482,29,0), (5482,726,0), (5483,29,0), (5483,726,0), (5484,29,0), (5484,726,0), (5485,29,0), (5485,726,0), (5486,29,0), (5486,726,0), (5487,29,0), (5487,726,0), (5488,29,0), (5488,726,0), (5489,29,0), (5489,726,0), (5490,29,0), (5490,726,0), (5491,29,0), (5491,726,0), (5492,29,0), (5492,726,0), (5493,29,0), (5493,726,0), (5494,29,0), (5494,726,0), (5495,29,0), (5495,726,0), (5496,29,0), (5496,726,0), (5497,29,0), (5497,726,0), (5498,29,0), (5498,726,0), (5499,29,0), (5499,726,0), (5500,29,0), (5500,726,0), (5501,29,0), (5501,726,0), (5502,29,0), (5502,726,0), (5503,29,0), (5503,726,0), (5504,29,0), (5504,726,0), (5505,29,0), (5505,726,0), (5506,29,0), (5506,726,0), (5507,29,0), (5507,726,0), (5508,29,0), (5508,726,0), (5509,29,0), (5509,726,0), (5510,29,0), (5510,726,0), (5511,29,0), (5511,726,0), (5512,29,0), (5512,726,0), (5513,29,0), (5513,726,0), (5514,48,0), (5514,726,0), (5515,29,0), (5515,726,0), (5516,29,0), (5516,726,0), (5517,29,0), (5517,726,0), (5518,29,0), (5518,726,0), (5519,29,0), (5519,726,0), (5520,29,0), (5520,726,0), (5521,29,0), (5521,726,0), (5522,29,0), (5522,726,0), (5523,29,0), (5523,726,0), (5524,29,0), (5524,726,0), (5525,29,0), (5525,726,0), (5526,29,0), (5526,726,0), (5527,29,0), (5527,726,0), (5528,29,0), (5528,726,0), (5529,5,0), (5529,29,0), (5529,33,0), (5529,727,0), (5530,29,0), (5530,727,0), (5531,29,0), (5531,727,0), (5532,29,0), (5532,727,0), (5533,29,0), (5533,727,0), (5534,29,0), (5534,727,0), (5535,29,0), (5535,727,0), (5536,5,0), (5536,29,0), (5536,33,0), (5536,728,0), (5537,29,0), (5537,728,0), (5538,29,0), (5538,728,0), (5539,29,0), (5539,728,0), (5540,29,0), (5540,728,0), (5541,29,0), (5541,728,0), (5542,29,0), (5542,728,0), (5543,29,0), (5543,728,0), (5544,29,0), (5544,728,0), (5545,29,0), (5545,728,0), (5546,29,0), (5546,728,0), (5547,29,0), (5547,728,0), (5548,29,0), (5548,728,0), (5549,29,0), (5549,728,0), (5550,29,0), (5550,728,0), (5551,29,0), (5551,728,0), (5552,29,0), (5552,728,0), (5553,29,0), (5553,728,0), (5554,29,0), (5554,728,0), (5555,29,0), (5555,728,0), (5556,29,0), (5556,728,0), (5557,29,0), (5557,728,0), (5558,29,0), (5558,728,0), (5559,5,0), (5559,29,0), (5559,33,0), (5559,728,0), (5560,29,0), (5560,728,0), (5561,5,0), (5561,29,0), (5561,33,0), (5561,728,0), (5562,29,0), (5562,728,0), (5563,5,0), (5563,29,0), (5563,33,0), (5563,728,0), (5564,29,0), (5564,728,0), (5565,5,0), (5565,33,0), (5565,51,0), (5565,729,0), (5566,51,0), (5566,729,0), (5567,51,0), (5567,729,0), (5568,51,0), (5568,729,0), (5569,51,0), (5569,729,0), (5570,51,0), (5570,729,0), (5571,51,0), (5571,729,0), (5572,51,0), (5572,729,0), (5573,51,0), (5573,729,0), (5574,51,0), (5574,729,0), (5575,51,0), (5575,729,0), (5576,51,0), (5576,729,0), (5577,51,0), (5577,729,0), (5578,51,0), (5578,729,0), (5579,51,0), (5579,729,0), (5580,51,0), (5580,729,0), (5581,51,0), (5581,729,0), (5582,51,0), (5582,729,0), (5583,51,0), (5583,729,0), (5584,51,0), (5584,729,0), (5585,51,0), (5585,729,0), (5586,51,0), (5586,729,0), (5587,51,0), (5587,729,0), (5588,51,0), (5588,729,0), (5589,51,0), (5589,729,0), (5590,51,0), (5590,729,0), (5591,51,0), (5591,729,0), (5592,51,0), (5592,729,0), (5593,51,0), (5593,729,0), (5594,51,0), (5594,729,0), (5595,51,0), (5595,729,0), (5596,51,0), (5596,729,0), (5597,51,0), (5597,729,0), (5598,51,0), (5598,729,0), (5599,51,0), (5599,729,0), (5600,51,0), (5600,729,0), (5601,51,0), (5601,729,0), (5602,51,0), (5602,729,0), (5603,51,0), (5603,729,0), (5604,51,0), (5604,729,0), (5605,51,0), (5605,729,0), (5606,51,0), (5606,729,0), (5607,51,0), (5607,729,0), (5608,51,0), (5608,729,0), (5609,51,0), (5609,729,0), (5610,51,0), (5610,729,0), (5611,51,0), (5611,729,0), (5612,51,0), (5612,729,0), (5613,51,0), (5613,729,0), (5614,51,0), (5614,729,0), (5615,51,0), (5615,729,0), (5616,5,0), (5616,49,0), (5616,730,0), (5617,730,0), (5618,730,0), (5619,730,0), (5620,13,0), (5620,730,0), (5621,9,0), (5621,730,0), (5622,9,0), (5622,730,0), (5623,730,0), (5624,49,0), (5624,730,0), (5625,31,0), (5625,730,0), (5626,13,0), (5626,730,0), (5627,49,0), (5627,730,0), (5628,13,0), (5628,730,0), (5629,13,0), (5629,103,0), (5630,6,0), (5630,358,0), (5631,6,0), (5631,358,0), (5632,5,0), (5632,474,0), (5632,666,0), (5632,667,0), (5633,13,0), (5633,103,0), (5634,6,0), (5634,358,0), (5635,6,0), (5635,358,0), (5636,5,0), (5636,474,0), (5636,666,0), (5636,667,0), (5638,9,0), (5638,730,0), (5639,31,0), (5639,730,0), (5640,53,0), (5640,730,0), (5641,53,0), (5641,730,0), (5642,53,0), (5642,730,0), (5643,13,0), (5643,730,0), (5644,31,0), (5644,730,0), (5645,13,0), (5645,730,0), (5646,730,0), (5647,730,0), (5648,51,0), (5648,730,0), (5649,730,0), (5650,51,0), (5650,730,0), (5651,730,0), (5652,27,0), (5652,730,0), (5653,51,0), (5653,730,0), (5654,27,0), (5654,730,0), (5655,730,0), (5656,27,0), (5656,730,0), (5657,18,0), (5657,730,0), (5658,36,0), (5658,730,0), (5659,36,0), (5659,730,0), (5660,18,0), (5660,730,0), (5661,5,0), (5661,40,0), (5661,731,0), (5661,732,0), (5662,731,0), (5663,731,0), (5664,731,0), (5665,731,0), (5666,731,0), (5667,731,0), (5668,40,0), (5668,731,0), (5669,40,0), (5669,731,0), (5670,40,0), (5670,731,0), (5671,731,0), (5672,731,0), (5673,40,0), (5673,731,0), (5674,731,0), (5675,731,0), (5676,731,0), (5677,40,0), (5677,731,0), (5678,5,0), (5678,9,0), (5678,733,0), (5679,5,0), (5679,9,0), (5679,733,0), (5680,5,0), (5680,9,0), (5680,733,0), (5681,5,0), (5681,483,0), (5681,733,0), (5682,5,0), (5682,483,0), (5682,733,0), (5683,5,0), (5683,483,0), (5683,733,0), (5684,5,0), (5684,483,0), (5684,733,0), (5685,5,0), (5685,9,0), (5685,733,0), (5686,5,0), (5686,9,0), (5686,733,0), (5687,5,0), (5687,9,0), (5687,733,0), (5688,5,0), (5688,9,0), (5688,733,0), (5689,5,0), (5689,9,0), (5689,733,0), (5690,5,0), (5690,9,0), (5690,733,0), (5691,5,0), (5691,9,0), (5691,733,0), (5692,5,0), (5692,18,0), (5692,734,0), (5693,734,0), (5694,734,0), (5695,5,0), (5695,23,0), (5695,735,0), (5695,736,0), (5696,5,0), (5696,735,0), (5696,736,0), (5697,5,0), (5697,23,0), (5697,735,0), (5697,736,0), (5698,5,0), (5698,23,0), (5698,735,0), (5698,736,0), (5699,5,0), (5699,23,0), (5699,735,0), (5699,736,0), (5700,5,0), (5700,23,0), (5700,735,0), (5700,736,0), (5701,5,0), (5701,23,0), (5701,735,0), (5701,736,0), (5702,5,0), (5702,735,0), (5702,736,0), (5703,5,0), (5703,23,0), (5703,735,0), (5703,736,0), (5704,5,0), (5704,23,0), (5704,735,0), (5704,736,0), (5705,5,0), (5705,23,0), (5705,735,0), (5705,736,0), (5706,5,0), (5706,23,0), (5706,735,0), (5706,736,0), (5707,5,0), (5707,23,0), (5707,735,0), (5707,736,0), (5708,5,0), (5708,735,0), (5708,736,0), (5709,5,0), (5709,19,0), (5709,735,0), (5709,736,0), (5710,5,0), (5710,23,0), (5710,735,0), (5710,736,0), (5711,5,0), (5711,23,0), (5711,735,0), (5711,736,0), (5712,5,0), (5712,23,0), (5712,736,0), (5712,737,0), (5713,5,0), (5713,736,0), (5713,737,0), (5714,5,0), (5714,23,0), (5714,736,0), (5714,737,0), (5715,5,0), (5715,23,0), (5715,736,0), (5715,737,0), (5716,5,0), (5716,23,0), (5716,736,0), (5716,737,0), (5717,5,0), (5717,23,0), (5717,736,0), (5717,737,0), (5718,5,0), (5718,23,0), (5718,736,0), (5718,737,0), (5719,5,0), (5719,23,0), (5719,736,0), (5719,737,0), (5720,5,0), (5720,23,0), (5720,736,0), (5720,737,0), (5721,5,0), (5721,23,0), (5721,736,0), (5721,737,0), (5722,5,0), (5722,23,0), (5722,736,0), (5722,737,0), (5723,5,0), (5723,23,0), (5723,736,0), (5723,737,0), (5724,5,0), (5724,23,0), (5724,736,0), (5724,737,0), (5725,5,0), (5725,736,0), (5725,737,0), (5726,5,0), (5726,23,0), (5726,736,0), (5726,737,0), (5727,5,0), (5727,23,0), (5727,736,0), (5727,738,0), (5728,5,0), (5728,736,0), (5728,738,0), (5729,5,0), (5729,23,0), (5729,736,0), (5729,738,0), (5730,5,0), (5730,23,0), (5730,736,0), (5730,738,0), (5731,5,0), (5731,23,0), (5731,736,0), (5731,738,0), (5732,5,0), (5732,23,0), (5732,736,0), (5732,738,0), (5733,5,0), (5733,23,0), (5733,736,0), (5733,738,0), (5734,5,0), (5734,23,0), (5734,736,0), (5734,738,0), (5735,5,0), (5735,23,0), (5735,736,0), (5735,738,0), (5736,5,0), (5736,23,0), (5736,736,0), (5736,738,0), (5737,5,0), (5737,23,0), (5737,736,0), (5737,738,0), (5738,5,0), (5738,23,0), (5738,736,0), (5738,738,0), (5739,5,0), (5739,23,0), (5739,736,0), (5739,738,0), (5740,5,0), (5740,23,0), (5740,736,0), (5740,738,0), (5741,5,0), (5741,23,0), (5741,736,0), (5741,738,0), (5742,5,0), (5742,23,0), (5742,736,0), (5742,738,0), (5743,5,0), (5743,13,0), (5743,736,0), (5743,738,0), (5744,5,0), (5744,23,0), (5744,736,0), (5744,738,0), (5745,5,0), (5745,23,0), (5745,736,0), (5745,738,0), (5746,5,0), (5746,23,0), (5746,736,0), (5746,738,0), (5747,5,0), (5747,23,0), (5747,736,0), (5747,738,0), (5748,5,0), (5748,23,0), (5748,736,0), (5748,738,0), (5749,5,0), (5749,23,0), (5749,736,0), (5749,738,0), (5750,5,0), (5750,23,0), (5750,736,0), (5750,738,0), (5751,5,0), (5751,739,0), (5751,740,0), (5752,739,0), (5753,739,0), (5754,739,0), (5755,739,0), (5756,739,0), (5757,739,0), (5758,739,0), (5759,739,0), (5760,29,0), (5760,739,0), (5761,29,0), (5761,739,0), (5762,29,0), (5762,739,0), (5763,29,0), (5763,739,0), (5764,29,0), (5764,739,0), (5765,29,0), (5765,739,0), (5766,29,0), (5766,739,0), (5767,29,0), (5767,739,0), (5768,739,0), (5769,29,0), (5769,739,0), (5770,29,0), (5770,739,0), (5771,29,0), (5771,739,0), (5772,29,0), (5772,739,0), (5773,29,0), (5773,739,0), (5774,29,0), (5774,739,0), (5775,29,0), (5775,739,0), (5776,29,0), (5776,739,0), (5777,29,0), (5777,739,0), (5778,29,0), (5778,739,0), (5779,29,0), (5779,739,0), (5780,29,0), (5780,739,0), (5781,29,0), (5781,739,0), (5782,51,0), (5782,739,0), (5783,29,0), (5783,739,0), (5784,29,0), (5784,739,0), (5785,29,0), (5785,739,0), (5786,29,0), (5786,739,0), (5787,4,0), (5787,739,0), (5788,29,0), (5788,739,0), (5789,29,0), (5789,739,0), (5790,29,0), (5790,739,0), (5791,29,0), (5791,739,0), (5792,29,0), (5792,739,0), (5793,5,0), (5793,9,0), (5793,741,0), (5794,483,0), (5794,741,0), (5795,483,0), (5795,741,0), (5796,483,0), (5796,741,0), (5797,483,0), (5797,741,0), (5798,9,0), (5798,741,0), (5799,9,0), (5799,741,0), (5800,9,0), (5800,741,0), (5801,9,0), (5801,741,0), (5802,13,0), (5802,741,0), (5803,9,0), (5803,741,0), (5804,31,0), (5804,741,0), (5805,741,0), (5806,741,0), (5807,5,0), (5807,22,0), (5807,742,0), (5807,743,0), (5808,5,0), (5808,22,0), (5808,742,0), (5808,743,0), (5809,5,0), (5809,22,0), (5809,742,0), (5809,743,0), (5810,5,0), (5810,483,0), (5810,742,0), (5810,743,0), (5811,5,0), (5811,742,0), (5811,743,0), (5812,5,0), (5812,22,0), (5812,742,0), (5812,743,0), (5813,5,0), (5813,22,0), (5813,742,0), (5813,743,0), (5814,5,0), (5814,11,0), (5814,742,0), (5814,743,0), (5815,5,0), (5815,23,0), (5815,742,0), (5815,743,0), (5816,5,0), (5816,23,0), (5816,742,0), (5816,743,0), (5817,5,0), (5817,22,0), (5817,742,0), (5817,743,0), (5818,5,0), (5818,742,0), (5818,743,0), (5818,744,0), (5819,5,0), (5819,13,0), (5819,742,0), (5819,743,0), (5820,5,0), (5820,13,0), (5820,742,0), (5820,743,0), (5821,5,0), (5821,19,0), (5821,742,0), (5821,743,0), (5822,5,0), (5822,19,0), (5822,742,0), (5822,743,0), (5823,5,0), (5823,19,0), (5823,742,0), (5823,743,0), (5824,5,0), (5824,13,0), (5824,742,0), (5824,743,0), (5825,5,0), (5825,29,0), (5825,742,0), (5825,743,0), (5826,5,0), (5826,742,0), (5826,743,0), (5827,5,0), (5827,29,0), (5827,742,0), (5827,743,0), (5828,5,0), (5828,742,0), (5828,743,0), (5829,5,0), (5829,29,0), (5829,742,0), (5829,743,0), (5830,5,0), (5830,742,0), (5830,743,0), (5831,5,0), (5831,742,0), (5831,743,0), (5832,5,0), (5832,742,0), (5832,743,0), (5833,5,0), (5833,29,0), (5833,742,0), (5833,743,0), (5834,5,0), (5834,742,0), (5834,743,0), (5835,5,0), (5835,29,0), (5835,742,0), (5835,743,0), (5836,5,0), (5836,742,0), (5836,743,0), (5837,5,0), (5837,29,0), (5837,742,0), (5837,743,0), (5838,5,0), (5838,742,0), (5838,743,0), (5839,5,0), (5839,29,0), (5839,742,0), (5839,743,0), (5840,5,0), (5840,742,0), (5840,743,0), (5841,5,0), (5841,29,0), (5841,742,0), (5841,743,0), (5842,5,0), (5842,742,0), (5842,743,0), (5843,5,0), (5843,23,0), (5843,742,0), (5843,743,0), (5844,5,0), (5844,29,0), (5844,742,0), (5844,743,0), (5845,5,0), (5845,29,0), (5845,742,0), (5845,743,0), (5846,5,0), (5846,29,0), (5846,742,0), (5846,743,0), (5847,5,0), (5847,29,0), (5847,742,0), (5847,743,0), (5848,5,0), (5848,29,0), (5848,742,0), (5848,743,0), (5849,5,0), (5849,29,0), (5849,742,0), (5849,743,0), (5850,5,0), (5850,29,0), (5850,742,0), (5850,743,0), (5851,5,0), (5851,29,0), (5851,742,0), (5851,743,0), (5852,5,0), (5852,29,0), (5852,742,0), (5852,743,0), (5853,5,0), (5853,29,0), (5853,742,0), (5853,743,0), (5854,5,0), (5854,29,0), (5854,742,0), (5854,743,0), (5855,5,0), (5855,29,0), (5855,742,0), (5855,743,0), (5856,5,0), (5856,29,0), (5856,742,0), (5856,743,0), (5857,5,0), (5857,29,0), (5857,742,0), (5857,743,0), (5858,5,0), (5858,29,0), (5858,742,0), (5858,743,0), (5859,5,0), (5859,29,0), (5859,742,0), (5859,743,0), (5860,5,0), (5860,29,0), (5860,742,0), (5860,743,0), (5861,5,0), (5861,742,0), (5861,743,0), (5862,5,0), (5862,23,0), (5862,742,0), (5862,743,0), (5863,5,0), (5863,742,0), (5863,743,0), (5864,5,0), (5864,742,0), (5864,743,0), (5865,5,0), (5865,742,0), (5865,743,0), (5866,5,0), (5866,54,0), (5866,742,0), (5866,743,0), (5867,5,0), (5867,54,0), (5867,742,0), (5867,743,0), (5868,5,0), (5868,54,0), (5868,742,0), (5868,743,0), (5869,5,0), (5869,54,0), (5869,742,0), (5869,743,0), (5870,5,0), (5870,29,0), (5870,742,0), (5870,743,0), (5871,5,0), (5871,54,0), (5871,742,0), (5871,743,0), (5872,5,0), (5872,54,0), (5872,742,0), (5872,743,0), (5873,5,0), (5873,54,0), (5873,742,0), (5873,743,0), (5874,5,0), (5874,31,0), (5874,742,0), (5874,743,0), (5875,5,0), (5875,54,0), (5875,742,0), (5875,743,0), (5876,5,0), (5876,29,0), (5876,742,0), (5876,743,0), (5877,5,0), (5877,13,0), (5877,742,0), (5877,743,0), (5878,5,0), (5878,29,0), (5878,742,0), (5878,743,0), (5879,5,0), (5879,54,0), (5879,742,0), (5879,743,0), (5880,5,0), (5880,31,0), (5880,742,0), (5880,743,0), (5881,5,0), (5881,31,0), (5881,742,0), (5881,743,0), (5882,5,0), (5882,31,0), (5882,742,0), (5882,743,0), (5883,5,0), (5883,29,0), (5883,742,0), (5883,743,0), (5884,5,0), (5884,31,0), (5884,742,0), (5884,743,0), (5885,5,0), (5885,29,0), (5885,742,0), (5885,743,0), (5886,5,0), (5886,31,0), (5886,742,0), (5886,743,0), (5887,5,0), (5887,31,0), (5887,742,0), (5887,743,0), (5888,5,0), (5888,29,0), (5888,742,0), (5888,743,0), (5889,5,0), (5889,31,0), (5889,742,0), (5889,743,0), (5890,5,0), (5890,13,0), (5890,742,0), (5890,743,0), (5891,5,0), (5891,13,0), (5891,742,0), (5891,743,0), (5892,5,0), (5892,13,0), (5892,742,0), (5892,743,0), (5893,5,0), (5893,19,0), (5893,742,0), (5893,743,0), (5894,5,0), (5894,19,0), (5894,742,0), (5894,743,0), (5895,5,0), (5895,19,0), (5895,742,0), (5895,743,0), (5896,5,0), (5896,19,0), (5896,742,0), (5896,743,0), (5897,5,0), (5897,18,0), (5897,742,0), (5897,743,0), (5898,5,0), (5898,18,0), (5898,742,0), (5898,743,0), (5899,5,0), (5899,18,0), (5899,742,0), (5899,743,0), (5900,5,0), (5900,29,0), (5900,742,0), (5900,743,0), (5901,5,0), (5901,29,0), (5901,742,0), (5901,743,0), (5902,5,0), (5902,29,0), (5902,742,0), (5902,743,0), (5903,5,0), (5903,23,0), (5903,742,0), (5903,743,0), (5904,5,0), (5904,23,0), (5904,742,0), (5904,743,0), (5905,5,0), (5905,23,0), (5905,742,0), (5905,743,0), (5906,5,0), (5906,22,0), (5906,742,0), (5906,743,0), (5907,5,0), (5907,742,0), (5907,743,0), (5908,5,0), (5908,22,0), (5908,742,0), (5908,743,0), (5909,5,0), (5909,22,0), (5909,742,0), (5909,743,0), (5910,5,0), (5910,22,0), (5910,742,0), (5910,743,0), (5911,5,0), (5911,22,0), (5911,742,0), (5911,743,0), (5912,5,0), (5912,22,0), (5912,742,0), (5912,743,0), (5913,5,0), (5913,22,0), (5913,742,0), (5913,743,0), (5914,5,0), (5914,29,0), (5914,742,0), (5914,743,0), (5915,5,0), (5915,22,0), (5915,742,0), (5915,743,0), (5916,5,0), (5916,29,0), (5916,742,0), (5916,743,0), (5917,5,0), (5917,22,0), (5917,742,0), (5917,743,0), (5918,5,0), (5918,29,0), (5918,742,0), (5918,743,0), (5919,5,0), (5919,22,0), (5919,742,0), (5919,743,0), (5920,5,0), (5920,29,0), (5920,742,0), (5920,743,0), (5921,5,0), (5921,742,0), (5921,743,0), (5922,5,0), (5922,9,0), (5922,742,0), (5922,743,0), (5923,5,0), (5923,22,0), (5923,742,0), (5923,743,0), (5924,5,0), (5924,29,0), (5924,742,0), (5924,743,0), (5925,5,0), (5925,22,0), (5925,742,0), (5925,743,0), (5926,5,0), (5926,22,0), (5926,742,0), (5926,743,0), (5927,5,0), (5927,22,0), (5927,742,0), (5927,743,0), (5928,5,0), (5928,22,0), (5928,742,0), (5928,743,0), (5929,5,0), (5929,9,0), (5929,742,0), (5929,743,0), (5930,5,0), (5930,29,0), (5930,742,0), (5930,743,0), (5931,5,0), (5931,22,0), (5931,742,0), (5931,743,0), (5932,5,0), (5932,22,0), (5932,742,0), (5932,743,0), (5933,5,0), (5933,22,0), (5933,742,0), (5933,743,0), (5934,5,0), (5934,22,0), (5934,742,0), (5934,743,0), (5935,5,0), (5935,22,0), (5935,742,0), (5935,743,0), (5936,5,0), (5936,22,0), (5936,742,0), (5936,743,0), (5937,5,0), (5937,54,0), (5937,742,0), (5937,743,0), (5938,5,0), (5938,22,0), (5938,742,0), (5938,743,0), (5939,5,0), (5939,22,0), (5939,742,0), (5939,743,0), (5940,5,0), (5940,22,0), (5940,742,0), (5940,743,0), (5941,5,0), (5941,48,0), (5941,742,0), (5941,743,0), (5942,5,0), (5942,13,0), (5942,742,0), (5942,743,0), (5943,5,0), (5943,94,0), (5943,742,0), (5943,743,0), (5944,5,0), (5944,22,0), (5944,742,0), (5944,743,0), (5945,5,0), (5945,742,0), (5945,743,0), (5946,5,0), (5946,742,0), (5946,743,0), (5946,745,0), (5947,5,0), (5947,53,0), (5947,746,0), (5948,9,0), (5948,746,0), (5949,14,0), (5949,746,0), (5950,53,0), (5950,746,0), (5951,23,0), (5951,746,0), (5952,22,0), (5952,746,0), (5953,9,0), (5953,746,0), (5954,9,0), (5954,746,0), (5955,53,0), (5955,746,0), (5956,11,0), (5956,746,0), (5957,9,0), (5957,746,0), (5958,53,0), (5958,746,0), (5959,22,0), (5959,746,0), (5960,53,0), (5960,746,0), (5961,53,0), (5961,746,0), (5962,53,0), (5962,746,0), (5963,53,0), (5963,746,0), (5964,53,0), (5964,746,0), (5965,9,0), (5965,746,0), (5966,40,0), (5966,746,0), (5967,483,0), (5967,746,0), (5968,483,0), (5968,746,0), (5969,483,0), (5969,746,0), (5970,483,0), (5970,746,0), (5971,483,0), (5971,746,0), (5972,746,0), (5973,746,0), (5974,746,0), (5975,746,0), (5976,747,0), (5976,748,0), (5976,749,0), (5977,9,0), (5977,747,0), (5978,19,0), (5978,747,0), (5979,9,0), (5979,747,0), (5980,9,0), (5980,747,0), (5981,19,0), (5981,747,0), (5982,49,0), (5982,747,0), (5983,9,0), (5983,747,0), (5984,9,0), (5984,747,0), (5985,9,0), (5985,747,0), (5986,9,0), (5986,747,0), (5987,11,0), (5987,747,0), (5988,19,0), (5988,747,0), (5989,19,0), (5989,747,0), (5990,19,0), (5990,747,0), (5991,749,0), (5991,750,0), (5991,751,0), (5992,749,0), (5992,750,0), (5993,749,0), (5993,750,0), (5994,19,0), (5994,749,0), (5994,750,0), (5995,749,0), (5995,750,0), (5996,749,0), (5996,750,0), (5997,749,0), (5997,750,0), (5998,749,0), (5998,750,0), (5999,54,0), (5999,749,0), (5999,750,0), (6000,749,0), (6000,750,0), (6001,749,0), (6001,750,0), (6002,749,0), (6002,750,0), (6003,14,0), (6003,749,0), (6003,750,0), (6004,749,0), (6004,750,0), (6005,749,0), (6005,750,0), (6006,749,0), (6006,750,0), (6007,749,0), (6007,750,0), (6008,749,0), (6008,752,0), (6008,753,0), (6009,749,0), (6009,752,0), (6010,19,0), (6010,749,0), (6010,752,0), (6011,749,0), (6011,752,0), (6012,19,0), (6012,749,0), (6012,752,0), (6013,749,0), (6013,752,0), (6014,749,0), (6014,752,0), (6015,749,0), (6015,752,0), (6016,19,0), (6016,749,0), (6016,752,0), (6017,749,0), (6017,752,0), (6018,19,0), (6018,749,0), (6018,752,0), (6019,749,0), (6019,752,0), (6020,749,0), (6020,752,0), (6021,749,0), (6021,752,0), (6022,5,0), (6022,22,0), (6022,683,0), (6022,754,0), (6023,5,0), (6023,22,0), (6023,683,0), (6023,754,0), (6024,5,0), (6024,94,0), (6024,683,0), (6024,754,0), (6025,5,0), (6025,15,0), (6025,683,0), (6025,754,0), (6026,5,0), (6026,22,0), (6026,683,0), (6026,754,0), (6027,5,0), (6027,22,0), (6027,683,0), (6027,754,0), (6028,5,0), (6028,94,0), (6028,683,0), (6028,754,0), (6029,5,0), (6029,15,0), (6029,683,0), (6029,754,0), (6030,5,0), (6030,94,0), (6030,683,0), (6030,754,0), (6031,5,0), (6031,31,0), (6031,683,0), (6031,754,0), (6032,5,0), (6032,15,0), (6032,683,0), (6032,754,0), (6033,5,0), (6033,22,0), (6033,683,0), (6033,754,0), (6034,5,0), (6034,22,0), (6034,683,0), (6034,754,0), (6035,5,0), (6035,94,0), (6035,683,0), (6035,754,0), (6036,5,0), (6036,22,0), (6036,683,0), (6036,754,0), (6037,5,0), (6037,22,0), (6037,683,0), (6037,754,0), (6038,5,0), (6038,94,0), (6038,683,0), (6038,754,0), (6039,5,0), (6039,22,0), (6039,683,0), (6039,754,0), (6040,5,0), (6040,22,0), (6040,683,0), (6040,754,0), (6041,5,0), (6041,94,0), (6041,683,0), (6041,754,0), (6042,5,0), (6042,15,0), (6042,683,0), (6042,754,0), (6043,5,0), (6043,22,0), (6043,683,0), (6043,754,0), (6044,5,0), (6044,22,0), (6044,683,0), (6044,754,0), (6045,5,0), (6045,94,0), (6045,683,0), (6045,754,0), (6046,5,0), (6046,31,0), (6046,683,0), (6046,754,0), (6047,5,0), (6047,31,0), (6047,683,0), (6047,754,0), (6048,5,0), (6048,31,0), (6048,683,0), (6048,754,0), (6049,5,0), (6049,22,0), (6049,683,0), (6049,754,0), (6050,5,0), (6050,22,0), (6050,683,0), (6050,754,0), (6051,5,0), (6051,94,0), (6051,683,0), (6051,754,0), (6052,5,0), (6052,22,0), (6052,683,0), (6052,754,0), (6053,5,0), (6053,22,0), (6053,683,0), (6053,754,0), (6054,5,0), (6054,15,0), (6054,683,0), (6054,754,0), (6055,5,0), (6055,15,0), (6055,683,0), (6055,754,0), (6056,5,0), (6056,22,0), (6056,683,0), (6056,754,0), (6057,5,0), (6057,22,0), (6057,683,0), (6057,754,0), (6058,5,0), (6058,94,0), (6058,683,0), (6058,754,0), (6059,5,0), (6059,22,0), (6059,683,0), (6059,754,0), (6060,5,0), (6060,11,0), (6060,683,0), (6060,754,0), (6061,5,0), (6061,22,0), (6061,683,0), (6061,754,0), (6062,5,0), (6062,48,0), (6062,683,0), (6062,754,0), (6063,5,0), (6063,94,0), (6063,683,0), (6063,754,0), (6064,5,0), (6064,22,0), (6064,683,0), (6064,754,0), (6065,5,0), (6065,22,0), (6065,683,0), (6065,754,0), (6066,5,0), (6066,94,0), (6066,683,0), (6066,754,0), (6067,5,0), (6067,22,0), (6067,683,0), (6067,754,0), (6068,5,0), (6068,22,0), (6068,683,0), (6068,754,0), (6069,5,0), (6069,22,0), (6069,683,0), (6069,754,0), (6070,5,0), (6070,94,0), (6070,683,0), (6070,754,0), (6071,5,0), (6071,15,0), (6071,683,0), (6071,754,0), (6072,5,0), (6072,22,0), (6072,683,0), (6072,754,0), (6073,5,0), (6073,22,0), (6073,683,0), (6073,754,0), (6074,5,0), (6074,94,0), (6074,683,0), (6074,754,0), (6075,5,0), (6075,22,0), (6075,683,0), (6075,754,0), (6076,5,0), (6076,22,0), (6076,683,0), (6076,754,0), (6077,5,0), (6077,94,0), (6077,683,0), (6077,754,0), (6078,5,0), (6078,22,0), (6078,683,0), (6078,754,0), (6079,5,0), (6079,54,0), (6079,683,0), (6079,754,0), (6080,5,0), (6080,94,0), (6080,683,0), (6080,754,0), (6081,5,0), (6081,94,0), (6081,683,0), (6081,754,0), (6082,5,0), (6082,22,0), (6082,683,0), (6082,754,0), (6083,5,0), (6083,13,0), (6083,683,0), (6083,754,0), (6084,5,0), (6084,22,0), (6084,683,0), (6084,754,0), (6085,5,0), (6085,13,0), (6085,683,0), (6085,754,0), (6086,5,0), (6086,683,0), (6086,754,0), (6086,755,0), (6087,5,0), (6087,22,0), (6087,683,0), (6087,754,0), (6088,5,0), (6088,9,0), (6088,683,0), (6088,754,0), (6089,5,0), (6089,377,0), (6089,683,0), (6089,754,0), (6090,5,0), (6090,94,0), (6090,683,0), (6090,754,0), (6091,5,0), (6091,94,0), (6091,683,0), (6091,754,0), (6092,5,0), (6092,13,0), (6092,683,0), (6092,754,0), (6093,5,0), (6093,31,0), (6093,683,0), (6093,754,0), (6094,5,0), (6094,31,0), (6094,683,0), (6094,754,0), (6095,5,0), (6095,31,0), (6095,683,0), (6095,754,0), (6096,5,0), (6096,31,0), (6096,683,0), (6096,754,0), (6097,5,0), (6097,31,0), (6097,683,0), (6097,754,0), (6098,5,0), (6098,31,0), (6098,683,0), (6098,754,0), (6099,5,0), (6099,31,0), (6099,683,0), (6099,754,0), (6100,5,0), (6100,31,0), (6100,683,0), (6100,754,0), (6101,5,0), (6101,31,0), (6101,683,0), (6101,754,0), (6102,5,0), (6102,6,0), (6102,683,0), (6102,754,0), (6103,5,0), (6103,6,0), (6103,683,0), (6103,754,0), (6104,5,0), (6104,31,0), (6104,683,0), (6104,754,0), (6105,5,0), (6105,31,0), (6105,683,0), (6105,754,0), (6106,5,0), (6106,31,0), (6106,683,0), (6106,754,0), (6107,5,0), (6107,483,0), (6107,683,0), (6107,754,0), (6108,5,0), (6108,6,0), (6108,683,0), (6108,754,0), (6109,5,0), (6109,6,0), (6109,683,0), (6109,754,0), (6110,5,0), (6110,6,0), (6110,683,0), (6110,754,0), (6111,5,0), (6111,6,0), (6111,683,0), (6111,754,0), (6112,5,0), (6112,6,0), (6112,683,0), (6112,754,0), (6113,5,0), (6113,6,0), (6113,683,0), (6113,754,0), (6114,5,0), (6114,6,0), (6114,683,0), (6114,754,0), (6115,5,0), (6115,6,0), (6115,683,0), (6115,754,0), (6116,5,0), (6116,6,0), (6116,683,0), (6116,754,0), (6117,5,0), (6117,6,0), (6117,683,0), (6117,754,0), (6118,5,0), (6118,6,0), (6118,683,0), (6118,754,0), (6119,5,0), (6119,6,0), (6119,683,0), (6119,754,0), (6120,5,0), (6120,22,0), (6120,683,0), (6120,754,0), (6121,5,0), (6121,6,0), (6121,683,0), (6121,754,0), (6122,5,0), (6122,6,0), (6122,683,0), (6122,754,0), (6123,5,0), (6123,31,0), (6123,683,0), (6123,754,0), (6124,5,0), (6124,31,0), (6124,683,0), (6124,754,0), (6125,5,0), (6125,31,0), (6125,683,0), (6125,754,0), (6126,5,0), (6126,31,0), (6126,683,0), (6126,754,0), (6127,5,0), (6127,31,0), (6127,683,0), (6127,754,0), (6128,5,0), (6128,31,0), (6128,683,0), (6128,754,0), (6129,5,0), (6129,48,0), (6129,683,0), (6129,754,0), (6130,5,0), (6130,48,0), (6130,683,0), (6130,754,0), (6131,5,0), (6131,48,0), (6131,683,0), (6131,754,0), (6132,5,0), (6132,15,0), (6132,756,0), (6132,757,0), (6133,5,0), (6133,6,0), (6133,756,0), (6133,757,0), (6134,5,0), (6134,53,0), (6134,756,0), (6134,757,0), (6135,5,0), (6135,53,0), (6135,756,0), (6135,757,0), (6136,5,0), (6136,14,0), (6136,756,0), (6136,757,0), (6137,5,0), (6137,31,0), (6137,756,0), (6137,757,0), (6138,5,0), (6138,31,0), (6138,756,0), (6138,757,0), (6139,5,0), (6139,22,0), (6139,756,0), (6139,757,0), (6140,5,0), (6140,53,0), (6140,756,0), (6140,757,0), (6141,5,0), (6141,40,0), (6141,756,0), (6141,757,0), (6142,5,0), (6142,40,0), (6142,756,0), (6142,757,0), (6143,5,0), (6143,40,0), (6143,756,0), (6143,757,0), (6144,5,0), (6144,40,0), (6144,756,0), (6144,757,0), (6145,5,0), (6145,29,0), (6145,756,0), (6145,757,0), (6146,5,0), (6146,11,0), (6146,756,0), (6146,757,0), (6147,5,0), (6147,669,0), (6147,756,0), (6147,757,0), (6148,5,0), (6148,22,0), (6148,756,0), (6148,757,0), (6149,5,0), (6149,22,0), (6149,756,0), (6149,757,0), (6150,5,0), (6150,22,0), (6150,756,0), (6150,757,0), (6151,5,0), (6151,53,0), (6151,756,0), (6151,757,0), (6152,5,0), (6152,6,0), (6152,756,0), (6152,757,0), (6153,5,0), (6153,14,0), (6153,756,0), (6153,757,0), (6154,5,0), (6154,9,0), (6154,756,0), (6154,757,0), (6155,5,0), (6155,14,0), (6155,756,0), (6155,757,0), (6156,5,0), (6156,9,0), (6156,756,0), (6156,757,0), (6157,5,0), (6157,22,0), (6157,756,0), (6157,757,0), (6158,5,0), (6158,31,0), (6158,756,0), (6158,757,0), (6159,5,0), (6159,31,0), (6159,756,0), (6159,757,0), (6160,5,0), (6160,31,0), (6160,756,0), (6160,757,0), (6161,5,0), (6161,22,0), (6161,756,0), (6161,757,0), (6162,5,0), (6162,22,0), (6162,756,0), (6162,757,0), (6163,5,0), (6163,13,0), (6163,756,0), (6163,757,0), (6164,5,0), (6164,31,0), (6164,756,0), (6164,757,0), (6165,5,0), (6165,53,0), (6165,756,0), (6165,757,0), (6166,5,0), (6166,15,0), (6166,756,0), (6166,757,0), (6167,5,0), (6167,40,0), (6167,756,0), (6167,757,0), (6168,5,0), (6168,40,0), (6168,756,0), (6168,757,0), (6169,5,0), (6169,40,0), (6169,756,0), (6169,757,0), (6170,5,0), (6170,40,0), (6170,756,0), (6170,757,0), (6171,5,0), (6171,40,0), (6171,756,0), (6171,757,0), (6172,5,0), (6172,40,0), (6172,756,0), (6172,757,0), (6173,5,0), (6173,40,0), (6173,756,0), (6173,757,0), (6174,5,0), (6174,40,0), (6174,756,0), (6174,757,0), (6175,5,0), (6175,40,0), (6175,756,0), (6175,757,0), (6176,5,0), (6176,40,0), (6176,756,0), (6176,757,0), (6177,5,0), (6177,40,0), (6177,756,0), (6177,757,0), (6178,5,0), (6178,40,0), (6178,756,0), (6178,757,0), (6179,5,0), (6179,40,0), (6179,756,0), (6179,757,0), (6180,5,0), (6180,374,0), (6180,756,0), (6180,757,0), (6181,5,0), (6181,31,0), (6181,756,0), (6181,757,0), (6182,5,0), (6182,31,0), (6182,756,0), (6182,757,0), (6183,5,0), (6183,31,0), (6183,756,0), (6183,757,0), (6184,5,0), (6184,31,0), (6184,756,0), (6184,757,0), (6185,5,0), (6185,669,0), (6185,756,0), (6185,757,0), (6186,5,0), (6186,18,0), (6186,756,0), (6186,757,0), (6187,5,0), (6187,53,0), (6187,756,0), (6187,757,0), (6188,5,0), (6188,11,0), (6188,756,0), (6188,757,0), (6189,5,0), (6189,53,0), (6189,756,0), (6189,757,0), (6190,5,0), (6190,22,0), (6190,756,0), (6190,757,0), (6191,5,0), (6191,22,0), (6191,756,0), (6191,757,0), (6192,5,0), (6192,22,0), (6192,756,0), (6192,757,0), (6193,5,0), (6193,22,0), (6193,756,0), (6193,757,0), (6194,5,0), (6194,9,0), (6194,756,0), (6194,757,0), (6195,5,0), (6195,22,0), (6195,756,0), (6195,757,0), (6196,5,0), (6196,22,0), (6196,756,0), (6196,757,0), (6197,5,0), (6197,15,0), (6197,756,0), (6197,757,0), (6198,5,0), (6198,374,0), (6198,756,0), (6198,757,0), (6199,5,0), (6199,22,0), (6199,756,0), (6199,757,0), (6200,5,0), (6200,53,0), (6200,756,0), (6200,757,0), (6201,5,0), (6201,22,0), (6201,756,0), (6201,757,0), (6202,5,0), (6202,15,0), (6202,756,0), (6202,757,0), (6203,5,0), (6203,13,0), (6203,756,0), (6203,757,0), (6204,5,0), (6204,9,0), (6204,756,0), (6204,757,0), (6205,5,0), (6205,13,0), (6205,756,0), (6205,757,0), (6206,5,0), (6206,14,0), (6206,756,0), (6206,757,0), (6207,5,0), (6207,22,0), (6207,756,0), (6207,757,0), (6208,5,0), (6208,9,0), (6208,756,0), (6208,757,0), (6209,5,0), (6209,22,0), (6209,756,0), (6209,757,0), (6210,5,0), (6210,15,0), (6210,756,0), (6210,757,0), (6211,5,0), (6211,94,0), (6211,756,0), (6211,757,0), (6212,5,0), (6212,53,0), (6212,756,0), (6212,757,0), (6213,5,0), (6213,40,0), (6213,756,0), (6213,757,0), (6214,5,0), (6214,9,0), (6214,756,0), (6214,757,0), (6215,5,0), (6215,94,0), (6215,756,0), (6215,757,0), (6216,5,0), (6216,15,0), (6216,756,0), (6216,757,0), (6217,5,0), (6217,745,0), (6217,756,0), (6217,757,0), (6218,5,0), (6218,745,0), (6218,756,0), (6218,757,0), (6219,5,0), (6219,14,0), (6219,756,0), (6219,757,0), (6220,5,0), (6220,14,0), (6220,756,0), (6220,757,0), (6221,5,0), (6221,31,0), (6221,756,0), (6221,757,0), (6222,5,0), (6222,27,0), (6222,756,0), (6222,757,0), (6223,5,0), (6223,31,0), (6223,756,0), (6223,757,0), (6224,5,0), (6224,18,0), (6224,756,0), (6224,757,0), (6225,5,0), (6225,483,0), (6225,756,0), (6225,757,0), (6226,5,0), (6226,18,0), (6226,756,0), (6226,757,0), (6227,5,0), (6227,18,0), (6227,756,0), (6227,757,0), (6228,5,0), (6228,18,0), (6228,756,0), (6228,757,0), (6229,5,0), (6229,18,0), (6229,756,0), (6229,757,0), (6230,5,0), (6230,18,0), (6230,756,0), (6230,757,0), (6231,758,0), (6231,759,0), (6232,758,0), (6232,759,0), (6233,758,0), (6233,759,0), (6234,758,0), (6234,759,0), (6235,758,0), (6235,759,0), (6236,758,0), (6236,759,0), (6237,758,0), (6237,759,0), (6238,758,0), (6238,759,0), (6239,5,0), (6239,9,0), (6239,760,0), (6240,5,0), (6240,18,0), (6240,760,0), (6241,5,0), (6241,9,0), (6241,760,0), (6242,5,0), (6242,9,0), (6242,760,0), (6243,5,0), (6243,9,0), (6243,760,0), (6244,5,0), (6244,9,0), (6244,760,0), (6245,5,0), (6245,9,0), (6245,760,0), (6246,5,0), (6246,9,0), (6246,760,0), (6247,5,0), (6247,23,0), (6247,760,0), (6248,5,0), (6248,9,0), (6248,760,0), (6249,5,0), (6249,9,0), (6249,760,0), (6250,5,0), (6250,9,0), (6250,760,0), (6251,5,0), (6251,9,0), (6251,760,0), (6252,5,0), (6252,9,0), (6252,760,0), (6253,5,0), (6253,9,0), (6253,760,0), (6254,5,0), (6254,9,0), (6254,760,0), (6255,36,0), (6255,761,0), (6256,761,0), (6257,36,0), (6257,761,0), (6258,36,0), (6258,761,0), (6259,36,0), (6259,761,0), (6260,36,0), (6260,761,0), (6261,36,0), (6261,761,0), (6262,36,0), (6262,761,0), (6263,36,0), (6263,761,0), (6264,36,0), (6264,761,0), (6265,36,0), (6265,761,0), (6266,5,0), (6266,6,0), (6266,762,0), (6267,5,0), (6267,6,0), (6267,762,0), (6268,5,0), (6268,6,0), (6268,762,0), (6269,5,0), (6269,6,0), (6269,762,0), (6270,5,0), (6270,6,0), (6270,762,0), (6271,5,0), (6271,6,0), (6271,762,0), (6272,5,0), (6272,13,0), (6272,674,0), (6272,764,0), (6273,5,0), (6273,13,0), (6273,674,0), (6273,764,0), (6274,5,0), (6274,13,0), (6274,674,0), (6274,764,0), (6275,5,0), (6275,54,0), (6275,674,0), (6275,764,0), (6276,5,0), (6276,54,0), (6276,674,0), (6276,764,0), (6277,5,0), (6277,11,0), (6277,674,0), (6277,764,0), (6278,5,0), (6278,674,0), (6278,764,0), (6279,5,0), (6279,674,0), (6279,764,0), (6280,5,0), (6280,19,0), (6280,674,0), (6280,764,0), (6281,5,0), (6281,11,0), (6281,674,0), (6281,764,0), (6282,5,0), (6282,674,0), (6282,764,0), (6283,5,0), (6283,674,0), (6283,764,0), (6284,5,0), (6284,11,0), (6284,674,0), (6284,764,0), (6285,5,0), (6285,674,0), (6285,764,0), (6286,5,0), (6286,674,0), (6286,764,0), (6287,5,0), (6287,19,0), (6287,674,0), (6287,764,0), (6288,5,0), (6288,674,0), (6288,764,0), (6289,5,0), (6289,674,0), (6289,764,0), (6290,5,0), (6290,11,0), (6290,674,0), (6290,764,0), (6291,5,0), (6291,674,0), (6291,764,0), (6292,5,0), (6292,674,0), (6292,764,0), (6293,5,0), (6293,674,0), (6293,764,0), (6294,5,0), (6294,674,0), (6294,764,0), (6295,5,0), (6295,11,0), (6295,674,0), (6295,764,0), (6296,5,0), (6296,674,0), (6296,764,0), (6297,5,0), (6297,674,0), (6297,764,0), (6298,5,0), (6298,11,0), (6298,674,0), (6298,764,0), (6299,5,0), (6299,11,0), (6299,674,0), (6299,764,0), (6300,5,0), (6300,674,0), (6300,764,0), (6301,5,0), (6301,674,0), (6301,764,0), (6302,5,0), (6302,11,0), (6302,674,0), (6302,764,0), (6303,5,0), (6303,674,0), (6303,764,0), (6304,5,0), (6304,674,0), (6304,764,0), (6305,5,0), (6305,48,0), (6305,674,0), (6305,764,0), (6306,5,0), (6306,674,0), (6306,764,0), (6307,5,0), (6307,674,0), (6307,764,0), (6308,5,0), (6308,11,0), (6308,674,0), (6308,764,0), (6309,5,0), (6309,674,0), (6309,764,0), (6310,5,0), (6310,674,0), (6310,764,0), (6311,5,0), (6311,674,0), (6311,764,0), (6312,5,0), (6312,674,0), (6312,764,0), (6313,5,0), (6313,11,0), (6313,674,0), (6313,764,0), (6314,5,0), (6314,674,0), (6314,764,0), (6315,5,0), (6315,674,0), (6315,764,0), (6316,5,0), (6316,14,0), (6316,674,0), (6316,764,0), (6317,5,0), (6317,674,0), (6317,764,0), (6318,5,0), (6318,674,0), (6318,764,0), (6319,5,0), (6319,11,0), (6319,674,0), (6319,764,0), (6320,5,0), (6320,674,0), (6320,764,0), (6321,5,0), (6321,674,0), (6321,764,0), (6322,5,0), (6322,11,0), (6322,674,0), (6322,764,0), (6323,5,0), (6323,11,0), (6323,674,0), (6323,764,0), (6324,5,0), (6324,674,0), (6324,764,0), (6325,5,0), (6325,674,0), (6325,764,0), (6326,5,0), (6326,11,0), (6326,674,0), (6326,764,0), (6327,5,0), (6327,674,0), (6327,764,0), (6328,5,0), (6328,674,0), (6328,764,0), (6329,5,0), (6329,29,0), (6329,674,0), (6329,764,0), (6330,5,0), (6330,674,0), (6330,764,0), (6331,5,0), (6331,674,0), (6331,764,0), (6332,5,0), (6332,674,0), (6332,764,0), (6333,5,0), (6333,11,0), (6333,674,0), (6333,764,0), (6334,5,0), (6334,674,0), (6334,764,0), (6335,5,0), (6335,674,0), (6335,764,0), (6336,5,0), (6336,18,0), (6336,674,0), (6336,764,0), (6337,5,0), (6337,674,0), (6337,764,0), (6338,5,0), (6338,674,0), (6338,764,0), (6339,5,0), (6339,29,0), (6339,674,0), (6339,764,0), (6340,5,0), (6340,674,0), (6340,764,0), (6341,5,0), (6341,674,0), (6341,764,0), (6342,5,0), (6342,11,0), (6342,674,0), (6342,764,0), (6343,5,0), (6343,674,0), (6343,764,0), (6344,5,0), (6344,674,0), (6344,764,0), (6345,5,0), (6345,674,0), (6345,764,0), (6346,5,0), (6346,674,0), (6346,764,0), (6347,5,0), (6347,11,0), (6347,674,0), (6347,764,0), (6348,5,0), (6348,674,0), (6348,764,0), (6349,5,0), (6349,674,0), (6349,764,0), (6350,5,0), (6350,11,0), (6350,674,0), (6350,764,0), (6351,5,0), (6351,674,0), (6351,764,0), (6352,5,0), (6352,674,0), (6352,764,0), (6353,5,0), (6353,674,0), (6353,764,0), (6354,5,0), (6354,6,0), (6354,674,0), (6354,764,0), (6355,5,0), (6355,674,0), (6355,764,0), (6356,5,0), (6356,674,0), (6356,764,0), (6357,5,0), (6357,674,0), (6357,764,0), (6358,5,0), (6358,674,0), (6358,764,0), (6359,5,0), (6359,93,0), (6359,94,0), (6359,765,0), (6360,5,0), (6360,93,0), (6360,352,0), (6360,765,0), (6361,5,0), (6361,93,0), (6361,94,0), (6361,765,0), (6362,5,0), (6362,93,0), (6362,94,0), (6362,765,0), (6363,5,0), (6363,22,0), (6363,93,0), (6363,765,0), (6364,5,0), (6364,93,0), (6364,94,0), (6364,765,0), (6365,5,0), (6365,93,0), (6365,94,0), (6365,765,0), (6366,5,0), (6366,22,0), (6366,93,0), (6366,765,0), (6367,5,0), (6367,22,0), (6367,93,0), (6367,765,0), (6368,5,0), (6368,22,0), (6368,93,0), (6368,765,0), (6369,5,0), (6369,22,0), (6369,93,0), (6369,765,0), (6370,5,0), (6370,22,0), (6370,93,0), (6370,765,0), (6371,5,0), (6371,22,0), (6371,93,0), (6371,765,0), (6372,5,0), (6372,22,0), (6372,93,0), (6372,765,0), (6373,5,0), (6373,22,0), (6373,93,0), (6373,765,0), (6374,5,0), (6374,22,0), (6374,93,0), (6374,765,0), (6375,5,0), (6375,22,0), (6375,93,0), (6375,765,0), (6376,5,0), (6376,93,0), (6376,94,0), (6376,765,0), (6377,5,0), (6377,93,0), (6377,352,0), (6377,765,0), (6378,5,0), (6378,93,0), (6378,352,0), (6378,765,0), (6379,5,0), (6379,93,0), (6379,352,0), (6379,765,0), (6380,5,0), (6380,93,0), (6380,94,0), (6380,765,0), (6381,5,0), (6381,93,0), (6381,94,0), (6381,765,0), (6382,5,0), (6382,93,0), (6382,94,0), (6382,765,0), (6383,5,0), (6383,93,0), (6383,94,0), (6383,765,0), (6384,5,0), (6384,15,0), (6384,93,0), (6384,765,0), (6385,5,0), (6385,93,0), (6385,94,0), (6385,765,0), (6386,5,0), (6386,15,0), (6386,93,0), (6386,765,0), (6387,5,0), (6387,93,0), (6387,352,0), (6387,765,0), (6388,5,0), (6388,93,0), (6388,352,0), (6388,765,0), (6389,5,0), (6389,93,0), (6389,94,0), (6389,765,0), (6390,5,0), (6390,15,0), (6390,93,0), (6390,765,0), (6391,5,0), (6391,93,0), (6391,94,0), (6391,765,0), (6392,5,0), (6392,93,0), (6392,94,0), (6392,765,0), (6393,5,0), (6393,93,0), (6393,94,0), (6393,765,0), (6394,5,0), (6394,93,0), (6394,94,0), (6394,765,0), (6395,5,0), (6395,93,0), (6395,352,0), (6395,765,0), (6396,5,0), (6396,93,0), (6396,94,0), (6396,765,0), (6397,5,0), (6397,93,0), (6397,352,0), (6397,765,0), (6398,5,0), (6398,93,0), (6398,94,0), (6398,765,0), (6399,5,0), (6399,93,0), (6399,94,0), (6399,765,0), (6400,5,0), (6400,93,0), (6400,352,0), (6400,765,0), (6401,5,0), (6401,93,0), (6401,94,0), (6401,765,0), (6402,5,0), (6402,93,0), (6402,352,0), (6402,765,0), (6403,5,0), (6403,15,0), (6403,93,0), (6403,765,0), (6404,5,0), (6404,15,0), (6404,93,0), (6404,765,0), (6405,5,0), (6405,22,0), (6405,93,0), (6405,765,0), (6406,5,0), (6406,53,0), (6406,93,0), (6406,765,0), (6407,5,0), (6407,93,0), (6407,765,0), (6408,5,0), (6408,93,0), (6408,94,0), (6408,765,0), (6409,5,0), (6409,93,0), (6409,94,0), (6409,765,0), (6410,5,0), (6410,15,0), (6410,93,0), (6410,765,0), (6411,5,0), (6411,53,0), (6411,693,0), (6412,5,0), (6412,22,0), (6412,93,0), (6412,765,0), (6413,5,0), (6413,93,0), (6413,374,0), (6413,765,0), (6414,5,0), (6414,22,0), (6414,93,0), (6414,765,0), (6415,5,0), (6415,93,0), (6415,94,0), (6415,765,0), (6416,5,0), (6416,22,0), (6416,93,0), (6416,765,0), (6417,5,0), (6417,93,0), (6417,94,0), (6417,765,0), (6418,5,0), (6418,22,0), (6418,93,0), (6418,765,0), (6419,5,0), (6419,93,0), (6419,94,0), (6419,765,0), (6420,5,0), (6420,22,0), (6420,93,0), (6420,765,0), (6421,5,0), (6421,93,0), (6421,94,0), (6421,765,0), (6422,5,0), (6422,22,0), (6422,93,0), (6422,765,0), (6423,5,0), (6423,93,0), (6423,94,0), (6423,765,0), (6424,5,0), (6424,22,0), (6424,93,0), (6424,765,0), (6425,5,0), (6425,93,0), (6425,94,0), (6425,765,0), (6426,5,0), (6426,22,0), (6426,93,0), (6426,765,0), (6427,5,0), (6427,93,0), (6427,94,0), (6427,765,0), (6428,5,0), (6428,22,0), (6428,93,0), (6428,765,0), (6429,5,0), (6429,93,0), (6429,94,0), (6429,765,0), (6430,5,0), (6430,22,0), (6430,93,0), (6430,765,0), (6431,5,0), (6431,93,0), (6431,94,0), (6431,765,0), (6432,5,0), (6432,93,0), (6432,374,0), (6432,765,0), (6433,5,0), (6433,22,0), (6433,93,0), (6433,765,0), (6434,5,0), (6434,93,0), (6434,94,0), (6434,765,0), (6435,5,0), (6435,22,0), (6435,93,0), (6435,765,0), (6436,5,0), (6436,93,0), (6436,94,0), (6436,765,0), (6437,5,0), (6437,93,0), (6437,94,0), (6437,765,0), (6438,5,0), (6438,93,0), (6438,94,0), (6438,765,0), (6439,5,0), (6439,93,0), (6439,94,0), (6439,765,0), (6440,5,0), (6440,54,0), (6440,93,0), (6440,765,0), (6441,5,0), (6441,13,0), (6441,93,0), (6441,765,0), (6442,5,0), (6442,31,0), (6442,93,0), (6442,765,0), (6443,5,0), (6443,15,0), (6443,93,0), (6443,765,0), (6444,5,0), (6444,13,0), (6444,93,0), (6444,765,0), (6445,5,0), (6445,93,0), (6445,374,0), (6445,765,0), (6446,5,0), (6446,53,0), (6446,93,0), (6446,765,0), (6447,5,0), (6447,9,0), (6447,93,0), (6447,765,0), (6448,5,0), (6448,53,0), (6448,93,0), (6448,765,0), (6449,5,0), (6449,53,0), (6449,93,0), (6449,765,0), (6450,5,0), (6450,9,0), (6450,93,0), (6450,765,0), (6451,5,0), (6451,53,0), (6451,93,0), (6451,765,0), (6452,5,0), (6452,53,0), (6452,93,0), (6452,765,0), (6453,5,0), (6453,53,0), (6453,93,0), (6453,765,0), (6454,5,0), (6454,93,0), (6454,765,0), (6454,766,0), (6455,5,0), (6455,15,0), (6455,93,0), (6455,765,0), (6456,5,0), (6456,93,0), (6456,669,0), (6456,765,0), (6457,5,0), (6457,93,0), (6457,765,0), (6458,5,0), (6458,93,0), (6458,765,0), (6458,767,0), (6459,5,0), (6459,54,0), (6459,93,0), (6459,765,0), (6460,5,0), (6460,54,0), (6460,93,0), (6460,765,0), (6461,5,0), (6461,54,0), (6461,93,0), (6461,765,0), (6462,5,0), (6462,54,0), (6462,93,0), (6462,765,0), (6463,5,0), (6463,53,0), (6463,93,0), (6463,765,0), (6464,5,0), (6464,54,0), (6464,93,0), (6464,765,0), (6465,5,0), (6465,53,0), (6465,93,0), (6465,765,0), (6466,5,0), (6466,53,0), (6466,93,0), (6466,765,0), (6467,5,0), (6467,54,0), (6467,93,0), (6467,765,0), (6468,5,0), (6468,11,0), (6468,93,0), (6468,765,0), (6469,5,0), (6469,22,0), (6469,93,0), (6469,765,0), (6470,5,0), (6470,93,0), (6470,94,0), (6470,765,0), (6471,5,0), (6471,11,0), (6471,93,0), (6471,765,0), (6472,5,0), (6472,22,0), (6472,93,0), (6472,765,0), (6473,5,0), (6473,14,0), (6473,93,0), (6473,765,0), (6474,5,0), (6474,14,0), (6474,93,0), (6474,765,0), (6475,5,0), (6475,22,0), (6475,93,0), (6475,765,0), (6476,5,0), (6476,22,0), (6476,93,0), (6476,765,0), (6477,5,0), (6477,40,0), (6477,93,0), (6477,765,0), (6478,5,0), (6478,9,0), (6478,93,0), (6478,765,0), (6479,5,0), (6479,6,0), (6479,93,0), (6479,765,0), (6480,5,0), (6480,14,0), (6480,93,0), (6480,765,0), (6481,5,0), (6481,11,0), (6481,93,0), (6481,765,0), (6482,5,0), (6482,14,0), (6482,93,0), (6482,765,0), (6483,5,0), (6483,11,0), (6483,93,0), (6483,765,0), (6484,5,0), (6484,11,0), (6484,93,0), (6484,765,0), (6485,5,0), (6485,11,0), (6485,93,0), (6485,765,0), (6486,5,0), (6486,11,0), (6486,93,0), (6486,765,0), (6487,5,0), (6487,11,0), (6487,93,0), (6487,765,0), (6488,5,0), (6488,11,0), (6488,93,0), (6488,765,0), (6489,5,0), (6489,11,0), (6489,93,0), (6489,765,0), (6490,5,0), (6490,27,0), (6490,93,0), (6490,765,0), (6491,4,0), (6491,5,0), (6491,93,0), (6491,765,0), (6492,5,0), (6492,93,0), (6492,94,0), (6492,765,0), (6493,5,0), (6493,93,0), (6493,94,0), (6493,765,0), (6494,5,0), (6494,93,0), (6494,94,0), (6494,765,0), (6495,5,0), (6495,22,0), (6495,93,0), (6495,765,0), (6496,5,0), (6496,22,0), (6496,93,0), (6496,765,0), (6497,5,0), (6497,22,0), (6497,93,0), (6497,765,0), (6498,5,0), (6498,15,0), (6498,93,0), (6498,765,0), (6499,5,0), (6499,9,0), (6499,93,0), (6499,765,0), (6500,5,0), (6500,18,0), (6500,93,0), (6500,765,0), (6501,5,0), (6501,6,0), (6501,93,0), (6501,765,0), (6502,5,0), (6502,18,0), (6502,93,0), (6502,765,0), (6503,5,0), (6503,22,0), (6503,93,0), (6503,765,0), (6504,5,0), (6504,18,0), (6504,93,0), (6504,765,0), (6505,5,0), (6505,93,0), (6505,377,0), (6505,765,0), (6506,5,0), (6506,53,0), (6506,93,0), (6506,765,0), (6507,5,0), (6507,93,0), (6507,669,0), (6507,765,0), (6508,5,0), (6508,31,0), (6508,93,0), (6508,765,0), (6509,5,0), (6509,93,0), (6509,765,0), (6509,768,0), (6510,5,0), (6510,9,0), (6510,93,0), (6510,765,0), (6511,5,0), (6511,93,0), (6511,765,0), (6511,768,0), (6512,5,0), (6512,13,0), (6512,93,0), (6512,765,0), (6513,5,0), (6513,93,0), (6513,374,0), (6513,765,0), (6514,5,0), (6514,93,0), (6514,94,0), (6514,765,0), (6515,5,0), (6515,14,0), (6515,93,0), (6515,765,0), (6516,5,0), (6516,40,0), (6516,93,0), (6516,765,0), (6517,5,0), (6517,14,0), (6517,93,0), (6517,765,0), (6518,5,0), (6518,40,0), (6518,93,0), (6518,765,0), (6519,5,0), (6519,9,0), (6519,93,0), (6519,765,0), (6520,5,0), (6520,31,0), (6520,93,0), (6520,765,0), (6521,5,0), (6521,93,0), (6521,94,0), (6521,765,0), (6522,5,0), (6522,13,0), (6522,777,0), (6523,5,0), (6523,13,0), (6523,783,0), (6524,5,0), (6524,11,0), (6524,769,0), (6525,5,0), (6525,11,0), (6525,769,0), (6526,5,0), (6526,54,0), (6526,769,0), (6527,5,0), (6527,53,0), (6527,770,0), (6528,5,0), (6528,53,0), (6528,770,0), (6529,5,0), (6529,27,0), (6529,770,0), (6530,5,0), (6530,53,0), (6530,770,0), (6531,5,0), (6531,53,0), (6531,771,0), (6532,5,0), (6532,53,0), (6532,774,0), (6533,5,0), (6533,53,0), (6533,771,0), (6534,5,0), (6534,53,0), (6534,771,0), (6535,5,0), (6535,53,0), (6535,772,0), (6536,5,0), (6536,53,0), (6536,772,0), (6537,5,0), (6537,11,0), (6537,773,0), (6539,5,0), (6539,14,0), (6539,773,0), (6540,5,0), (6540,9,0), (6540,773,0), (6541,5,0), (6541,53,0), (6541,774,0), (6542,5,0), (6542,53,0), (6542,774,0), (6543,5,0), (6543,53,0), (6543,774,0), (6544,5,0), (6544,377,0), (6544,775,0), (6544,776,0), (6545,5,0), (6545,54,0), (6545,775,0), (6545,776,0), (6546,5,0), (6546,94,0), (6546,775,0), (6546,776,0), (6547,5,0), (6547,9,0), (6547,775,0), (6547,776,0), (6548,5,0), (6548,13,0), (6548,775,0), (6548,776,0), (6549,5,0), (6549,13,0), (6549,775,0), (6549,776,0), (6550,5,0), (6550,54,0), (6550,775,0), (6550,776,0), (6551,5,0), (6551,54,0), (6551,775,0), (6551,776,0), (6552,5,0), (6552,54,0), (6552,775,0), (6552,776,0), (6553,5,0), (6553,54,0), (6553,775,0), (6553,776,0), (6554,5,0), (6554,53,0), (6554,775,0), (6554,776,0), (6555,5,0), (6555,15,0), (6555,775,0), (6555,776,0), (6556,5,0), (6556,94,0), (6556,775,0), (6556,776,0), (6557,5,0), (6557,40,0), (6557,775,0), (6557,776,0), (6558,5,0), (6558,40,0), (6558,775,0), (6558,776,0), (6559,5,0), (6559,40,0), (6559,775,0), (6559,776,0), (6560,5,0), (6560,94,0), (6560,775,0), (6560,776,0), (6561,5,0), (6561,15,0), (6561,775,0), (6561,776,0), (6562,5,0), (6562,14,0), (6562,775,0), (6562,776,0), (6563,5,0), (6563,14,0), (6563,775,0), (6563,776,0), (6564,5,0), (6564,6,0), (6564,775,0), (6564,776,0), (6565,5,0), (6565,48,0), (6565,775,0), (6565,776,0), (6566,5,0), (6566,13,0), (6566,775,0), (6566,776,0), (6567,5,0), (6567,13,0), (6567,775,0), (6567,776,0), (6568,5,0), (6568,22,0), (6568,775,0), (6568,776,0), (6569,5,0), (6569,48,0), (6569,775,0), (6569,776,0), (6570,5,0), (6570,53,0), (6570,775,0), (6570,776,0), (6571,5,0), (6571,22,0), (6571,775,0), (6571,776,0), (6572,5,0), (6572,374,0), (6572,775,0), (6572,776,0), (6573,5,0), (6573,374,0), (6573,775,0), (6573,776,0), (6574,5,0), (6574,22,0), (6574,775,0), (6574,776,0), (6575,5,0), (6575,9,0), (6575,775,0), (6575,776,0), (6576,5,0), (6576,15,0), (6576,775,0), (6576,776,0), (6577,5,0), (6577,94,0), (6577,775,0), (6577,776,0), (6578,5,0), (6578,54,0), (6578,775,0), (6578,776,0), (6579,5,0), (6579,22,0), (6579,775,0), (6579,776,0), (6580,5,0), (6580,54,0), (6580,775,0), (6580,776,0), (6581,5,0), (6581,54,0), (6581,775,0), (6581,776,0), (6582,5,0), (6582,54,0), (6582,775,0), (6582,776,0), (6583,5,0), (6583,13,0), (6583,775,0), (6583,776,0), (6584,5,0), (6584,13,0), (6584,775,0), (6584,776,0), (6585,5,0), (6585,48,0), (6585,775,0), (6585,776,0), (6586,5,0), (6586,11,0), (6586,775,0), (6586,776,0), (6587,5,0), (6587,11,0), (6587,775,0), (6587,776,0), (6588,5,0), (6588,11,0), (6588,775,0), (6588,776,0), (6589,5,0), (6589,6,0), (6589,775,0), (6589,776,0), (6590,5,0), (6590,94,0), (6590,777,0), (6591,5,0), (6591,483,0), (6591,777,0), (6592,5,0), (6592,11,0), (6592,777,0), (6593,5,0), (6593,11,0), (6593,777,0), (6594,5,0), (6594,40,0), (6594,777,0), (6595,5,0), (6595,94,0), (6595,777,0), (6596,5,0), (6596,18,0), (6596,777,0), (6597,5,0), (6597,40,0), (6597,777,0), (6598,5,0), (6598,777,0), (6598,778,0), (6599,5,0), (6599,777,0), (6599,779,0), (6600,5,0), (6600,11,0), (6600,777,0), (6601,5,0), (6601,11,0), (6601,777,0), (6602,5,0), (6602,22,0), (6602,777,0), (6603,5,0), (6603,777,0), (6603,778,0), (6604,5,0), (6604,9,0), (6604,777,0), (6605,5,0), (6605,11,0), (6605,777,0), (6606,5,0), (6606,11,0), (6606,777,0), (6607,5,0), (6607,53,0), (6607,777,0), (6608,5,0), (6608,670,0), (6608,777,0), (6609,5,0), (6609,6,0), (6609,777,0), (6610,5,0), (6610,6,0), (6610,777,0), (6611,5,0), (6611,374,0), (6611,777,0), (6612,5,0), (6612,15,0), (6612,777,0), (6613,5,0), (6613,18,0), (6613,777,0), (6614,5,0), (6614,15,0), (6614,777,0), (6615,5,0), (6615,81,0), (6615,777,0), (6616,5,0), (6616,11,0), (6616,777,0), (6617,5,0), (6617,11,0), (6617,777,0), (6618,5,0), (6618,94,0), (6618,777,0), (6619,5,0), (6619,94,0), (6619,777,0), (6620,5,0), (6620,94,0), (6620,777,0), (6621,5,0), (6621,15,0), (6621,777,0), (6622,5,0), (6622,94,0), (6622,777,0), (6623,5,0), (6623,94,0), (6623,777,0), (6624,5,0), (6624,15,0), (6624,777,0), (6625,5,0), (6625,54,0), (6625,777,0), (6626,5,0), (6626,94,0), (6626,777,0), (6627,5,0), (6627,53,0), (6627,777,0), (6628,5,0), (6628,54,0), (6628,777,0), (6629,5,0), (6629,29,0), (6629,777,0), (6630,5,0), (6630,94,0), (6630,777,0), (6631,5,0), (6631,777,0), (6631,780,0), (6632,5,0), (6632,777,0), (6632,780,0), (6633,5,0), (6633,777,0), (6633,780,0), (6634,5,0), (6634,94,0), (6634,777,0), (6635,5,0), (6635,29,0), (6635,777,0), (6636,5,0), (6636,22,0), (6636,777,0), (6637,5,0), (6637,14,0), (6637,777,0), (6638,5,0), (6638,11,0), (6638,777,0), (6639,5,0), (6639,40,0), (6639,777,0), (6640,5,0), (6640,94,0), (6640,777,0), (6641,5,0), (6641,94,0), (6641,777,0), (6642,5,0), (6642,11,0), (6642,777,0), (6643,5,0), (6643,15,0), (6643,777,0), (6644,5,0), (6644,18,0), (6644,777,0), (6645,5,0), (6645,15,0), (6645,777,0), (6646,5,0), (6646,15,0), (6646,777,0), (6647,5,0), (6647,22,0), (6647,777,0), (6648,5,0), (6648,22,0), (6648,777,0), (6649,5,0), (6649,94,0), (6649,777,0), (6650,5,0), (6650,22,0), (6650,777,0), (6651,5,0), (6651,11,0), (6651,777,0), (6652,5,0), (6652,22,0), (6652,777,0), (6653,5,0), (6653,483,0), (6653,777,0), (6654,5,0), (6654,22,0), (6654,777,0), (6655,5,0), (6655,31,0), (6655,777,0), (6656,5,0), (6656,40,0), (6656,777,0), (6657,5,0), (6657,11,0), (6657,777,0), (6658,5,0), (6658,49,0), (6658,777,0), (6659,5,0), (6659,49,0), (6659,777,0), (6660,5,0), (6660,377,0), (6660,777,0), (6661,5,0), (6661,49,0), (6661,777,0), (6662,5,0), (6662,53,0), (6662,777,0), (6663,5,0), (6663,53,0), (6663,777,0), (6664,5,0), (6664,13,0), (6664,777,0), (6665,5,0), (6665,13,0), (6665,777,0), (6666,5,0), (6666,697,0), (6666,777,0), (6667,5,0), (6667,11,0), (6667,777,0), (6668,5,0), (6668,11,0), (6668,777,0), (6669,5,0), (6669,14,0), (6669,777,0), (6670,5,0), (6670,11,0), (6670,777,0), (6671,5,0), (6671,777,0), (6671,779,0), (6672,5,0), (6672,11,0), (6672,777,0), (6673,5,0), (6673,767,0), (6673,777,0), (6674,5,0), (6674,11,0), (6674,777,0), (6675,5,0), (6675,11,0), (6675,777,0), (6676,5,0), (6676,11,0), (6676,777,0), (6677,5,0), (6677,767,0), (6677,777,0), (6678,5,0), (6678,18,0), (6678,777,0), (6679,5,0), (6679,18,0), (6679,777,0), (6680,5,0), (6680,13,0), (6680,777,0), (6681,5,0), (6681,11,0), (6681,777,0), (6682,5,0), (6682,9,0), (6682,777,0), (6683,5,0), (6683,104,0), (6683,777,0), (6684,5,0), (6684,14,0), (6684,777,0), (6685,5,0), (6685,777,0), (6685,781,0), (6686,5,0), (6686,14,0), (6686,777,0), (6687,5,0), (6687,14,0), (6687,777,0), (6688,5,0), (6688,14,0), (6688,777,0), (6689,5,0), (6689,13,0), (6689,777,0), (6690,5,0), (6690,13,0), (6690,777,0), (6691,5,0), (6691,13,0), (6691,777,0), (6692,5,0), (6692,13,0), (6692,777,0), (6693,5,0), (6693,13,0), (6693,777,0), (6694,5,0), (6694,31,0), (6694,777,0), (6695,5,0), (6695,31,0), (6695,777,0), (6696,5,0), (6696,31,0), (6696,777,0), (6697,5,0), (6697,31,0), (6697,777,0), (6698,5,0), (6698,31,0), (6698,777,0), (6699,5,0), (6699,40,0), (6699,777,0), (6700,5,0), (6700,40,0), (6700,777,0), (6701,5,0), (6701,40,0), (6701,777,0), (6702,5,0), (6702,18,0), (6702,777,0), (6703,5,0), (6703,6,0), (6703,777,0), (6704,5,0), (6704,777,0), (6704,782,0), (6705,5,0), (6705,777,0), (6705,782,0), (6706,5,0), (6706,29,0), (6706,777,0), (6707,5,0), (6707,29,0), (6707,777,0), (6708,5,0), (6708,48,0), (6708,777,0), (6709,5,0), (6709,48,0), (6709,777,0), (6710,5,0), (6710,48,0), (6710,777,0), (6711,5,0), (6711,483,0), (6711,777,0), (6712,5,0), (6712,483,0), (6712,777,0), (6713,5,0), (6713,94,0), (6713,783,0), (6714,5,0), (6714,374,0), (6714,783,0), (6715,5,0), (6715,94,0), (6715,783,0), (6716,5,0), (6716,11,0), (6716,783,0), (6717,5,0), (6717,14,0), (6717,783,0), (6718,5,0), (6718,11,0), (6718,783,0), (6719,5,0), (6719,14,0), (6719,783,0), (6720,5,0), (6720,94,0), (6720,783,0), (6721,5,0), (6721,53,0), (6721,783,0), (6722,5,0), (6722,104,0), (6722,783,0), (6723,5,0), (6723,104,0), (6723,783,0), (6724,5,0), (6724,104,0), (6724,783,0), (6725,5,0), (6725,94,0), (6725,783,0), (6726,5,0), (6726,94,0), (6726,783,0), (6727,5,0), (6727,94,0), (6727,783,0), (6728,5,0), (6728,36,0), (6728,783,0), (6729,5,0), (6729,22,0), (6729,783,0), (6730,5,0), (6730,13,0), (6730,783,0), (6731,5,0), (6731,377,0), (6731,783,0), (6732,5,0), (6732,94,0), (6732,783,0), (6733,5,0), (6733,14,0), (6733,783,0), (6734,5,0), (6734,783,0), (6735,5,0), (6735,22,0), (6735,783,0), (6736,5,0), (6736,22,0), (6736,783,0), (6737,5,0), (6737,94,0), (6737,783,0), (6738,5,0), (6738,377,0), (6738,783,0), (6739,5,0), (6739,53,0), (6739,783,0), (6740,5,0), (6740,14,0), (6740,783,0), (6741,5,0), (6741,53,0), (6741,783,0), (6742,5,0), (6742,54,0), (6742,783,0), (6743,5,0), (6743,11,0), (6743,783,0), (6744,5,0), (6744,11,0), (6744,783,0), (6745,5,0), (6745,53,0), (6745,783,0), (6746,5,0), (6746,9,0), (6746,783,0), (6747,5,0), (6747,53,0), (6747,783,0), (6748,5,0), (6748,374,0), (6748,783,0), (6749,5,0), (6749,9,0), (6749,783,0), (6750,5,0), (6750,9,0), (6750,783,0), (6751,5,0), (6751,9,0), (6751,783,0), (6752,5,0), (6752,9,0), (6752,783,0), (6753,5,0), (6753,9,0), (6753,783,0), (6754,5,0), (6754,9,0), (6754,783,0), (6755,5,0), (6755,9,0), (6755,783,0), (6756,5,0), (6756,9,0), (6756,783,0), (6757,5,0), (6757,6,0), (6757,783,0), (6758,5,0), (6758,9,0), (6758,783,0), (6759,5,0), (6759,669,0), (6759,783,0), (6760,5,0), (6760,669,0), (6760,783,0), (6761,5,0), (6761,669,0), (6761,783,0), (6762,5,0), (6762,669,0), (6762,783,0), (6763,5,0), (6763,669,0), (6763,783,0), (6764,5,0), (6764,669,0), (6764,783,0), (6765,5,0), (6765,670,0), (6765,783,0), (6766,5,0), (6766,13,0), (6766,783,0), (6767,5,0), (6767,13,0), (6767,783,0), (6768,5,0), (6768,51,0), (6768,783,0), (6769,5,0), (6769,13,0), (6769,783,0), (6770,5,0), (6770,48,0), (6770,783,0), (6771,5,0), (6771,11,0), (6771,783,0), (6772,5,0), (6772,53,0), (6772,783,0), (6773,5,0), (6773,53,0), (6773,783,0), (6774,5,0), (6774,13,0), (6774,783,0), (6775,5,0), (6775,53,0), (6775,783,0), (6776,5,0), (6776,6,0), (6776,783,0), (6777,5,0), (6777,13,0), (6777,783,0), (6778,5,0), (6778,13,0), (6778,783,0), (6779,5,0), (6779,669,0), (6779,783,0), (6780,5,0), (6780,6,0), (6780,783,0), (6781,5,0), (6781,6,0), (6781,783,0), (6782,5,0), (6782,6,0), (6782,783,0), (6783,5,0), (6783,23,0), (6783,783,0), (6784,5,0), (6784,23,0), (6784,783,0), (6785,5,0), (6785,783,0), (6785,784,0), (6786,5,0), (6786,53,0), (6786,783,0), (6787,5,0), (6787,669,0), (6787,783,0), (6788,5,0), (6788,669,0), (6788,783,0), (6789,5,0), (6789,29,0), (6789,783,0), (6790,5,0), (6790,29,0), (6790,783,0), (6791,5,0), (6791,6,0), (6791,783,0), (6792,5,0), (6792,6,0), (6792,783,0), (6793,5,0), (6793,27,0), (6793,783,0), (6794,5,0), (6794,29,0), (6794,783,0), (6795,5,0), (6795,29,0), (6795,783,0), (6796,5,0), (6796,23,0), (6796,783,0), (6797,5,0), (6797,23,0), (6797,783,0), (6798,5,0), (6798,23,0), (6798,783,0), (6799,5,0), (6799,54,0), (6799,783,0), (6800,5,0), (6800,54,0), (6800,783,0), (6801,5,0), (6801,9,0), (6801,783,0), (6802,5,0), (6802,54,0), (6802,783,0), (6803,5,0), (6803,54,0), (6803,783,0), (6804,5,0), (6804,6,0), (6804,783,0), (6805,5,0), (6805,18,0), (6805,783,0), (6806,5,0), (6806,6,0), (6806,783,0), (6807,5,0), (6807,18,0), (6807,783,0), (6808,5,0), (6808,18,0), (6808,783,0), (6809,5,0), (6809,54,0), (6809,783,0), (6810,5,0), (6810,11,0), (6810,783,0), (6811,5,0), (6811,54,0), (6811,783,0), (6812,5,0), (6812,54,0), (6812,783,0), (6813,5,0), (6813,780,0), (6813,783,0), (6814,5,0), (6814,13,0), (6814,783,0), (6815,5,0), (6815,13,0), (6815,783,0), (6816,5,0), (6816,13,0), (6816,783,0), (6817,5,0), (6817,13,0), (6817,783,0), (6818,5,0), (6818,13,0), (6818,783,0), (6819,5,0), (6819,13,0), (6819,783,0), (6820,5,0), (6820,13,0), (6820,783,0), (6821,5,0), (6821,6,0), (6821,783,0), (6822,5,0), (6822,6,0), (6822,783,0), (6823,5,0), (6823,6,0), (6823,783,0), (6824,5,0), (6824,18,0), (6824,783,0), (6825,5,0), (6825,18,0), (6825,783,0), (6826,5,0), (6826,18,0), (6826,783,0), (6827,5,0), (6827,13,0), (6827,783,0), (6828,5,0), (6828,13,0), (6828,783,0), (6829,5,0), (6829,11,0), (6829,783,0), (6830,5,0), (6830,11,0), (6830,783,0), (6831,5,0), (6831,15,0), (6831,783,0), (6832,5,0), (6832,19,0), (6832,783,0), (6833,5,0), (6833,19,0), (6833,783,0), (6834,5,0), (6834,19,0), (6834,783,0), (6835,5,0), (6835,19,0), (6835,783,0), (6836,5,0), (6836,49,0), (6836,783,0), (6837,5,0), (6837,31,0), (6837,783,0), (6838,5,0), (6838,6,0), (6838,783,0), (6839,5,0), (6839,36,0), (6839,783,0), (6840,5,0), (6840,6,0), (6840,783,0), (6841,5,0), (6841,6,0), (6841,783,0), (6842,5,0), (6842,11,0), (6842,783,0), (6843,5,0), (6843,40,0), (6843,783,0), (6844,5,0), (6844,40,0), (6844,783,0), (6845,5,0), (6845,11,0), (6845,783,0), (6846,5,0), (6846,40,0), (6846,783,0), (6847,5,0), (6847,40,0), (6847,783,0), (6848,5,0), (6848,40,0), (6848,783,0), (6849,5,0), (6849,6,0), (6849,783,0), (6850,5,0), (6850,6,0), (6850,783,0), (6851,5,0), (6851,6,0), (6851,783,0), (6852,5,0), (6852,6,0), (6852,783,0), (6853,5,0), (6853,29,0), (6853,783,0), (6854,5,0), (6854,36,0), (6854,783,0), (6855,5,0), (6855,6,0), (6855,783,0), (6856,5,0), (6856,18,0), (6856,783,0), (6857,5,0), (6857,18,0), (6857,783,0), (6858,5,0), (6858,782,0), (6858,783,0), (6859,5,0), (6859,49,0), (6859,783,0), (6860,5,0), (6860,6,0), (6860,783,0), (6861,5,0), (6861,29,0), (6861,783,0), (6862,5,0), (6862,29,0), (6862,783,0), (6863,5,0), (6863,29,0), (6863,783,0), (6864,5,0), (6864,783,0), (6865,5,0), (6865,23,0), (6865,783,0), (6866,5,0), (6866,23,0), (6866,783,0), (6867,5,0), (6867,48,0), (6867,783,0), (6868,5,0), (6868,48,0), (6868,783,0), (6869,5,0), (6869,48,0), (6869,783,0), (6870,5,0), (6870,48,0), (6870,783,0), (6871,5,0), (6871,48,0), (6871,783,0), (6872,5,0), (6872,48,0), (6872,783,0), (6873,5,0), (6873,48,0), (6873,783,0), (6874,5,0), (6874,36,0), (6874,783,0), (6875,5,0), (6875,36,0), (6875,783,0), (6876,5,0), (6876,483,0), (6876,783,0), (6877,5,0), (6877,19,0), (6877,749,0), (6877,785,0), (6878,5,0), (6878,9,0), (6878,749,0), (6878,785,0), (6879,5,0), (6879,19,0), (6879,749,0), (6879,785,0), (6880,5,0), (6880,19,0), (6880,749,0), (6880,785,0), (6881,5,0), (6881,19,0), (6881,749,0), (6881,785,0), (6882,5,0), (6882,19,0), (6882,749,0), (6882,785,0), (6883,5,0), (6883,18,0), (6883,749,0), (6883,785,0), (6884,5,0), (6884,11,0), (6884,749,0), (6884,785,0), (6885,5,0), (6885,19,0), (6885,749,0), (6885,786,0), (6886,5,0), (6886,19,0), (6886,749,0), (6886,786,0), (6887,5,0), (6887,49,0), (6887,749,0), (6887,786,0), (6888,5,0), (6888,19,0), (6888,749,0), (6888,786,0), (6889,5,0), (6889,9,0), (6889,749,0), (6889,786,0), (6890,5,0), (6890,19,0), (6890,749,0), (6890,786,0), (6891,5,0), (6891,18,0), (6891,749,0), (6891,786,0), (6892,5,0), (6892,11,0), (6892,749,0), (6892,786,0), (6893,5,0), (6893,48,0), (6893,749,0), (6893,786,0), (6894,5,0), (6894,22,0), (6894,683,0), (6894,787,0), (6895,5,0), (6895,9,0), (6895,683,0), (6895,787,0), (6896,5,0), (6896,22,0), (6896,683,0), (6896,787,0), (6897,5,0), (6897,9,0), (6897,683,0), (6897,787,0), (6898,5,0), (6898,22,0), (6898,683,0), (6898,787,0), (6899,5,0), (6899,54,0), (6899,683,0), (6899,787,0), (6900,5,0), (6900,6,0), (6900,683,0), (6900,787,0), (6901,5,0), (6901,6,0), (6901,683,0), (6901,787,0), (6902,5,0), (6902,31,0), (6902,683,0), (6902,787,0), (6903,5,0), (6903,31,0), (6903,683,0), (6903,787,0), (6904,5,0), (6904,48,0), (6904,683,0), (6904,787,0), (6905,5,0), (6905,31,0), (6905,683,0), (6905,787,0), (6906,5,0), (6906,22,0), (6906,683,0), (6906,787,0), (6907,5,0), (6907,22,0), (6907,683,0), (6907,787,0), (6908,5,0), (6908,31,0), (6908,683,0), (6908,787,0), (6909,5,0), (6909,11,0), (6909,683,0), (6909,787,0), (6910,5,0), (6910,31,0), (6910,683,0), (6910,787,0), (6911,5,0), (6911,11,0), (6911,683,0), (6911,787,0), (6912,5,0), (6912,48,0), (6912,683,0), (6912,787,0), (6913,5,0), (6913,48,0), (6913,683,0), (6913,787,0), (6914,5,0), (6914,6,0), (6914,683,0), (6914,787,0), (6915,5,0), (6915,6,0), (6915,683,0), (6915,787,0), (6916,5,0), (6916,6,0), (6916,683,0), (6916,787,0), (6917,5,0), (6917,6,0), (6917,683,0), (6917,787,0), (6918,5,0), (6918,6,0), (6918,683,0), (6918,787,0), (6919,5,0), (6919,11,0), (6919,683,0), (6919,787,0), (6920,5,0), (6920,11,0), (6920,683,0), (6920,787,0), (6921,5,0), (6921,22,0), (6921,683,0), (6921,787,0), (6922,5,0), (6922,22,0), (6922,683,0), (6922,787,0), (6923,5,0), (6923,22,0), (6923,683,0), (6923,787,0), (6924,5,0), (6924,22,0), (6924,683,0), (6924,787,0), (6925,5,0), (6925,94,0), (6925,683,0), (6925,787,0), (6926,5,0), (6926,104,0), (6926,683,0), (6926,787,0), (6927,5,0), (6927,94,0), (6927,683,0), (6927,787,0), (6928,5,0), (6928,374,0), (6928,683,0), (6928,787,0), (6929,5,0), (6929,483,0), (6929,683,0), (6929,787,0), (6930,5,0), (6930,53,0), (6930,683,0), (6930,787,0), (6931,5,0), (6931,94,0), (6931,683,0), (6931,787,0), (6932,5,0), (6932,94,0), (6932,683,0), (6932,787,0), (6933,5,0), (6933,18,0), (6933,683,0), (6933,787,0), (6934,5,0), (6934,18,0), (6934,683,0), (6934,787,0), (6935,5,0), (6935,94,0), (6935,683,0), (6935,787,0), (6936,5,0), (6936,14,0), (6936,683,0), (6936,787,0), (6937,5,0), (6937,18,0), (6937,683,0), (6937,787,0), (6938,5,0), (6938,683,0), (6938,787,0), (6938,788,0), (6939,5,0), (6939,14,0), (6939,683,0), (6939,787,0), (6940,5,0), (6940,18,0), (6940,683,0), (6940,787,0), (6941,5,0), (6941,94,0), (6941,683,0), (6941,787,0), (6942,5,0), (6942,374,0), (6942,683,0), (6942,787,0), (6943,5,0), (6943,19,0), (6943,683,0), (6943,787,0), (6944,5,0), (6944,15,0), (6944,683,0), (6944,787,0), (6945,5,0), (6945,54,0), (6945,683,0), (6945,787,0), (6946,5,0), (6946,54,0), (6946,683,0), (6946,787,0), (6947,5,0), (6947,22,0), (6947,683,0), (6947,787,0), (6948,5,0), (6948,374,0), (6948,683,0), (6948,787,0), (6949,5,0), (6949,6,0), (6949,683,0), (6949,787,0), (6950,5,0), (6950,9,0), (6950,683,0), (6950,787,0), (6951,5,0), (6951,352,0), (6951,683,0), (6951,787,0), (6952,5,0), (6952,374,0), (6952,683,0), (6952,787,0), (6953,5,0), (6953,94,0), (6953,683,0), (6953,787,0), (6954,5,0), (6954,94,0), (6954,683,0), (6954,787,0), (6955,5,0), (6955,6,0), (6955,683,0), (6955,787,0), (6956,5,0), (6956,6,0), (6956,683,0), (6956,787,0), (6957,5,0), (6957,9,0), (6957,683,0), (6957,787,0), (6958,5,0), (6958,9,0), (6958,683,0), (6958,787,0), (6959,5,0), (6959,9,0), (6959,683,0), (6959,787,0), (6960,5,0), (6960,9,0), (6960,683,0), (6960,787,0), (6961,5,0), (6961,94,0), (6961,683,0), (6961,787,0), (6962,5,0), (6962,94,0), (6962,683,0), (6962,787,0), (6963,5,0), (6963,22,0), (6963,683,0), (6963,787,0), (6964,5,0), (6964,22,0), (6964,683,0), (6964,787,0), (6965,5,0), (6965,53,0), (6965,683,0), (6965,787,0), (6966,5,0), (6966,19,0), (6966,683,0), (6966,787,0), (6967,5,0), (6967,53,0), (6967,683,0), (6967,787,0), (6968,5,0), (6968,53,0), (6968,683,0), (6968,787,0), (6969,5,0), (6969,53,0), (6969,683,0), (6969,787,0), (6970,5,0), (6970,53,0), (6970,683,0), (6970,787,0), (6971,5,0), (6971,53,0), (6971,683,0), (6971,787,0), (6972,5,0), (6972,11,0), (6972,683,0), (6972,787,0), (6973,5,0), (6973,94,0), (6973,683,0), (6973,787,0), (6974,5,0), (6974,94,0), (6974,683,0), (6974,787,0), (6975,5,0), (6975,94,0), (6975,683,0), (6975,787,0), (6976,5,0), (6976,94,0), (6976,683,0), (6976,787,0), (6977,5,0), (6977,15,0), (6977,683,0), (6977,787,0), (6978,5,0), (6978,22,0), (6978,683,0), (6978,787,0), (6979,5,0), (6979,377,0), (6979,683,0), (6979,787,0), (6980,5,0), (6980,377,0), (6980,683,0), (6980,787,0), (6981,5,0), (6981,11,0), (6981,683,0), (6981,787,0), (6982,5,0), (6982,11,0), (6982,683,0), (6982,787,0), (6983,5,0), (6983,53,0), (6983,683,0), (6983,787,0), (6984,5,0), (6984,683,0), (6984,766,0), (6984,787,0), (6985,5,0), (6985,9,0), (6985,683,0), (6985,787,0), (6986,5,0), (6986,49,0), (6986,683,0), (6986,787,0), (6987,5,0), (6987,53,0), (6987,683,0), (6987,787,0), (6988,5,0), (6988,9,0), (6988,683,0), (6988,787,0), (6989,5,0), (6989,13,0), (6989,683,0), (6989,787,0), (6990,5,0), (6990,13,0), (6990,683,0), (6990,787,0), (6991,5,0), (6991,49,0), (6991,683,0), (6991,787,0), (6992,5,0), (6992,14,0), (6992,683,0), (6992,787,0), (6993,5,0), (6993,14,0), (6993,683,0), (6993,787,0), (6994,5,0), (6994,9,0), (6994,683,0), (6994,787,0), (6995,5,0), (6995,14,0), (6995,683,0), (6995,787,0), (6996,5,0), (6996,9,0), (6996,683,0), (6996,787,0), (6997,5,0), (6997,13,0), (6997,683,0), (6997,787,0), (6998,5,0), (6998,9,0), (6998,683,0), (6998,787,0), (6999,5,0), (6999,6,0), (6999,683,0), (6999,787,0), (7000,5,0), (7000,13,0), (7000,683,0), (7000,787,0), (7001,5,0), (7001,6,0), (7001,683,0), (7001,787,0), (7002,5,0), (7002,14,0), (7002,683,0), (7002,787,0), (7003,5,0), (7003,14,0), (7003,683,0), (7003,787,0), (7004,5,0), (7004,14,0), (7004,683,0), (7004,787,0), (7005,5,0), (7005,14,0), (7005,683,0), (7005,787,0), (7006,5,0), (7006,13,0), (7006,683,0), (7006,787,0), (7007,5,0), (7007,13,0), (7007,683,0), (7007,787,0), (7008,5,0), (7008,13,0), (7008,683,0), (7008,787,0), (7009,5,0), (7009,13,0), (7009,683,0), (7009,787,0), (7010,5,0), (7010,13,0), (7010,683,0), (7010,787,0), (7011,5,0), (7011,13,0), (7011,683,0), (7011,787,0), (7012,5,0), (7012,13,0), (7012,683,0), (7012,787,0), (7013,5,0), (7013,374,0), (7013,683,0), (7013,787,0), (7014,5,0), (7014,374,0), (7014,683,0), (7014,787,0), (7015,5,0), (7015,6,0), (7015,683,0), (7015,787,0), (7016,5,0), (7016,11,0), (7016,683,0), (7016,787,0), (7017,5,0), (7017,48,0), (7017,683,0), (7017,787,0), (7018,5,0), (7018,31,0), (7018,696,0), (7018,789,0), (7019,5,0), (7019,48,0), (7019,696,0), (7019,789,0), (7020,5,0), (7020,48,0), (7020,696,0), (7020,789,0), (7021,5,0), (7021,48,0), (7021,696,0), (7021,789,0), (7022,5,0), (7022,48,0), (7022,696,0), (7022,789,0), (7023,5,0), (7023,31,0), (7023,696,0), (7023,789,0), (7024,5,0), (7024,31,0), (7024,696,0), (7024,789,0), (7025,5,0), (7025,31,0), (7025,696,0), (7025,789,0), (7026,5,0), (7026,31,0), (7026,696,0), (7026,789,0), (7027,5,0), (7027,31,0), (7027,696,0), (7027,789,0), (7028,5,0), (7028,31,0), (7028,696,0), (7028,789,0), (7029,5,0), (7029,31,0), (7029,696,0), (7029,789,0), (7030,5,0), (7030,31,0), (7030,696,0), (7030,789,0), (7031,5,0), (7031,31,0), (7031,696,0), (7031,789,0), (7032,5,0), (7032,27,0), (7032,696,0), (7032,789,0), (7033,5,0), (7033,29,0), (7033,696,0), (7033,789,0), (7034,5,0), (7034,29,0), (7034,696,0), (7034,789,0), (7035,5,0), (7035,29,0), (7035,696,0), (7035,789,0), (7036,5,0), (7036,29,0), (7036,696,0), (7036,789,0), (7037,5,0), (7037,29,0), (7037,696,0), (7037,789,0), (7038,5,0), (7038,29,0), (7038,696,0), (7038,789,0), (7039,5,0), (7039,29,0), (7039,696,0), (7039,789,0), (7040,5,0), (7040,696,0), (7040,789,0), (7040,790,0), (7041,5,0), (7041,48,0), (7041,696,0), (7041,789,0), (7042,5,0), (7042,48,0), (7042,696,0), (7042,789,0), (7043,5,0), (7043,48,0), (7043,696,0), (7043,789,0), (7044,791,0), (7045,791,0), (7046,791,0), (7047,791,0), (7048,791,0), (7049,791,0), (7050,791,0), (7051,791,0), (7052,791,0), (7053,791,0), (7054,791,0), (7055,791,0), (7056,791,0), (7057,791,0), (7058,791,0), (7059,791,0), (7060,791,0), (7061,791,0), (7062,791,0), (7063,791,0), (7064,791,0), (7065,791,0), (7066,791,0), (7067,791,0), (7068,791,0), (7069,791,0), (7070,791,0), (7071,791,0), (7072,791,0), (7073,791,0), (7074,791,0), (7075,791,0), (7076,791,0), (7077,791,0), (7078,791,0), (7079,791,0), (7080,791,0), (7081,791,0), (7082,791,0), (7083,791,0), (7084,791,0), (7085,791,0), (7086,791,0), (7087,791,0), (7088,791,0), (7089,791,0), (7090,791,0), (7091,791,0), (7092,791,0), (7093,791,0), (7094,791,0), (7095,791,0), (7096,791,0), (7097,791,0), (7098,791,0), (7099,791,0), (7100,791,0), (7101,791,0), (7102,791,0), (7103,791,0), (7104,791,0), (7105,791,0), (7106,791,0), (7107,791,0), (7108,791,0), (7109,791,0), (7110,791,0), (7111,792,0), (7112,792,0), (7113,792,0), (7114,792,0), (7115,792,0), (7116,792,0), (7117,792,0), (7118,792,0), (7119,792,0), (7120,792,0), (7121,792,0), (7122,792,0), (7123,792,0), (7124,792,0), (7125,792,0), (7126,792,0), (7127,792,0), (7128,792,0), (7129,792,0), (7130,792,0), (7131,792,0), (7132,792,0), (7133,792,0), (7134,792,0), (7135,792,0), (7136,792,0), (7137,792,0), (7138,792,0), (7139,792,0), (7140,792,0), (7141,792,0), (7142,792,0), (7143,792,0), (7144,792,0), (7145,792,0), (7146,792,0), (7147,792,0), (7148,793,0), (7149,793,0), (7150,793,0), (7151,793,0), (7152,793,0), (7153,793,0), (7154,793,0), (7155,793,0), (7156,793,0), (7157,793,0), (7158,793,0), (7159,793,0), (7160,793,0), (7161,793,0), (7162,793,0), (7163,793,0), (7164,794,0), (7165,794,0), (7166,794,0), (7167,794,0), (7168,794,0), (7169,794,0), (7170,794,0), (7171,794,0), (7172,794,0), (7173,794,0), (7174,794,0), (7175,794,0), (7176,794,0), (7177,794,0), (7178,794,0), (7179,794,0), (7180,794,0), (7181,794,0), (7182,794,0), (7183,794,0), (7184,794,0), (7185,794,0), (7186,794,0), (7187,794,0), (7188,794,0), (7189,794,0), (7190,794,0), (7191,794,0), (7192,794,0), (7193,794,0), (7194,794,0), (7195,794,0), (7196,794,0), (7197,794,0), (7198,794,0), (7199,794,0), (7200,794,0), (7201,794,0), (7202,794,0), (7203,794,0), (7204,794,0), (7205,794,0), (7206,794,0), (7207,794,0), (7208,795,0), (7209,795,0), (7210,795,0), (7211,795,0), (7212,795,0), (7213,795,0), (7214,795,0), (7215,795,0), (7216,795,0), (7217,795,0), (7218,795,0), (7219,795,0), (7220,795,0), (7221,795,0), (7222,795,0), (7223,795,0), (7224,795,0), (7225,795,0), (7226,795,0), (7227,796,0), (7228,796,0), (7229,796,0), (7230,796,0), (7231,796,0), (7232,796,0), (7233,796,0), (7234,796,0), (7235,796,0), (7236,796,0), (7237,796,0), (7238,796,0), (7239,796,0), (7240,796,0), (7241,796,0), (7242,796,0), (7243,796,0), (7244,796,0), (7245,796,0), (7246,796,0), (7247,797,0), (7248,797,0), (7249,797,0), (7250,797,0), (7251,797,0), (7252,797,0), (7253,797,0), (7254,797,0), (7255,797,0), (7256,797,0), (7257,797,0), (7258,797,0), (7259,797,0), (7260,798,0), (7261,798,0), (7262,798,0), (7263,798,0), (7264,798,0), (7265,798,0), (7266,798,0), (7267,798,0), (7268,798,0), (7269,798,0), (7270,798,0), (7271,798,0), (7272,798,0), (7273,798,0), (7274,799,0), (7275,799,0), (7276,799,0), (7277,799,0), (7278,799,0), (7279,799,0), (7280,799,0), (7281,799,0), (7282,799,0), (7283,800,0), (7284,800,0), (7285,800,0), (7286,800,0), (7287,800,0), (7288,800,0), (7289,800,0), (7290,800,0), (7291,800,0), (7292,800,0), (7293,800,0), (7294,800,0), (7295,801,0), (7296,801,0), (7297,801,0), (7298,801,0), (7299,801,0), (7300,801,0), (7301,801,0), (7302,801,0), (7303,801,0), (7304,801,0), (7305,801,0), (7306,801,0), (7307,801,0), (7308,801,0), (7309,801,0), (7310,801,0), (7311,801,0), (7312,801,0), (7313,801,0), (7314,801,0), (7315,801,0), (7316,801,0), (7317,801,0), (7318,801,0), (7319,801,0), (7320,801,0), (7321,802,0), (7322,802,0), (7323,802,0), (7324,802,0), (7325,802,0), (7326,802,0), (7327,802,0), (7328,802,0), (7329,803,0), (7330,803,0), (7331,803,0), (7332,803,0), (7333,803,0), (7334,803,0), (7335,804,0), (7336,804,0), (7337,804,0), (7338,804,0), (7339,804,0), (7340,804,0), (7341,804,0), (7342,804,0), (7343,805,0), (7344,805,0), (7345,805,0), (7346,805,0), (7347,805,0), (7348,805,0), (7349,805,0), (7350,805,0), (7351,805,0), (7352,805,0), (7353,805,0), (7354,805,0), (7355,805,0), (7356,805,0), (7357,805,0), (7358,805,0), (7359,805,0), (7360,805,0), (7361,805,0), (7362,805,0), (7363,805,0), (7364,805,0), (7365,805,0), (7366,805,0), (7367,805,0), (7368,805,0), (7369,806,0), (7370,806,0), (7371,806,0), (7372,806,0), (7373,806,0), (7374,806,0), (7375,374,0), (7375,809,0), (7375,810,0), (7375,811,0), (7376,23,0), (7376,809,0), (7376,810,0), (7376,811,0), (7377,23,0), (7377,809,0), (7377,810,0), (7377,811,0), (7378,374,0), (7378,809,0), (7378,810,0), (7378,811,0), (7379,14,0), (7379,809,0), (7379,810,0), (7379,811,0), (7380,374,0), (7380,809,0), (7380,810,0), (7380,811,0), (7381,374,0), (7381,809,0), (7381,810,0), (7381,811,0), (7382,18,0), (7382,809,0), (7382,810,0), (7382,811,0), (7383,374,0), (7383,809,0), (7383,810,0), (7383,811,0), (7384,374,0), (7384,809,0), (7384,810,0), (7384,811,0), (7385,374,0), (7385,809,0), (7385,810,0), (7385,811,0), (7386,374,0), (7386,809,0), (7386,810,0), (7386,811,0), (7387,374,0), (7387,809,0), (7387,810,0), (7387,811,0), (7388,374,0), (7388,809,0), (7388,810,0), (7388,811,0), (7389,374,0), (7389,809,0), (7389,810,0), (7389,811,0), (7390,374,0), (7390,809,0), (7390,810,0), (7390,811,0), (7391,374,0), (7391,809,0), (7391,810,0), (7391,811,0), (7392,374,0), (7392,809,0), (7392,810,0), (7392,811,0), (7393,374,0), (7393,809,0), (7393,810,0), (7393,811,0), (7394,374,0), (7394,809,0), (7394,810,0), (7394,811,0), (7395,374,0), (7395,809,0), (7395,810,0), (7395,811,0), (7396,6,0), (7396,809,0), (7396,810,0), (7396,811,0), (7397,374,0), (7397,809,0), (7397,810,0), (7397,811,0), (7398,809,0), (7398,810,0), (7398,811,0), (7399,809,0), (7399,810,0), (7399,811,0), (7400,374,0), (7400,809,0), (7400,810,0), (7400,811,0), (7401,809,0), (7401,810,0), (7401,811,0), (7402,809,0), (7402,810,0), (7402,811,0), (7403,374,0), (7403,809,0), (7403,810,0), (7403,811,0), (7404,40,0), (7404,809,0), (7404,810,0), (7404,811,0), (7405,53,0), (7405,809,0), (7405,810,0), (7405,811,0), (7406,40,0), (7406,809,0), (7406,810,0), (7406,811,0), (7407,9,0), (7407,809,0), (7407,810,0), (7407,811,0), (7408,53,0), (7408,809,0), (7408,810,0), (7408,811,0), (7409,767,0), (7409,809,0), (7409,810,0), (7409,811,0), (7410,53,0), (7410,809,0), (7410,810,0), (7410,811,0), (7411,697,0), (7411,809,0), (7411,810,0), (7411,811,0), (7412,697,0), (7412,809,0), (7412,810,0), (7412,811,0), (7413,23,0), (7413,809,0), (7413,810,0), (7413,811,0), (7414,5,0), (7414,22,0), (7414,812,0), (7414,813,0), (7415,5,0), (7415,22,0), (7415,812,0), (7415,813,0), (7416,5,0), (7416,54,0), (7416,812,0), (7416,813,0), (7417,5,0), (7417,812,0), (7417,813,0), (7417,814,0), (7418,5,0), (7418,11,0), (7418,812,0), (7418,813,0), (7419,5,0), (7419,11,0), (7419,812,0), (7419,813,0), (7420,5,0), (7420,11,0), (7420,812,0), (7420,813,0), (7421,5,0), (7421,9,0), (7421,812,0), (7421,813,0), (7422,5,0), (7422,11,0), (7422,812,0), (7422,813,0), (7423,5,0), (7423,11,0), (7423,812,0), (7423,813,0), (7424,5,0), (7424,15,0), (7424,812,0), (7424,813,0), (7425,5,0), (7425,11,0), (7425,812,0), (7425,813,0), (7426,5,0), (7426,11,0), (7426,812,0), (7426,813,0), (7427,5,0), (7427,11,0), (7427,812,0), (7427,813,0), (7428,5,0), (7428,6,0), (7428,812,0), (7428,813,0), (7429,5,0), (7429,11,0), (7429,812,0), (7429,813,0), (7430,5,0), (7430,40,0), (7430,812,0), (7430,813,0), (7431,5,0), (7431,11,0), (7431,812,0), (7431,813,0), (7432,5,0), (7432,54,0), (7432,812,0), (7432,813,0), (7433,5,0), (7433,11,0), (7433,812,0), (7433,813,0), (7434,5,0), (7434,11,0), (7434,812,0), (7434,813,0), (7435,5,0), (7435,13,0), (7435,812,0), (7435,813,0), (7436,5,0), (7436,11,0), (7436,812,0), (7436,813,0), (7437,5,0), (7437,18,0), (7437,812,0), (7437,813,0), (7438,5,0), (7438,22,0), (7438,812,0), (7438,813,0), (7439,5,0), (7439,40,0), (7439,812,0), (7439,813,0), (7440,5,0), (7440,40,0), (7440,812,0), (7440,813,0), (7441,5,0), (7441,40,0), (7441,812,0), (7441,813,0), (7442,5,0), (7442,6,0), (7442,812,0), (7442,813,0), (7443,5,0), (7443,6,0), (7443,812,0), (7443,813,0), (7444,5,0), (7444,6,0), (7444,812,0), (7444,813,0), (7445,5,0), (7445,22,0), (7445,812,0), (7445,813,0), (7446,5,0), (7446,22,0), (7446,812,0), (7446,813,0), (7447,5,0), (7447,6,0), (7447,812,0), (7447,813,0), (7448,5,0), (7448,6,0), (7448,812,0), (7448,813,0), (7449,5,0), (7449,22,0), (7449,812,0), (7449,813,0), (7450,5,0), (7450,6,0), (7450,812,0), (7450,813,0), (7451,5,0), (7451,40,0), (7451,812,0), (7451,813,0), (7452,5,0), (7452,812,0), (7452,813,0), (7453,5,0), (7453,6,0), (7453,812,0), (7453,813,0), (7454,5,0), (7454,11,0), (7454,812,0), (7454,813,0), (7455,5,0), (7455,6,0), (7455,812,0), (7455,813,0), (7456,5,0), (7456,36,0), (7456,812,0), (7456,813,0), (7457,5,0), (7457,36,0), (7457,812,0), (7457,813,0), (7458,5,0), (7458,15,0), (7458,683,0), (7458,815,0), (7459,5,0), (7459,22,0), (7459,683,0), (7459,815,0), (7460,5,0), (7460,54,0), (7460,683,0), (7460,815,0), (7461,5,0), (7461,54,0), (7461,683,0), (7461,815,0), (7462,5,0), (7462,94,0), (7462,683,0), (7462,815,0), (7463,5,0), (7463,51,0), (7463,683,0), (7463,815,0), (7464,5,0), (7464,374,0), (7464,683,0), (7464,815,0), (7465,5,0), (7465,6,0), (7465,683,0), (7465,815,0), (7466,5,0), (7466,23,0), (7466,683,0), (7466,815,0), (7467,5,0), (7467,22,0), (7467,683,0), (7467,815,0), (7468,5,0), (7468,6,0), (7468,683,0), (7468,815,0), (7469,5,0), (7469,6,0), (7469,683,0), (7469,815,0), (7470,5,0), (7470,374,0), (7470,683,0), (7470,815,0), (7471,5,0), (7471,22,0), (7471,683,0), (7471,815,0), (7472,5,0), (7472,22,0), (7472,683,0), (7472,815,0), (7473,5,0), (7473,9,0), (7473,683,0), (7473,815,0), (7474,5,0), (7474,9,0), (7474,683,0), (7474,815,0), (7475,5,0), (7475,53,0), (7475,683,0), (7475,815,0), (7476,5,0), (7476,53,0), (7476,683,0), (7476,815,0), (7477,5,0), (7477,22,0), (7477,683,0), (7477,815,0), (7478,5,0), (7478,22,0), (7478,683,0), (7478,815,0), (7479,5,0), (7479,374,0), (7479,683,0), (7479,815,0), (7480,5,0), (7480,22,0), (7480,683,0), (7480,815,0), (7481,5,0), (7481,374,0), (7481,683,0), (7481,815,0), (7482,5,0), (7482,22,0), (7482,683,0), (7482,815,0), (7483,5,0), (7483,6,0), (7483,683,0), (7483,815,0), (7484,5,0), (7484,6,0), (7484,683,0), (7484,815,0), (7485,5,0), (7485,22,0), (7485,683,0), (7485,815,0), (7486,5,0), (7486,22,0), (7486,683,0), (7486,815,0), (7487,5,0), (7487,54,0), (7487,683,0), (7487,815,0), (7488,5,0), (7488,377,0), (7488,683,0), (7488,815,0), (7489,5,0), (7489,13,0), (7489,683,0), (7489,815,0), (7490,5,0), (7490,11,0), (7490,683,0), (7490,815,0), (7491,5,0), (7491,13,0), (7491,683,0), (7491,815,0), (7492,5,0), (7492,377,0), (7492,683,0), (7492,815,0), (7493,5,0), (7493,13,0), (7493,683,0), (7493,815,0), (7494,5,0), (7494,6,0), (7494,683,0), (7494,815,0), (7495,5,0), (7495,377,0), (7495,683,0), (7495,815,0), (7496,5,0), (7496,14,0), (7496,683,0), (7496,815,0), (7497,5,0), (7497,6,0), (7497,683,0), (7497,815,0), (7498,5,0), (7498,14,0), (7498,683,0), (7498,815,0), (7499,5,0), (7499,31,0), (7499,683,0), (7499,815,0), (7500,5,0), (7500,31,0), (7500,683,0), (7500,815,0), (7501,5,0), (7501,31,0), (7501,683,0), (7501,815,0), (7502,5,0), (7502,31,0), (7502,683,0), (7502,815,0), (7503,5,0), (7503,18,0), (7503,683,0), (7503,815,0), (7504,5,0), (7504,18,0), (7504,683,0), (7504,815,0), (7505,5,0), (7505,18,0), (7505,683,0), (7505,815,0), (7506,5,0), (7506,18,0), (7506,683,0), (7506,815,0), (7507,5,0), (7507,6,0), (7507,683,0), (7507,815,0), (7508,5,0), (7508,6,0), (7508,683,0), (7508,815,0), (7509,5,0), (7509,13,0), (7509,683,0), (7509,815,0), (7510,5,0), (7510,13,0), (7510,683,0), (7510,815,0), (7511,5,0), (7511,13,0), (7511,683,0), (7511,815,0), (7512,5,0), (7512,18,0), (7512,683,0), (7512,815,0), (7513,5,0), (7513,18,0), (7513,683,0), (7513,815,0), (7514,5,0), (7514,18,0), (7514,683,0), (7514,815,0), (7515,5,0), (7515,18,0), (7515,683,0), (7515,815,0), (7516,5,0), (7516,14,0), (7516,683,0), (7516,815,0), (7517,5,0), (7517,14,0), (7517,683,0), (7517,815,0), (7518,5,0), (7518,374,0), (7518,683,0), (7518,815,0), (7519,5,0), (7519,14,0), (7519,683,0), (7519,815,0), (7520,5,0), (7520,40,0), (7520,683,0), (7520,815,0), (7521,5,0), (7521,40,0), (7521,683,0), (7521,815,0), (7522,5,0), (7522,14,0), (7522,683,0), (7522,815,0), (7523,5,0), (7523,14,0), (7523,683,0), (7523,815,0), (7524,5,0), (7524,374,0), (7524,683,0), (7524,815,0), (7525,5,0), (7525,14,0), (7525,683,0), (7525,815,0), (7526,5,0), (7526,31,0), (7526,683,0), (7526,815,0), (7527,5,0), (7527,31,0), (7527,683,0), (7527,815,0), (7528,5,0), (7528,31,0), (7528,683,0), (7528,815,0), (7529,5,0), (7529,31,0), (7529,683,0), (7529,815,0), (7530,5,0), (7530,23,0), (7530,683,0), (7530,815,0), (7531,5,0), (7531,23,0), (7531,683,0), (7531,815,0), (7532,5,0), (7532,22,0), (7532,683,0), (7532,815,0), (7533,5,0), (7533,22,0), (7533,683,0), (7533,815,0), (7534,5,0), (7534,13,0), (7534,683,0), (7534,815,0), (7535,5,0), (7535,13,0), (7535,683,0), (7535,815,0), (7536,5,0), (7536,13,0), (7536,683,0), (7536,815,0), (7537,5,0), (7537,13,0), (7537,683,0), (7537,815,0), (7538,5,0), (7538,11,0), (7538,683,0), (7538,815,0), (7539,5,0), (7539,11,0), (7539,683,0), (7539,815,0), (7540,5,0), (7540,11,0), (7540,683,0), (7540,815,0), (7541,5,0), (7541,6,0), (7541,683,0), (7541,815,0), (7542,5,0), (7542,11,0), (7542,683,0), (7542,815,0), (7543,5,0), (7543,11,0), (7543,683,0), (7543,815,0), (7544,5,0), (7544,11,0), (7544,683,0), (7544,815,0), (7545,5,0), (7545,683,0), (7545,815,0), (7546,5,0), (7546,22,0), (7546,683,0), (7546,815,0), (7547,5,0), (7547,36,0), (7547,683,0), (7547,815,0), (7548,5,0), (7548,22,0), (7548,683,0), (7548,815,0), (7549,5,0), (7549,36,0), (7549,683,0), (7549,815,0), (7550,5,0), (7550,19,0), (7550,683,0), (7550,815,0), (7551,5,0), (7551,13,0), (7551,683,0), (7551,815,0), (7552,5,0), (7552,22,0), (7552,683,0), (7552,815,0), (7553,5,0), (7553,13,0), (7553,683,0), (7553,815,0), (7554,5,0), (7554,683,0), (7554,788,0), (7554,815,0), (7555,5,0), (7555,94,0), (7555,683,0), (7555,815,0), (7556,5,0), (7556,31,0), (7556,683,0), (7556,815,0), (7557,5,0), (7557,31,0), (7557,683,0), (7557,815,0), (7558,5,0), (7558,94,0), (7558,683,0), (7558,815,0), (7559,5,0), (7559,683,0), (7559,788,0), (7559,815,0), (7560,5,0), (7560,94,0), (7560,683,0), (7560,815,0), (7561,5,0), (7561,31,0), (7561,683,0), (7561,815,0), (7562,5,0), (7562,31,0), (7562,683,0), (7562,815,0), (7563,5,0), (7563,94,0), (7563,683,0), (7563,815,0), (7564,5,0), (7564,11,0), (7564,683,0), (7564,815,0), (7565,5,0), (7565,94,0), (7565,683,0), (7565,815,0), (7566,5,0), (7566,31,0), (7566,683,0), (7566,815,0), (7567,5,0), (7567,31,0), (7567,683,0), (7567,815,0), (7568,5,0), (7568,683,0), (7568,815,0), (7568,816,0), (7569,5,0), (7569,31,0), (7569,683,0), (7569,815,0), (7570,5,0), (7570,31,0), (7570,683,0), (7570,815,0), (7571,5,0), (7571,683,0), (7571,815,0), (7571,816,0), (7572,5,0), (7572,31,0), (7572,683,0), (7572,815,0), (7573,5,0), (7573,31,0), (7573,683,0), (7573,815,0), (7574,5,0), (7574,31,0), (7574,683,0), (7574,815,0), (7575,5,0), (7575,19,0), (7575,683,0), (7575,815,0), (7576,5,0), (7576,19,0), (7576,683,0), (7576,815,0), (7577,5,0), (7577,6,0), (7577,683,0), (7577,815,0), (7578,5,0), (7578,6,0), (7578,683,0), (7578,815,0), (7579,5,0), (7579,6,0), (7579,683,0), (7579,815,0), (7580,5,0), (7580,6,0), (7580,683,0), (7580,815,0), (7581,5,0), (7581,6,0), (7581,683,0), (7581,815,0), (7582,5,0), (7582,31,0), (7582,683,0), (7582,815,0), (7583,5,0), (7583,19,0), (7583,683,0), (7583,815,0), (7584,5,0), (7584,6,0), (7584,683,0), (7584,815,0), (7585,5,0), (7585,11,0), (7585,683,0), (7585,815,0), (7586,5,0), (7586,19,0), (7586,683,0), (7586,815,0), (7587,5,0), (7587,11,0), (7587,683,0), (7587,815,0), (7588,5,0), (7588,19,0), (7588,683,0), (7588,815,0), (7589,5,0), (7589,11,0), (7589,683,0), (7589,815,0), (7590,5,0), (7590,19,0), (7590,683,0), (7590,815,0), (7591,5,0), (7591,11,0), (7591,683,0), (7591,815,0), (7592,5,0), (7592,6,0), (7592,683,0), (7592,815,0), (7593,5,0), (7593,6,0), (7593,683,0), (7593,815,0), (7594,5,0), (7594,6,0), (7594,683,0), (7594,815,0), (7595,5,0), (7595,6,0), (7595,683,0), (7595,815,0), (7596,5,0), (7596,6,0), (7596,683,0), (7596,815,0), (7597,5,0), (7597,6,0), (7597,683,0), (7597,815,0), (7598,5,0), (7598,6,0), (7598,683,0), (7598,815,0), (7599,5,0), (7599,18,0), (7599,683,0), (7599,815,0), (7600,5,0), (7600,18,0), (7600,683,0), (7600,815,0), (7601,5,0), (7601,29,0), (7601,683,0), (7601,815,0), (7602,5,0), (7602,29,0), (7602,683,0), (7602,815,0), (7603,5,0), (7603,18,0), (7603,683,0), (7603,815,0), (7604,5,0), (7604,18,0), (7604,683,0), (7604,815,0), (7605,5,0), (7605,18,0), (7605,683,0), (7605,815,0), (7606,5,0), (7606,18,0), (7606,683,0), (7606,815,0), (7607,5,0), (7607,40,0), (7607,683,0), (7607,815,0), (7608,5,0), (7608,6,0), (7608,683,0), (7608,815,0), (7609,5,0), (7609,6,0), (7609,683,0), (7609,815,0), (7610,5,0), (7610,6,0), (7610,683,0), (7610,815,0), (7611,5,0), (7611,6,0), (7611,683,0), (7611,815,0), (7612,5,0), (7612,6,0), (7612,683,0), (7612,815,0), (7613,5,0), (7613,6,0), (7613,683,0), (7613,815,0), (7614,5,0), (7614,6,0), (7614,683,0), (7614,815,0), (7615,5,0), (7615,9,0), (7615,817,0), (7616,5,0), (7616,6,0), (7616,817,0), (7617,5,0), (7617,6,0), (7617,817,0), (7618,5,0), (7618,6,0), (7618,817,0), (7619,5,0), (7619,6,0), (7619,817,0), (7620,5,0), (7620,94,0), (7620,817,0), (7621,5,0), (7621,94,0), (7621,817,0), (7622,5,0), (7622,6,0), (7622,817,0), (7623,5,0), (7623,6,0), (7623,817,0), (7624,5,0), (7624,13,0), (7624,817,0), (7625,5,0), (7625,6,0), (7625,817,0), (7626,5,0), (7626,36,0), (7626,817,0), (7627,5,0), (7627,6,0), (7627,817,0), (7628,5,0), (7628,6,0), (7628,817,0), (7629,5,0), (7629,6,0), (7629,817,0), (7630,5,0), (7630,6,0), (7630,817,0), (7631,5,0), (7631,6,0), (7631,817,0), (7632,5,0), (7632,6,0), (7632,817,0), (7633,5,0), (7633,15,0), (7633,817,0), (7634,5,0), (7634,15,0), (7634,817,0), (7635,5,0), (7635,31,0), (7635,817,0), (7636,5,0), (7636,377,0), (7636,817,0), (7637,5,0), (7637,18,0), (7637,817,0), (7638,5,0), (7638,18,0), (7638,817,0), (7639,5,0), (7639,18,0), (7639,817,0), (7640,5,0), (7640,6,0), (7640,817,0), (7641,5,0), (7641,18,0), (7641,817,0), (7642,5,0), (7642,29,0), (7642,817,0), (7643,5,0), (7643,6,0), (7643,813,0), (7643,818,0), (7644,5,0), (7644,9,0), (7644,813,0), (7644,818,0), (7645,5,0), (7645,9,0), (7645,813,0), (7645,818,0), (7646,5,0), (7646,813,0), (7646,818,0), (7647,5,0), (7647,9,0), (7647,813,0), (7647,818,0), (7648,5,0), (7648,9,0), (7648,813,0), (7648,818,0), (7649,5,0), (7649,9,0), (7649,813,0), (7649,818,0), (7650,5,0), (7650,9,0), (7650,813,0), (7650,818,0), (7651,5,0), (7651,9,0), (7651,813,0), (7651,818,0), (7652,5,0), (7652,9,0), (7652,813,0), (7652,818,0), (7653,5,0), (7653,9,0), (7653,813,0), (7653,818,0), (7654,5,0), (7654,9,0), (7654,813,0), (7654,818,0), (7655,5,0), (7655,6,0), (7655,813,0), (7655,818,0), (7656,5,0), (7656,48,0), (7656,813,0), (7656,818,0), (7657,5,0), (7657,51,0), (7657,819,0), (7657,820,0), (7658,5,0), (7658,51,0), (7658,819,0), (7658,820,0), (7659,5,0), (7659,23,0), (7659,819,0), (7659,820,0), (7660,5,0), (7660,23,0), (7660,819,0), (7660,820,0), (7661,5,0), (7661,13,0), (7661,820,0), (7661,821,0), (7662,5,0), (7662,13,0), (7662,820,0), (7662,821,0), (7663,5,0), (7663,13,0), (7663,820,0), (7663,821,0), (7664,5,0), (7664,13,0), (7664,820,0), (7664,821,0), (7665,5,0), (7665,13,0), (7665,820,0), (7665,821,0), (7666,5,0), (7666,40,0), (7666,820,0), (7666,821,0), (7667,5,0), (7667,51,0), (7667,820,0), (7667,821,0), (7668,5,0), (7668,51,0), (7668,820,0), (7668,821,0), (7669,5,0), (7669,40,0), (7669,820,0), (7669,821,0), (7670,5,0), (7670,13,0), (7670,820,0), (7670,821,0), (7671,5,0), (7671,19,0), (7671,820,0), (7671,821,0), (7672,5,0), (7672,19,0), (7672,820,0), (7672,821,0), (7673,5,0), (7673,13,0), (7673,820,0), (7673,821,0), (7674,5,0), (7674,13,0), (7674,820,0), (7674,821,0), (7675,5,0), (7675,29,0), (7675,820,0), (7675,821,0), (7676,5,0), (7676,13,0), (7676,820,0), (7676,821,0), (7677,5,0), (7677,13,0), (7677,820,0), (7677,821,0), (7678,5,0), (7678,6,0), (7678,820,0), (7678,821,0), (7679,5,0), (7679,13,0), (7679,820,0), (7679,821,0), (7680,5,0), (7680,13,0), (7680,820,0), (7680,821,0), (7681,5,0), (7681,13,0), (7681,820,0), (7681,821,0), (7682,5,0), (7682,11,0), (7682,820,0), (7682,821,0), (7683,5,0), (7683,40,0), (7683,820,0), (7683,821,0), (7684,5,0), (7684,40,0), (7684,820,0), (7684,821,0), (7685,5,0), (7685,40,0), (7685,820,0), (7685,821,0), (7686,5,0), (7686,19,0), (7686,820,0), (7686,821,0), (7687,5,0), (7687,19,0), (7687,820,0), (7687,821,0), (7688,5,0), (7688,36,0), (7688,820,0), (7688,821,0), (7689,5,0), (7689,13,0), (7689,820,0), (7689,821,0), (7690,5,0), (7690,13,0), (7690,820,0), (7690,821,0), (7691,5,0), (7691,18,0), (7691,820,0), (7691,821,0), (7692,5,0), (7692,13,0), (7692,820,0), (7692,821,0), (7693,5,0), (7693,51,0), (7693,820,0), (7693,821,0), (7694,5,0), (7694,51,0), (7694,820,0), (7694,821,0), (7695,5,0), (7695,51,0), (7695,820,0), (7695,821,0), (7696,5,0), (7696,51,0), (7696,820,0), (7696,821,0), (7697,5,0), (7697,51,0), (7697,820,0), (7697,821,0), (7698,5,0), (7698,48,0), (7698,820,0), (7698,821,0), (7699,5,0), (7699,48,0), (7699,820,0), (7699,821,0), (7700,5,0), (7700,48,0), (7700,820,0), (7700,821,0), (7701,5,0), (7701,48,0), (7701,820,0), (7701,821,0), (7702,5,0), (7702,51,0), (7702,820,0), (7702,821,0), (7703,5,0), (7703,51,0), (7703,820,0), (7703,821,0), (7704,5,0), (7704,48,0), (7704,820,0), (7704,821,0), (7705,5,0), (7705,48,0), (7705,820,0), (7705,821,0), (7706,5,0), (7706,48,0), (7706,820,0), (7706,821,0), (7707,5,0), (7707,48,0), (7707,820,0), (7707,821,0), (7708,5,0), (7708,48,0), (7708,820,0), (7708,821,0), (7709,5,0), (7709,48,0), (7709,820,0), (7709,821,0), (7710,5,0), (7710,48,0), (7710,820,0), (7710,821,0), (7711,5,0), (7711,48,0), (7711,820,0), (7711,821,0), (7712,5,0), (7712,48,0), (7712,820,0), (7712,821,0), (7713,5,0), (7713,48,0), (7713,820,0), (7713,821,0), (7714,5,0), (7714,48,0), (7714,820,0), (7714,821,0), (7715,5,0), (7715,48,0), (7715,820,0), (7715,821,0), (7716,5,0), (7716,13,0), (7716,820,0), (7716,821,0), (7717,5,0), (7717,13,0), (7717,820,0), (7717,821,0), (7718,5,0), (7718,13,0), (7718,820,0), (7718,821,0), (7719,5,0), (7719,23,0), (7719,820,0), (7719,821,0), (7720,5,0), (7720,13,0), (7720,820,0), (7720,821,0), (7721,5,0), (7721,23,0), (7721,820,0), (7721,821,0), (7722,5,0), (7722,40,0), (7722,820,0), (7722,821,0), (7723,5,0), (7723,40,0), (7723,820,0), (7723,821,0), (7724,5,0), (7724,40,0), (7724,820,0), (7724,821,0), (7725,5,0), (7725,40,0), (7725,820,0), (7725,821,0), (7726,5,0), (7726,40,0), (7726,820,0), (7726,821,0), (7727,5,0), (7727,40,0), (7727,820,0), (7727,821,0), (7728,5,0), (7728,40,0), (7728,820,0), (7728,821,0), (7729,5,0), (7729,40,0), (7729,820,0), (7729,821,0), (7730,5,0), (7730,23,0), (7730,820,0), (7730,821,0), (7731,5,0), (7731,40,0), (7731,820,0), (7731,821,0), (7732,5,0), (7732,40,0), (7732,820,0), (7732,821,0), (7733,5,0), (7733,48,0), (7733,820,0), (7733,821,0), (7734,5,0), (7734,48,0), (7734,820,0), (7734,821,0), (7735,5,0), (7735,820,0), (7735,821,0), (7736,5,0), (7736,40,0), (7736,820,0), (7736,821,0), (7737,5,0), (7737,483,0), (7737,820,0), (7737,821,0), (7738,5,0), (7738,483,0), (7738,820,0), (7738,821,0), (7739,5,0), (7739,48,0), (7739,820,0), (7739,821,0), (7740,5,0), (7740,48,0), (7740,820,0), (7740,821,0), (7741,5,0), (7741,48,0), (7741,820,0), (7741,821,0), (7742,5,0), (7742,48,0), (7742,820,0), (7742,821,0), (7743,5,0), (7743,14,0), (7743,820,0), (7743,821,0), (7744,5,0), (7744,13,0), (7744,820,0), (7744,821,0), (7745,5,0), (7745,13,0), (7745,820,0), (7745,821,0), (7746,5,0), (7746,23,0), (7746,820,0), (7746,821,0), (7747,5,0), (7747,23,0), (7747,820,0), (7747,821,0), (7748,5,0), (7748,23,0), (7748,820,0), (7748,821,0), (7749,5,0), (7749,23,0), (7749,820,0), (7749,821,0), (7750,5,0), (7750,29,0), (7750,820,0), (7750,821,0), (7751,5,0), (7751,29,0), (7751,820,0), (7751,821,0), (7752,5,0), (7752,29,0), (7752,820,0), (7752,821,0), (7753,5,0), (7753,23,0), (7753,820,0), (7753,821,0), (7754,5,0), (7754,23,0), (7754,820,0), (7754,821,0), (7755,5,0), (7755,23,0), (7755,820,0), (7755,821,0), (7756,5,0), (7756,23,0), (7756,820,0), (7756,821,0), (7757,5,0), (7757,23,0), (7757,820,0), (7757,821,0), (7758,5,0), (7758,23,0), (7758,820,0), (7758,821,0), (7759,5,0), (7759,48,0), (7759,820,0), (7759,821,0), (7760,5,0), (7760,48,0), (7760,820,0), (7760,821,0), (7761,5,0), (7761,48,0), (7761,820,0), (7761,821,0), (7762,5,0), (7762,48,0), (7762,820,0), (7762,821,0), (7763,5,0), (7763,48,0), (7763,820,0), (7763,821,0), (7764,5,0), (7764,48,0), (7764,820,0), (7764,821,0), (7765,5,0), (7765,48,0), (7765,820,0), (7765,821,0), (7766,5,0), (7766,48,0), (7766,820,0), (7766,821,0), (7767,5,0), (7767,48,0), (7767,820,0), (7767,821,0), (7768,5,0), (7768,48,0), (7768,820,0), (7768,821,0), (7769,5,0), (7769,51,0), (7769,820,0), (7769,821,0), (7770,5,0), (7770,40,0), (7770,822,0), (7770,823,0), (7771,5,0), (7771,18,0), (7771,822,0), (7771,823,0), (7772,5,0), (7772,18,0), (7772,822,0), (7772,823,0), (7773,5,0), (7773,40,0), (7773,822,0), (7773,823,0), (7774,5,0), (7774,40,0), (7774,822,0), (7774,823,0), (7775,5,0), (7775,18,0), (7775,822,0), (7775,823,0), (7776,5,0), (7776,40,0), (7776,822,0), (7776,823,0), (7777,5,0), (7777,40,0), (7777,822,0), (7777,823,0), (7778,5,0), (7778,40,0), (7778,822,0), (7778,823,0), (7779,5,0), (7779,40,0), (7779,822,0), (7779,823,0), (7780,5,0), (7780,40,0), (7780,822,0), (7780,823,0), (7781,5,0), (7781,18,0), (7781,822,0), (7781,823,0), (7782,5,0), (7782,18,0), (7782,822,0), (7782,823,0), (7783,5,0), (7783,40,0), (7783,822,0), (7783,823,0), (7784,5,0), (7784,40,0), (7784,822,0), (7784,823,0), (7785,5,0), (7785,40,0), (7785,822,0), (7785,823,0), (7786,5,0), (7786,40,0), (7786,822,0), (7786,823,0), (7787,5,0), (7787,18,0), (7787,822,0), (7787,823,0), (7788,5,0), (7788,49,0), (7788,822,0), (7788,823,0), (7789,5,0), (7789,49,0), (7789,822,0), (7789,823,0), (7790,5,0), (7790,49,0), (7790,822,0), (7790,823,0), (7791,5,0), (7791,49,0), (7791,822,0), (7791,823,0), (7792,5,0), (7792,29,0), (7792,822,0), (7792,823,0), (7793,5,0), (7793,29,0), (7793,822,0), (7793,823,0), (7794,5,0), (7794,40,0), (7794,822,0), (7794,823,0), (7795,5,0), (7795,27,0), (7795,822,0), (7795,823,0), (7796,5,0), (7796,40,0), (7796,822,0), (7796,823,0), (7797,5,0), (7797,782,0), (7797,822,0), (7797,823,0), (7798,5,0), (7798,27,0), (7798,822,0), (7798,823,0), (7799,5,0), (7799,782,0), (7799,822,0), (7799,823,0), (7800,5,0), (7800,49,0), (7800,822,0), (7800,823,0), (7801,5,0), (7801,49,0), (7801,822,0), (7801,823,0), (7802,5,0), (7802,27,0), (7802,822,0), (7802,823,0), (7803,5,0), (7803,822,0), (7803,823,0), (7804,5,0), (7804,27,0), (7804,822,0), (7804,823,0), (7805,5,0), (7805,36,0), (7805,822,0), (7805,823,0), (7806,5,0), (7806,27,0), (7806,822,0), (7806,823,0), (7807,5,0), (7807,18,0), (7807,822,0), (7807,823,0), (7808,4,0), (7808,5,0), (7808,357,0), (7808,824,0), (7809,4,0), (7809,5,0), (7809,357,0), (7809,824,0), (7810,4,0), (7810,5,0), (7810,357,0), (7810,824,0), (7811,4,0), (7811,5,0), (7811,357,0), (7811,824,0), (7812,4,0), (7812,5,0), (7812,357,0), (7812,824,0), (7813,4,0), (7813,5,0), (7813,357,0), (7813,824,0), (7814,4,0), (7814,5,0), (7814,357,0), (7814,824,0), (7815,4,0), (7815,5,0), (7815,357,0), (7815,824,0), (7816,5,0), (7816,29,0), (7816,357,0), (7816,824,0), (7817,4,0), (7817,5,0), (7817,357,0), (7817,824,0), (7818,4,0), (7818,5,0), (7818,357,0), (7818,824,0), (7819,4,0), (7819,5,0), (7819,357,0), (7819,824,0), (7820,5,0), (7820,18,0), (7820,357,0), (7820,824,0), (7821,5,0), (7821,18,0), (7821,357,0), (7821,824,0), (7822,4,0), (7822,5,0), (7822,357,0), (7822,824,0), (7823,4,0), (7823,5,0), (7823,357,0), (7823,824,0), (7824,5,0), (7824,23,0), (7824,357,0), (7824,824,0), (7825,5,0), (7825,23,0), (7825,357,0), (7825,824,0), (7826,5,0), (7826,23,0), (7826,357,0), (7826,824,0), (7827,4,0), (7827,5,0), (7827,357,0), (7827,824,0), (7828,5,0), (7828,23,0), (7828,357,0), (7828,824,0), (7829,4,0), (7829,5,0), (7829,357,0), (7829,824,0), (7830,4,0), (7830,5,0), (7830,357,0), (7830,824,0), (7831,4,0), (7831,5,0), (7831,357,0), (7831,824,0), (7832,4,0), (7832,5,0), (7832,357,0), (7832,824,0), (7833,4,0), (7833,5,0), (7833,357,0), (7833,824,0), (7834,4,0), (7834,5,0), (7834,357,0), (7834,824,0), (7835,5,0), (7835,23,0), (7835,357,0), (7835,824,0), (7836,4,0), (7836,5,0), (7836,357,0), (7836,824,0), (7837,4,0), (7837,5,0), (7837,357,0), (7837,824,0), (7838,4,0), (7838,5,0), (7838,357,0), (7838,824,0), (7839,4,0), (7839,5,0), (7839,357,0), (7839,824,0), (7840,4,0), (7840,5,0), (7840,357,0), (7840,824,0), (7841,4,0), (7841,5,0), (7841,357,0), (7841,824,0), (7842,5,0), (7842,49,0), (7842,357,0), (7842,824,0), (7843,5,0), (7843,29,0), (7843,357,0), (7843,824,0), (7844,5,0), (7844,6,0), (7844,357,0), (7844,825,0), (7845,5,0), (7845,6,0), (7845,357,0), (7845,825,0), (7846,5,0), (7846,6,0), (7846,357,0), (7846,825,0), (7847,5,0), (7847,6,0), (7847,357,0), (7847,825,0), (7848,4,0), (7848,5,0), (7848,93,0), (7848,827,0), (7849,4,0), (7849,5,0), (7849,93,0), (7849,827,0), (7850,4,0), (7850,5,0), (7850,93,0), (7850,827,0), (7851,4,0), (7851,5,0), (7851,93,0), (7851,827,0), (7852,4,0), (7852,5,0), (7852,93,0), (7852,827,0), (7853,4,0), (7853,5,0), (7853,93,0), (7853,827,0), (7854,4,0), (7854,5,0), (7854,93,0), (7854,827,0), (7855,4,0), (7855,5,0), (7855,93,0), (7855,827,0), (7856,4,0), (7856,5,0), (7856,93,0), (7856,827,0), (7857,4,0), (7857,5,0), (7857,93,0), (7857,827,0), (7858,4,0), (7858,5,0), (7858,93,0), (7858,827,0), (7859,4,0), (7859,5,0), (7859,93,0), (7859,827,0), (7860,4,0), (7860,5,0), (7860,93,0), (7860,827,0), (7861,4,0), (7861,5,0), (7861,93,0), (7861,827,0), (7862,4,0), (7862,5,0), (7862,93,0), (7862,827,0), (7863,5,0), (7863,357,0), (7863,829,0), (7863,830,0), (7864,5,0), (7864,357,0), (7864,829,0), (7864,830,0), (7865,5,0), (7865,357,0), (7865,829,0), (7865,830,0), (7866,5,0), (7866,357,0), (7866,829,0), (7866,831,0), (7867,5,0), (7867,357,0), (7867,829,0), (7867,830,0), (7868,5,0), (7868,357,0), (7868,829,0), (7868,830,0), (7869,5,0), (7869,357,0), (7869,829,0), (7869,830,0), (7870,4,0), (7870,5,0), (7870,357,0), (7870,829,0), (7871,5,0), (7871,357,0), (7871,829,0), (7871,830,0), (7872,4,0), (7872,5,0), (7872,357,0), (7872,829,0), (7873,5,0), (7873,357,0), (7873,829,0), (7873,830,0), (7874,5,0), (7874,357,0), (7874,829,0), (7874,830,0), (7875,5,0), (7875,357,0), (7875,829,0), (7875,832,0), (7876,4,0), (7876,5,0), (7876,357,0), (7876,829,0), (7877,5,0), (7877,23,0), (7877,357,0), (7877,829,0), (7878,4,0), (7878,5,0), (7878,357,0), (7878,829,0), (7879,4,0), (7879,5,0), (7879,357,0), (7879,829,0), (7880,4,0), (7880,5,0), (7880,357,0), (7880,829,0), (7881,5,0), (7881,6,0), (7881,357,0), (7881,829,0), (7882,4,0), (7882,5,0), (7882,357,0), (7882,829,0), (7883,4,0), (7883,5,0), (7883,357,0), (7883,829,0), (7884,4,0), (7884,5,0), (7884,357,0), (7884,829,0), (7885,4,0), (7885,5,0), (7885,357,0), (7885,829,0), (7886,4,0), (7886,5,0), (7886,357,0), (7886,829,0), (7887,4,0), (7887,5,0), (7887,357,0), (7887,829,0), (7888,4,0), (7888,5,0), (7888,357,0), (7888,829,0), (7889,4,0), (7889,5,0), (7889,357,0), (7889,829,0), (7890,4,0), (7890,5,0), (7890,357,0), (7890,829,0), (7891,4,0), (7891,5,0), (7891,357,0), (7891,829,0), (7892,4,0), (7892,5,0), (7892,357,0), (7892,829,0), (7893,4,0), (7893,5,0), (7893,357,0), (7893,829,0), (7894,4,0), (7894,5,0), (7894,357,0), (7894,829,0), (7895,4,0), (7895,5,0), (7895,357,0), (7895,829,0), (7896,4,0), (7896,5,0), (7896,357,0), (7896,829,0), (7897,4,0), (7897,5,0), (7897,357,0), (7897,829,0), (7898,4,0), (7898,5,0), (7898,357,0), (7898,829,0), (7899,4,0), (7899,5,0), (7899,357,0), (7899,829,0), (7900,4,0), (7900,5,0), (7900,357,0), (7900,829,0), (7901,4,0), (7901,5,0), (7901,357,0), (7901,829,0), (7902,4,0), (7902,5,0), (7902,357,0), (7902,829,0), (7903,4,0), (7903,5,0), (7903,357,0), (7903,829,0), (7904,4,0), (7904,5,0), (7904,357,0), (7904,829,0), (7905,4,0), (7905,5,0), (7905,357,0), (7905,829,0), (7906,5,0), (7906,23,0), (7906,357,0), (7906,829,0), (7907,4,0), (7907,5,0), (7907,357,0), (7907,829,0), (7908,4,0), (7908,5,0), (7908,357,0), (7908,829,0), (7909,4,0), (7909,5,0), (7909,357,0), (7909,829,0), (7910,4,0), (7910,5,0), (7910,357,0), (7910,829,0), (7911,4,0), (7911,5,0), (7911,357,0), (7911,829,0), (7912,4,0), (7912,5,0), (7912,357,0), (7912,829,0), (7913,4,0), (7913,5,0), (7913,357,0), (7913,829,0), (7914,4,0), (7914,5,0), (7914,357,0), (7914,829,0), (7915,4,0), (7915,5,0), (7915,357,0), (7915,829,0), (7916,4,0), (7916,5,0), (7916,357,0), (7916,829,0), (7917,4,0), (7917,5,0), (7917,357,0), (7917,829,0), (7918,4,0), (7918,5,0), (7918,357,0), (7918,829,0), (7919,4,0), (7919,5,0), (7919,357,0), (7919,829,0), (7920,4,0); INSERT INTO `wporg_33_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (7920,5,0), (7920,357,0), (7920,829,0), (7921,4,0), (7921,5,0), (7921,357,0), (7921,829,0), (7922,4,0), (7922,5,0), (7922,357,0), (7922,829,0), (7923,4,0), (7923,5,0), (7923,357,0), (7923,829,0), (7924,4,0), (7924,5,0), (7924,357,0), (7924,829,0), (7925,5,0), (7925,6,0), (7925,357,0), (7925,829,0), (7926,4,0), (7926,5,0), (7926,357,0), (7926,829,0), (7927,4,0), (7927,5,0), (7927,357,0), (7927,829,0), (7928,4,0), (7928,5,0), (7928,357,0), (7928,829,0), (7929,4,0), (7929,5,0), (7929,357,0), (7929,829,0), (7930,4,0), (7930,5,0), (7930,357,0), (7930,829,0), (7931,5,0), (7931,6,0), (7931,357,0), (7931,829,0), (7932,4,0), (7932,5,0), (7932,357,0), (7932,829,0), (7933,4,0), (7933,5,0), (7933,357,0), (7933,829,0), (7934,4,0), (7934,5,0), (7934,357,0), (7934,829,0), (7935,4,0), (7935,5,0), (7935,357,0), (7935,829,0), (7936,4,0), (7936,5,0), (7936,357,0), (7936,829,0), (7937,4,0), (7937,5,0), (7937,357,0), (7937,829,0), (7938,4,0), (7938,5,0), (7938,357,0), (7938,829,0), (7939,4,0), (7939,5,0), (7939,357,0), (7939,829,0), (7940,4,0), (7940,5,0), (7940,357,0), (7940,829,0), (7941,4,0), (7941,5,0), (7941,357,0), (7941,829,0), (7942,5,0), (7942,357,0), (7942,362,0), (7942,829,0), (7943,5,0), (7943,357,0), (7943,362,0), (7943,829,0), (7944,5,0), (7944,18,0), (7944,357,0), (7944,829,0), (7945,5,0), (7945,357,0), (7945,829,0), (7946,5,0), (7946,36,0), (7946,357,0), (7946,829,0), (7947,5,0), (7947,36,0), (7947,357,0), (7947,829,0), (7948,5,0), (7948,36,0), (7948,357,0), (7948,829,0), (7949,5,0), (7949,36,0), (7949,357,0), (7949,829,0), (7950,5,0), (7950,36,0), (7950,357,0), (7950,829,0), (7951,5,0), (7951,23,0), (7951,357,0), (7951,829,0), (7952,5,0), (7952,23,0), (7952,357,0), (7952,829,0), (7953,4,0), (7953,5,0), (7953,357,0), (7953,829,0), (7954,5,0), (7954,36,0), (7954,357,0), (7954,829,0), (7955,5,0), (7955,6,0), (7955,357,0), (7955,829,0), (7956,5,0), (7956,6,0), (7956,357,0), (7956,829,0), (7957,5,0), (7957,6,0), (7957,357,0), (7957,829,0), (7958,5,0), (7958,49,0), (7958,357,0), (7958,829,0), (7959,5,0), (7959,49,0), (7959,357,0), (7959,829,0), (7960,5,0), (7960,36,0), (7960,357,0), (7960,829,0), (7961,5,0), (7961,6,0), (7961,357,0), (7961,833,0), (7962,5,0), (7962,18,0), (7962,357,0), (7962,833,0), (7963,5,0), (7963,6,0), (7963,357,0), (7963,833,0), (7964,5,0), (7964,6,0), (7964,357,0), (7964,833,0), (7965,5,0), (7965,51,0), (7965,357,0), (7965,833,0), (7966,5,0), (7966,51,0), (7966,357,0), (7966,833,0), (7967,5,0), (7967,51,0), (7967,357,0), (7967,833,0), (7968,5,0), (7968,51,0), (7968,357,0), (7968,833,0), (7969,5,0), (7969,51,0), (7969,357,0), (7969,833,0), (7970,5,0), (7970,51,0), (7970,357,0), (7970,833,0), (7971,5,0), (7971,51,0), (7971,357,0), (7971,833,0), (7972,5,0), (7972,6,0), (7972,357,0), (7972,833,0), (7973,5,0), (7973,6,0), (7973,357,0), (7973,833,0), (7974,5,0), (7974,6,0), (7974,357,0), (7974,833,0), (7975,5,0), (7975,51,0), (7975,357,0), (7975,834,0), (7976,5,0), (7976,6,0), (7976,835,0), (7976,836,0), (7977,5,0), (7977,6,0), (7977,835,0), (7977,836,0), (7978,5,0), (7978,51,0), (7978,835,0), (7978,836,0), (7979,5,0), (7979,6,0), (7979,835,0), (7979,836,0), (7980,5,0), (7980,18,0), (7980,835,0), (7980,836,0), (7981,5,0), (7981,6,0), (7981,835,0), (7981,836,0), (7982,5,0), (7982,6,0), (7982,835,0), (7982,836,0), (7983,5,0), (7983,6,0), (7983,835,0), (7983,836,0), (7984,5,0), (7984,6,0), (7984,835,0), (7984,836,0), (7985,5,0), (7985,6,0), (7985,835,0), (7985,836,0), (7986,5,0), (7986,835,0), (7986,836,0), (7986,837,0), (7987,5,0), (7987,6,0), (7987,835,0), (7987,836,0), (7988,5,0), (7988,6,0), (7988,835,0), (7988,836,0), (7989,5,0), (7989,6,0), (7989,835,0), (7989,836,0), (7990,5,0), (7990,6,0), (7990,835,0), (7990,836,0), (7991,5,0), (7991,6,0), (7991,835,0), (7991,836,0), (7992,5,0), (7992,835,0), (7992,836,0), (7992,837,0), (7993,5,0), (7993,48,0), (7993,835,0), (7993,836,0), (7994,5,0), (7994,6,0), (7994,835,0), (7994,836,0), (7995,5,0), (7995,6,0), (7995,835,0), (7995,836,0), (7996,5,0), (7996,6,0), (7996,836,0), (7996,838,0), (7997,5,0), (7997,6,0), (7997,836,0), (7997,838,0), (7998,5,0), (7998,6,0), (7998,836,0), (7998,838,0), (7999,5,0), (7999,836,0), (7999,838,0), (8000,5,0), (8000,6,0), (8000,836,0), (8000,838,0), (8001,5,0), (8001,6,0), (8001,836,0), (8001,838,0), (8002,5,0), (8002,6,0), (8002,836,0), (8002,838,0), (8003,5,0), (8003,6,0), (8003,836,0), (8003,838,0), (8004,5,0), (8004,6,0), (8004,836,0), (8004,838,0), (8005,5,0), (8005,6,0), (8005,836,0), (8005,838,0), (8006,5,0), (8006,6,0), (8006,836,0), (8006,838,0), (8007,5,0), (8007,6,0), (8007,836,0), (8007,838,0), (8008,5,0), (8008,6,0), (8008,836,0), (8008,838,0), (8009,5,0), (8009,6,0), (8009,836,0), (8009,838,0), (8010,5,0), (8010,6,0), (8010,836,0), (8010,838,0), (8011,5,0), (8011,6,0), (8011,836,0), (8011,838,0), (8012,5,0), (8012,6,0), (8012,836,0), (8012,838,0), (8013,5,0), (8013,6,0), (8013,836,0), (8013,838,0), (8014,5,0), (8014,6,0), (8014,836,0), (8014,838,0), (8015,5,0), (8015,6,0), (8015,836,0), (8015,838,0), (8016,5,0), (8016,27,0), (8016,836,0), (8016,838,0), (8017,5,0), (8017,6,0), (8017,836,0), (8017,838,0), (8018,5,0), (8018,6,0), (8018,836,0), (8018,838,0), (8019,5,0), (8019,6,0), (8019,836,0), (8019,838,0), (8020,5,0), (8020,6,0), (8020,836,0), (8020,838,0), (8021,5,0), (8021,6,0), (8021,836,0), (8021,838,0), (8022,5,0), (8022,6,0), (8022,836,0), (8022,838,0), (8023,5,0), (8023,6,0), (8023,836,0), (8023,838,0), (8024,5,0), (8024,6,0), (8024,836,0), (8024,838,0), (8025,5,0), (8025,6,0), (8025,836,0), (8025,838,0), (8026,5,0), (8026,6,0), (8026,836,0), (8026,838,0), (8027,5,0), (8027,22,0), (8027,839,0), (8027,840,0), (8028,5,0), (8028,22,0), (8028,839,0), (8028,840,0), (8029,5,0), (8029,29,0), (8029,839,0), (8029,840,0), (8030,5,0), (8030,22,0), (8030,839,0), (8030,840,0), (8031,5,0), (8031,54,0), (8031,839,0), (8031,840,0), (8032,5,0), (8032,22,0), (8032,839,0), (8032,840,0), (8033,5,0), (8033,54,0), (8033,839,0), (8033,840,0), (8034,5,0), (8034,6,0), (8034,839,0), (8034,840,0), (8035,5,0), (8035,374,0), (8035,839,0), (8035,840,0), (8036,5,0), (8036,19,0), (8036,839,0), (8036,840,0), (8037,5,0), (8037,51,0), (8037,839,0), (8037,840,0), (8038,5,0), (8038,40,0), (8038,839,0), (8038,840,0), (8039,5,0), (8039,670,0), (8039,839,0), (8039,840,0), (8040,5,0), (8040,40,0), (8040,839,0), (8040,840,0), (8041,5,0), (8041,374,0), (8041,839,0), (8041,840,0), (8042,5,0), (8042,40,0), (8042,839,0), (8042,840,0), (8043,5,0), (8043,13,0), (8043,839,0), (8043,840,0), (8044,5,0), (8044,40,0), (8044,839,0), (8044,840,0), (8045,5,0), (8045,15,0), (8045,839,0), (8045,840,0), (8046,5,0), (8046,40,0), (8046,839,0), (8046,840,0), (8047,5,0), (8047,6,0), (8047,839,0), (8047,840,0), (8048,5,0), (8048,40,0), (8048,839,0), (8048,840,0), (8049,5,0), (8049,11,0), (8049,839,0), (8049,840,0), (8050,5,0), (8050,6,0), (8050,839,0), (8050,840,0), (8051,5,0), (8051,6,0), (8051,839,0), (8051,840,0), (8052,5,0), (8052,11,0), (8052,839,0), (8052,840,0), (8053,5,0), (8053,11,0), (8053,839,0), (8053,840,0), (8054,5,0), (8054,11,0), (8054,839,0), (8054,840,0), (8055,5,0), (8055,11,0), (8055,839,0), (8055,840,0), (8056,5,0), (8056,6,0), (8056,839,0), (8056,840,0), (8057,5,0), (8057,6,0), (8057,839,0), (8057,840,0), (8058,5,0), (8058,6,0), (8058,839,0), (8058,840,0), (8059,5,0), (8059,31,0), (8059,839,0), (8059,840,0), (8060,5,0), (8060,31,0), (8060,839,0), (8060,840,0), (8061,5,0), (8061,11,0), (8061,839,0), (8061,840,0), (8062,5,0), (8062,31,0), (8062,839,0), (8062,840,0), (8063,5,0), (8063,31,0), (8063,839,0), (8063,840,0), (8064,5,0), (8064,11,0), (8064,839,0), (8064,840,0), (8065,5,0), (8065,31,0), (8065,839,0), (8065,840,0), (8066,5,0), (8066,11,0), (8066,839,0), (8066,840,0), (8067,5,0), (8067,40,0), (8067,839,0), (8067,840,0), (8068,5,0), (8068,29,0), (8068,839,0), (8068,840,0), (8069,5,0), (8069,40,0), (8069,839,0), (8069,840,0), (8070,5,0), (8070,11,0), (8070,839,0), (8070,840,0), (8071,5,0), (8071,40,0), (8071,839,0), (8071,840,0), (8072,5,0), (8072,40,0), (8072,839,0), (8072,840,0), (8073,5,0), (8073,6,0), (8073,839,0), (8073,840,0), (8074,5,0), (8074,11,0), (8074,839,0), (8074,840,0), (8075,5,0), (8075,6,0), (8075,839,0), (8075,840,0), (8076,5,0), (8076,40,0), (8076,839,0), (8076,840,0), (8077,5,0), (8077,6,0), (8077,839,0), (8077,840,0), (8078,5,0), (8078,11,0), (8078,839,0), (8078,840,0), (8079,5,0), (8079,40,0), (8079,839,0), (8079,840,0), (8080,5,0), (8080,40,0), (8080,839,0), (8080,840,0), (8081,5,0), (8081,6,0), (8081,839,0), (8081,840,0), (8082,5,0), (8082,40,0), (8082,839,0), (8082,840,0), (8083,5,0), (8083,6,0), (8083,839,0), (8083,840,0), (8084,5,0), (8084,6,0), (8084,839,0), (8084,840,0), (8085,5,0), (8085,40,0), (8085,839,0), (8085,840,0), (8086,5,0), (8086,40,0), (8086,839,0), (8086,840,0), (8087,5,0), (8087,40,0), (8087,839,0), (8087,840,0), (8088,5,0), (8088,40,0), (8088,839,0), (8088,840,0), (8089,5,0), (8089,6,0), (8089,839,0), (8089,840,0), (8090,5,0), (8090,6,0), (8090,839,0), (8090,840,0), (8091,5,0), (8091,6,0), (8091,839,0), (8091,840,0), (8092,5,0), (8092,93,0), (8092,670,0), (8092,841,0), (8093,5,0), (8093,93,0), (8093,94,0), (8093,841,0), (8094,5,0), (8094,13,0), (8094,93,0), (8094,841,0), (8095,5,0), (8095,22,0), (8095,93,0), (8095,841,0), (8096,5,0), (8096,22,0), (8096,93,0), (8096,841,0), (8097,5,0), (8097,93,0), (8097,474,0), (8097,841,0), (8098,5,0), (8098,93,0), (8098,779,0), (8098,841,0), (8099,5,0), (8099,93,0), (8099,841,0), (8100,5,0), (8100,93,0), (8100,841,0), (8101,5,0), (8101,93,0), (8101,841,0), (8102,5,0), (8102,474,0), (8102,842,0), (8103,5,0), (8103,670,0), (8103,842,0), (8104,5,0), (8104,474,0), (8104,842,0), (8105,5,0), (8105,94,0), (8105,842,0), (8106,5,0), (8106,51,0), (8106,842,0), (8107,5,0), (8107,94,0), (8107,842,0), (8108,5,0), (8108,11,0), (8108,842,0), (8109,5,0), (8109,6,0), (8109,842,0), (8110,5,0), (8110,778,0), (8110,842,0), (8111,5,0), (8111,54,0), (8111,842,0), (8112,5,0), (8112,54,0), (8112,842,0), (8113,5,0), (8113,14,0), (8113,842,0), (8114,5,0), (8114,14,0), (8114,842,0), (8115,5,0), (8115,14,0), (8115,842,0), (8116,5,0), (8116,54,0), (8116,842,0), (8117,5,0), (8117,13,0), (8117,842,0), (8118,5,0), (8118,11,0), (8118,842,0), (8119,5,0), (8119,13,0), (8119,842,0), (8120,5,0), (8120,13,0), (8120,842,0), (8121,5,0), (8121,22,0), (8121,842,0), (8122,5,0), (8122,13,0), (8122,842,0), (8123,5,0), (8123,31,0), (8123,842,0), (8124,5,0), (8124,31,0), (8124,842,0), (8125,5,0), (8125,31,0), (8125,842,0), (8126,5,0), (8126,31,0), (8126,842,0), (8127,5,0), (8127,31,0), (8127,842,0), (8128,5,0), (8128,13,0), (8128,842,0), (8129,5,0), (8129,13,0), (8129,842,0), (8130,5,0), (8130,31,0), (8130,842,0), (8131,5,0), (8131,13,0), (8131,842,0), (8132,5,0), (8132,11,0), (8132,842,0), (8133,5,0), (8133,18,0), (8133,842,0), (8134,5,0), (8134,18,0), (8134,842,0), (8135,5,0), (8135,13,0), (8135,842,0), (8136,5,0), (8136,19,0), (8136,842,0), (8137,5,0), (8137,13,0), (8137,842,0), (8138,5,0), (8138,31,0), (8138,842,0), (8139,5,0), (8139,53,0), (8139,842,0), (8140,5,0), (8140,22,0), (8140,842,0), (8141,5,0), (8141,18,0), (8141,842,0), (8142,5,0), (8142,40,0), (8142,842,0), (8143,5,0), (8143,11,0), (8143,842,0), (8144,5,0), (8144,15,0), (8144,842,0), (8145,5,0), (8145,377,0), (8145,842,0), (8146,5,0), (8146,474,0), (8146,842,0), (8147,5,0), (8147,9,0), (8147,842,0), (8148,5,0), (8148,377,0), (8148,842,0), (8149,5,0), (8149,9,0), (8149,842,0), (8150,5,0), (8150,14,0), (8150,842,0), (8151,5,0), (8151,14,0), (8151,842,0), (8152,5,0), (8152,14,0), (8152,842,0), (8153,5,0), (8153,697,0), (8153,842,0), (8154,5,0), (8154,14,0), (8154,842,0), (8155,5,0), (8155,374,0), (8155,842,0), (8156,5,0), (8156,36,0), (8156,842,0), (8157,5,0), (8157,50,0), (8157,842,0), (8158,5,0), (8158,744,0), (8158,842,0), (8159,5,0), (8159,744,0), (8159,842,0), (8160,5,0), (8160,744,0), (8160,842,0), (8161,5,0), (8161,374,0), (8161,842,0), (8162,5,0), (8162,36,0), (8162,842,0), (8163,5,0), (8163,744,0), (8163,842,0), (8164,5,0), (8164,744,0), (8164,842,0), (8165,5,0), (8165,11,0), (8165,842,0), (8166,5,0), (8166,31,0), (8166,842,0), (8167,5,0), (8167,53,0), (8167,842,0), (8168,5,0), (8168,13,0), (8168,842,0), (8169,5,0), (8169,13,0), (8169,842,0), (8170,5,0), (8170,474,0), (8170,842,0), (8171,5,0), (8171,23,0), (8171,842,0), (8172,5,0), (8172,474,0), (8172,842,0), (8173,5,0), (8173,13,0), (8173,842,0), (8174,5,0), (8174,13,0), (8174,842,0), (8175,5,0), (8175,474,0), (8175,842,0), (8176,5,0), (8176,13,0), (8176,842,0), (8177,5,0), (8177,13,0), (8177,842,0), (8178,5,0), (8178,13,0), (8178,842,0), (8179,5,0), (8179,13,0), (8179,842,0), (8180,5,0), (8180,6,0), (8180,842,0), (8181,5,0), (8181,842,0), (8181,843,0), (8182,5,0), (8182,13,0), (8182,842,0), (8183,5,0), (8183,13,0), (8183,842,0), (8184,5,0), (8184,6,0), (8184,842,0), (8185,5,0), (8185,13,0), (8185,842,0), (8186,5,0), (8186,19,0), (8186,842,0), (8187,5,0), (8187,94,0), (8187,382,0), (8187,844,0), (8188,5,0), (8188,13,0), (8188,382,0), (8188,844,0), (8189,5,0), (8189,94,0), (8189,382,0), (8189,844,0), (8190,5,0), (8190,6,0), (8190,382,0), (8190,844,0), (8191,5,0), (8191,15,0), (8191,382,0), (8191,844,0), (8192,5,0), (8192,31,0), (8192,382,0), (8192,844,0), (8193,5,0), (8193,13,0), (8193,382,0), (8193,844,0), (8194,5,0), (8194,51,0), (8194,382,0), (8194,844,0), (8195,5,0), (8195,51,0), (8195,382,0), (8195,844,0), (8196,5,0), (8196,51,0), (8196,382,0), (8196,844,0), (8197,5,0), (8197,15,0), (8197,382,0), (8197,844,0), (8198,5,0), (8198,15,0), (8198,382,0), (8198,844,0), (8199,5,0), (8199,9,0), (8199,382,0), (8199,844,0), (8200,5,0), (8200,9,0), (8200,382,0), (8200,844,0), (8201,5,0), (8201,13,0), (8201,382,0), (8201,844,0), (8202,5,0), (8202,15,0), (8202,382,0), (8202,844,0), (8203,5,0), (8203,31,0), (8203,382,0), (8203,844,0), (8204,5,0), (8204,22,0), (8204,382,0), (8204,844,0), (8205,5,0), (8205,51,0), (8205,382,0), (8205,844,0), (8206,5,0), (8206,11,0), (8206,382,0), (8206,844,0), (8207,5,0), (8207,11,0), (8207,382,0), (8207,844,0), (8208,5,0), (8208,53,0), (8208,382,0), (8208,844,0), (8209,5,0), (8209,53,0), (8209,382,0), (8209,844,0), (8210,5,0), (8210,31,0), (8210,382,0), (8210,844,0), (8211,5,0), (8211,13,0), (8211,382,0), (8211,844,0), (8212,5,0), (8212,382,0), (8212,844,0), (8212,845,0), (8213,846,0), (8213,847,0), (8213,848,0), (8214,846,0), (8214,847,0), (8214,848,0), (8215,846,0), (8215,847,0), (8215,848,0), (8216,846,0), (8216,847,0), (8216,848,0), (8217,847,0), (8217,849,0), (8217,850,0), (8218,847,0), (8218,849,0), (8218,850,0), (8219,847,0), (8219,849,0), (8219,850,0), (8220,847,0), (8220,849,0), (8220,850,0), (8221,847,0), (8221,849,0), (8221,850,0), (8222,847,0), (8222,849,0), (8222,850,0), (8223,847,0), (8223,849,0), (8223,850,0), (8224,847,0), (8224,849,0), (8224,850,0), (8225,847,0), (8225,849,0), (8225,850,0), (8226,847,0), (8226,849,0), (8226,850,0), (8227,847,0), (8227,849,0), (8227,850,0), (8228,847,0), (8228,849,0), (8228,850,0), (8229,847,0), (8229,849,0), (8229,850,0), (8230,847,0), (8230,849,0), (8230,850,0), (8231,847,0), (8231,851,0), (8231,852,0), (8232,847,0), (8232,851,0), (8232,852,0), (8233,847,0), (8233,851,0), (8233,852,0), (8234,847,0), (8234,851,0), (8234,852,0), (8235,847,0), (8235,851,0), (8235,852,0), (8236,847,0), (8236,851,0), (8236,852,0), (8237,847,0), (8237,851,0), (8237,852,0), (8238,847,0), (8238,851,0), (8238,852,0), (8239,847,0), (8239,851,0), (8239,852,0), (8240,847,0), (8240,851,0), (8240,852,0), (8241,847,0), (8241,851,0), (8241,852,0), (8242,847,0), (8242,851,0), (8242,852,0), (8243,847,0), (8243,851,0), (8243,852,0), (8244,847,0), (8244,851,0), (8244,852,0), (8245,847,0), (8245,851,0), (8245,852,0), (8246,847,0), (8246,851,0), (8246,852,0), (8247,847,0), (8247,853,0), (8247,854,0), (8248,847,0), (8248,853,0), (8248,854,0), (8249,847,0), (8249,853,0), (8249,854,0), (8250,847,0), (8250,853,0), (8250,854,0), (8251,847,0), (8251,853,0), (8251,854,0), (8252,847,0), (8252,853,0), (8252,854,0), (8253,847,0), (8253,853,0), (8253,854,0), (8254,847,0), (8254,853,0), (8254,854,0), (8255,847,0), (8255,853,0), (8255,854,0), (8256,847,0), (8256,853,0), (8256,854,0), (8257,847,0), (8257,853,0), (8257,854,0), (8258,847,0), (8258,853,0), (8258,854,0), (8259,847,0), (8259,853,0), (8259,854,0), (8260,847,0), (8260,853,0), (8260,854,0), (8261,847,0), (8261,853,0), (8261,854,0), (8262,847,0), (8262,853,0), (8262,854,0), (8263,847,0), (8263,853,0), (8263,854,0), (8264,847,0), (8264,853,0), (8264,854,0), (8265,847,0), (8265,853,0), (8265,854,0), (8266,847,0), (8266,853,0), (8266,854,0), (8267,847,0), (8267,853,0), (8267,854,0), (8268,847,0), (8268,853,0), (8268,854,0), (8269,847,0), (8269,853,0), (8269,854,0), (8270,847,0), (8270,853,0), (8270,854,0), (8271,847,0), (8271,853,0), (8271,854,0), (8272,847,0), (8272,853,0), (8272,854,0), (8273,847,0), (8273,853,0), (8273,854,0), (8274,847,0), (8274,853,0), (8274,854,0), (8275,847,0), (8275,853,0), (8275,854,0), (8276,847,0), (8276,855,0), (8276,856,0), (8277,847,0), (8277,855,0), (8277,856,0), (8278,847,0), (8278,855,0), (8278,856,0), (8279,847,0), (8279,855,0), (8279,856,0), (8280,847,0), (8280,855,0), (8280,856,0), (8281,847,0), (8281,855,0), (8281,856,0), (8282,847,0), (8282,855,0), (8282,856,0), (8283,847,0), (8283,855,0), (8283,856,0), (8284,847,0), (8284,855,0), (8284,856,0), (8285,847,0), (8285,855,0), (8285,856,0), (8286,847,0), (8286,855,0), (8286,856,0), (8287,847,0), (8287,855,0), (8287,856,0), (8288,847,0), (8288,855,0), (8288,856,0), (8289,847,0), (8289,855,0), (8289,856,0), (8290,847,0), (8290,855,0), (8290,856,0), (8291,847,0), (8291,855,0), (8291,856,0), (8292,847,0), (8292,855,0), (8292,856,0), (8293,847,0), (8293,855,0), (8293,856,0), (8294,847,0), (8294,855,0), (8294,856,0), (8295,847,0), (8295,855,0), (8295,856,0), (8296,847,0), (8296,855,0), (8296,856,0), (8297,847,0), (8297,855,0), (8297,856,0), (8298,847,0), (8298,855,0), (8298,856,0), (8299,847,0), (8299,855,0), (8299,856,0), (8300,847,0), (8300,855,0), (8300,856,0), (8301,847,0), (8301,855,0), (8301,856,0), (8302,847,0), (8302,855,0), (8302,856,0), (8303,847,0), (8303,855,0), (8303,856,0), (8304,847,0), (8304,855,0), (8304,856,0), (8305,847,0), (8305,855,0), (8305,856,0), (8306,847,0), (8306,855,0), (8306,856,0), (8307,5,0), (8307,18,0), (8307,857,0), (8307,858,0), (8308,5,0), (8308,18,0), (8308,857,0), (8308,858,0), (8309,5,0), (8309,18,0), (8309,857,0), (8309,858,0), (8310,5,0), (8310,18,0), (8310,857,0), (8310,858,0), (8311,5,0), (8311,18,0), (8311,857,0), (8311,858,0), (8312,5,0), (8312,18,0), (8312,857,0), (8312,858,0), (8313,5,0), (8313,18,0), (8313,857,0), (8313,858,0), (8314,5,0), (8314,18,0), (8314,857,0), (8314,858,0), (8315,5,0), (8315,18,0), (8315,857,0), (8315,858,0), (8316,5,0), (8316,18,0), (8316,857,0), (8316,858,0), (8317,5,0), (8317,18,0), (8317,857,0), (8317,858,0), (8318,5,0), (8318,18,0), (8318,857,0), (8318,858,0), (8319,5,0), (8319,94,0), (8319,683,0), (8319,859,0), (8320,5,0), (8320,9,0), (8320,683,0), (8320,859,0), (8321,5,0), (8321,94,0), (8321,683,0), (8321,859,0), (8322,5,0), (8322,14,0), (8322,683,0), (8322,859,0), (8323,5,0), (8323,94,0), (8323,683,0), (8323,859,0), (8324,5,0), (8324,11,0), (8324,683,0), (8324,859,0), (8325,5,0), (8325,11,0), (8325,683,0), (8325,859,0), (8326,5,0), (8326,94,0), (8326,683,0), (8326,859,0), (8327,5,0), (8327,22,0), (8327,683,0), (8327,859,0), (8328,5,0), (8328,22,0), (8328,683,0), (8328,859,0), (8329,5,0), (8329,22,0), (8329,683,0), (8329,859,0), (8331,5,0), (8331,94,0), (8331,683,0), (8331,859,0), (8332,5,0), (8332,94,0), (8332,683,0), (8332,859,0), (8333,5,0), (8333,11,0), (8333,683,0), (8333,859,0), (8334,5,0), (8334,18,0), (8334,683,0), (8334,859,0), (8335,5,0), (8335,94,0), (8335,683,0), (8335,859,0), (8336,5,0), (8336,94,0), (8336,683,0), (8336,859,0), (8337,5,0), (8337,94,0), (8337,683,0), (8337,859,0), (8338,5,0), (8338,15,0), (8338,683,0), (8338,859,0), (8339,5,0), (8339,14,0), (8339,683,0), (8339,859,0), (8340,5,0), (8340,31,0), (8340,683,0), (8340,859,0), (8341,5,0), (8341,31,0), (8341,683,0), (8341,859,0), (8342,5,0), (8342,31,0), (8342,683,0), (8342,859,0), (8343,5,0), (8343,11,0), (8343,683,0), (8343,859,0), (8344,5,0), (8344,11,0), (8344,683,0), (8344,859,0), (8345,5,0), (8345,11,0), (8345,683,0), (8345,859,0), (8346,5,0), (8346,31,0), (8346,683,0), (8346,859,0), (8347,5,0), (8347,15,0), (8347,683,0), (8347,859,0), (8348,5,0), (8348,6,0), (8348,683,0), (8348,859,0), (8349,5,0), (8349,48,0), (8349,683,0), (8349,859,0), (8350,5,0), (8350,48,0), (8350,683,0), (8350,859,0), (8351,5,0), (8351,18,0), (8351,683,0), (8351,859,0), (8352,5,0), (8352,22,0), (8352,683,0), (8352,859,0), (8353,5,0), (8353,54,0), (8353,683,0), (8353,859,0), (8354,5,0), (8354,9,0), (8354,683,0), (8354,859,0), (8355,5,0), (8355,9,0), (8355,683,0), (8355,859,0), (8356,5,0), (8356,22,0), (8356,683,0), (8356,859,0), (8357,5,0), (8357,9,0), (8357,683,0), (8357,859,0), (8358,5,0), (8358,377,0), (8358,683,0), (8358,859,0), (8359,5,0), (8359,31,0), (8359,683,0), (8359,859,0), (8360,5,0), (8360,31,0), (8360,683,0), (8360,859,0), (8361,5,0), (8361,31,0), (8361,683,0), (8361,859,0), (8362,5,0), (8362,9,0), (8362,683,0), (8362,859,0), (8363,5,0), (8363,9,0), (8363,683,0), (8363,859,0), (8364,5,0), (8364,53,0), (8364,683,0), (8364,859,0), (8365,5,0), (8365,13,0), (8365,683,0), (8365,859,0), (8366,5,0), (8366,31,0), (8366,683,0), (8366,859,0), (8367,5,0), (8367,53,0), (8367,683,0), (8367,859,0), (8368,5,0), (8368,53,0), (8368,683,0), (8368,859,0), (8369,5,0), (8369,374,0), (8369,683,0), (8369,859,0), (8370,5,0), (8370,31,0), (8370,683,0), (8370,859,0), (8371,5,0), (8371,13,0), (8371,683,0), (8371,859,0), (8372,5,0), (8372,29,0), (8372,683,0), (8372,859,0), (8373,5,0), (8373,19,0), (8373,683,0), (8373,859,0), (8374,5,0), (8374,48,0), (8374,683,0), (8374,859,0), (8375,5,0), (8375,19,0), (8375,683,0), (8375,859,0), (8376,5,0), (8376,9,0), (8376,683,0), (8376,859,0), (8377,5,0), (8377,9,0), (8377,683,0), (8377,859,0), (8378,5,0), (8378,9,0), (8378,683,0), (8378,859,0), (8379,5,0), (8379,9,0), (8379,683,0), (8379,859,0), (8380,5,0), (8380,11,0), (8380,683,0), (8380,859,0), (8381,5,0), (8381,9,0), (8381,683,0), (8381,859,0), (8382,5,0), (8382,9,0), (8382,683,0), (8382,859,0), (8383,5,0), (8383,9,0), (8383,683,0), (8383,859,0), (8384,5,0), (8384,18,0), (8384,683,0), (8384,859,0), (8385,5,0), (8385,40,0), (8385,683,0), (8385,860,0), (8386,5,0), (8386,40,0), (8386,683,0), (8386,860,0), (8387,5,0), (8387,40,0), (8387,683,0), (8387,860,0), (8388,5,0), (8388,27,0), (8388,683,0), (8388,860,0), (8389,5,0), (8389,40,0), (8389,683,0), (8389,860,0), (8390,5,0), (8390,40,0), (8390,683,0), (8390,860,0), (8391,5,0), (8391,40,0), (8391,683,0), (8391,860,0), (8392,5,0), (8392,40,0), (8392,683,0), (8392,860,0), (8393,5,0), (8393,40,0), (8393,683,0), (8393,860,0), (8394,5,0), (8394,40,0), (8394,858,0), (8394,861,0), (8395,5,0), (8395,53,0), (8395,858,0), (8395,861,0), (8396,5,0), (8396,9,0), (8396,858,0), (8396,861,0), (8397,5,0), (8397,9,0), (8397,858,0), (8397,861,0), (8398,5,0), (8398,9,0), (8398,858,0), (8398,861,0), (8399,5,0), (8399,40,0), (8399,858,0), (8399,861,0), (8400,5,0), (8400,40,0), (8400,858,0), (8400,861,0), (8401,5,0), (8401,374,0), (8401,858,0), (8401,861,0), (8402,5,0), (8402,377,0), (8402,858,0), (8402,861,0), (8403,5,0), (8403,13,0), (8403,858,0), (8403,861,0), (8404,5,0), (8404,14,0), (8404,858,0), (8404,861,0), (8405,5,0), (8405,53,0), (8405,858,0), (8405,861,0), (8406,5,0), (8406,53,0), (8406,858,0), (8406,861,0), (8407,5,0), (8407,13,0), (8407,858,0), (8407,861,0), (8408,5,0), (8408,13,0), (8408,858,0), (8408,861,0), (8409,5,0), (8409,6,0), (8409,858,0), (8409,861,0), (8410,5,0), (8410,6,0), (8410,858,0), (8410,861,0), (8411,5,0), (8411,6,0), (8411,858,0), (8411,861,0), (8412,5,0), (8412,6,0), (8412,858,0), (8412,861,0), (8413,5,0), (8413,6,0), (8413,858,0), (8413,861,0), (8414,5,0), (8414,9,0), (8414,858,0), (8414,861,0), (8415,5,0), (8415,6,0), (8415,858,0), (8415,861,0), (8416,5,0), (8416,40,0), (8416,858,0), (8416,861,0), (8417,5,0), (8417,40,0), (8417,858,0), (8417,861,0), (8418,5,0), (8418,49,0), (8418,858,0), (8418,861,0), (8419,5,0), (8419,6,0), (8419,858,0), (8419,861,0), (8420,5,0), (8420,18,0), (8420,858,0), (8420,861,0), (8421,5,0), (8421,6,0), (8421,858,0), (8421,861,0), (8422,5,0), (8422,23,0), (8422,858,0), (8422,861,0), (8423,5,0), (8423,6,0), (8423,858,0), (8423,861,0), (8424,5,0), (8424,18,0), (8424,858,0), (8424,861,0), (8425,5,0), (8425,6,0), (8425,858,0), (8425,861,0), (8426,5,0), (8426,6,0), (8426,858,0), (8426,861,0), (8427,5,0), (8427,29,0), (8427,858,0), (8427,861,0), (8428,5,0), (8428,6,0), (8428,858,0), (8428,861,0), (8429,5,0), (8429,13,0), (8429,858,0), (8429,861,0), (8430,5,0), (8430,15,0), (8430,858,0), (8430,861,0), (8431,5,0), (8431,22,0), (8431,858,0), (8431,861,0), (8432,5,0), (8432,22,0), (8432,858,0), (8432,861,0), (8433,5,0), (8433,22,0), (8433,858,0), (8433,861,0), (8434,5,0), (8434,22,0), (8434,858,0), (8434,861,0), (8435,5,0), (8435,14,0), (8435,858,0), (8435,861,0), (8436,5,0), (8436,15,0), (8436,858,0), (8436,861,0), (8437,5,0), (8437,15,0), (8437,858,0), (8437,861,0), (8438,5,0), (8438,15,0), (8438,858,0), (8438,861,0), (8439,5,0), (8439,31,0), (8439,858,0), (8439,861,0), (8440,5,0), (8440,14,0), (8440,858,0), (8440,861,0), (8441,5,0), (8441,14,0), (8441,858,0), (8441,861,0), (8442,5,0), (8442,14,0), (8442,858,0), (8442,861,0), (8443,5,0), (8443,14,0), (8443,858,0), (8443,861,0), (8444,5,0), (8444,14,0), (8444,858,0), (8444,861,0), (8445,5,0), (8445,14,0), (8445,858,0), (8445,861,0), (8446,5,0), (8446,14,0), (8446,858,0), (8446,861,0), (8447,5,0), (8447,14,0), (8447,858,0), (8447,861,0), (8448,5,0), (8448,31,0), (8448,858,0), (8448,861,0), (8449,5,0), (8449,31,0), (8449,858,0), (8449,861,0), (8450,5,0), (8450,51,0), (8450,858,0), (8450,861,0), (8451,5,0), (8451,13,0), (8451,858,0), (8451,861,0), (8452,5,0), (8452,36,0), (8452,858,0), (8452,861,0), (8453,5,0), (8453,13,0), (8453,858,0), (8453,861,0), (8454,5,0), (8454,36,0), (8454,858,0), (8454,861,0), (8455,5,0), (8455,40,0), (8455,858,0), (8455,861,0), (8456,5,0), (8456,13,0), (8456,858,0), (8456,861,0), (8457,5,0), (8457,13,0), (8457,858,0), (8457,861,0), (8458,5,0), (8458,13,0), (8458,858,0), (8458,861,0), (8459,5,0), (8459,374,0), (8459,858,0), (8459,861,0), (8460,5,0), (8460,27,0), (8460,858,0), (8460,861,0), (8461,5,0), (8461,15,0), (8461,858,0), (8461,861,0), (8462,5,0), (8462,54,0), (8462,858,0), (8462,861,0), (8463,5,0), (8463,27,0), (8463,858,0), (8463,861,0), (8464,5,0), (8464,36,0), (8464,858,0), (8464,861,0), (8465,5,0), (8465,40,0), (8465,858,0), (8465,861,0), (8466,5,0), (8466,49,0), (8466,858,0), (8466,861,0), (8467,5,0), (8467,40,0), (8467,858,0), (8467,861,0), (8468,5,0), (8468,40,0), (8468,858,0), (8468,861,0), (8469,5,0), (8469,40,0), (8469,858,0), (8469,861,0), (8470,5,0), (8470,40,0), (8470,858,0), (8470,861,0), (8471,5,0), (8471,40,0), (8471,858,0), (8471,861,0), (8472,5,0), (8472,40,0), (8472,858,0), (8472,861,0), (8473,5,0), (8473,40,0), (8473,858,0), (8473,861,0), (8474,5,0), (8474,40,0), (8474,858,0), (8474,861,0), (8475,5,0), (8475,40,0), (8475,858,0), (8475,861,0), (8476,5,0), (8476,40,0), (8476,858,0), (8476,861,0), (8477,5,0), (8477,9,0), (8477,858,0), (8477,861,0), (8478,5,0), (8478,14,0), (8478,858,0), (8478,861,0), (8479,5,0), (8479,11,0), (8479,858,0), (8479,861,0), (8480,5,0), (8480,374,0), (8480,858,0), (8480,861,0), (8481,5,0), (8481,374,0), (8481,858,0), (8481,861,0), (8482,5,0), (8482,49,0), (8482,858,0), (8482,861,0), (8483,5,0), (8483,18,0), (8483,858,0), (8483,861,0), (8484,5,0), (8484,51,0), (8484,858,0), (8484,861,0), (8485,5,0), (8485,31,0), (8485,858,0), (8485,861,0), (8486,5,0), (8486,13,0), (8486,858,0), (8486,861,0), (8487,5,0), (8487,53,0), (8487,858,0), (8487,861,0), (8488,5,0), (8488,53,0), (8488,858,0), (8488,861,0), (8489,5,0), (8489,15,0), (8489,858,0), (8489,861,0), (8490,5,0), (8490,6,0), (8490,858,0), (8490,861,0), (8491,5,0), (8491,36,0), (8491,858,0), (8491,861,0), (8492,5,0), (8492,22,0), (8492,858,0), (8492,861,0), (8493,5,0), (8493,53,0), (8493,858,0), (8493,861,0), (8494,5,0), (8494,374,0), (8494,858,0), (8494,861,0), (8495,5,0), (8495,9,0), (8495,858,0), (8495,861,0), (8496,5,0), (8496,13,0), (8496,858,0), (8496,861,0), (8497,5,0), (8497,11,0), (8497,858,0), (8497,861,0), (8498,5,0), (8498,18,0), (8498,858,0), (8498,861,0), (8499,5,0), (8499,18,0), (8499,858,0), (8499,861,0), (8500,5,0), (8500,18,0), (8500,858,0), (8500,861,0), (8501,5,0), (8501,49,0), (8501,858,0), (8501,861,0), (8502,5,0), (8502,48,0), (8502,858,0), (8502,861,0), (8503,5,0), (8503,14,0), (8503,858,0), (8503,861,0), (8504,5,0), (8504,14,0), (8504,858,0), (8504,861,0), (8505,5,0), (8505,11,0), (8505,858,0), (8505,861,0), (8506,5,0), (8506,9,0), (8506,858,0), (8506,861,0), (8507,5,0), (8507,14,0), (8507,858,0), (8507,861,0), (8508,5,0), (8508,14,0), (8508,858,0), (8508,861,0), (8509,5,0), (8509,14,0), (8509,858,0), (8509,861,0), (8510,5,0), (8510,14,0), (8510,858,0), (8510,861,0), (8511,5,0), (8511,22,0), (8511,858,0), (8511,861,0), (8512,5,0), (8512,53,0), (8512,858,0), (8512,861,0), (8513,5,0), (8513,22,0), (8513,858,0), (8513,861,0), (8514,5,0), (8514,53,0), (8514,858,0), (8514,861,0), (8515,5,0), (8515,22,0), (8515,858,0), (8515,861,0), (8516,5,0), (8516,53,0), (8516,858,0), (8516,861,0), (8517,5,0), (8517,22,0), (8517,858,0), (8517,861,0), (8518,5,0), (8518,53,0), (8518,858,0), (8518,861,0), (8519,5,0), (8519,374,0), (8519,858,0), (8519,861,0), (8520,5,0), (8520,53,0), (8520,858,0), (8520,861,0), (8521,5,0), (8521,377,0), (8521,858,0), (8521,861,0), (8522,5,0), (8522,9,0), (8522,858,0), (8522,861,0), (8523,5,0), (8523,9,0), (8523,858,0), (8523,861,0), (8524,5,0), (8524,377,0), (8524,858,0), (8524,861,0), (8525,5,0), (8525,53,0), (8525,858,0), (8525,861,0), (8526,5,0), (8526,40,0), (8526,858,0), (8526,861,0), (8527,5,0), (8527,22,0), (8527,858,0), (8527,861,0), (8528,5,0), (8528,22,0), (8528,858,0), (8528,861,0), (8529,5,0), (8529,9,0), (8529,858,0), (8529,861,0), (8530,5,0), (8530,53,0), (8530,858,0), (8530,861,0), (8531,5,0), (8531,53,0), (8531,858,0), (8531,861,0), (8532,5,0), (8532,53,0), (8532,858,0), (8532,861,0), (8533,5,0), (8533,53,0), (8533,858,0), (8533,861,0), (8534,5,0), (8534,9,0), (8534,858,0), (8534,861,0), (8535,5,0), (8535,9,0), (8535,858,0), (8535,861,0), (8536,5,0), (8536,9,0), (8536,858,0), (8536,861,0), (8537,5,0), (8537,9,0), (8537,858,0), (8537,861,0), (8538,5,0), (8538,9,0), (8538,858,0), (8538,861,0), (8539,5,0), (8539,9,0), (8539,858,0), (8539,861,0), (8540,5,0), (8540,9,0), (8540,858,0), (8540,861,0), (8541,5,0), (8541,9,0), (8541,858,0), (8541,861,0), (8542,5,0), (8542,9,0), (8542,858,0), (8542,861,0), (8543,5,0), (8543,9,0), (8543,858,0), (8543,861,0), (8544,5,0), (8544,9,0), (8544,858,0), (8544,861,0), (8545,5,0), (8545,9,0), (8545,858,0), (8545,861,0), (8546,5,0), (8546,53,0), (8546,858,0), (8546,861,0), (8547,5,0), (8547,53,0), (8547,858,0), (8547,861,0), (8548,5,0), (8548,13,0), (8548,858,0), (8548,861,0), (8549,5,0), (8549,9,0), (8549,858,0), (8549,861,0), (8550,5,0), (8550,9,0), (8550,858,0), (8550,861,0), (8551,5,0), (8551,54,0), (8551,858,0), (8551,861,0), (8552,5,0), (8552,6,0), (8552,858,0), (8552,861,0), (8553,5,0), (8553,54,0), (8553,858,0), (8553,861,0), (8554,5,0), (8554,94,0), (8554,858,0), (8554,861,0), (8555,5,0), (8555,14,0), (8555,858,0), (8555,861,0), (8556,5,0), (8556,15,0), (8556,858,0), (8556,861,0), (8557,5,0), (8557,14,0), (8557,858,0), (8557,861,0), (8558,5,0), (8558,18,0), (8558,858,0), (8558,861,0), (8559,5,0), (8559,377,0), (8559,858,0), (8559,861,0), (8560,5,0), (8560,53,0), (8560,858,0), (8560,861,0), (8561,5,0), (8561,13,0), (8561,858,0), (8561,861,0), (8562,5,0), (8562,13,0), (8562,858,0), (8562,861,0), (8563,5,0), (8563,22,0), (8563,858,0), (8563,861,0), (8564,5,0), (8564,9,0), (8564,858,0), (8564,861,0), (8565,5,0), (8565,6,0), (8565,858,0), (8565,861,0), (8566,5,0), (8566,6,0), (8566,858,0), (8566,861,0), (8567,5,0), (8567,14,0), (8567,858,0), (8567,861,0), (8568,5,0), (8568,22,0), (8568,858,0), (8568,861,0), (8569,5,0), (8569,14,0), (8569,858,0), (8569,861,0), (8570,5,0), (8570,14,0), (8570,858,0), (8570,861,0), (8571,5,0), (8571,9,0), (8571,858,0), (8571,861,0), (8572,5,0), (8572,18,0), (8572,858,0), (8572,861,0), (8573,5,0), (8573,18,0), (8573,858,0), (8573,861,0), (8574,5,0), (8574,18,0), (8574,858,0), (8574,861,0), (8575,5,0), (8575,49,0), (8575,858,0), (8575,861,0), (8576,5,0), (8576,29,0), (8576,858,0), (8576,861,0), (8577,5,0), (8577,49,0), (8577,858,0), (8577,861,0), (8578,5,0), (8578,29,0), (8578,858,0), (8578,861,0), (8579,5,0), (8579,23,0), (8579,858,0), (8579,861,0), (8580,5,0), (8580,858,0), (8580,861,0), (8581,5,0), (8581,858,0), (8581,861,0), (8582,5,0), (8582,858,0), (8582,861,0), (8583,5,0), (8583,858,0), (8583,861,0), (8584,5,0), (8584,858,0), (8584,861,0), (8585,5,0), (8585,858,0), (8585,861,0), (8586,5,0), (8586,22,0), (8586,862,0), (8586,863,0), (8587,5,0), (8587,18,0), (8587,862,0), (8587,863,0), (8588,5,0), (8588,18,0), (8588,862,0), (8588,863,0), (8589,5,0), (8589,54,0), (8589,862,0), (8589,863,0), (8590,5,0), (8590,22,0), (8590,862,0), (8590,863,0), (8591,5,0), (8591,14,0), (8591,862,0), (8591,863,0), (8592,5,0), (8592,6,0), (8592,862,0), (8592,863,0), (8593,5,0), (8593,22,0), (8593,862,0), (8593,863,0), (8594,5,0), (8594,18,0), (8594,862,0), (8594,863,0), (8595,5,0), (8595,53,0), (8595,862,0), (8595,863,0), (8596,5,0), (8596,22,0), (8596,862,0), (8596,863,0), (8597,5,0), (8597,22,0), (8597,862,0), (8597,863,0), (8598,5,0), (8598,14,0), (8598,862,0), (8598,863,0), (8599,5,0), (8599,13,0), (8599,862,0), (8599,863,0), (8600,5,0), (8600,22,0), (8600,862,0), (8600,863,0), (8601,5,0), (8601,22,0), (8601,862,0), (8601,863,0), (8602,5,0), (8602,22,0), (8602,862,0), (8602,863,0), (8603,5,0), (8603,22,0), (8603,862,0), (8603,863,0), (8604,5,0), (8604,6,0), (8604,862,0), (8604,863,0), (8605,5,0), (8605,13,0), (8605,862,0), (8605,863,0), (8606,5,0), (8606,22,0), (8606,862,0), (8606,863,0), (8607,5,0), (8607,22,0), (8607,862,0), (8607,863,0), (8608,5,0), (8608,22,0), (8608,862,0), (8608,863,0), (8609,5,0), (8609,22,0), (8609,862,0), (8609,863,0), (8610,5,0), (8610,53,0), (8610,862,0), (8610,863,0), (8611,5,0), (8611,9,0), (8611,862,0), (8611,863,0), (8612,5,0), (8612,22,0), (8612,862,0), (8612,863,0), (8613,5,0), (8613,22,0), (8613,862,0), (8613,863,0), (8614,5,0), (8614,22,0), (8614,862,0), (8614,863,0), (8615,5,0), (8615,22,0), (8615,862,0), (8615,863,0), (8616,5,0), (8616,22,0), (8616,862,0), (8616,863,0), (8617,5,0), (8617,22,0), (8617,862,0), (8617,863,0), (8618,5,0), (8618,22,0), (8618,862,0), (8618,863,0), (8619,5,0), (8619,49,0), (8619,862,0), (8619,863,0), (8620,5,0), (8620,22,0), (8620,862,0), (8620,863,0), (8621,5,0), (8621,53,0), (8621,862,0), (8621,863,0), (8622,5,0), (8622,22,0), (8622,862,0), (8622,863,0), (8623,5,0), (8623,22,0), (8623,862,0), (8623,863,0), (8624,5,0), (8624,54,0), (8624,862,0), (8624,863,0), (8625,5,0), (8625,54,0), (8625,862,0), (8625,863,0), (8626,5,0), (8626,9,0), (8626,862,0), (8626,863,0), (8627,5,0), (8627,22,0), (8627,862,0), (8627,863,0), (8628,5,0), (8628,11,0), (8628,862,0), (8628,863,0), (8629,5,0), (8629,22,0), (8629,862,0), (8629,863,0), (8630,5,0), (8630,53,0), (8630,862,0), (8630,863,0), (8631,5,0), (8631,22,0), (8631,862,0), (8631,863,0), (8632,5,0), (8632,22,0), (8632,862,0), (8632,863,0), (8633,5,0), (8633,9,0), (8633,862,0), (8633,863,0), (8634,5,0), (8634,22,0), (8634,862,0), (8634,863,0), (8635,5,0), (8635,22,0), (8635,862,0), (8635,863,0), (8636,5,0), (8636,18,0), (8636,862,0), (8636,863,0), (8637,5,0), (8637,36,0), (8637,862,0), (8637,863,0), (8638,5,0), (8638,36,0), (8638,862,0), (8638,863,0), (8639,5,0), (8639,36,0), (8639,862,0), (8639,863,0), (8640,5,0), (8640,36,0), (8640,862,0), (8640,863,0), (8641,5,0), (8641,36,0), (8641,862,0), (8641,863,0), (8642,5,0), (8642,862,0), (8642,863,0), (8643,5,0), (8643,53,0), (8643,862,0), (8643,863,0), (8644,5,0), (8644,22,0), (8644,862,0), (8644,863,0), (8645,5,0), (8645,22,0), (8645,862,0), (8645,863,0), (8646,5,0), (8646,22,0), (8646,862,0), (8646,863,0), (8647,5,0), (8647,53,0), (8647,862,0), (8647,863,0), (8648,5,0), (8648,6,0), (8648,862,0), (8648,863,0), (8649,5,0), (8649,36,0), (8649,862,0), (8649,863,0), (8650,5,0), (8650,22,0), (8650,862,0), (8650,863,0), (8651,5,0), (8651,22,0), (8651,862,0), (8651,863,0), (8652,5,0), (8652,54,0), (8652,862,0), (8652,863,0), (8653,5,0), (8653,54,0), (8653,862,0), (8653,863,0), (8654,5,0), (8654,54,0), (8654,862,0), (8654,863,0), (8655,5,0), (8655,11,0), (8655,862,0), (8655,863,0), (8656,5,0), (8656,11,0), (8656,862,0), (8656,863,0), (8657,5,0), (8657,22,0), (8657,862,0), (8657,863,0), (8658,5,0), (8658,53,0), (8658,862,0), (8658,863,0), (8659,5,0), (8659,22,0), (8659,862,0), (8659,863,0), (8660,5,0), (8660,377,0), (8660,862,0), (8660,863,0), (8661,5,0), (8661,9,0), (8661,862,0), (8661,863,0), (8662,5,0), (8662,9,0), (8662,862,0), (8662,863,0), (8663,5,0), (8663,9,0), (8663,862,0), (8663,863,0), (8664,5,0), (8664,18,0), (8664,862,0), (8664,863,0), (8665,5,0), (8665,14,0), (8665,862,0), (8665,863,0), (8666,5,0), (8666,13,0), (8666,862,0), (8666,863,0), (8667,5,0), (8667,13,0), (8667,862,0), (8667,863,0), (8668,5,0), (8668,13,0), (8668,862,0), (8668,863,0), (8669,5,0), (8669,13,0), (8669,862,0), (8669,863,0), (8670,5,0), (8670,13,0), (8670,862,0), (8670,863,0), (8671,5,0), (8671,13,0), (8671,862,0), (8671,863,0), (8672,5,0), (8672,13,0), (8672,862,0), (8672,863,0), (8673,5,0), (8673,18,0), (8673,862,0), (8673,863,0), (8674,5,0), (8674,53,0), (8674,862,0), (8674,863,0), (8675,5,0), (8675,29,0), (8675,862,0), (8675,863,0), (8676,5,0), (8676,29,0), (8676,862,0), (8676,863,0), (8677,5,0), (8677,14,0), (8677,862,0), (8677,863,0), (8678,5,0), (8678,31,0), (8678,862,0), (8678,863,0), (8679,5,0), (8679,22,0), (8679,862,0), (8679,863,0), (8680,5,0), (8680,23,0), (8680,862,0), (8680,863,0), (8681,5,0), (8681,9,0), (8681,862,0), (8681,863,0), (8682,5,0), (8682,9,0), (8682,862,0), (8682,863,0), (8683,5,0), (8683,22,0), (8683,862,0), (8683,863,0), (8684,5,0), (8684,22,0), (8684,862,0), (8684,863,0), (8685,5,0), (8685,53,0), (8685,862,0), (8685,863,0), (8686,5,0), (8686,22,0), (8686,862,0), (8686,863,0), (8687,5,0), (8687,53,0), (8687,862,0), (8687,863,0), (8688,5,0), (8688,22,0), (8688,862,0), (8688,863,0), (8689,5,0), (8689,54,0), (8689,862,0), (8689,863,0), (8690,5,0), (8690,54,0), (8690,862,0), (8690,863,0), (8691,5,0), (8691,54,0), (8691,862,0), (8691,863,0), (8692,5,0), (8692,54,0), (8692,862,0), (8692,863,0), (8693,5,0), (8693,54,0), (8693,862,0), (8693,863,0), (8694,5,0), (8694,22,0), (8694,862,0), (8694,863,0), (8695,5,0), (8695,22,0), (8695,862,0), (8695,863,0), (8696,5,0), (8696,22,0), (8696,862,0), (8696,863,0), (8697,5,0), (8697,22,0), (8697,862,0), (8697,863,0), (8698,5,0), (8698,483,0), (8698,862,0), (8698,863,0), (8699,5,0), (8699,483,0), (8699,862,0), (8699,863,0), (8700,5,0), (8700,483,0), (8700,862,0), (8700,863,0), (8701,5,0), (8701,483,0), (8701,862,0), (8701,863,0), (8702,5,0), (8702,18,0), (8702,862,0), (8702,863,0), (8703,5,0), (8703,18,0), (8703,862,0), (8703,863,0), (8704,5,0), (8704,18,0), (8704,862,0), (8704,863,0), (8705,5,0), (8705,18,0), (8705,862,0), (8705,863,0), (8706,5,0), (8706,18,0), (8706,862,0), (8706,863,0), (8707,5,0), (8707,18,0), (8707,862,0), (8707,863,0), (8708,5,0), (8708,18,0), (8708,862,0), (8708,863,0), (8709,5,0), (8709,18,0), (8709,862,0), (8709,863,0), (8710,5,0), (8710,18,0), (8710,862,0), (8710,863,0), (8711,5,0), (8711,18,0), (8711,862,0), (8711,863,0), (8712,5,0), (8712,18,0), (8712,862,0), (8712,863,0), (8713,5,0), (8713,18,0), (8713,862,0), (8713,863,0), (8714,5,0), (8714,18,0), (8714,862,0), (8714,863,0), (8715,5,0), (8715,18,0), (8715,862,0), (8715,863,0), (8716,5,0), (8716,18,0), (8716,862,0), (8716,863,0), (8717,5,0), (8717,18,0), (8717,862,0), (8717,863,0), (8718,5,0), (8718,18,0), (8718,862,0), (8718,863,0), (8719,5,0), (8719,18,0), (8719,862,0), (8719,863,0), (8720,5,0), (8720,18,0), (8720,862,0), (8720,863,0), (8721,5,0), (8721,18,0), (8721,862,0), (8721,863,0), (8722,5,0), (8722,18,0), (8722,862,0), (8722,863,0), (8723,5,0), (8723,18,0), (8723,862,0), (8723,863,0), (8724,5,0), (8724,18,0), (8724,862,0), (8724,863,0), (8725,5,0), (8725,18,0), (8725,862,0), (8725,863,0), (8726,5,0), (8726,18,0), (8726,862,0), (8726,863,0), (8727,5,0), (8727,18,0), (8727,862,0), (8727,863,0), (8728,5,0), (8728,49,0), (8728,862,0), (8728,863,0), (8729,5,0), (8729,36,0), (8729,862,0), (8729,863,0), (8730,5,0), (8730,19,0), (8730,363,0), (8730,866,0), (8731,5,0), (8731,19,0), (8731,363,0), (8731,866,0), (8732,5,0), (8732,19,0), (8732,363,0), (8732,866,0), (8733,5,0), (8733,48,0), (8733,363,0), (8733,866,0), (8734,5,0), (8734,19,0), (8734,363,0), (8734,866,0), (8735,5,0), (8735,19,0), (8735,363,0), (8735,866,0), (8736,5,0), (8736,19,0), (8736,363,0), (8736,866,0), (8737,5,0), (8737,19,0), (8737,363,0), (8737,866,0), (8738,5,0), (8738,19,0), (8738,363,0), (8738,866,0), (8739,5,0), (8739,19,0), (8739,363,0), (8739,866,0), (8740,5,0), (8740,19,0), (8740,363,0), (8740,866,0), (8741,5,0), (8741,19,0), (8741,363,0), (8741,866,0), (8742,5,0), (8742,19,0), (8742,363,0), (8742,866,0), (8743,5,0), (8743,19,0), (8743,363,0), (8743,866,0), (8744,5,0), (8744,19,0), (8744,363,0), (8744,866,0), (8745,5,0), (8745,48,0), (8745,363,0), (8745,866,0), (8746,5,0), (8746,48,0), (8746,363,0), (8746,866,0), (8747,5,0), (8747,48,0), (8747,363,0), (8747,866,0), (8748,5,0), (8748,31,0), (8748,363,0), (8748,866,0), (8749,5,0), (8749,31,0), (8749,363,0), (8749,866,0), (8750,5,0), (8750,48,0), (8750,363,0), (8750,866,0), (8751,5,0), (8751,48,0), (8751,363,0), (8751,866,0), (8752,5,0), (8752,48,0), (8752,363,0), (8752,866,0), (8753,5,0), (8753,9,0), (8753,867,0), (8753,868,0), (8754,5,0), (8754,9,0), (8754,867,0), (8754,868,0), (8755,5,0), (8755,6,0), (8755,867,0), (8755,868,0), (8756,5,0), (8756,9,0), (8756,867,0), (8756,868,0), (8757,5,0), (8757,6,0), (8757,867,0), (8757,868,0), (8758,5,0), (8758,9,0), (8758,867,0), (8758,868,0), (8759,5,0), (8759,19,0), (8759,867,0), (8759,868,0), (8760,5,0), (8760,374,0), (8760,867,0), (8760,868,0), (8761,5,0), (8761,54,0), (8761,867,0), (8761,868,0), (8762,5,0), (8762,22,0), (8762,867,0), (8762,868,0), (8763,5,0), (8763,22,0), (8763,867,0), (8763,868,0), (8764,5,0), (8764,22,0), (8764,867,0), (8764,868,0), (8765,5,0), (8765,22,0), (8765,867,0), (8765,868,0), (8766,5,0), (8766,22,0), (8766,867,0), (8766,868,0), (8767,5,0), (8767,13,0), (8767,867,0), (8767,868,0), (8768,5,0), (8768,22,0), (8768,867,0), (8768,868,0), (8769,5,0), (8769,22,0), (8769,867,0), (8769,868,0), (8770,5,0), (8770,22,0), (8770,867,0), (8770,868,0), (8771,5,0), (8771,22,0), (8771,867,0), (8771,868,0), (8772,5,0), (8772,22,0), (8772,867,0), (8772,868,0), (8773,5,0), (8773,22,0), (8773,867,0), (8773,868,0), (8774,5,0), (8774,14,0), (8774,867,0), (8774,868,0), (8775,5,0), (8775,13,0), (8775,867,0), (8775,868,0), (8776,5,0), (8776,22,0), (8776,867,0), (8776,868,0), (8777,5,0), (8777,22,0), (8777,867,0), (8777,868,0), (8778,5,0), (8778,22,0), (8778,867,0), (8778,868,0), (8779,5,0), (8779,22,0), (8779,867,0), (8779,868,0), (8780,5,0), (8780,22,0), (8780,867,0), (8780,868,0), (8781,5,0), (8781,22,0), (8781,867,0), (8781,868,0), (8782,5,0), (8782,22,0), (8782,867,0), (8782,868,0), (8783,5,0), (8783,22,0), (8783,867,0), (8783,868,0), (8784,5,0), (8784,22,0), (8784,867,0), (8784,868,0), (8785,5,0), (8785,22,0), (8785,867,0), (8785,868,0), (8786,5,0), (8786,22,0), (8786,867,0), (8786,868,0), (8787,5,0), (8787,22,0), (8787,867,0), (8787,868,0), (8788,5,0), (8788,22,0), (8788,867,0), (8788,868,0), (8789,5,0), (8789,22,0), (8789,867,0), (8789,868,0), (8790,5,0), (8790,22,0), (8790,867,0), (8790,868,0), (8791,5,0), (8791,22,0), (8791,867,0), (8791,868,0), (8792,5,0), (8792,18,0), (8792,867,0), (8792,868,0), (8793,5,0), (8793,14,0), (8793,867,0), (8793,868,0), (8794,5,0), (8794,22,0), (8794,867,0), (8794,868,0), (8795,5,0), (8795,22,0), (8795,867,0), (8795,868,0), (8796,5,0), (8796,22,0), (8796,867,0), (8796,868,0), (8797,5,0), (8797,22,0), (8797,867,0), (8797,868,0), (8798,5,0), (8798,22,0), (8798,867,0), (8798,868,0), (8799,5,0), (8799,22,0), (8799,867,0), (8799,868,0), (8800,5,0), (8800,11,0), (8800,867,0), (8800,868,0), (8801,5,0), (8801,11,0), (8801,867,0), (8801,868,0), (8802,5,0), (8802,9,0), (8802,867,0), (8802,868,0), (8803,5,0), (8803,9,0), (8803,867,0), (8803,868,0), (8804,5,0), (8804,9,0), (8804,867,0), (8804,868,0), (8805,5,0), (8805,13,0), (8805,867,0), (8805,868,0), (8806,5,0), (8806,670,0), (8806,867,0), (8806,868,0), (8807,5,0), (8807,36,0), (8807,867,0), (8807,868,0), (8808,5,0), (8808,22,0), (8808,867,0), (8808,868,0), (8809,5,0), (8809,22,0), (8809,867,0), (8809,868,0), (8810,5,0), (8810,11,0), (8810,867,0), (8810,868,0), (8811,5,0), (8811,22,0), (8811,867,0), (8811,868,0), (8812,5,0), (8812,14,0), (8812,867,0), (8812,868,0), (8813,5,0), (8813,22,0), (8813,867,0), (8813,868,0), (8814,22,0), (8814,810,0), (8814,870,0), (8814,871,0), (8815,22,0), (8815,810,0), (8815,870,0), (8815,871,0), (8816,22,0), (8816,810,0), (8816,870,0), (8816,871,0), (8817,22,0), (8817,810,0), (8817,870,0), (8817,871,0), (8818,810,0), (8818,870,0), (8818,871,0), (8819,810,0), (8819,870,0), (8819,871,0), (8820,810,0), (8820,870,0), (8820,871,0), (8821,810,0), (8821,870,0), (8821,871,0), (8822,810,0), (8822,870,0), (8822,871,0), (8823,810,0), (8823,870,0), (8823,871,0), (8824,810,0), (8824,870,0), (8824,871,0), (8825,22,0), (8825,810,0), (8825,870,0), (8825,871,0), (8826,22,0), (8826,810,0), (8826,870,0), (8826,871,0), (8827,810,0), (8827,870,0), (8827,871,0), (8828,810,0), (8828,870,0), (8828,871,0), (8829,810,0), (8829,870,0), (8829,871,0), (8830,810,0), (8830,870,0), (8830,871,0), (8831,810,0), (8831,870,0), (8831,871,0), (8832,810,0), (8832,870,0), (8832,871,0), (8833,810,0), (8833,870,0), (8833,871,0), (8834,810,0), (8834,870,0), (8834,871,0), (8835,810,0), (8835,870,0), (8835,871,0), (8836,810,0), (8836,870,0), (8836,871,0), (8837,810,0), (8837,870,0), (8837,871,0), (8838,810,0), (8838,870,0), (8838,871,0), (8839,810,0), (8839,870,0), (8839,871,0), (8840,810,0), (8840,870,0), (8840,871,0), (8841,810,0), (8841,870,0), (8841,871,0), (8842,810,0), (8842,870,0), (8842,871,0), (8843,810,0), (8843,870,0), (8843,871,0), (8844,810,0), (8844,870,0), (8844,871,0), (8845,810,0), (8845,870,0), (8845,871,0), (8846,810,0), (8846,870,0), (8846,871,0), (8847,810,0), (8847,870,0), (8847,871,0), (8848,810,0), (8848,870,0), (8848,871,0), (8849,810,0), (8849,870,0), (8849,871,0), (8850,14,0), (8850,810,0), (8850,870,0), (8850,871,0), (8851,5,0), (8851,19,0), (8851,872,0), (8852,5,0), (8852,48,0), (8852,872,0), (8853,5,0), (8853,48,0), (8853,872,0), (8854,5,0), (8854,19,0), (8854,872,0), (8855,5,0), (8855,766,0), (8855,872,0), (8856,5,0), (8856,13,0), (8856,872,0), (8857,5,0), (8857,19,0), (8857,872,0), (8858,5,0), (8858,11,0), (8858,872,0), (8859,5,0), (8859,11,0), (8859,872,0), (8860,5,0), (8860,11,0), (8860,872,0), (8861,5,0), (8861,11,0), (8861,872,0), (8862,5,0), (8862,11,0), (8862,872,0), (8863,5,0), (8863,49,0), (8863,872,0), (8864,5,0), (8864,11,0), (8864,872,0), (8865,5,0), (8865,11,0), (8865,872,0), (8866,5,0), (8866,11,0), (8866,872,0), (8867,5,0), (8867,11,0), (8867,872,0), (8868,5,0), (8868,11,0), (8868,872,0), (8869,5,0), (8869,11,0), (8869,872,0), (8870,5,0), (8870,49,0), (8870,872,0), (8871,5,0), (8871,49,0), (8871,872,0), (8872,5,0), (8872,11,0), (8872,872,0), (8873,5,0), (8873,13,0), (8873,873,0), (8873,874,0), (8874,5,0), (8874,13,0), (8874,873,0), (8874,874,0), (8875,5,0), (8875,13,0), (8875,873,0), (8875,874,0), (8876,5,0), (8876,48,0), (8876,873,0), (8876,874,0), (8877,5,0), (8877,48,0), (8877,873,0), (8877,874,0), (8878,5,0), (8878,13,0), (8878,873,0), (8878,874,0), (8879,5,0), (8879,13,0), (8879,873,0), (8879,874,0), (8880,5,0), (8880,13,0), (8880,873,0), (8880,874,0), (8881,5,0), (8881,13,0), (8881,873,0), (8881,874,0), (8882,5,0), (8882,13,0), (8882,873,0), (8882,874,0), (8883,5,0), (8883,48,0), (8883,873,0), (8883,874,0), (8884,5,0), (8884,13,0), (8884,873,0), (8884,874,0), (8885,5,0), (8885,873,0), (8885,874,0), (8886,711,0), (8886,712,0), (8886,875,0), (8887,711,0), (8887,875,0), (8888,711,0), (8888,875,0), (8889,711,0), (8889,875,0), (8890,711,0), (8890,875,0), (8891,711,0), (8891,875,0), (8892,711,0), (8892,877,0), (8892,878,0), (8893,711,0), (8893,877,0), (8894,711,0), (8894,878,0), (8894,879,0), (8895,711,0), (8895,879,0), (8896,711,0), (8896,879,0), (8897,711,0), (8897,879,0), (8898,711,0), (8898,879,0), (8899,711,0), (8899,879,0), (8900,711,0), (8900,879,0), (8901,711,0), (8901,878,0), (8901,880,0), (8902,711,0), (8902,880,0), (8903,711,0), (8903,880,0), (8904,711,0), (8904,880,0), (8905,711,0), (8905,880,0), (8906,711,0), (8906,880,0), (8907,711,0), (8907,880,0), (8908,711,0), (8908,878,0), (8908,881,0), (8909,711,0), (8909,881,0), (8910,711,0), (8910,881,0), (8911,711,0), (8911,881,0), (8912,711,0), (8912,881,0), (8913,711,0), (8913,881,0), (8914,711,0), (8914,881,0), (8915,711,0), (8915,878,0), (8915,882,0), (8916,711,0), (8916,882,0), (8917,711,0), (8917,882,0), (8918,711,0), (8918,882,0), (8919,711,0), (8919,882,0), (8920,711,0), (8920,882,0), (8921,711,0), (8921,712,0), (8921,883,0), (8922,711,0), (8922,883,0), (8923,711,0), (8923,883,0), (8924,711,0), (8924,883,0), (8925,711,0), (8925,883,0), (8926,711,0), (8926,883,0), (8927,711,0), (8927,883,0), (8928,711,0), (8928,883,0), (8929,711,0), (8929,712,0), (8929,884,0), (8930,711,0), (8930,884,0), (8931,711,0), (8931,884,0), (8932,711,0), (8932,884,0), (8933,711,0), (8933,884,0), (8934,711,0), (8934,884,0), (8935,696,0), (8935,711,0), (8935,885,0), (8936,711,0), (8936,885,0), (8937,711,0), (8937,885,0), (8938,711,0), (8938,885,0), (8939,711,0), (8939,885,0), (8940,711,0), (8940,885,0), (8941,711,0), (8941,885,0), (8942,711,0), (8942,712,0), (8942,886,0), (8943,711,0), (8943,886,0), (8944,711,0), (8944,886,0), (8945,711,0), (8945,886,0), (8946,711,0), (8946,886,0), (8947,711,0), (8947,712,0), (8947,887,0), (8948,711,0), (8948,712,0), (8948,888,0), (8949,711,0), (8949,888,0), (8950,711,0), (8950,888,0), (8951,711,0), (8951,888,0), (8952,711,0), (8952,888,0), (8953,711,0), (8953,888,0), (8954,711,0), (8954,889,0), (8955,711,0), (8955,889,0), (8956,711,0), (8956,889,0), (8957,711,0), (8957,889,0), (8958,711,0), (8958,889,0), (8959,711,0), (8959,889,0), (8960,711,0), (8960,889,0), (8961,711,0), (8961,712,0), (8961,890,0), (8962,711,0), (8962,890,0), (8963,711,0), (8963,890,0), (8964,711,0), (8964,890,0), (8965,711,0), (8965,890,0), (8966,711,0), (8966,890,0), (8967,711,0), (8967,890,0), (8968,711,0), (8968,890,0), (8969,711,0), (8969,890,0), (8970,711,0), (8970,890,0), (8971,711,0), (8971,890,0), (8972,711,0), (8972,890,0), (8973,711,0), (8973,890,0), (8974,711,0), (8974,890,0), (8975,711,0), (8975,890,0), (8976,711,0), (8976,890,0), (8977,711,0), (8977,890,0), (8978,711,0), (8978,890,0), (8979,711,0), (8979,890,0), (8980,711,0), (8980,890,0), (8981,711,0), (8981,890,0), (8982,711,0), (8982,890,0), (8983,711,0), (8983,890,0), (8984,711,0), (8984,890,0), (8985,711,0), (8985,890,0), (8986,711,0), (8986,890,0), (8987,711,0), (8987,890,0), (8988,711,0), (8988,890,0), (8989,711,0), (8989,890,0), (8990,711,0), (8990,890,0), (8991,711,0), (8991,890,0), (8992,711,0), (8992,890,0), (8993,711,0), (8993,890,0), (8994,711,0), (8994,890,0), (8995,711,0), (8995,890,0), (8996,711,0), (8996,890,0), (8997,711,0), (8997,890,0), (8998,711,0), (8998,890,0), (8999,711,0), (8999,890,0), (9000,711,0), (9000,890,0), (9001,711,0), (9001,890,0), (9002,711,0), (9002,890,0), (9003,711,0), (9003,891,0), (9004,696,0), (9004,711,0), (9004,892,0), (9005,711,0), (9005,892,0), (9006,696,0), (9006,711,0), (9006,893,0), (9007,711,0), (9007,893,0), (9008,711,0), (9008,893,0), (9009,711,0), (9009,893,0), (9010,696,0), (9010,711,0), (9010,894,0), (9011,711,0), (9011,894,0), (9012,711,0), (9012,894,0), (9013,711,0), (9013,894,0), (9014,711,0), (9014,894,0), (9015,711,0), (9015,894,0), (9016,711,0), (9016,894,0), (9017,711,0), (9017,894,0), (9018,711,0), (9018,894,0), (9019,711,0), (9019,894,0), (9020,711,0), (9020,894,0), (9021,711,0), (9021,894,0), (9022,711,0), (9022,894,0), (9023,711,0), (9023,894,0), (9024,711,0), (9024,894,0), (9025,711,0), (9025,894,0), (9026,711,0), (9026,894,0), (9027,711,0), (9027,894,0), (9028,696,0), (9028,711,0), (9028,895,0), (9029,711,0), (9029,895,0), (9030,711,0), (9030,895,0), (9031,711,0), (9031,895,0), (9032,711,0), (9032,895,0), (9033,711,0), (9033,895,0), (9034,711,0), (9034,895,0), (9035,711,0), (9035,895,0), (9036,711,0), (9036,895,0), (9037,711,0), (9037,895,0), (9038,711,0), (9038,895,0), (9039,711,0), (9039,895,0), (9040,711,0), (9040,895,0), (9041,711,0), (9041,895,0), (9042,711,0), (9042,895,0), (9043,711,0), (9043,895,0), (9044,711,0), (9044,895,0), (9045,711,0), (9045,895,0), (9046,711,0), (9046,895,0), (9047,711,0), (9047,895,0), (9048,711,0), (9048,895,0), (9049,711,0), (9049,895,0), (9050,711,0), (9050,895,0), (9051,711,0), (9051,895,0), (9052,711,0), (9052,895,0), (9053,711,0), (9053,895,0), (9054,711,0), (9054,895,0), (9055,711,0), (9055,895,0), (9056,711,0), (9056,712,0), (9056,896,0), (9057,711,0), (9057,896,0), (9058,711,0), (9058,896,0), (9058,897,0), (9059,711,0), (9059,896,0), (9060,711,0), (9060,896,0), (9061,711,0), (9061,713,0), (9061,896,0), (9062,711,0), (9062,896,0), (9063,711,0), (9063,896,0), (9064,711,0), (9064,713,0), (9064,896,0), (9065,711,0), (9065,718,0), (9065,896,0), (9066,711,0), (9066,896,0), (9066,898,0), (9067,711,0), (9067,716,0), (9067,896,0), (9068,711,0), (9068,713,0), (9068,896,0), (9069,711,0), (9069,896,0), (9069,899,0), (9070,711,0), (9070,896,0), (9070,900,0), (9071,711,0), (9071,718,0), (9071,896,0), (9072,711,0), (9072,714,0), (9072,896,0), (9073,711,0), (9073,714,0), (9073,896,0), (9074,711,0), (9074,718,0), (9074,896,0), (9075,711,0), (9075,714,0), (9075,896,0), (9076,711,0), (9076,896,0), (9076,901,0), (9077,711,0), (9077,896,0), (9078,711,0), (9078,713,0), (9078,896,0), (9079,711,0), (9079,896,0), (9080,711,0), (9080,896,0), (9081,711,0), (9081,716,0), (9081,896,0), (9082,711,0), (9082,896,0), (9082,900,0), (9083,711,0), (9083,718,0), (9083,896,0), (9084,711,0), (9084,718,0), (9084,896,0), (9085,711,0), (9085,718,0), (9085,896,0), (9086,711,0), (9086,713,0), (9086,896,0), (9087,711,0), (9087,713,0), (9087,896,0), (9088,711,0), (9088,714,0), (9088,896,0), (9089,711,0), (9089,902,0), (9090,711,0), (9090,902,0), (9091,711,0), (9091,902,0), (9092,711,0), (9092,902,0), (9093,711,0), (9093,902,0), (9094,711,0), (9094,902,0), (9095,711,0), (9095,902,0), (9096,711,0), (9096,902,0), (9097,711,0), (9097,902,0), (9098,711,0), (9098,902,0), (9099,711,0), (9099,902,0), (9100,711,0), (9100,903,0), (9101,711,0), (9101,903,0), (9102,711,0), (9102,903,0), (9103,711,0), (9103,903,0), (9104,711,0), (9104,903,0), (9105,711,0), (9105,903,0), (9106,711,0), (9106,903,0), (9107,711,0), (9107,903,0), (9108,711,0), (9108,903,0), (9109,711,0), (9109,903,0), (9110,711,0), (9110,903,0), (9111,711,0), (9111,903,0), (9112,711,0), (9112,903,0), (9113,711,0), (9113,903,0), (9114,711,0), (9114,903,0), (9115,711,0), (9115,903,0), (9116,711,0), (9116,903,0), (9117,711,0), (9117,903,0), (9118,711,0), (9118,903,0), (9119,711,0), (9119,903,0), (9120,711,0), (9120,903,0), (9121,711,0), (9121,903,0), (9122,711,0), (9122,903,0), (9123,711,0), (9123,903,0), (9124,711,0), (9124,903,0), (9125,711,0), (9125,903,0), (9126,711,0), (9126,903,0), (9127,711,0), (9127,903,0), (9128,711,0), (9128,903,0), (9129,711,0), (9129,903,0), (9130,711,0), (9130,903,0), (9131,711,0), (9131,903,0), (9132,711,0), (9132,903,0), (9133,711,0), (9133,903,0), (9134,696,0), (9134,711,0), (9134,904,0), (9135,711,0), (9135,904,0), (9136,711,0), (9136,904,0), (9137,711,0), (9137,904,0), (9138,711,0), (9138,904,0), (9139,711,0), (9139,904,0), (9140,711,0), (9140,905,0), (9140,906,0), (9141,711,0), (9141,905,0), (9142,711,0), (9142,905,0), (9143,711,0), (9143,905,0), (9144,711,0), (9144,905,0), (9145,711,0), (9145,905,0), (9146,711,0), (9146,905,0), (9147,711,0), (9147,905,0), (9148,711,0), (9148,905,0), (9149,711,0), (9149,905,0), (9150,711,0), (9150,905,0), (9151,711,0), (9151,906,0), (9151,907,0), (9152,711,0), (9152,907,0), (9153,711,0), (9153,907,0), (9154,711,0), (9154,907,0), (9155,711,0), (9155,907,0), (9156,711,0), (9156,907,0), (9157,711,0), (9157,907,0), (9158,711,0), (9158,907,0), (9159,711,0), (9159,907,0), (9160,711,0), (9160,907,0), (9161,711,0), (9161,907,0), (9162,711,0), (9162,907,0), (9163,711,0), (9163,907,0), (9164,711,0), (9164,712,0), (9164,908,0), (9165,711,0), (9165,908,0), (9166,711,0), (9166,908,0), (9167,711,0), (9167,908,0), (9168,711,0), (9168,908,0), (9169,711,0), (9169,909,0), (9170,711,0), (9170,909,0), (9171,711,0), (9171,909,0), (9172,711,0), (9172,909,0), (9173,711,0), (9173,909,0), (9174,711,0), (9174,909,0), (9175,711,0), (9175,712,0), (9175,910,0), (9176,711,0), (9176,910,0), (9177,711,0), (9177,910,0), (9178,711,0), (9178,910,0), (9179,711,0), (9179,910,0), (9180,711,0), (9180,910,0), (9181,711,0), (9181,911,0), (9182,711,0), (9182,911,0), (9183,711,0), (9183,911,0), (9184,711,0), (9184,911,0), (9185,711,0), (9185,911,0), (9186,711,0), (9186,911,0), (9187,711,0), (9187,911,0), (9188,711,0), (9188,911,0), (9189,711,0), (9189,911,0), (9190,711,0), (9190,911,0), (9191,711,0), (9191,911,0), (9192,711,0), (9192,911,0), (9193,711,0), (9193,713,0), (9193,911,0), (9194,711,0), (9194,911,0), (9195,711,0), (9195,911,0), (9196,711,0), (9196,911,0), (9197,711,0), (9197,911,0), (9198,711,0), (9198,911,0), (9199,711,0), (9199,911,0), (9200,711,0), (9200,712,0), (9200,912,0), (9201,711,0), (9201,912,0), (9202,711,0), (9202,912,0), (9203,711,0), (9203,912,0), (9204,711,0), (9204,912,0), (9205,711,0), (9205,912,0), (9206,711,0), (9206,912,0), (9207,711,0), (9207,912,0), (9208,711,0), (9208,912,0), (9209,711,0), (9209,912,0), (9210,711,0), (9210,912,0), (9211,711,0), (9211,912,0), (9212,711,0), (9212,912,0), (9213,711,0), (9213,912,0), (9214,711,0), (9214,912,0), (9215,711,0), (9215,912,0), (9216,711,0), (9216,912,0), (9217,711,0), (9217,912,0), (9218,711,0), (9218,912,0), (9219,711,0), (9219,912,0), (9220,711,0), (9220,912,0), (9221,711,0), (9221,912,0), (9222,711,0), (9222,912,0), (9223,711,0), (9223,912,0), (9224,711,0), (9224,906,0), (9224,913,0), (9225,711,0), (9225,913,0), (9226,711,0), (9226,913,0), (9227,711,0), (9227,913,0), (9228,711,0), (9228,913,0), (9229,711,0), (9229,913,0), (9230,711,0), (9230,913,0), (9231,711,0), (9231,913,0), (9232,711,0), (9232,913,0), (9233,711,0), (9233,913,0), (9234,711,0), (9234,913,0), (9235,711,0), (9235,913,0), (9236,711,0), (9236,913,0), (9237,711,0), (9237,913,0), (9238,711,0), (9238,913,0), (9239,711,0), (9239,913,0), (9240,5,0), (9240,914,0), (9240,915,0), (9241,5,0), (9241,18,0), (9241,914,0), (9241,915,0), (9242,5,0), (9242,6,0), (9242,914,0), (9242,915,0), (9243,5,0), (9243,14,0), (9243,914,0), (9243,915,0), (9244,5,0), (9244,14,0), (9244,914,0), (9244,915,0), (9245,5,0), (9245,6,0), (9245,914,0), (9245,915,0), (9246,5,0), (9246,14,0), (9246,914,0), (9246,915,0), (9247,5,0), (9247,14,0), (9247,914,0), (9247,915,0), (9248,5,0), (9248,49,0), (9248,914,0), (9248,915,0), (9249,5,0), (9249,6,0), (9249,914,0), (9249,915,0), (9250,5,0), (9250,6,0), (9250,914,0), (9250,915,0), (9251,5,0), (9251,36,0), (9251,914,0), (9251,915,0), (9252,5,0), (9252,14,0), (9252,914,0), (9252,915,0), (9253,5,0), (9253,18,0), (9253,914,0), (9253,915,0), (9254,5,0), (9254,14,0), (9254,914,0), (9254,915,0), (9255,5,0), (9255,14,0), (9255,914,0), (9255,915,0), (9256,5,0), (9256,14,0), (9256,914,0), (9256,915,0), (9257,5,0), (9257,14,0), (9257,914,0), (9257,915,0), (9258,5,0), (9258,14,0), (9258,914,0), (9258,915,0), (9259,5,0), (9259,14,0), (9259,914,0), (9259,915,0), (9260,5,0), (9260,14,0), (9260,914,0), (9260,915,0), (9261,5,0), (9261,14,0), (9261,914,0), (9261,915,0), (9262,5,0), (9262,18,0), (9262,914,0), (9262,915,0), (9263,5,0), (9263,14,0), (9263,914,0), (9263,915,0), (9264,5,0), (9264,11,0), (9264,914,0), (9264,915,0), (9265,5,0), (9265,14,0), (9265,914,0), (9265,915,0), (9266,5,0), (9266,11,0), (9266,914,0), (9266,915,0), (9267,5,0), (9267,18,0), (9267,914,0), (9267,915,0), (9268,5,0), (9268,6,0), (9268,914,0), (9268,915,0), (9269,5,0), (9269,29,0), (9269,914,0), (9269,915,0), (9270,5,0), (9270,14,0), (9270,914,0), (9270,915,0), (9271,5,0), (9271,14,0), (9271,914,0), (9271,915,0), (9272,5,0), (9272,14,0), (9272,914,0), (9272,915,0), (9273,5,0), (9273,14,0), (9273,914,0), (9273,915,0), (9274,5,0), (9274,14,0), (9274,914,0), (9274,915,0), (9275,5,0), (9275,14,0), (9275,914,0), (9275,915,0), (9276,5,0), (9276,474,0), (9276,914,0), (9276,915,0), (9277,5,0), (9277,14,0), (9277,914,0), (9277,915,0), (9278,5,0), (9278,14,0), (9278,914,0), (9278,915,0), (9279,5,0), (9279,14,0), (9279,914,0), (9279,915,0), (9280,5,0), (9280,14,0), (9280,914,0), (9280,915,0), (9281,5,0), (9281,14,0), (9281,914,0), (9281,915,0), (9282,5,0), (9282,14,0), (9282,914,0), (9282,915,0), (9283,5,0), (9283,14,0), (9283,914,0), (9283,915,0), (9284,5,0), (9284,40,0), (9284,914,0), (9284,915,0), (9285,5,0), (9285,40,0), (9285,914,0), (9285,915,0), (9286,5,0), (9286,40,0), (9286,914,0), (9286,915,0), (9287,5,0), (9287,40,0), (9287,914,0), (9287,915,0), (9288,5,0), (9288,13,0), (9288,914,0), (9288,915,0), (9289,5,0), (9289,14,0), (9289,914,0), (9289,915,0), (9290,5,0), (9290,53,0), (9290,914,0), (9290,915,0), (9291,5,0), (9291,14,0), (9291,914,0), (9291,915,0), (9292,5,0), (9292,11,0), (9292,914,0), (9292,915,0), (9293,5,0), (9293,14,0), (9293,914,0), (9293,915,0), (9294,5,0), (9294,6,0), (9294,914,0), (9294,915,0), (9295,5,0), (9295,40,0), (9295,914,0), (9295,915,0), (9296,5,0), (9296,40,0), (9296,914,0), (9296,915,0), (9297,5,0), (9297,14,0), (9297,914,0), (9297,915,0), (9298,5,0), (9298,14,0), (9298,914,0), (9298,915,0), (9299,5,0), (9299,14,0), (9299,914,0), (9299,915,0), (9300,5,0), (9300,14,0), (9300,914,0), (9300,915,0), (9301,5,0), (9301,14,0), (9301,914,0), (9301,915,0), (9302,5,0), (9302,14,0), (9302,914,0), (9302,915,0), (9303,5,0), (9303,40,0), (9303,914,0), (9303,915,0), (9304,5,0), (9304,40,0), (9304,914,0), (9304,915,0), (9305,5,0), (9305,11,0), (9305,914,0), (9305,915,0), (9306,5,0), (9306,48,0), (9306,914,0), (9306,915,0), (9307,5,0), (9307,48,0), (9307,914,0), (9307,915,0), (9308,5,0), (9308,40,0), (9308,914,0), (9308,915,0), (9309,5,0), (9309,40,0), (9309,914,0), (9309,915,0), (9310,5,0), (9310,14,0), (9310,914,0), (9310,915,0), (9311,5,0), (9311,14,0), (9311,914,0), (9311,915,0), (9312,5,0), (9312,18,0), (9312,914,0), (9312,915,0), (9313,5,0), (9313,40,0), (9313,914,0), (9313,915,0), (9314,5,0), (9314,40,0), (9314,914,0), (9314,915,0), (9315,5,0), (9315,14,0), (9315,914,0), (9315,915,0), (9316,5,0), (9316,14,0), (9316,914,0), (9316,915,0), (9317,5,0), (9317,14,0), (9317,914,0), (9317,915,0), (9318,5,0), (9318,14,0), (9318,914,0), (9318,915,0), (9319,5,0), (9319,13,0), (9319,914,0), (9319,915,0), (9320,5,0), (9320,14,0), (9320,914,0), (9320,915,0), (9321,5,0), (9321,13,0), (9321,914,0), (9321,915,0), (9322,5,0), (9322,14,0), (9322,914,0), (9322,915,0), (9323,5,0), (9323,13,0), (9323,914,0), (9323,915,0), (9324,5,0), (9324,14,0), (9324,914,0), (9324,915,0), (9325,5,0), (9325,13,0), (9325,914,0), (9325,915,0), (9326,5,0), (9326,14,0), (9326,914,0), (9326,915,0), (9327,5,0), (9327,14,0), (9327,914,0), (9327,915,0), (9328,5,0), (9328,14,0), (9328,914,0), (9328,915,0), (9329,5,0), (9329,14,0), (9329,914,0), (9329,915,0), (9330,5,0), (9330,14,0), (9330,914,0), (9330,915,0), (9331,5,0), (9331,14,0), (9331,914,0), (9331,915,0), (9332,5,0), (9332,14,0), (9332,914,0), (9332,915,0), (9333,5,0), (9333,49,0), (9333,914,0), (9333,915,0), (9334,5,0), (9334,13,0), (9334,914,0), (9334,915,0), (9335,5,0), (9335,14,0), (9335,914,0), (9335,915,0), (9336,5,0), (9336,22,0), (9336,914,0), (9336,915,0), (9337,5,0), (9337,13,0), (9337,914,0), (9337,915,0), (9338,5,0), (9338,13,0), (9338,914,0), (9338,915,0), (9339,5,0), (9339,13,0), (9339,914,0), (9339,915,0), (9340,5,0), (9340,13,0), (9340,914,0), (9340,915,0), (9341,5,0), (9341,31,0), (9341,914,0), (9341,915,0), (9342,5,0), (9342,6,0), (9342,914,0), (9342,915,0), (9343,5,0), (9343,914,0), (9343,915,0), (9344,5,0), (9344,18,0), (9344,914,0), (9344,915,0), (9345,5,0), (9345,18,0), (9345,914,0), (9345,915,0), (9346,5,0), (9346,18,0), (9346,914,0), (9346,915,0), (9347,5,0), (9347,18,0), (9347,914,0), (9347,915,0), (9348,5,0), (9348,18,0), (9348,914,0), (9348,915,0), (9349,5,0), (9349,18,0), (9349,914,0), (9349,915,0), (9350,5,0), (9350,27,0), (9350,914,0), (9350,915,0), (9351,5,0), (9351,27,0), (9351,914,0), (9351,915,0), (9352,5,0), (9352,22,0), (9352,916,0), (9353,5,0), (9353,23,0), (9353,916,0), (9354,5,0), (9354,9,0), (9354,916,0), (9355,5,0), (9355,6,0), (9355,916,0), (9356,5,0), (9356,22,0), (9356,683,0), (9356,917,0), (9357,5,0), (9357,22,0), (9357,683,0), (9357,917,0), (9358,5,0), (9358,6,0), (9358,683,0), (9358,917,0), (9359,5,0), (9359,22,0), (9359,683,0), (9359,917,0), (9360,5,0), (9360,22,0), (9360,683,0), (9360,917,0), (9361,5,0), (9361,36,0), (9361,683,0), (9361,917,0), (9362,5,0), (9362,22,0), (9362,683,0), (9362,917,0), (9363,5,0), (9363,22,0), (9363,683,0), (9363,917,0), (9364,5,0), (9364,14,0), (9364,683,0), (9364,917,0), (9365,5,0), (9365,13,0), (9365,683,0), (9365,917,0), (9366,5,0), (9366,22,0), (9366,683,0), (9366,917,0), (9367,5,0), (9367,22,0), (9367,683,0), (9367,917,0), (9368,5,0), (9368,6,0), (9368,683,0), (9368,917,0), (9369,5,0), (9369,22,0), (9369,683,0), (9369,917,0), (9370,5,0), (9370,22,0), (9370,683,0), (9370,917,0), (9371,5,0), (9371,22,0), (9371,683,0), (9371,917,0), (9372,5,0), (9372,22,0), (9372,683,0), (9372,917,0), (9373,5,0), (9373,53,0), (9373,683,0), (9373,917,0), (9374,5,0), (9374,22,0), (9374,683,0), (9374,917,0), (9375,5,0), (9375,31,0), (9375,683,0), (9375,917,0), (9376,5,0), (9376,22,0), (9376,683,0), (9376,917,0), (9377,918,0), (9377,919,0), (9378,918,0), (9379,918,0), (9380,918,0), (9381,918,0), (9382,918,0), (9383,919,0), (9383,920,0), (9383,921,0), (9384,920,0), (9385,920,0), (9386,922,0), (9387,922,0), (9388,922,0), (9389,922,0), (9390,919,0), (9390,923,0), (9391,923,0), (9392,919,0), (9392,924,0), (9393,919,0), (9393,924,0), (9394,919,0), (9394,924,0), (9395,919,0), (9395,924,0), (9396,919,0), (9396,924,0), (9397,919,0), (9397,924,0), (9398,919,0), (9398,924,0), (9399,919,0), (9399,924,0), (9400,919,0), (9400,924,0), (9401,919,0), (9401,925,0), (9402,925,0), (9403,925,0), (9404,925,0), (9405,925,0), (9406,925,0), (9407,925,0), (9408,925,0), (9409,925,0), (9410,925,0), (9411,925,0), (9412,925,0), (9413,925,0), (9414,925,0), (9415,925,0), (9416,919,0), (9416,926,0), (9417,926,0), (9418,926,0), (9419,926,0), (9419,927,0), (9420,926,0), (9420,927,0), (9421,926,0), (9422,926,0), (9423,926,0), (9424,926,0), (9425,926,0), (9426,926,0), (9427,926,0), (9428,926,0), (9429,919,0), (9429,926,0), (9430,926,0), (9431,919,0), (9431,926,0), (9432,926,0), (9433,926,0), (9434,926,0), (9435,919,0), (9435,926,0), (9436,926,0), (9437,926,0), (9438,919,0), (9438,926,0), (9439,926,0), (9440,926,0), (9441,919,0), (9441,926,0), (9442,926,0), (9443,926,0), (9444,919,0), (9444,926,0), (9445,926,0), (9446,926,0), (9447,5,0), (9447,29,0), (9447,740,0), (9447,933,0), (9448,5,0), (9448,29,0), (9448,740,0), (9448,933,0), (9449,5,0), (9449,23,0), (9449,740,0), (9449,933,0), (9450,5,0), (9450,6,0), (9450,740,0), (9450,933,0), (9451,5,0), (9451,22,0), (9451,740,0), (9451,933,0), (9452,5,0), (9452,22,0), (9452,740,0), (9452,933,0), (9453,5,0), (9453,22,0), (9453,740,0), (9453,933,0), (9454,5,0), (9454,22,0), (9454,740,0), (9454,933,0), (9455,5,0), (9455,22,0), (9455,740,0), (9455,933,0), (9456,5,0), (9456,22,0), (9456,740,0), (9456,933,0), (9457,5,0), (9457,22,0), (9457,740,0), (9457,933,0), (9458,5,0), (9458,22,0), (9458,740,0), (9458,933,0), (9459,5,0), (9459,9,0), (9459,740,0), (9459,933,0), (9460,5,0), (9460,9,0), (9460,740,0), (9460,933,0), (9461,5,0), (9461,22,0), (9461,740,0), (9461,933,0), (9462,5,0), (9462,22,0), (9462,740,0), (9462,933,0), (9463,5,0), (9463,22,0), (9463,740,0), (9463,933,0), (9464,5,0), (9464,22,0), (9464,740,0), (9464,933,0), (9465,5,0), (9465,22,0), (9465,740,0), (9465,933,0), (9466,5,0), (9466,22,0), (9466,740,0), (9466,933,0), (9467,5,0), (9467,40,0), (9467,740,0), (9467,933,0), (9468,5,0), (9468,40,0), (9468,740,0), (9468,933,0), (9469,5,0), (9469,40,0), (9469,740,0), (9469,933,0), (9470,5,0), (9470,29,0), (9470,740,0), (9470,933,0), (9471,5,0), (9471,22,0), (9471,740,0), (9471,933,0), (9472,5,0), (9472,22,0), (9472,740,0), (9472,933,0), (9473,5,0), (9473,22,0), (9473,740,0), (9473,933,0), (9474,5,0), (9474,22,0), (9474,740,0), (9474,933,0), (9475,5,0), (9475,18,0), (9475,740,0), (9475,933,0), (9476,5,0), (9476,9,0), (9476,740,0), (9476,933,0), (9477,5,0), (9477,19,0), (9477,740,0), (9477,933,0), (9478,5,0), (9478,40,0), (9478,740,0), (9478,933,0), (9479,5,0), (9479,40,0), (9479,740,0), (9479,933,0), (9480,5,0), (9480,19,0), (9480,740,0), (9480,933,0), (9481,5,0), (9481,19,0), (9481,740,0), (9481,933,0), (9482,5,0), (9482,13,0), (9482,740,0), (9482,933,0), (9483,5,0), (9483,22,0), (9483,740,0), (9483,933,0), (9484,5,0), (9484,22,0), (9484,740,0), (9484,933,0), (9485,5,0), (9485,31,0), (9485,740,0), (9485,933,0), (9486,5,0), (9486,18,0), (9486,740,0), (9486,933,0), (9487,5,0), (9487,9,0), (9487,740,0), (9487,933,0), (9488,5,0), (9488,54,0), (9488,740,0), (9488,933,0), (9489,5,0), (9489,9,0), (9489,740,0), (9489,933,0), (9490,5,0), (9490,51,0), (9490,740,0), (9490,933,0), (9491,5,0), (9491,9,0), (9491,740,0), (9491,933,0), (9492,5,0), (9492,9,0), (9492,740,0), (9492,933,0), (9493,5,0), (9493,9,0), (9493,740,0), (9493,933,0), (9494,5,0), (9494,9,0), (9494,740,0), (9494,933,0), (9495,5,0), (9495,29,0), (9495,740,0), (9495,933,0), (9496,5,0), (9496,9,0), (9496,740,0), (9496,933,0), (9497,5,0), (9497,29,0), (9497,740,0), (9497,933,0), (9498,5,0), (9498,27,0), (9498,740,0), (9498,933,0), (9499,5,0), (9499,27,0), (9499,740,0), (9499,933,0), (9500,5,0), (9500,9,0), (9500,740,0), (9500,933,0), (9501,5,0), (9501,27,0), (9501,740,0), (9501,933,0), (9502,5,0), (9502,29,0), (9502,740,0), (9502,933,0), (9503,5,0), (9503,6,0), (9503,740,0), (9503,933,0), (9504,5,0), (9504,6,0), (9504,740,0), (9504,933,0), (9505,5,0), (9505,6,0), (9505,740,0), (9505,933,0), (9506,5,0), (9506,6,0), (9506,740,0), (9506,933,0), (9507,5,0), (9507,6,0), (9507,740,0), (9507,933,0), (9508,5,0), (9508,6,0), (9508,740,0), (9508,933,0), (9509,5,0), (9509,6,0), (9509,740,0), (9509,933,0), (9510,5,0), (9510,6,0), (9510,740,0), (9510,933,0), (9511,5,0), (9511,18,0), (9511,740,0), (9511,933,0), (9512,5,0), (9512,40,0), (9512,740,0), (9512,933,0), (9513,5,0), (9513,29,0), (9513,740,0), (9513,933,0), (9514,5,0), (9514,18,0), (9514,740,0), (9514,933,0), (9515,5,0), (9515,6,0), (9515,740,0), (9515,933,0), (9516,5,0), (9516,18,0), (9516,740,0), (9516,933,0), (9517,5,0), (9517,40,0), (9517,740,0), (9517,933,0), (9518,5,0), (9518,29,0), (9518,740,0), (9518,933,0), (9519,5,0), (9519,40,0), (9519,740,0), (9519,933,0), (9520,5,0), (9520,6,0), (9520,740,0), (9520,933,0), (9521,5,0), (9521,49,0), (9521,740,0), (9521,933,0), (9522,5,0), (9522,49,0), (9522,740,0), (9522,933,0), (9523,5,0), (9523,29,0), (9523,740,0), (9523,933,0), (9524,5,0), (9524,29,0), (9524,740,0), (9524,933,0), (9525,5,0), (9525,29,0), (9525,740,0), (9525,933,0), (9526,5,0), (9526,29,0), (9526,740,0), (9526,933,0), (9527,5,0), (9527,6,0), (9527,934,0), (9528,5,0), (9528,54,0), (9528,934,0), (9529,5,0), (9529,54,0), (9529,934,0), (9530,5,0), (9530,936,0), (9531,5,0), (9531,6,0), (9531,936,0), (9532,5,0), (9532,18,0), (9532,936,0), (9533,5,0), (9533,9,0), (9533,936,0), (9534,5,0), (9534,9,0), (9534,936,0), (9535,5,0), (9535,9,0), (9535,936,0), (9536,5,0), (9536,23,0), (9536,936,0), (9537,5,0), (9537,9,0), (9537,936,0), (9538,5,0), (9538,9,0), (9538,936,0), (9539,5,0), (9539,13,0), (9539,936,0), (9540,5,0), (9540,936,0), (9541,5,0), (9541,18,0), (9541,936,0), (9542,5,0), (9542,936,0), (9543,5,0), (9543,936,0), (9544,5,0), (9544,936,0), (9545,5,0), (9545,9,0), (9545,936,0), (9546,5,0), (9546,22,0), (9546,936,0), (9547,5,0), (9547,377,0), (9547,936,0), (9548,5,0), (9548,31,0), (9548,936,0), (9549,5,0), (9549,13,0), (9549,936,0), (9550,5,0), (9550,11,0), (9550,936,0), (9551,5,0), (9551,11,0), (9551,936,0), (9552,5,0), (9552,27,0), (9552,936,0), (9553,5,0), (9553,11,0), (9553,936,0), (9554,5,0), (9554,36,0), (9554,936,0), (9555,5,0), (9555,6,0), (9555,936,0), (9556,5,0), (9556,377,0), (9556,936,0), (9557,5,0), (9557,9,0), (9557,936,0), (9558,5,0), (9558,23,0), (9558,936,0), (9559,5,0), (9559,51,0), (9559,936,0), (9560,5,0), (9560,6,0), (9560,936,0), (9561,5,0), (9561,6,0), (9561,936,0), (9562,5,0), (9562,9,0), (9562,936,0), (9563,5,0), (9563,6,0), (9563,936,0), (9564,5,0), (9564,48,0), (9564,936,0), (9565,5,0), (9565,9,0), (9565,936,0), (9566,5,0), (9566,40,0), (9566,937,0), (9567,5,0), (9567,11,0), (9567,937,0), (9568,5,0), (9568,15,0), (9568,937,0), (9569,5,0), (9569,15,0), (9569,937,0), (9570,5,0), (9570,11,0), (9570,938,0), (9571,5,0), (9571,22,0), (9571,938,0), (9572,5,0), (9572,814,0), (9572,938,0), (9573,5,0), (9573,19,0), (9573,938,0), (9574,5,0), (9574,6,0), (9574,938,0), (9575,5,0), (9575,22,0), (9575,938,0), (9576,5,0), (9576,6,0), (9576,938,0), (9577,4,0), (9577,939,0), (9578,6,0), (9578,939,0), (9579,4,0), (9579,939,0), (9580,4,0), (9580,939,0), (9581,6,0), (9581,939,0), (9582,4,0), (9582,939,0), (9583,4,0), (9583,939,0), (9584,6,0), (9584,939,0), (9585,4,0), (9585,939,0), (9586,4,0), (9586,939,0), (9587,6,0), (9587,939,0), (9588,4,0), (9588,939,0), (9589,4,0), (9589,939,0), (9590,4,0), (9590,939,0), (9591,6,0), (9591,939,0), (9592,4,0), (9592,939,0), (9593,6,0), (9593,939,0), (9594,4,0), (9594,939,0), (9595,6,0), (9595,939,0), (9596,4,0), (9596,939,0), (9597,4,0), (9597,939,0), (9598,4,0), (9598,939,0), (9599,6,0), (9599,939,0), (9600,4,0), (9600,939,0), (9601,4,0), (9601,939,0), (9602,6,0), (9602,939,0), (9603,6,0), (9603,939,0), (9604,6,0), (9604,939,0), (9605,6,0), (9605,939,0), (9606,5,0), (9606,94,0), (9606,940,0), (9606,941,0), (9607,5,0), (9607,15,0), (9607,940,0), (9607,941,0), (9608,5,0), (9608,942,0), (9609,5,0), (9609,23,0), (9609,942,0), (9610,5,0), (9610,18,0), (9610,942,0), (9677,13,0), (9677,103,0), (9679,6,0), (9679,358,0), (9680,6,0), (9680,358,0), (9681,6,0), (9681,358,0), (9703,5,0), (9703,9,0), (9703,664,0), (9738,5,0), (9738,474,0), (9738,666,0), (9738,667,0), (10448,5,0), (10448,22,0), (10448,756,0), (10448,757,0), (10578,5,0), (10578,22,0), (10578,93,0), (10578,765,0), (10579,5,0), (10579,93,0), (10579,94,0), (10579,765,0), (10650,5,0), (10650,14,0), (10650,93,0), (10650,765,0), (10656,5,0), (10656,11,0), (10656,93,0), (10656,765,0), (11130,5,0), (11130,22,0), (11130,683,0), (11130,815,0), (11532,5,0), (11532,94,0), (11532,683,0), (11532,859,0), (11719,5,0), (11719,51,0), (11719,858,0), (11719,861,0), (11720,5,0), (11720,53,0), (11720,858,0), (11720,861,0), (11721,5,0), (11721,53,0), (11721,858,0), (11721,861,0), (11736,5,0), (11736,53,0), (11736,858,0), (11736,861,0), (12018,5,0), (12018,54,0), (12018,934,0), (12047,5,0), (12047,22,0), (12047,936,0); /*!40000 ALTER TABLE `wporg_33_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_33_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_33_term_taxonomy`; CREATE TABLE `wporg_33_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_33_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_33_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_33_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,0), (2,2,'wp-parser-source-file','',0,0), (3,3,'wp-parser-source-file','',0,0), (4,4,'wp-parser-since','',0,156), (5,5,'wp-parser-package','',0,24), (6,6,'wp-parser-since','',0,12), (7,7,'wp-parser-source-file','',0,0), (8,8,'wp-parser-source-file','',0,0), (9,9,'wp-parser-since','',0,2), (10,10,'wp-parser-package','',5,20), (11,11,'wp-parser-since','',0,0), (12,12,'wp-parser-source-file','',0,0), (13,13,'wp-parser-since','',0,0), (14,14,'wp-parser-since','',0,1), (15,15,'wp-parser-since','',0,0), (16,16,'wp-parser-source-file','',0,0), (17,17,'wp-parser-source-file','',0,1), (18,18,'wp-parser-since','',0,1), (19,19,'wp-parser-since','',0,0), (20,20,'wp-parser-source-file','',0,0), (21,21,'wp-parser-source-file','',0,0), (22,22,'wp-parser-since','',0,0), (23,23,'wp-parser-since','',0,0), (24,24,'wp-parser-source-file','',0,0), (25,25,'wp-parser-source-file','',0,1), (26,26,'wp-parser-source-file','',0,0), (27,27,'wp-parser-since','',0,45), (28,28,'wp-parser-source-file','',0,9), (29,29,'wp-parser-since','',0,2), (30,30,'wp-parser-source-file','',0,1), (31,31,'wp-parser-since','',0,0), (32,32,'wp-parser-source-file','',0,0), (33,33,'wp-parser-package','',5,0), (34,34,'wp-parser-source-file','',0,0), (35,35,'wp-parser-source-file','',0,1), (36,36,'wp-parser-since','',0,0), (37,37,'wp-parser-source-file','',0,0), (38,38,'wp-parser-source-file','',0,1), (39,39,'wp-parser-source-file','',0,0), (40,40,'wp-parser-since','',0,0), (41,41,'wp-parser-source-file','',0,2), (42,42,'wp-parser-source-file','',0,1), (43,43,'wp-parser-source-file','',0,0), (44,44,'wp-parser-source-file','',0,0), (45,45,'wp-parser-source-file','',0,0), (46,46,'wp-parser-source-file','',0,0), (47,47,'wp-parser-source-file','',0,77), (48,48,'wp-parser-since','',0,120), (49,49,'wp-parser-since','',0,94), (50,50,'wp-parser-since','',0,20), (51,51,'wp-parser-since','',0,0), (52,52,'wp-parser-source-file','',0,14), (53,53,'wp-parser-since','',0,225), (54,54,'wp-parser-since','',0,94), (55,55,'wp-parser-source-file','',0,0), (56,56,'wp-parser-package','',0,62), (57,57,'wp-parser-package','',56,0), (58,58,'wp-parser-source-file','',0,13), (59,59,'wp-parser-package','',56,1), (60,60,'wp-parser-source-file','',0,0), (61,61,'wp-parser-source-file','',0,0), (62,62,'wp-parser-source-file','',0,31), (63,63,'wp-parser-package','',5,52), (64,64,'wp-parser-source-file','',0,44), (65,65,'wp-parser-package','',5,132), (66,66,'wp-parser-source-file','',0,0), (67,67,'wp-parser-source-file','',0,0), (68,68,'wp-parser-source-file','',0,29), (69,69,'wp-parser-source-file','',0,0), (70,70,'wp-parser-since','',0,0), (71,71,'wp-parser-source-file','',0,0), (72,72,'wp-parser-source-file','',0,0), (73,73,'wp-parser-source-file','',0,46), (74,74,'wp-parser-source-file','',0,19), (75,75,'wp-parser-source-file','',0,0), (76,76,'wp-parser-source-file','',0,0), (77,77,'wp-parser-source-file','',0,13), (78,78,'wp-parser-source-file','',0,14), (79,79,'wp-parser-source-file','',0,0), (80,80,'wp-parser-source-file','',0,34), (81,81,'wp-parser-since','',0,9), (82,82,'wp-parser-source-file','',0,27), (83,83,'wp-parser-source-file','',0,0), (84,84,'wp-parser-source-file','',0,0), (85,85,'wp-parser-source-file','',0,76), (86,86,'wp-parser-package','',5,152), (87,87,'wp-parser-source-file','',0,76), (88,88,'wp-parser-source-file','',0,16), (89,89,'wp-parser-source-file','',0,0), (90,90,'wp-parser-source-file','',0,0), (91,91,'wp-parser-source-file','',0,47), (92,92,'wp-parser-source-file','',0,0), (93,93,'wp-parser-package','',5,275), (94,94,'wp-parser-since','',0,152), (95,95,'wp-parser-source-file','',0,17), (96,96,'wp-parser-source-file','',0,24), (97,97,'wp-parser-source-file','',0,17), (98,98,'wp-parser-source-file','',0,20), (99,99,'wp-parser-source-file','',0,0), (100,100,'wp-parser-source-file','',0,0), (101,101,'wp-parser-source-file','',0,79), (102,102,'wp-parser-source-file','',0,12), (103,103,'wp-parser-source-file','',0,37), (104,104,'wp-parser-since','',0,8), (105,105,'wp-parser-source-file','',0,0), (106,106,'wp-parser-source-file','',0,0), (107,107,'wp-parser-source-file','',0,0), (108,108,'wp-parser-source-file','',0,0), (109,109,'wp-parser-source-file','',0,0), (110,110,'wp-parser-source-file','',0,0), (111,111,'wp-parser-source-file','',0,0), (112,112,'wp-parser-source-file','',0,0), (113,113,'wp-parser-source-file','',0,0), (114,114,'wp-parser-source-file','',0,12), (115,115,'wp-parser-source-file','',0,0), (116,116,'wp-parser-source-file','',0,0), (117,117,'wp-parser-source-file','',0,0), (118,118,'wp-parser-source-file','',0,0), (119,119,'wp-parser-source-file','',0,0), (120,120,'wp-parser-source-file','',0,0), (121,121,'wp-parser-source-file','',0,0), (122,122,'wp-parser-source-file','',0,0), (123,123,'wp-parser-source-file','',0,0), (124,124,'wp-parser-source-file','',0,0), (125,125,'wp-parser-source-file','',0,0), (126,126,'wp-parser-source-file','',0,0), (127,127,'wp-parser-source-file','',0,0), (128,128,'wp-parser-source-file','',0,0), (129,129,'wp-parser-source-file','',0,0), (130,130,'wp-parser-source-file','',0,0), (131,131,'wp-parser-source-file','',0,0), (132,132,'wp-parser-source-file','',0,0), (133,133,'wp-parser-source-file','',0,0), (134,134,'wp-parser-package','',0,0), (135,135,'wp-parser-source-file','',0,0), (136,136,'wp-parser-source-file','',0,0), (137,137,'wp-parser-source-file','',0,0), (138,138,'wp-parser-source-file','',0,0), (139,139,'wp-parser-source-file','',0,0), (140,140,'wp-parser-source-file','',0,0), (141,141,'wp-parser-source-file','',0,0), (142,142,'wp-parser-source-file','',0,0), (143,143,'wp-parser-source-file','',0,0), (144,144,'wp-parser-source-file','',0,0), (145,145,'wp-parser-source-file','',0,0), (146,146,'wp-parser-source-file','',0,0), (147,147,'wp-parser-source-file','',0,0), (148,148,'wp-parser-source-file','',0,0), (149,149,'wp-parser-source-file','',0,0), (150,150,'wp-parser-source-file','',0,0), (151,151,'wp-parser-source-file','',0,0), (152,152,'wp-parser-source-file','',0,0), (153,153,'wp-parser-source-file','',0,0), (154,154,'wp-parser-source-file','',0,0), (155,155,'wp-parser-source-file','',0,0), (156,156,'wp-parser-source-file','',0,0), (157,157,'wp-parser-source-file','',0,0), (158,158,'wp-parser-source-file','',0,0), (159,159,'wp-parser-source-file','',0,0), (160,160,'wp-parser-source-file','',0,0), (161,161,'wp-parser-source-file','',0,0), (162,162,'wp-parser-source-file','',0,0), (163,163,'wp-parser-source-file','',0,0), (164,164,'wp-parser-source-file','',0,0), (165,165,'wp-parser-source-file','',0,0), (166,166,'wp-parser-source-file','',0,0), (167,167,'wp-parser-source-file','',0,0), (168,168,'wp-parser-source-file','',0,0), (169,169,'wp-parser-source-file','',0,0), (170,170,'wp-parser-source-file','',0,0), (171,171,'wp-parser-source-file','',0,0), (172,172,'wp-parser-source-file','',0,0), (173,173,'wp-parser-source-file','',0,0), (174,174,'wp-parser-source-file','',0,0), (175,175,'wp-parser-package','',0,0), (176,176,'wp-parser-source-file','',0,0), (177,177,'wp-parser-source-file','',0,0), (178,178,'wp-parser-source-file','',0,0), (179,179,'wp-parser-source-file','',0,0), (180,180,'wp-parser-source-file','',0,0), (181,181,'wp-parser-source-file','',0,0), (182,182,'wp-parser-source-file','',0,0), (183,183,'wp-parser-source-file','',0,0), (184,184,'wp-parser-source-file','',0,0), (185,185,'wp-parser-source-file','',0,0), (186,186,'wp-parser-source-file','',0,0), (187,187,'wp-parser-source-file','',0,0), (188,188,'wp-parser-source-file','',0,0), (189,189,'wp-parser-source-file','',0,0), (190,190,'wp-parser-source-file','',0,0), (191,191,'wp-parser-source-file','',0,0), (192,192,'wp-parser-source-file','',0,0), (193,193,'wp-parser-source-file','',0,0), (194,194,'wp-parser-source-file','',0,0), (195,195,'wp-parser-source-file','',0,0), (196,196,'wp-parser-source-file','',0,0), (197,197,'wp-parser-source-file','',0,0), (198,198,'wp-parser-source-file','',0,0), (199,199,'wp-parser-source-file','',0,0), (200,200,'wp-parser-source-file','',0,0), (201,201,'wp-parser-source-file','',0,0), (202,202,'wp-parser-source-file','',0,0), (203,203,'wp-parser-source-file','',0,0), (204,204,'wp-parser-source-file','',0,0), (205,205,'wp-parser-source-file','',0,0), (206,206,'wp-parser-source-file','',0,0), (207,207,'wp-parser-source-file','',0,0), (208,208,'wp-parser-source-file','',0,0), (209,209,'wp-parser-source-file','',0,0), (210,210,'wp-parser-source-file','',0,0), (211,211,'wp-parser-source-file','',0,0), (212,212,'wp-parser-source-file','',0,0), (213,213,'wp-parser-source-file','',0,0), (214,214,'wp-parser-source-file','',0,0), (215,215,'wp-parser-source-file','',0,0), (216,216,'wp-parser-source-file','',0,0), (217,217,'wp-parser-source-file','',0,0), (218,218,'wp-parser-source-file','',0,0), (219,219,'wp-parser-source-file','',0,0), (220,220,'wp-parser-source-file','',0,0), (221,221,'wp-parser-source-file','',0,0), (222,222,'wp-parser-source-file','',0,0), (223,223,'wp-parser-source-file','',0,0), (224,224,'wp-parser-source-file','',0,0), (225,225,'wp-parser-source-file','',0,0), (226,226,'wp-parser-source-file','',0,0), (227,227,'wp-parser-source-file','',0,0), (228,228,'wp-parser-source-file','',0,0), (229,229,'wp-parser-source-file','',0,0), (230,230,'wp-parser-source-file','',0,0), (231,231,'wp-parser-source-file','',0,0), (232,232,'wp-parser-source-file','',0,0), (233,233,'wp-parser-source-file','',0,0), (234,234,'wp-parser-source-file','',0,0), (235,235,'wp-parser-source-file','',0,0), (236,236,'wp-parser-source-file','',0,0), (237,237,'wp-parser-source-file','',0,0), (238,238,'wp-parser-source-file','',0,0), (239,239,'wp-parser-source-file','',0,0), (240,240,'wp-parser-source-file','',0,0), (241,241,'wp-parser-source-file','',0,0), (242,242,'wp-parser-source-file','',0,0), (243,243,'wp-parser-source-file','',0,0), (244,244,'wp-parser-source-file','',0,0), (245,245,'wp-parser-source-file','',0,0), (246,246,'wp-parser-source-file','',0,0), (247,247,'wp-parser-source-file','',0,0), (248,248,'wp-parser-source-file','',0,0), (249,249,'wp-parser-source-file','',0,0), (250,250,'wp-parser-source-file','',0,0), (251,251,'wp-parser-source-file','',0,0), (252,252,'wp-parser-source-file','',0,0), (253,253,'wp-parser-source-file','',0,0), (254,254,'wp-parser-source-file','',0,0), (255,255,'wp-parser-source-file','',0,0), (256,256,'wp-parser-source-file','',0,0), (257,257,'wp-parser-source-file','',0,0), (258,258,'wp-parser-source-file','',0,0), (259,259,'wp-parser-source-file','',0,0), (260,260,'wp-parser-source-file','',0,0), (261,261,'wp-parser-source-file','',0,0), (262,262,'wp-parser-source-file','',0,0), (263,263,'wp-parser-source-file','',0,0), (264,264,'wp-parser-source-file','',0,0), (265,265,'wp-parser-source-file','',0,0), (266,266,'wp-parser-source-file','',0,0), (267,267,'wp-parser-source-file','',0,0), (268,268,'wp-parser-source-file','',0,0), (269,269,'wp-parser-source-file','',0,0), (270,270,'wp-parser-source-file','',0,0), (271,271,'wp-parser-source-file','',0,0), (272,272,'wp-parser-source-file','',0,0), (273,273,'wp-parser-source-file','',0,0), (274,274,'wp-parser-source-file','',0,0), (275,275,'wp-parser-source-file','',0,0), (276,276,'wp-parser-source-file','',0,0), (277,277,'wp-parser-source-file','',0,0), (278,278,'wp-parser-source-file','',0,0), (279,279,'wp-parser-source-file','',0,0), (280,280,'wp-parser-source-file','',0,0), (281,281,'wp-parser-source-file','',0,0), (282,282,'wp-parser-source-file','',0,0), (283,283,'wp-parser-source-file','',0,0), (284,284,'wp-parser-source-file','',0,0), (285,285,'wp-parser-source-file','',0,0), (286,286,'wp-parser-source-file','',0,0), (287,287,'wp-parser-source-file','',0,0), (288,288,'wp-parser-source-file','',0,0), (289,289,'wp-parser-source-file','',0,0), (290,290,'wp-parser-source-file','',0,0), (291,291,'wp-parser-source-file','',0,0), (292,292,'wp-parser-source-file','',0,0), (293,293,'wp-parser-source-file','',0,0), (294,294,'wp-parser-source-file','',0,0), (295,295,'wp-parser-source-file','',0,0), (296,296,'wp-parser-source-file','',0,0), (297,297,'wp-parser-source-file','',0,0), (298,298,'wp-parser-source-file','',0,0), (299,299,'wp-parser-source-file','',0,0), (300,300,'wp-parser-source-file','',0,0), (301,301,'wp-parser-source-file','',0,0), (302,302,'wp-parser-source-file','',0,0), (303,303,'wp-parser-source-file','',0,0), (304,304,'wp-parser-source-file','',0,0), (305,305,'wp-parser-source-file','',0,0), (306,306,'wp-parser-source-file','',0,0), (307,307,'wp-parser-source-file','',0,0), (308,308,'wp-parser-source-file','',0,0), (309,309,'wp-parser-source-file','',0,0), (310,310,'wp-parser-source-file','',0,0), (311,311,'wp-parser-source-file','',0,0), (312,312,'wp-parser-source-file','',0,0), (313,313,'wp-parser-source-file','',0,0), (314,314,'wp-parser-source-file','',0,0), (315,315,'wp-parser-source-file','',0,0), (316,316,'wp-parser-source-file','',0,0), (317,317,'wp-parser-source-file','',0,0), (318,318,'wp-parser-source-file','',0,0), (319,319,'wp-parser-source-file','',0,0), (320,320,'wp-parser-source-file','',0,0), (321,321,'wp-parser-source-file','',0,0), (322,322,'wp-parser-source-file','',0,0), (323,323,'wp-parser-source-file','',0,0), (324,324,'wp-parser-source-file','',0,0), (325,325,'wp-parser-source-file','',0,0), (326,326,'wp-parser-source-file','',0,0), (327,327,'wp-parser-source-file','',0,0), (328,328,'wp-parser-source-file','',0,0), (329,329,'wp-parser-source-file','',0,0), (330,330,'wp-parser-source-file','',0,0), (331,331,'wp-parser-source-file','',0,0), (332,332,'wp-parser-source-file','',0,0), (333,333,'wp-parser-source-file','',0,0), (334,334,'wp-parser-source-file','',0,0), (335,335,'wp-parser-source-file','',0,0), (336,336,'wp-parser-source-file','',0,0), (337,337,'wp-parser-source-file','',0,0), (338,338,'wp-parser-source-file','',0,0), (339,339,'wp-parser-source-file','',0,0), (340,340,'wp-parser-source-file','',0,0), (341,341,'wp-parser-source-file','',0,0), (342,342,'wp-parser-source-file','',0,0), (343,343,'wp-parser-source-file','',0,0), (344,344,'wp-parser-source-file','',0,0), (345,345,'wp-parser-source-file','',0,0), (346,346,'wp-parser-source-file','',0,0), (347,347,'wp-parser-source-file','',0,0), (348,348,'wp-parser-source-file','',0,0), (349,349,'wp-parser-source-file','',0,0), (350,350,'wp-parser-source-file','',0,0), (351,351,'wp-parser-source-file','',0,0), (352,352,'wp-parser-since','',0,16), (353,353,'wp-parser-source-file','',0,30), (354,354,'wp-parser-since','',0,2), (355,355,'wp-parser-source-file','',0,0), (356,356,'wp-parser-source-file','',0,39), (357,357,'wp-parser-package','',5,214), (358,358,'wp-parser-source-file','',0,41), (359,359,'wp-parser-source-file','',0,12), (360,360,'wp-parser-source-file','',0,57), (361,361,'wp-parser-source-file','',0,42), (362,362,'wp-parser-since','',0,3), (363,363,'wp-parser-package','',5,24), (364,364,'wp-parser-source-file','',0,3), (365,365,'wp-parser-source-file','',0,15), (366,366,'wp-parser-source-file','',0,43), (367,367,'wp-parser-source-file','',0,12), (368,368,'wp-parser-source-file','',0,66), (369,369,'wp-parser-source-file','',0,0), (370,370,'wp-parser-source-file','',0,0), (371,371,'wp-parser-source-file','',0,0), (372,372,'wp-parser-source-file','',0,19), (373,373,'wp-parser-source-file','',0,51), (374,374,'wp-parser-since','',0,64), (375,375,'wp-parser-since','',0,1), (376,376,'wp-parser-since','',0,1), (377,377,'wp-parser-since','',0,29), (378,378,'wp-parser-source-file','',0,0), (379,379,'wp-parser-source-file','',0,0), (380,380,'wp-parser-source-file','',0,0), (381,381,'wp-parser-source-file','',0,4), (382,382,'wp-parser-package','',5,30), (383,383,'wp-parser-source-file','',0,3), (384,384,'wp-parser-source-file','',0,0), (385,385,'wp-parser-source-file','',0,0), (386,386,'wp-parser-source-file','',0,2), (387,387,'wp-parser-source-file','',0,0), (388,388,'wp-parser-source-file','',0,0), (389,389,'wp-parser-source-file','',0,0), (390,390,'wp-parser-source-file','',0,1), (391,391,'wp-parser-package','',5,54), (392,392,'wp-parser-source-file','',0,0), (393,393,'wp-parser-source-file','',0,0), (394,394,'wp-parser-source-file','',0,0), (395,395,'wp-parser-source-file','',0,3), (396,396,'wp-parser-source-file','',0,0), (397,397,'wp-parser-source-file','',0,0), (398,398,'wp-parser-source-file','',0,0), (399,399,'wp-parser-source-file','',0,0), (400,400,'wp-parser-source-file','',0,0), (401,401,'wp-parser-source-file','',0,0), (402,402,'wp-parser-source-file','',0,0), (403,403,'wp-parser-source-file','',0,0), (404,404,'wp-parser-source-file','',0,0), (405,405,'wp-parser-source-file','',0,0), (406,406,'wp-parser-source-file','',0,0), (407,407,'wp-parser-source-file','',0,0), (408,408,'wp-parser-source-file','',0,0), (409,409,'wp-parser-source-file','',0,0), (410,410,'wp-parser-source-file','',0,0), (411,411,'wp-parser-source-file','',0,0), (412,412,'wp-parser-source-file','',0,0), (413,413,'wp-parser-source-file','',0,0), (414,414,'wp-parser-source-file','',0,0), (415,415,'wp-parser-source-file','',0,0), (416,416,'wp-parser-source-file','',0,0), (417,417,'wp-parser-source-file','',0,0), (418,418,'wp-parser-source-file','',0,0), (419,419,'wp-parser-source-file','',0,0), (420,420,'wp-parser-source-file','',0,0), (421,421,'wp-parser-source-file','',0,0), (422,422,'wp-parser-source-file','',0,0), (423,423,'wp-parser-source-file','',0,2), (424,424,'wp-parser-source-file','',0,0), (425,425,'wp-parser-source-file','',0,0), (426,426,'wp-parser-source-file','',0,0), (427,427,'wp-parser-source-file','',0,0), (428,428,'wp-parser-source-file','',0,0), (429,429,'wp-parser-source-file','',0,0), (430,430,'wp-parser-source-file','',0,0), (431,431,'wp-parser-source-file','',0,0), (432,432,'wp-parser-source-file','',0,0), (433,433,'wp-parser-source-file','',0,0), (434,434,'wp-parser-source-file','',0,0), (435,435,'wp-parser-source-file','',0,0), (436,436,'wp-parser-source-file','',0,7), (437,437,'wp-parser-source-file','',0,0), (438,438,'wp-parser-source-file','',0,3), (439,439,'wp-parser-source-file','',0,0), (440,440,'wp-parser-source-file','',0,0), (441,441,'wp-parser-source-file','',0,0), (442,442,'wp-parser-source-file','',0,0), (443,443,'wp-parser-source-file','',0,0), (444,444,'wp-parser-source-file','',0,0), (445,445,'wp-parser-source-file','',0,1), (446,446,'wp-parser-source-file','',0,0), (447,447,'wp-parser-source-file','',0,0), (448,448,'wp-parser-source-file','',0,0), (449,449,'wp-parser-source-file','',0,0), (450,450,'wp-parser-source-file','',0,0), (451,451,'wp-parser-package','',5,0), (452,452,'wp-parser-source-file','',0,0), (453,453,'wp-parser-source-file','',0,0), (454,454,'wp-parser-source-file','',0,0), (455,455,'wp-parser-source-file','',0,0), (456,456,'wp-parser-source-file','',0,0), (457,457,'wp-parser-source-file','',0,0), (458,458,'wp-parser-source-file','',0,0), (459,459,'wp-parser-source-file','',0,11), (460,460,'wp-parser-source-file','',0,0), (461,461,'wp-parser-source-file','',0,0), (462,462,'wp-parser-source-file','',0,0), (463,463,'wp-parser-source-file','',0,0), (464,464,'wp-parser-source-file','',0,0), (465,465,'wp-parser-source-file','',0,0), (466,466,'wp-parser-source-file','',0,0), (467,467,'wp-parser-source-file','',0,0), (468,468,'wp-parser-source-file','',0,0), (469,469,'wp-parser-source-file','',0,0), (470,470,'wp-parser-source-file','',0,0), (471,471,'wp-parser-source-file','',0,0), (472,472,'wp-parser-source-file','',0,0), (473,473,'wp-parser-source-file','',0,0), (474,474,'wp-parser-since','',0,22), (475,475,'wp-parser-source-file','',0,0), (476,476,'wp-parser-source-file','',0,0), (477,477,'wp-parser-source-file','',0,0), (478,478,'wp-parser-source-file','',0,8), (479,479,'wp-parser-source-file','',0,0), (480,480,'wp-parser-source-file','',0,0), (481,481,'wp-parser-source-file','',0,0), (482,482,'wp-parser-source-file','',0,0), (483,483,'wp-parser-since','',0,69), (484,484,'wp-parser-since','',0,0), (485,485,'wp-parser-source-file','',0,0), (486,486,'wp-parser-package','',0,0), (487,487,'wp-parser-source-file','',0,0), (488,488,'wp-parser-source-file','',0,0), (489,489,'wp-parser-source-file','',0,0), (490,490,'wp-parser-source-file','',0,0), (491,491,'wp-parser-source-file','',0,0), (492,492,'wp-parser-source-file','',0,0), (493,493,'wp-parser-source-file','',0,0), (494,494,'wp-parser-source-file','',0,0), (495,495,'wp-parser-source-file','',0,0), (496,496,'wp-parser-source-file','',0,0), (497,497,'wp-parser-package','',0,0), (498,498,'wp-parser-source-file','',0,0), (499,499,'wp-parser-source-file','',0,0), (500,500,'wp-parser-source-file','',0,0), (501,501,'wp-parser-source-file','',0,0), (502,502,'wp-parser-source-file','',0,0), (503,503,'wp-parser-since','',0,0), (504,504,'wp-parser-package','',5,0), (505,505,'wp-parser-source-file','',0,0), (506,506,'wp-parser-source-file','',0,0), (507,507,'wp-parser-source-file','',0,0), (508,508,'wp-parser-source-file','',0,0), (509,509,'wp-parser-source-file','',0,0), (510,510,'wp-parser-source-file','',0,0), (511,511,'wp-parser-source-file','',0,0), (512,512,'wp-parser-source-file','',0,0), (513,513,'wp-parser-source-file','',0,0), (514,514,'wp-parser-source-file','',0,0), (515,515,'wp-parser-source-file','',0,0), (516,516,'wp-parser-source-file','',0,0), (517,517,'wp-parser-source-file','',0,0), (518,518,'wp-parser-source-file','',0,0), (519,519,'wp-parser-source-file','',0,0), (520,520,'wp-parser-since','',0,0), (521,521,'wp-parser-source-file','',0,0), (522,522,'wp-parser-source-file','',0,0), (523,523,'wp-parser-source-file','',0,0), (524,524,'wp-parser-since','',0,0), (525,525,'wp-parser-since','',0,0), (526,526,'wp-parser-source-file','',0,0), (527,527,'wp-parser-source-file','',0,0), (528,528,'wp-parser-source-file','',0,0), (529,529,'wp-parser-source-file','',0,0), (530,530,'wp-parser-source-file','',0,0), (531,531,'wp-parser-source-file','',0,0), (532,532,'wp-parser-source-file','',0,0), (533,533,'wp-parser-source-file','',0,0), (534,534,'wp-parser-source-file','',0,0), (535,535,'wp-parser-source-file','',0,0), (536,536,'wp-parser-source-file','',0,0), (537,537,'wp-parser-source-file','',0,0), (538,538,'wp-parser-source-file','',0,0), (539,539,'wp-parser-source-file','',0,0), (540,540,'wp-parser-source-file','',0,0), (541,541,'wp-parser-source-file','',0,0), (542,542,'wp-parser-source-file','',0,0), (543,543,'wp-parser-source-file','',0,0), (544,544,'wp-parser-source-file','',0,0), (545,545,'wp-parser-source-file','',0,0), (546,546,'wp-parser-source-file','',0,0), (547,547,'wp-parser-source-file','',0,0), (548,548,'wp-parser-source-file','',0,0), (549,549,'wp-parser-source-file','',0,0), (550,550,'wp-parser-source-file','',0,0), (551,551,'wp-parser-source-file','',0,0), (552,552,'wp-parser-source-file','',0,0), (553,553,'wp-parser-source-file','',0,0), (554,554,'wp-parser-since','',0,56), (555,555,'wp-parser-source-file','',0,0), (556,556,'wp-parser-source-file','',0,16), (557,557,'wp-parser-package','',5,36), (558,558,'wp-parser-source-file','',0,0), (559,559,'wp-parser-source-file','',0,0), (560,560,'wp-parser-source-file','',0,0), (561,561,'wp-parser-source-file','',0,0), (562,562,'wp-parser-source-file','',0,0), (563,563,'wp-parser-source-file','',0,17), (564,564,'wp-parser-source-file','',0,6), (565,565,'wp-parser-source-file','',0,0), (566,566,'wp-parser-source-file','',0,0), (567,567,'wp-parser-source-file','',0,0), (568,568,'wp-parser-source-file','',0,0), (569,569,'wp-parser-source-file','',0,0), (570,570,'wp-parser-source-file','',0,0), (571,571,'wp-parser-source-file','',0,0), (572,572,'wp-parser-source-file','',0,0), (573,573,'wp-parser-source-file','',0,0), (574,574,'wp-parser-source-file','',0,0), (575,575,'wp-parser-source-file','',0,0), (576,576,'wp-parser-source-file','',0,0), (577,577,'wp-parser-source-file','',0,0), (578,578,'wp-parser-source-file','',0,0), (579,579,'wp-parser-source-file','',0,0), (580,580,'wp-parser-source-file','',0,0), (581,581,'wp-parser-since','',0,0), (582,582,'wp-parser-package','',5,0), (583,583,'wp-parser-source-file','',0,0), (584,584,'wp-parser-source-file','',0,0), (585,585,'wp-parser-source-file','',0,0), (586,586,'wp-parser-source-file','',0,0), (587,587,'wp-parser-since','',0,0), (588,588,'wp-parser-source-file','',0,0), (589,589,'wp-parser-source-file','',0,0), (590,590,'wp-parser-source-file','',0,0), (591,591,'wp-parser-source-file','',0,0), (592,592,'wp-parser-source-file','',0,0), (593,593,'wp-parser-source-file','',0,0), (594,594,'wp-parser-source-file','',0,0), (595,595,'wp-parser-source-file','',0,0), (596,596,'wp-parser-source-file','',0,0), (597,597,'wp-parser-source-file','',0,0), (598,598,'wp-parser-source-file','',0,0), (599,599,'wp-parser-source-file','',0,0), (600,600,'wp-parser-source-file','',0,0), (601,601,'wp-parser-source-file','',0,0), (602,602,'wp-parser-source-file','',0,0), (603,603,'wp-parser-source-file','',0,0), (604,604,'wp-parser-since','',0,27), (605,605,'wp-parser-source-file','',0,0), (606,606,'wp-parser-source-file','',0,0), (607,607,'wp-parser-source-file','',0,0), (608,608,'wp-parser-source-file','',0,0), (609,609,'wp-parser-source-file','',0,0), (610,610,'wp-parser-source-file','',0,0), (611,611,'wp-parser-source-file','',0,0), (612,612,'wp-parser-source-file','',0,0), (613,613,'wp-parser-source-file','',0,0), (614,614,'wp-parser-source-file','',0,0), (615,615,'wp-parser-source-file','',0,0), (616,616,'wp-parser-source-file','',0,0), (617,617,'wp-parser-source-file','',0,0), (618,618,'wp-parser-source-file','',0,0), (619,619,'wp-parser-source-file','',0,0), (620,620,'wp-parser-source-file','',0,0), (621,621,'wp-parser-package','',5,26), (622,622,'wp-parser-source-file','',0,0), (623,623,'wp-parser-source-file','',0,0), (624,624,'wp-parser-source-file','',0,0), (625,625,'wp-parser-source-file','',0,5), (626,626,'wp-parser-source-file','',0,0), (627,627,'wp-parser-source-file','',0,0), (628,628,'wp-parser-source-file','',0,0), (629,629,'wp-parser-source-file','',0,0), (630,630,'wp-parser-source-file','',0,0), (631,631,'wp-parser-source-file','',0,0), (632,632,'wp-parser-source-file','',0,0), (633,633,'wp-parser-source-file','',0,0), (634,634,'wp-parser-source-file','',0,0), (635,635,'wp-parser-source-file','',0,0), (636,636,'wp-parser-source-file','',0,0), (637,637,'wp-parser-since','',0,0), (638,638,'wp-parser-package','',5,0), (639,639,'wp-parser-source-file','',0,0), (640,640,'wp-parser-source-file','',0,0), (641,641,'wp-parser-source-file','',0,0), (642,642,'wp-parser-source-file','',0,0), (643,643,'wp-parser-source-file','',0,0), (644,644,'wp-parser-source-file','',0,0), (645,645,'wp-parser-source-file','',0,0), (646,646,'wp-parser-source-file','',0,0), (647,647,'wp-parser-source-file','',0,0), (648,648,'wp-parser-source-file','',0,0), (649,649,'wp-parser-source-file','',0,0), (650,650,'wp-parser-source-file','',0,0), (651,651,'wp-parser-since','',0,0), (652,652,'wp-parser-source-file','',0,0), (653,653,'wp-parser-source-file','',0,0), (654,654,'wp-parser-source-file','',0,0), (655,655,'wp-parser-source-file','',0,0), (656,656,'wp-parser-source-file','',0,0), (657,657,'wp-parser-source-file','',0,0), (658,658,'wp-parser-source-file','',0,0), (659,659,'wp-parser-source-file','',0,0), (660,660,'wp-parser-source-file','',0,0), (661,661,'wp-parser-source-file','',0,0), (662,662,'wp-parser-source-file','',0,0), (663,663,'wp-parser-source-file','',0,0), (664,664,'wp-parser-source-file','',0,2), (665,665,'wp-parser-source-file','',0,14), (666,666,'wp-parser-source-file','',0,87), (667,667,'wp-parser-package','',5,87), (668,668,'wp-parser-since','',0,1), (669,669,'wp-parser-since','',0,14), (670,670,'wp-parser-since','',0,8), (671,671,'wp-parser-source-file','',0,0), (672,672,'wp-parser-source-file','',0,0), (673,673,'wp-parser-source-file','',0,65), (674,674,'wp-parser-package','',5,152), (675,675,'wp-parser-source-file','',0,53), (676,676,'wp-parser-since','',0,4), (677,677,'wp-parser-source-file','',0,11), (678,678,'wp-parser-package','',5,11), (679,679,'wp-parser-source-file','',0,0), (680,680,'wp-parser-source-file','',0,0), (681,681,'wp-parser-package','',0,0), (682,682,'wp-parser-source-file','',0,22), (683,683,'wp-parser-package','',5,568), (684,684,'wp-parser-source-file','',0,4), (685,685,'wp-parser-source-file','',0,7), (686,686,'wp-parser-package','',5,7), (687,687,'wp-parser-source-file','',0,34), (688,688,'wp-parser-package','',5,34), (689,689,'wp-parser-source-file','',0,6), (690,690,'wp-parser-source-file','',0,56), (691,691,'wp-parser-package','',5,56), (692,692,'wp-parser-source-file','',0,52), (693,693,'wp-parser-source-file','',0,16), (694,694,'wp-parser-source-file','',0,0), (695,695,'wp-parser-source-file','',0,0), (696,696,'wp-parser-package','',5,99), (697,697,'wp-parser-since','',0,5), (698,698,'wp-parser-source-file','',0,0), (699,699,'wp-parser-package','',0,0), (700,700,'wp-parser-source-file','',0,15), (701,701,'wp-parser-source-file','',0,20), (702,702,'wp-parser-package','',5,20), (703,703,'wp-parser-source-file','',0,0), (704,704,'wp-parser-package','',0,0), (705,705,'wp-parser-source-file','',0,0), (706,706,'wp-parser-package','',0,0), (707,707,'wp-parser-source-file','',0,0), (708,708,'wp-parser-package','',0,0), (709,709,'wp-parser-package','',708,0), (710,710,'wp-parser-source-file','',0,0), (711,711,'wp-parser-package','',0,355), (712,712,'wp-parser-package','',711,12), (713,713,'wp-parser-since','',0,24), (714,714,'wp-parser-since','',0,9), (715,715,'wp-parser-since','',0,0), (716,716,'wp-parser-since','',0,3), (717,717,'wp-parser-since','',0,0), (718,718,'wp-parser-since','',0,9), (719,719,'wp-parser-source-file','',0,0), (720,720,'wp-parser-source-file','',0,0), (721,721,'wp-parser-source-file','',0,24), (722,722,'wp-parser-package','',5,1), (723,723,'wp-parser-source-file','',0,8), (724,724,'wp-parser-source-file','',0,0), (725,725,'wp-parser-since','',0,0), (726,726,'wp-parser-source-file','',0,53), (727,727,'wp-parser-source-file','',0,0), (728,728,'wp-parser-source-file','',0,29), (729,729,'wp-parser-source-file','',0,0), (730,730,'wp-parser-source-file','',0,36), (731,731,'wp-parser-source-file','',0,17), (732,732,'wp-parser-package','',5,1), (733,733,'wp-parser-source-file','',0,14), (734,734,'wp-parser-source-file','',0,3), (735,735,'wp-parser-source-file','',0,17), (736,736,'wp-parser-package','',5,56), (737,737,'wp-parser-source-file','',0,15), (738,738,'wp-parser-source-file','',0,24), (739,739,'wp-parser-source-file','',0,42), (740,740,'wp-parser-package','',5,81), (741,741,'wp-parser-source-file','',0,14), (742,742,'wp-parser-source-file','',0,140), (743,743,'wp-parser-package','',5,140), (744,744,'wp-parser-since','',0,6), (745,745,'wp-parser-since','',0,3), (746,746,'wp-parser-source-file','',0,29), (747,747,'wp-parser-source-file','',0,15), (748,748,'wp-parser-since','',0,1), (749,749,'wp-parser-package','',0,49), (750,750,'wp-parser-source-file','',0,17), (751,751,'wp-parser-since','',0,1), (752,752,'wp-parser-source-file','',0,14), (753,753,'wp-parser-since','',0,1), (754,754,'wp-parser-source-file','',0,110), (755,755,'wp-parser-since','',0,1), (756,756,'wp-parser-source-file','',0,100), (757,757,'wp-parser-package','',5,100), (758,758,'wp-parser-source-file','',0,8), (759,759,'wp-parser-package','',0,8), (760,760,'wp-parser-source-file','',0,16), (761,761,'wp-parser-source-file','',0,11), (762,762,'wp-parser-source-file','',0,6), (763,763,'wp-parser-source-file','',0,0), (764,764,'wp-parser-source-file','',0,87), (765,765,'wp-parser-source-file','',0,166), (766,766,'wp-parser-since','',0,3), (767,767,'wp-parser-since','',0,4), (768,768,'wp-parser-since','',0,2), (769,769,'wp-parser-source-file','',0,3), (770,770,'wp-parser-source-file','',0,4), (771,771,'wp-parser-source-file','',0,3), (772,772,'wp-parser-source-file','',0,2), (773,773,'wp-parser-source-file','',0,3), (774,774,'wp-parser-source-file','',0,4), (775,775,'wp-parser-source-file','',0,46), (776,776,'wp-parser-package','',5,46), (777,777,'wp-parser-source-file','',0,124), (778,778,'wp-parser-since','',0,3), (779,779,'wp-parser-since','',0,3), (780,780,'wp-parser-since','',0,4), (781,781,'wp-parser-since','',0,1), (782,782,'wp-parser-since','',0,5), (783,783,'wp-parser-source-file','',0,165), (784,784,'wp-parser-since','',0,1), (785,785,'wp-parser-source-file','',0,8), (786,786,'wp-parser-source-file','',0,9), (787,787,'wp-parser-source-file','',0,125), (788,788,'wp-parser-since','',0,3), (789,789,'wp-parser-source-file','',0,26), (790,790,'wp-parser-since','',0,1), (791,791,'wp-parser-source-file','',0,67), (792,792,'wp-parser-source-file','',0,37), (793,793,'wp-parser-source-file','',0,16), (794,794,'wp-parser-source-file','',0,44), (795,795,'wp-parser-source-file','',0,19), (796,796,'wp-parser-source-file','',0,20), (797,797,'wp-parser-source-file','',0,13), (798,798,'wp-parser-source-file','',0,14), (799,799,'wp-parser-source-file','',0,9), (800,800,'wp-parser-source-file','',0,12), (801,801,'wp-parser-source-file','',0,26), (802,802,'wp-parser-source-file','',0,8), (803,803,'wp-parser-source-file','',0,6), (804,804,'wp-parser-source-file','',0,8), (805,805,'wp-parser-source-file','',0,26), (806,806,'wp-parser-source-file','',0,6), (807,807,'wp-parser-source-file','',0,0), (808,808,'wp-parser-source-file','',0,1), (809,809,'wp-parser-source-file','',0,39), (810,810,'wp-parser-package','',0,76), (811,811,'wp-parser-package','',810,39), (812,812,'wp-parser-source-file','',0,44), (813,813,'wp-parser-package','',5,58), (814,814,'wp-parser-since','',0,2), (815,815,'wp-parser-source-file','',0,158), (816,816,'wp-parser-since','',0,2), (817,817,'wp-parser-source-file','',0,28), (818,818,'wp-parser-source-file','',0,14), (819,819,'wp-parser-source-file','',0,4), (820,820,'wp-parser-package','',5,113), (821,821,'wp-parser-source-file','',0,109), (822,822,'wp-parser-source-file','',0,38), (823,823,'wp-parser-package','',5,38), (824,824,'wp-parser-source-file','',0,36), (825,825,'wp-parser-source-file','',0,4), (826,826,'wp-parser-source-file','',0,0), (827,827,'wp-parser-source-file','',0,15), (828,828,'wp-parser-source-file','',0,0), (829,829,'wp-parser-source-file','',0,98), (830,830,'wp-parser-since','',0,9), (831,831,'wp-parser-since','',0,1), (832,832,'wp-parser-since','',0,1), (833,833,'wp-parser-source-file','',0,14), (834,834,'wp-parser-source-file','',0,1), (835,835,'wp-parser-source-file','',0,20), (836,836,'wp-parser-package','',5,51), (837,837,'wp-parser-since','',0,2), (838,838,'wp-parser-source-file','',0,31), (839,839,'wp-parser-source-file','',0,65), (840,840,'wp-parser-package','',5,65), (841,841,'wp-parser-source-file','',0,10), (842,842,'wp-parser-source-file','',0,85), (843,843,'wp-parser-since','',0,1), (844,844,'wp-parser-source-file','',0,26), (845,845,'wp-parser-since','',0,1), (846,846,'wp-parser-source-file','',0,4), (847,847,'wp-parser-package','',0,94), (848,848,'wp-parser-package','',847,4), (849,849,'wp-parser-source-file','',0,14), (850,850,'wp-parser-package','',847,14), (851,851,'wp-parser-source-file','',0,16), (852,852,'wp-parser-package','',847,16), (853,853,'wp-parser-source-file','',0,29), (854,854,'wp-parser-package','',847,29), (855,855,'wp-parser-source-file','',0,31), (856,856,'wp-parser-package','',847,31), (857,857,'wp-parser-source-file','',0,12), (858,858,'wp-parser-package','',5,208), (859,859,'wp-parser-source-file','',0,67), (860,860,'wp-parser-source-file','',0,9), (861,861,'wp-parser-source-file','',0,196), (862,862,'wp-parser-source-file','',0,144), (863,863,'wp-parser-package','',5,144), (864,864,'wp-parser-source-file','',0,0), (865,865,'wp-parser-source-file','',0,0), (866,866,'wp-parser-source-file','',0,23), (867,867,'wp-parser-source-file','',0,61), (868,868,'wp-parser-package','',5,61), (869,869,'wp-parser-source-file','',0,0), (870,870,'wp-parser-source-file','',0,37), (871,871,'wp-parser-package','',810,37), (872,872,'wp-parser-source-file','',0,22), (873,873,'wp-parser-source-file','',0,13), (874,874,'wp-parser-package','',5,13), (875,875,'wp-parser-source-file','',0,6), (876,876,'wp-parser-source-file','',0,0), (877,877,'wp-parser-source-file','',0,2), (878,878,'wp-parser-package','',711,5), (879,879,'wp-parser-source-file','',0,7), (880,880,'wp-parser-source-file','',0,7), (881,881,'wp-parser-source-file','',0,7), (882,882,'wp-parser-source-file','',0,6), (883,883,'wp-parser-source-file','',0,8), (884,884,'wp-parser-source-file','',0,6), (885,885,'wp-parser-source-file','',0,7), (886,886,'wp-parser-source-file','',0,5), (887,887,'wp-parser-source-file','',0,1), (888,888,'wp-parser-source-file','',0,6), (889,889,'wp-parser-source-file','',0,7), (890,890,'wp-parser-source-file','',0,42), (891,891,'wp-parser-source-file','',0,1), (892,892,'wp-parser-source-file','',0,2), (893,893,'wp-parser-source-file','',0,4), (894,894,'wp-parser-source-file','',0,18), (895,895,'wp-parser-source-file','',0,28), (896,896,'wp-parser-source-file','',0,33), (897,897,'wp-parser-since','',0,1), (898,898,'wp-parser-since','',0,1), (899,899,'wp-parser-since','',0,1), (900,900,'wp-parser-since','',0,2), (901,901,'wp-parser-since','',0,1), (902,902,'wp-parser-source-file','',0,11), (903,903,'wp-parser-source-file','',0,34), (904,904,'wp-parser-source-file','',0,6), (905,905,'wp-parser-source-file','',0,11), (906,906,'wp-parser-package','',711,3), (907,907,'wp-parser-source-file','',0,13), (908,908,'wp-parser-source-file','',0,5), (909,909,'wp-parser-source-file','',0,6), (910,910,'wp-parser-source-file','',0,6), (911,911,'wp-parser-source-file','',0,19), (912,912,'wp-parser-source-file','',0,24), (913,913,'wp-parser-source-file','',0,16), (914,914,'wp-parser-source-file','',0,112), (915,915,'wp-parser-package','',5,112), (916,916,'wp-parser-source-file','',0,4), (917,917,'wp-parser-source-file','',0,21), (918,918,'wp-parser-source-file','',0,6), (919,919,'wp-parser-package','',0,20), (920,920,'wp-parser-source-file','',0,3), (921,921,'wp-parser-since','',0,1), (922,922,'wp-parser-source-file','',0,4), (923,923,'wp-parser-source-file','',0,2), (924,924,'wp-parser-source-file','',0,9), (925,925,'wp-parser-source-file','',0,15), (926,926,'wp-parser-source-file','',0,31), (927,927,'wp-parser-since','',0,2), (928,928,'wp-parser-source-file','',0,0), (929,929,'wp-parser-source-file','',0,0), (930,930,'wp-parser-source-file','',0,0), (931,931,'wp-parser-source-file','',0,0), (932,932,'wp-parser-source-file','',0,0), (933,933,'wp-parser-source-file','',0,80), (934,934,'wp-parser-source-file','',0,4), (935,935,'wp-parser-source-file','',0,0), (936,936,'wp-parser-source-file','',0,37), (937,937,'wp-parser-source-file','',0,4), (938,938,'wp-parser-source-file','',0,7), (939,939,'wp-parser-source-file','',0,29), (940,940,'wp-parser-source-file','',0,2), (941,941,'wp-parser-package','',5,2), (942,942,'wp-parser-source-file','',0,3); /*!40000 ALTER TABLE `wporg_33_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_33_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_33_termmeta`; CREATE TABLE `wporg_33_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_33_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_33_terms`; CREATE TABLE `wporg_33_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_33_terms` WRITE; /*!40000 ALTER TABLE `wporg_33_terms` DISABLE KEYS */; INSERT INTO `wporg_33_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0), (2,'index.php','index-php',0), (3,'wp-activate.php','wp-activate-php',0), (4,'MU','mu',0), (5,'WordPress','wordpress',0), (6,'3.0.0','3-0-0',0), (7,'wp-admin/about.php','wp-admin_about-php',0), (8,'wp-admin/admin-ajax.php','wp-admin_admin-ajax-php',0), (9,'2.1.0','2-1-0',0), (10,'Administration','administration',0), (11,'2.8.0','2-8-0',0), (12,'wp-admin/admin-footer.php','wp-admin_admin-footer-php',0), (13,'2.5.0','2-5-0',0), (14,'2.3.0','2-3-0',0), (15,'1.2.0','1-2-0',0), (16,'wp-admin/admin-functions.php','wp-admin_admin-functions-php',0), (17,'wp-admin/admin-header.php','wp-admin_admin-header-php',0), (18,'3.1.0','3-1-0',0), (19,'2.6.0','2-6-0',0), (20,'wp-admin/admin-post.php','wp-admin_admin-post-php',0), (21,'wp-admin/admin.php','wp-admin_admin-php',0), (22,'1.5.0','1-5-0',0), (23,'3.5.0','3-5-0',0), (24,'wp-admin/async-upload.php','wp-admin_async-upload-php',0), (25,'wp-admin/comment.php','wp-admin_comment-php',0), (26,'wp-admin/credits.php','wp-admin_credits-php',0), (27,'3.2.0','3-2-0',0), (28,'wp-admin/custom-background.php','wp-admin_custom-background-php',0), (29,'3.4.0','3-4-0',0), (30,'wp-admin/custom-header.php','wp-admin_custom-header-php',0), (31,'2.7.0','2-7-0',0), (32,'wp-admin/customize.php','wp-admin_customize-php',0), (33,'Customize','customize',0), (34,'wp-admin/edit-comments.php','wp-admin_edit-comments-php',0), (35,'wp-admin/edit-form-advanced.php','wp-admin_edit-form-advanced-php',0), (36,'3.7.0','3-7-0',0), (37,'wp-admin/edit-form-comment.php','wp-admin_edit-form-comment-php',0), (38,'wp-admin/edit-link-form.php','wp-admin_edit-link-form-php',0), (39,'wp-admin/edit-tag-form.php','wp-admin_edit-tag-form-php',0), (40,'2.9.0','2-9-0',0), (41,'wp-admin/edit-tags.php','wp-admin_edit-tags-php',0), (42,'wp-admin/edit.php','wp-admin_edit-php',0), (43,'wp-admin/export.php','wp-admin_export-php',0), (44,'wp-admin/freedoms.php','wp-admin_freedoms-php',0), (45,'wp-admin/import.php','wp-admin_import-php',0), (46,'wp-admin/includes/admin.php','wp-admin_includes_admin-php',0), (47,'wp-admin/includes/ajax-actions.php','wp-admin_includes_ajax-actions-php',0), (48,'3.6.0','3-6-0',0), (49,'3.3.0','3-3-0',0), (50,'3.8.0','3-8-0',0), (51,'3.9.0','3-9-0',0), (52,'wp-admin/includes/bookmark.php','wp-admin_includes_bookmark-php',0), (53,'2.0.0','2-0-0',0), (54,'2.2.0','2-2-0',0), (55,'wp-admin/includes/class-ftp-pure.php','wp-admin_includes_class-ftp-pure-php',0), (56,'PemFTP','pemftp',0), (57,'Pure','pure',0), (58,'wp-admin/includes/class-ftp-sockets.php','wp-admin_includes_class-ftp-sockets-php',0), (59,'Socket','socket',0), (60,'wp-admin/includes/class-ftp.php','wp-admin_includes_class-ftp-php',0), (61,'wp-admin/includes/class-pclzip.php','wp-admin_includes_class-pclzip-php',0), (62,'wp-admin/includes/class-wp-comments-list-table.php','wp-admin_includes_class-wp-comments-list-table-php',0), (63,'List_Table','list_table',0), (64,'wp-admin/includes/class-wp-filesystem-base.php','wp-admin_includes_class-wp-filesystem-base-php',0), (65,'Filesystem','filesystem',0), (66,'wp-admin/includes/class-wp-filesystem-direct.php','wp-admin_includes_class-wp-filesystem-direct-php',0), (67,'wp-admin/includes/class-wp-filesystem-ftpext.php','wp-admin_includes_class-wp-filesystem-ftpext-php',0), (68,'wp-admin/includes/class-wp-filesystem-ftpsockets.php','wp-admin_includes_class-wp-filesystem-ftpsockets-php',0), (69,'wp-admin/includes/class-wp-filesystem-ssh2.php','wp-admin_includes_class-wp-filesystem-ssh2-php',0), (70,'Unknown','unknown',0), (71,'wp-admin/includes/class-wp-importer.php','wp-admin_includes_class-wp-importer-php',0), (72,'wp-admin/includes/class-wp-links-list-table.php','wp-admin_includes_class-wp-links-list-table-php',0), (73,'wp-admin/includes/class-wp-list-table.php','wp-admin_includes_class-wp-list-table-php',0), (74,'wp-admin/includes/class-wp-media-list-table.php','wp-admin_includes_class-wp-media-list-table-php',0), (75,'wp-admin/includes/class-wp-ms-sites-list-table.php','wp-admin_includes_class-wp-ms-sites-list-table-php',0), (76,'wp-admin/includes/class-wp-ms-themes-list-table.php','wp-admin_includes_class-wp-ms-themes-list-table-php',0), (77,'wp-admin/includes/class-wp-ms-users-list-table.php','wp-admin_includes_class-wp-ms-users-list-table-php',0), (78,'wp-admin/includes/class-wp-plugin-install-list-table.php','wp-admin_includes_class-wp-plugin-install-list-table-php',0), (79,'wp-admin/includes/class-wp-plugins-list-table.php','wp-admin_includes_class-wp-plugins-list-table-php',0), (80,'wp-admin/includes/class-wp-posts-list-table.php','wp-admin_includes_class-wp-posts-list-table-php',0), (81,'2.5.1','2-5-1',0), (82,'wp-admin/includes/class-wp-terms-list-table.php','wp-admin_includes_class-wp-terms-list-table-php',0), (83,'wp-admin/includes/class-wp-theme-install-list-table.php','wp-admin_includes_class-wp-theme-install-list-table-php',0), (84,'wp-admin/includes/class-wp-themes-list-table.php','wp-admin_includes_class-wp-themes-list-table-php',0), (85,'wp-admin/includes/class-wp-upgrader-skins.php','wp-admin_includes_class-wp-upgrader-skins-php',0), (86,'Upgrader','upgrader',0), (87,'wp-admin/includes/class-wp-upgrader.php','wp-admin_includes_class-wp-upgrader-php',0), (88,'wp-admin/includes/class-wp-users-list-table.php','wp-admin_includes_class-wp-users-list-table-php',0), (89,'wp-admin/includes/comment.php','wp-admin_includes_comment-php',0), (90,'wp-admin/includes/continents-cities.php','wp-admin_includes_continents-cities-php',0), (91,'wp-admin/includes/dashboard.php','wp-admin_includes_dashboard-php',0), (92,'wp-admin/includes/deprecated.php','wp-admin_includes_deprecated-php',0), (93,'Deprecated','deprecated',0), (94,'0.71','0-71',0), (95,'wp-admin/includes/export.php','wp-admin_includes_export-php',0), (96,'wp-admin/includes/file.php','wp-admin_includes_file-php',0), (97,'wp-admin/includes/image-edit.php','wp-admin_includes_image-edit-php',0), (98,'wp-admin/includes/image.php','wp-admin_includes_image-php',0), (99,'wp-admin/includes/import.php','wp-admin_includes_import-php',0), (100,'wp-admin/includes/list-table.php','wp-admin_includes_list-table-php',0), (101,'wp-admin/includes/media.php','wp-admin_includes_media-php',0), (102,'wp-admin/includes/menu.php','wp-admin_includes_menu-php',0), (103,'wp-admin/includes/meta-boxes.php','wp-admin_includes_meta-boxes-php',0), (104,'2.0.5','2-0-5',0), (105,'content/mu-plugins/sandbox-functionality.php','content_mu-plugins_sandbox-functionality-php',0), (106,'content/plugins/wp-parser/lib/class-command.php','content_plugins_wp-parser_lib_class-command-php',0), (107,'content/plugins/wp-parser/lib/class-file-reflector.php','content_plugins_wp-parser_lib_class-file-reflector-php',0), (108,'content/plugins/wp-parser/lib/class-function-call-reflector.php','content_plugins_wp-parser_lib_class-function-call-reflector-php',0), (109,'content/plugins/wp-parser/lib/class-hook-reflector.php','content_plugins_wp-parser_lib_class-hook-reflector-php',0), (110,'content/plugins/wp-parser/lib/class-importer.php','content_plugins_wp-parser_lib_class-importer-php',0), (111,'content/plugins/wp-parser/lib/class-plugin.php','content_plugins_wp-parser_lib_class-plugin-php',0), (112,'content/plugins/wp-parser/lib/class-pretty-printer.php','content_plugins_wp-parser_lib_class-pretty-printer-php',0), (113,'content/plugins/wp-parser/lib/runner.php','content_plugins_wp-parser_lib_runner-php',0), (114,'content/plugins/wp-parser/lib/template.php','content_plugins_wp-parser_lib_template-php',0), (115,'content/plugins/wp-parser/plugin.php','content_plugins_wp-parser_plugin-php',0), (116,'content/plugins/wp-parser/vendor/autoload.php','content_plugins_wp-parser_vendor_autoload-php',0), (117,'content/plugins/wp-parser/vendor/composer/autoload_classmap.php','content_plugins_wp-parser_vendor_composer_autoload_classmap-php',0), (118,'content/plugins/wp-parser/vendor/composer/autoload_files.php','content_plugins_wp-parser_vendor_composer_autoload_files-php',0), (119,'content/plugins/wp-parser/vendor/composer/autoload_namespaces.php','content_plugins_wp-parser_vendor_composer_autoload_namespaces-php',0), (120,'content/plugins/wp-parser/vendor/composer/autoload_psr4.php','content_plugins_wp-parser_vendor_composer_autoload_psr4-php',0), (121,'content/plugins/wp-parser/vendor/composer/autoload_real.php','content_plugins_wp-parser_vendor_composer_autoload_real-php',0), (122,'content/plugins/wp-parser/vendor/composer/ClassLoader.php','content_plugins_wp-parser_vendor_composer_classloader-php',0), (123,'content/plugins/wp-parser/vendor/composer/installers/src/bootstrap.php','content_plugins_wp-parser_vendor_composer_installers_src_bootstrap-php',0), (124,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/AglInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_aglinstaller-php',0), (125,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_annotatecmsinstaller-php',0), (126,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_baseinstaller-php',0), (127,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_bitrixinstaller-php',0), (128,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_cakephpinstaller-php',0), (129,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_codeigniterinstaller-php',0), (130,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_concrete5installer-php',0), (131,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_craftinstaller-php',0), (132,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_croogoinstaller-php',0), (133,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_dolibarrinstaller-php',0), (134,'ComposerInstallers','composerinstallers',0), (135,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_drupalinstaller-php',0), (136,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_elgginstaller-php',0), (137,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_fuelinstaller-php',0), (138,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_huradinstaller-php',0), (139,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/Installer.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_installer-php',0), (140,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_joomlainstaller-php',0), (141,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_kirbyinstaller-php',0), (142,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_kohanainstaller-php',0), (143,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_laravelinstaller-php',0), (144,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_lithiuminstaller-php',0), (145,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_magentoinstaller-php',0), (146,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_makoinstaller-php',0), (147,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_mediawikiinstaller-php',0), (148,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_microweberinstaller-php',0), (149,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_moduleworkinstaller-php',0), (150,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_modxevoinstaller-php',0), (151,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_moodleinstaller-php',0), (152,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_octoberinstaller-php',0), (153,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_oxidinstaller-php',0), (154,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_phpbbinstaller-php',0), (155,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_pimcoreinstaller-php',0), (156,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_piwikinstaller-php',0), (157,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_ppiinstaller-php',0), (158,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_roundcubeinstaller-php',0), (159,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_shopwareinstaller-php',0), (160,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_silverstripeinstaller-php',0), (161,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_symfony1installer-php',0), (162,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_tuskinstaller-php',0), (163,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_typo3cmsinstaller-php',0), (164,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_typo3flowinstaller-php',0), (165,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_wolfcmsinstaller-php',0), (166,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_wordpressinstaller-php',0), (167,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_zendinstaller-php',0), (168,'content/plugins/wp-parser/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php','content_plugins_wp-parser_vendor_composer_installers_src_composer_installers_zikulainstaller-php',0), (169,'content/plugins/wp-parser/vendor/composer/installers/tests/bootstrap.php','content_plugins_wp-parser_vendor_composer_installers_tests_bootstrap-php',0), (170,'content/plugins/wp-parser/vendor/composer/installers/tests/Composer/Installers/Test/CakePHPInstallerTest.php','content_plugins_wp-parser_vendor_composer_installers_tests_composer_installers_test_cakephpinstallertest-php',0), (171,'content/plugins/wp-parser/vendor/composer/installers/tests/Composer/Installers/Test/InstallerTest.php','content_plugins_wp-parser_vendor_composer_installers_tests_composer_installers_test_installertest-php',0), (172,'content/plugins/wp-parser/vendor/composer/installers/tests/Composer/Installers/Test/MediaWikiInstallerTest.php','content_plugins_wp-parser_vendor_composer_installers_tests_composer_installers_test_mediawikiinstallertest-php',0), (173,'content/plugins/wp-parser/vendor/composer/installers/tests/Composer/Installers/Test/PimcoreInstallerTest.php','content_plugins_wp-parser_vendor_composer_installers_tests_composer_installers_test_pimcoreinstallertest-php',0), (174,'content/plugins/wp-parser/vendor/composer/installers/tests/Composer/Installers/Test/PiwikInstallerTest.php','content_plugins_wp-parser_vendor_composer_installers_tests_composer_installers_test_piwikinstallertest-php',0), (175,'ComposerInstallersTest','composerinstallerstest',0), (176,'content/plugins/wp-parser/vendor/composer/installers/tests/Composer/Installers/Test/TestCase.php','content_plugins_wp-parser_vendor_composer_installers_tests_composer_installers_test_testcase-php',0), (177,'content/plugins/wp-parser/vendor/erusev/parsedown/Parsedown.php','content_plugins_wp-parser_vendor_erusev_parsedown_parsedown-php',0), (178,'content/plugins/wp-parser/vendor/erusev/parsedown/tests/Test.php','content_plugins_wp-parser_vendor_erusev_parsedown_tests_test-php',0), (179,'content/plugins/wp-parser/vendor/nikic/php-parser/grammar/analyze.php','content_plugins_wp-parser_vendor_nikic_php-parser_grammar_analyze-php',0), (180,'content/plugins/wp-parser/vendor/nikic/php-parser/grammar/rebuildParser.php','content_plugins_wp-parser_vendor_nikic_php-parser_grammar_rebuildparser-php',0), (181,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/bootstrap.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_bootstrap-php',0), (182,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Autoloader.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_autoloader-php',0), (183,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Builder/Class.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_builder_class-php',0), (184,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Builder/Function.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_builder_function-php',0), (185,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Builder/Interface.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_builder_interface-php',0), (186,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Builder/Method.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_builder_method-php',0), (187,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Builder/Param.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_builder_param-php',0), (188,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Builder/Property.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_builder_property-php',0), (189,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Builder.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_builder-php',0), (190,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/BuilderAbstract.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_builderabstract-php',0), (191,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/BuilderFactory.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_builderfactory-php',0), (192,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Comment/Doc.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_comment_doc-php',0), (193,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Comment.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_comment-php',0), (194,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Error.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_error-php',0), (195,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Lexer/Emulative.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_lexer_emulative-php',0), (196,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Lexer.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_lexer-php',0), (197,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Arg.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_arg-php',0), (198,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Const.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_const-php',0), (199,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Array.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_array-php',0), (200,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ArrayDimFetch.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_arraydimfetch-php',0), (201,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ArrayItem.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_arrayitem-php',0), (202,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Assign.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_assign-php',0), (203,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseAnd.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_assignbitwiseand-php',0), (204,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseOr.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_assignbitwiseor-php',0), (205,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignBitwiseXor.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_assignbitwisexor-php',0), (206,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignConcat.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_assignconcat-php',0), (207,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignDiv.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_assigndiv-php',0), (208,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMinus.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_assignminus-php',0), (209,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMod.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_assignmod-php',0), (210,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignMul.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_assignmul-php',0), (211,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignPlus.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_assignplus-php',0), (212,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignRef.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_assignref-php',0), (213,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignShiftLeft.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_assignshiftleft-php',0), (214,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/AssignShiftRight.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_assignshiftright-php',0), (215,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseAnd.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_bitwiseand-php',0), (216,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseNot.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_bitwisenot-php',0), (217,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseOr.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_bitwiseor-php',0), (218,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BitwiseXor.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_bitwisexor-php',0), (219,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanAnd.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_booleanand-php',0), (220,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanNot.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_booleannot-php',0), (221,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/BooleanOr.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_booleanor-php',0), (222,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Array.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_cast_array-php',0), (223,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Bool.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_cast_bool-php',0), (224,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Double.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_cast_double-php',0), (225,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Int.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_cast_int-php',0), (226,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Object.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_cast_object-php',0), (227,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/String.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_cast_string-php',0), (228,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Unset.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_cast_unset-php',0), (229,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_cast-php',0), (230,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ClassConstFetch.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_classconstfetch-php',0), (231,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Clone.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_clone-php',0), (232,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Closure.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_closure-php',0), (233,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ClosureUse.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_closureuse-php',0), (234,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Concat.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_concat-php',0), (235,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ConstFetch.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_constfetch-php',0), (236,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Div.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_div-php',0), (237,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Empty.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_empty-php',0), (238,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Equal.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_equal-php',0), (239,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ErrorSuppress.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_errorsuppress-php',0), (240,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Eval.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_eval-php',0), (241,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Exit.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_exit-php',0), (242,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/FuncCall.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_funccall-php',0), (243,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Greater.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_greater-php',0), (244,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/GreaterOrEqual.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_greaterorequal-php',0), (245,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Identical.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_identical-php',0), (246,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Include.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_include-php',0), (247,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Instanceof.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_instanceof-php',0), (248,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Isset.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_isset-php',0), (249,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/List.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_list-php',0), (250,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/LogicalAnd.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_logicaland-php',0), (251,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/LogicalOr.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_logicalor-php',0), (252,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/LogicalXor.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_logicalxor-php',0), (253,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/MethodCall.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_methodcall-php',0), (254,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Minus.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_minus-php',0), (255,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Mod.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_mod-php',0), (256,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Mul.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_mul-php',0), (257,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/New.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_new-php',0), (258,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/NotEqual.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_notequal-php',0), (259,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/NotIdentical.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_notidentical-php',0), (260,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Plus.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_plus-php',0), (261,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/PostDec.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_postdec-php',0), (262,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/PostInc.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_postinc-php',0), (263,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/PreDec.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_predec-php',0), (264,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/PreInc.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_preinc-php',0), (265,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Print.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_print-php',0), (266,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/PropertyFetch.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_propertyfetch-php',0), (267,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ShellExec.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_shellexec-php',0), (268,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ShiftLeft.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_shiftleft-php',0), (269,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/ShiftRight.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_shiftright-php',0), (270,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Smaller.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_smaller-php',0), (271,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/SmallerOrEqual.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_smallerorequal-php',0), (272,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/StaticCall.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_staticcall-php',0), (273,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/StaticPropertyFetch.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_staticpropertyfetch-php',0), (274,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Ternary.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_ternary-php',0), (275,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/UnaryMinus.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_unaryminus-php',0), (276,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/UnaryPlus.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_unaryplus-php',0), (277,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Variable.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_variable-php',0), (278,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Yield.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr_yield-php',0), (279,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Expr.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_expr-php',0), (280,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Name/FullyQualified.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_name_fullyqualified-php',0), (281,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Name/Relative.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_name_relative-php',0), (282,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Name.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_name-php',0), (283,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Param.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_param-php',0), (284,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Scalar/ClassConst.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_scalar_classconst-php',0), (285,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Scalar/DirConst.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_scalar_dirconst-php',0), (286,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Scalar/DNumber.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_scalar_dnumber-php',0), (287,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Scalar/Encapsed.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_scalar_encapsed-php',0), (288,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Scalar/FileConst.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_scalar_fileconst-php',0), (289,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Scalar/FuncConst.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_scalar_funcconst-php',0), (290,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Scalar/LineConst.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_scalar_lineconst-php',0), (291,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Scalar/LNumber.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_scalar_lnumber-php',0), (292,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Scalar/MethodConst.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_scalar_methodconst-php',0), (293,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Scalar/NSConst.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_scalar_nsconst-php',0), (294,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Scalar/String.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_scalar_string-php',0), (295,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Scalar/TraitConst.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_scalar_traitconst-php',0), (296,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Scalar.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_scalar-php',0), (297,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Break.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_break-php',0), (298,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Case.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_case-php',0), (299,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Catch.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_catch-php',0), (300,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Class.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_class-php',0), (301,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/ClassConst.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_classconst-php',0), (302,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/ClassMethod.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_classmethod-php',0), (303,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Const.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_const-php',0), (304,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Continue.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_continue-php',0), (305,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Declare.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_declare-php',0), (306,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/DeclareDeclare.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_declaredeclare-php',0), (307,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Do.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_do-php',0), (308,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Echo.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_echo-php',0), (309,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Else.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_else-php',0), (310,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/ElseIf.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_elseif-php',0), (311,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/For.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_for-php',0), (312,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Foreach.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_foreach-php',0), (313,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Function.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_function-php',0), (314,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Global.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_global-php',0), (315,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Goto.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_goto-php',0), (316,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/HaltCompiler.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_haltcompiler-php',0), (317,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/If.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_if-php',0), (318,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/InlineHTML.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_inlinehtml-php',0), (319,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Interface.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_interface-php',0), (320,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Label.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_label-php',0), (321,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Namespace.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_namespace-php',0), (322,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Property.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_property-php',0), (323,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/PropertyProperty.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_propertyproperty-php',0), (324,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Return.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_return-php',0), (325,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Static.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_static-php',0), (326,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/StaticVar.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_staticvar-php',0), (327,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Switch.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_switch-php',0), (328,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Throw.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_throw-php',0), (329,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Trait.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_trait-php',0), (330,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/TraitUse.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_traituse-php',0), (331,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/TraitUseAdaptation/Alias.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_traituseadaptation_alias-php',0), (332,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/TraitUseAdaptation/Precedence.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_traituseadaptation_precedence-php',0), (333,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/TraitUseAdaptation.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_traituseadaptation-php',0), (334,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/TryCatch.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_trycatch-php',0), (335,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Unset.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_unset-php',0), (336,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Use.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_use-php',0), (337,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/UseUse.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_useuse-php',0), (338,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/While.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt_while-php',0), (339,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node_stmt-php',0), (340,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Node.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_node-php',0), (341,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/NodeAbstract.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_nodeabstract-php',0), (342,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/NodeDumper.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_nodedumper-php',0), (343,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/NodeTraverser.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_nodetraverser-php',0), (344,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/NodeTraverserInterface.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_nodetraverserinterface-php',0), (345,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/NodeVisitor/NameResolver.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_nodevisitor_nameresolver-php',0), (346,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/NodeVisitor.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_nodevisitor-php',0), (347,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/NodeVisitorAbstract.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_nodevisitorabstract-php',0), (348,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/Parser.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_parser-php',0), (349,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/PrettyPrinter/Default.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_prettyprinter_default-php',0), (350,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/PrettyPrinter/Zend.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_prettyprinter_zend-php',0), (351,'content/plugins/wp-parser/vendor/nikic/php-parser/lib/PHPParser/PrettyPrinterAbstract.php','content_plugins_wp-parser_vendor_nikic_php-parser_lib_phpparser_prettyprinterabstract-php',0), (352,'1.0.1','1-0-1',0), (353,'wp-admin/includes/misc.php','wp-admin_includes_misc-php',0), (354,'3.9','3-9',0), (355,'wp-admin/includes/ms-deprecated.php','wp-admin_includes_ms-deprecated-php',0), (356,'wp-admin/includes/ms.php','wp-admin_includes_ms-php',0), (357,'Multisite','multisite',0), (358,'wp-admin/includes/nav-menu.php','wp-admin_includes_nav-menu-php',0), (359,'wp-admin/includes/plugin-install.php','wp-admin_includes_plugin-install-php',0), (360,'wp-admin/includes/plugin.php','wp-admin_includes_plugin-php',0), (361,'wp-admin/includes/post.php','wp-admin_includes_post-php',0), (362,'2.8.5','2-8-5',0), (363,'Post_Revisions','post_revisions',0), (364,'wp-admin/includes/revision.php','wp-admin_includes_revision-php',0), (365,'wp-admin/includes/schema.php','wp-admin_includes_schema-php',0), (366,'wp-admin/includes/screen.php','wp-admin_includes_screen-php',0), (367,'wp-admin/includes/taxonomy.php','wp-admin_includes_taxonomy-php',0), (368,'wp-admin/includes/template.php','wp-admin_includes_template-php',0), (369,'wp-admin/includes/theme-install.php','wp-admin_includes_theme-install-php',0), (370,'wp-admin/includes/theme.php','wp-admin_includes_theme-php',0), (371,'wp-admin/includes/update-core.php','wp-admin_includes_update-core-php',0), (372,'wp-admin/includes/update.php','wp-admin_includes_update-php',0), (373,'wp-admin/includes/upgrade.php','wp-admin_includes_upgrade-php',0), (374,'1.0.0','1-0-0',0), (375,'2.5.2','2-5-2',0), (376,'3.7.2','3-7-2',0), (377,'1.5.1','1-5-1',0), (378,'wp-admin/includes/user.php','wp-admin_includes_user-php',0), (379,'wp-admin/includes/widgets.php','wp-admin_includes_widgets-php',0), (380,'wp-admin/index.php','wp-admin_index-php',0), (381,'wp-admin/install-helper.php','wp-admin_install-helper-php',0), (382,'Plugin','plugin',0), (383,'wp-admin/install.php','wp-admin_install-php',0), (384,'wp-admin/link-add.php','wp-admin_link-add-php',0), (385,'wp-admin/link-manager.php','wp-admin_link-manager-php',0), (386,'wp-admin/link-parse-opml.php','wp-admin_link-parse-opml-php',0), (387,'wp-admin/link.php','wp-admin_link-php',0), (388,'wp-admin/load-scripts.php','wp-admin_load-scripts-php',0), (389,'wp-admin/load-styles.php','wp-admin_load-styles-php',0), (390,'wp-admin/maint/repair.php','wp-admin_maint_repair-php',0), (391,'Database','database',0), (392,'wp-admin/media-new.php','wp-admin_media-new-php',0), (393,'wp-admin/media-upload.php','wp-admin_media-upload-php',0), (394,'wp-admin/media.php','wp-admin_media-php',0), (395,'wp-admin/menu-header.php','wp-admin_menu-header-php',0), (396,'wp-admin/menu.php','wp-admin_menu-php',0), (397,'wp-admin/moderation.php','wp-admin_moderation-php',0), (398,'wp-admin/ms-admin.php','wp-admin_ms-admin-php',0), (399,'wp-admin/ms-delete-site.php','wp-admin_ms-delete-site-php',0), (400,'wp-admin/ms-edit.php','wp-admin_ms-edit-php',0), (401,'wp-admin/ms-options.php','wp-admin_ms-options-php',0), (402,'wp-admin/ms-sites.php','wp-admin_ms-sites-php',0), (403,'wp-admin/ms-themes.php','wp-admin_ms-themes-php',0), (404,'wp-admin/ms-upgrade-network.php','wp-admin_ms-upgrade-network-php',0), (405,'wp-admin/ms-users.php','wp-admin_ms-users-php',0), (406,'wp-admin/my-sites.php','wp-admin_my-sites-php',0), (407,'wp-admin/nav-menus.php','wp-admin_nav-menus-php',0), (408,'wp-admin/network/about.php','wp-admin_network_about-php',0), (409,'wp-admin/network/admin.php','wp-admin_network_admin-php',0), (410,'wp-admin/network/credits.php','wp-admin_network_credits-php',0), (411,'wp-admin/network/edit.php','wp-admin_network_edit-php',0), (412,'wp-admin/network/freedoms.php','wp-admin_network_freedoms-php',0), (413,'wp-admin/network/index.php','wp-admin_network_index-php',0), (414,'wp-admin/network/menu.php','wp-admin_network_menu-php',0), (415,'wp-admin/network/plugin-editor.php','wp-admin_network_plugin-editor-php',0), (416,'wp-admin/network/plugin-install.php','wp-admin_network_plugin-install-php',0), (417,'wp-admin/network/plugins.php','wp-admin_network_plugins-php',0), (418,'wp-admin/network/profile.php','wp-admin_network_profile-php',0), (419,'wp-admin/network/settings.php','wp-admin_network_settings-php',0), (420,'wp-admin/network/setup.php','wp-admin_network_setup-php',0), (421,'wp-admin/network/site-info.php','wp-admin_network_site-info-php',0), (422,'wp-admin/network/site-new.php','wp-admin_network_site-new-php',0), (423,'wp-admin/network/site-settings.php','wp-admin_network_site-settings-php',0), (424,'wp-admin/network/site-themes.php','wp-admin_network_site-themes-php',0), (425,'wp-admin/network/site-users.php','wp-admin_network_site-users-php',0), (426,'wp-admin/network/sites.php','wp-admin_network_sites-php',0), (427,'wp-admin/network/theme-editor.php','wp-admin_network_theme-editor-php',0), (428,'wp-admin/network/theme-install.php','wp-admin_network_theme-install-php',0), (429,'wp-admin/network/themes.php','wp-admin_network_themes-php',0), (430,'wp-admin/network/update-core.php','wp-admin_network_update-core-php',0), (431,'wp-admin/network/update.php','wp-admin_network_update-php',0), (432,'wp-admin/network/upgrade.php','wp-admin_network_upgrade-php',0), (433,'wp-admin/network/user-edit.php','wp-admin_network_user-edit-php',0), (434,'wp-admin/network/user-new.php','wp-admin_network_user-new-php',0), (435,'wp-admin/network/users.php','wp-admin_network_users-php',0), (436,'wp-admin/network.php','wp-admin_network-php',0), (437,'wp-admin/options-discussion.php','wp-admin_options-discussion-php',0), (438,'wp-admin/options-general.php','wp-admin_options-general-php',0), (439,'wp-admin/options-head.php','wp-admin_options-head-php',0), (440,'wp-admin/options-media.php','wp-admin_options-media-php',0), (441,'wp-admin/options-permalink.php','wp-admin_options-permalink-php',0), (442,'wp-admin/options-reading.php','wp-admin_options-reading-php',0), (443,'wp-admin/options-writing.php','wp-admin_options-writing-php',0), (444,'wp-admin/options.php','wp-admin_options-php',0), (445,'wp-admin/plugin-editor.php','wp-admin_plugin-editor-php',0), (446,'wp-admin/plugin-install.php','wp-admin_plugin-install-php',0), (447,'wp-admin/plugins.php','wp-admin_plugins-php',0), (448,'wp-admin/post-new.php','wp-admin_post-new-php',0), (449,'wp-admin/post.php','wp-admin_post-php',0), (450,'wp-admin/press-this.php','wp-admin_press-this-php',0), (451,'Press_This','press_this',0), (452,'wp-admin/profile.php','wp-admin_profile-php',0), (453,'wp-admin/revision.php','wp-admin_revision-php',0), (454,'wp-admin/setup-config.php','wp-admin_setup-config-php',0), (455,'wp-admin/theme-editor.php','wp-admin_theme-editor-php',0), (456,'wp-admin/theme-install.php','wp-admin_theme-install-php',0), (457,'wp-admin/themes.php','wp-admin_themes-php',0), (458,'wp-admin/tools.php','wp-admin_tools-php',0), (459,'wp-admin/update-core.php','wp-admin_update-core-php',0), (460,'wp-admin/update.php','wp-admin_update-php',0), (461,'wp-admin/upgrade-functions.php','wp-admin_upgrade-functions-php',0), (462,'wp-admin/upgrade.php','wp-admin_upgrade-php',0), (463,'wp-admin/upload.php','wp-admin_upload-php',0), (464,'wp-admin/user/about.php','wp-admin_user_about-php',0), (465,'wp-admin/user/admin.php','wp-admin_user_admin-php',0), (466,'wp-admin/user/credits.php','wp-admin_user_credits-php',0), (467,'wp-admin/user/freedoms.php','wp-admin_user_freedoms-php',0), (468,'wp-admin/user/index.php','wp-admin_user_index-php',0), (469,'wp-admin/user/menu.php','wp-admin_user_menu-php',0), (470,'wp-admin/user/profile.php','wp-admin_user_profile-php',0), (471,'wp-admin/user/user-edit.php','wp-admin_user_user-edit-php',0), (472,'wp-admin/user-edit.php','wp-admin_user-edit-php',0), (473,'wp-admin/user-new.php','wp-admin_user-new-php',0), (474,'2.0.3','2-0-3',0), (475,'wp-admin/users.php','wp-admin_users-php',0), (476,'wp-admin/widgets.php','wp-admin_widgets-php',0), (477,'wp-blog-header.php','wp-blog-header-php',0), (478,'wp-comments-post.php','wp-comments-post-php',0), (479,'wp-config-sample.php','wp-config-sample-php',0), (480,'wp-content/index.php','wp-content_index-php',0), (481,'wp-content/plugins/akismet/akismet.php','wp-content_plugins_akismet_akismet-php',0), (482,'wp-content/plugins/akismet/class.akismet-admin.php','wp-content_plugins_akismet_class-akismet-admin-php',0), (483,'4.0.0','4-0-0',0), (484,'4.0','4-0',0), (485,'wp-content/plugins/akismet/class.akismet-widget.php','wp-content_plugins_akismet_class-akismet-widget-php',0), (486,'Akismet','akismet',0), (487,'wp-content/plugins/akismet/class.akismet.php','wp-content_plugins_akismet_class-akismet-php',0), (488,'wp-content/plugins/akismet/index.php','wp-content_plugins_akismet_index-php',0), (489,'wp-content/plugins/akismet/views/config.php','wp-content_plugins_akismet_views_config-php',0), (490,'wp-content/plugins/akismet/views/get.php','wp-content_plugins_akismet_views_get-php',0), (491,'wp-content/plugins/akismet/views/notice.php','wp-content_plugins_akismet_views_notice-php',0), (492,'wp-content/plugins/akismet/views/start.php','wp-content_plugins_akismet_views_start-php',0), (493,'wp-content/plugins/akismet/views/stats.php','wp-content_plugins_akismet_views_stats-php',0), (494,'wp-content/plugins/akismet/views/strict.php','wp-content_plugins_akismet_views_strict-php',0), (495,'wp-content/plugins/akismet/wrapper.php','wp-content_plugins_akismet_wrapper-php',0), (496,'wp-content/plugins/hello.php','wp-content_plugins_hello-php',0), (497,'Hello_Dolly','hello_dolly',0), (498,'wp-content/plugins/index.php','wp-content_plugins_index-php',0), (499,'wp-content/themes/index.php','wp-content_themes_index-php',0), (500,'wp-content/themes/twentyeleven/404.php','wp-content_themes_twentyeleven_404-php',0), (501,'wp-content/themes/twentyeleven/archive.php','wp-content_themes_twentyeleven_archive-php',0), (502,'wp-content/themes/twentyeleven/author.php','wp-content_themes_twentyeleven_author-php',0), (503,'Twenty Eleven 1.0','twenty-eleven-1-0',0), (504,'Twenty_Eleven','twenty_eleven',0), (505,'wp-content/themes/twentyeleven/category.php','wp-content_themes_twentyeleven_category-php',0), (506,'wp-content/themes/twentyeleven/comments.php','wp-content_themes_twentyeleven_comments-php',0), (507,'wp-content/themes/twentyeleven/content-aside.php','wp-content_themes_twentyeleven_content-aside-php',0), (508,'wp-content/themes/twentyeleven/content-featured.php','wp-content_themes_twentyeleven_content-featured-php',0), (509,'wp-content/themes/twentyeleven/content-gallery.php','wp-content_themes_twentyeleven_content-gallery-php',0), (510,'wp-content/themes/twentyeleven/content-image.php','wp-content_themes_twentyeleven_content-image-php',0), (511,'wp-content/themes/twentyeleven/content-intro.php','wp-content_themes_twentyeleven_content-intro-php',0), (512,'wp-content/themes/twentyeleven/content-link.php','wp-content_themes_twentyeleven_content-link-php',0), (513,'wp-content/themes/twentyeleven/content-page.php','wp-content_themes_twentyeleven_content-page-php',0), (514,'wp-content/themes/twentyeleven/content-quote.php','wp-content_themes_twentyeleven_content-quote-php',0), (515,'wp-content/themes/twentyeleven/content-single.php','wp-content_themes_twentyeleven_content-single-php',0), (516,'wp-content/themes/twentyeleven/content-status.php','wp-content_themes_twentyeleven_content-status-php',0), (517,'wp-content/themes/twentyeleven/content.php','wp-content_themes_twentyeleven_content-php',0), (518,'wp-content/themes/twentyeleven/footer.php','wp-content_themes_twentyeleven_footer-php',0), (519,'wp-content/themes/twentyeleven/functions.php','wp-content_themes_twentyeleven_functions-php',0), (520,'Twenty Eleven 1.6','twenty-eleven-1-6',0), (521,'wp-content/themes/twentyeleven/header.php','wp-content_themes_twentyeleven_header-php',0), (522,'wp-content/themes/twentyeleven/image.php','wp-content_themes_twentyeleven_image-php',0), (523,'wp-content/themes/twentyeleven/inc/theme-options.php','wp-content_themes_twentyeleven_inc_theme-options-php',0), (524,'Twenty Eleven 1.3','twenty-eleven-1-3',0), (525,'Twenty Eleven 1.2','twenty-eleven-1-2',0), (526,'wp-content/themes/twentyeleven/inc/widgets.php','wp-content_themes_twentyeleven_inc_widgets-php',0), (527,'wp-content/themes/twentyeleven/index.php','wp-content_themes_twentyeleven_index-php',0), (528,'wp-content/themes/twentyeleven/page.php','wp-content_themes_twentyeleven_page-php',0), (529,'wp-content/themes/twentyeleven/search.php','wp-content_themes_twentyeleven_search-php',0), (530,'wp-content/themes/twentyeleven/searchform.php','wp-content_themes_twentyeleven_searchform-php',0), (531,'wp-content/themes/twentyeleven/showcase.php','wp-content_themes_twentyeleven_showcase-php',0), (532,'wp-content/themes/twentyeleven/sidebar-footer.php','wp-content_themes_twentyeleven_sidebar-footer-php',0), (533,'wp-content/themes/twentyeleven/sidebar-page.php','wp-content_themes_twentyeleven_sidebar-page-php',0), (534,'wp-content/themes/twentyeleven/sidebar.php','wp-content_themes_twentyeleven_sidebar-php',0), (535,'wp-content/themes/twentyeleven/single.php','wp-content_themes_twentyeleven_single-php',0), (536,'wp-content/themes/twentyeleven/tag.php','wp-content_themes_twentyeleven_tag-php',0), (537,'wp-content/themes/twentyfourteen/404.php','wp-content_themes_twentyfourteen_404-php',0), (538,'wp-content/themes/twentyfourteen/archive.php','wp-content_themes_twentyfourteen_archive-php',0), (539,'wp-content/themes/twentyfourteen/author.php','wp-content_themes_twentyfourteen_author-php',0), (540,'wp-content/themes/twentyfourteen/category.php','wp-content_themes_twentyfourteen_category-php',0), (541,'wp-content/themes/twentyfourteen/comments.php','wp-content_themes_twentyfourteen_comments-php',0), (542,'wp-content/themes/twentyfourteen/content-aside.php','wp-content_themes_twentyfourteen_content-aside-php',0), (543,'wp-content/themes/twentyfourteen/content-audio.php','wp-content_themes_twentyfourteen_content-audio-php',0), (544,'wp-content/themes/twentyfourteen/content-featured-post.php','wp-content_themes_twentyfourteen_content-featured-post-php',0), (545,'wp-content/themes/twentyfourteen/content-gallery.php','wp-content_themes_twentyfourteen_content-gallery-php',0), (546,'wp-content/themes/twentyfourteen/content-image.php','wp-content_themes_twentyfourteen_content-image-php',0), (547,'wp-content/themes/twentyfourteen/content-link.php','wp-content_themes_twentyfourteen_content-link-php',0), (548,'wp-content/themes/twentyfourteen/content-none.php','wp-content_themes_twentyfourteen_content-none-php',0), (549,'wp-content/themes/twentyfourteen/content-page.php','wp-content_themes_twentyfourteen_content-page-php',0), (550,'wp-content/themes/twentyfourteen/content-quote.php','wp-content_themes_twentyfourteen_content-quote-php',0), (551,'wp-content/themes/twentyfourteen/content-video.php','wp-content_themes_twentyfourteen_content-video-php',0), (552,'wp-content/themes/twentyfourteen/content.php','wp-content_themes_twentyfourteen_content-php',0), (553,'wp-content/themes/twentyfourteen/featured-content.php','wp-content_themes_twentyfourteen_featured-content-php',0), (554,'Twenty Fourteen 1.0','twenty-fourteen-1-0',0), (555,'wp-content/themes/twentyfourteen/footer.php','wp-content_themes_twentyfourteen_footer-php',0), (556,'wp-content/themes/twentyfourteen/functions.php','wp-content_themes_twentyfourteen_functions-php',0), (557,'Twenty_Fourteen','twenty_fourteen',0), (558,'wp-content/themes/twentyfourteen/header.php','wp-content_themes_twentyfourteen_header-php',0), (559,'wp-content/themes/twentyfourteen/image.php','wp-content_themes_twentyfourteen_image-php',0), (560,'wp-content/themes/twentyfourteen/inc/back-compat.php','wp-content_themes_twentyfourteen_inc_back-compat-php',0), (561,'wp-content/themes/twentyfourteen/inc/custom-header.php','wp-content_themes_twentyfourteen_inc_custom-header-php',0), (562,'wp-content/themes/twentyfourteen/inc/customizer.php','wp-content_themes_twentyfourteen_inc_customizer-php',0), (563,'wp-content/themes/twentyfourteen/inc/featured-content.php','wp-content_themes_twentyfourteen_inc_featured-content-php',0), (564,'wp-content/themes/twentyfourteen/inc/template-tags.php','wp-content_themes_twentyfourteen_inc_template-tags-php',0), (565,'wp-content/themes/twentyfourteen/inc/widgets.php','wp-content_themes_twentyfourteen_inc_widgets-php',0), (566,'wp-content/themes/twentyfourteen/index.php','wp-content_themes_twentyfourteen_index-php',0), (567,'wp-content/themes/twentyfourteen/page-templates/contributors.php','wp-content_themes_twentyfourteen_page-templates_contributors-php',0), (568,'wp-content/themes/twentyfourteen/page-templates/full-width.php','wp-content_themes_twentyfourteen_page-templates_full-width-php',0), (569,'wp-content/themes/twentyfourteen/page.php','wp-content_themes_twentyfourteen_page-php',0), (570,'wp-content/themes/twentyfourteen/search.php','wp-content_themes_twentyfourteen_search-php',0), (571,'wp-content/themes/twentyfourteen/sidebar-content.php','wp-content_themes_twentyfourteen_sidebar-content-php',0), (572,'wp-content/themes/twentyfourteen/sidebar-footer.php','wp-content_themes_twentyfourteen_sidebar-footer-php',0), (573,'wp-content/themes/twentyfourteen/sidebar.php','wp-content_themes_twentyfourteen_sidebar-php',0), (574,'wp-content/themes/twentyfourteen/single.php','wp-content_themes_twentyfourteen_single-php',0), (575,'wp-content/themes/twentyfourteen/tag.php','wp-content_themes_twentyfourteen_tag-php',0), (576,'wp-content/themes/twentyfourteen/taxonomy-post_format.php','wp-content_themes_twentyfourteen_taxonomy-post_format-php',0), (577,'wp-content/themes/twentyten/404.php','wp-content_themes_twentyten_404-php',0), (578,'wp-content/themes/twentyten/archive.php','wp-content_themes_twentyten_archive-php',0), (579,'wp-content/themes/twentyten/attachment.php','wp-content_themes_twentyten_attachment-php',0), (580,'wp-content/themes/twentyten/author.php','wp-content_themes_twentyten_author-php',0), (581,'Twenty Ten 1.0','twenty-ten-1-0',0), (582,'Twenty_Ten','twenty_ten',0), (583,'wp-content/themes/twentyten/category.php','wp-content_themes_twentyten_category-php',0), (584,'wp-content/themes/twentyten/comments.php','wp-content_themes_twentyten_comments-php',0), (585,'wp-content/themes/twentyten/footer.php','wp-content_themes_twentyten_footer-php',0), (586,'wp-content/themes/twentyten/functions.php','wp-content_themes_twentyten_functions-php',0), (587,'Twenty Ten 1.6.','twenty-ten-1-6',0), (588,'wp-content/themes/twentyten/header.php','wp-content_themes_twentyten_header-php',0), (589,'wp-content/themes/twentyten/index.php','wp-content_themes_twentyten_index-php',0), (590,'wp-content/themes/twentyten/loop-attachment.php','wp-content_themes_twentyten_loop-attachment-php',0), (591,'wp-content/themes/twentyten/loop-page.php','wp-content_themes_twentyten_loop-page-php',0), (592,'wp-content/themes/twentyten/loop-single.php','wp-content_themes_twentyten_loop-single-php',0), (593,'wp-content/themes/twentyten/loop.php','wp-content_themes_twentyten_loop-php',0), (594,'wp-content/themes/twentyten/onecolumn-page.php','wp-content_themes_twentyten_onecolumn-page-php',0), (595,'wp-content/themes/twentyten/page.php','wp-content_themes_twentyten_page-php',0), (596,'wp-content/themes/twentyten/search.php','wp-content_themes_twentyten_search-php',0), (597,'wp-content/themes/twentyten/sidebar-footer.php','wp-content_themes_twentyten_sidebar-footer-php',0), (598,'wp-content/themes/twentyten/sidebar.php','wp-content_themes_twentyten_sidebar-php',0), (599,'wp-content/themes/twentyten/single.php','wp-content_themes_twentyten_single-php',0), (600,'wp-content/themes/twentyten/tag.php','wp-content_themes_twentyten_tag-php',0), (601,'wp-content/themes/twentythirteen/404.php','wp-content_themes_twentythirteen_404-php',0), (602,'wp-content/themes/twentythirteen/archive.php','wp-content_themes_twentythirteen_archive-php',0), (603,'wp-content/themes/twentythirteen/author-bio.php','wp-content_themes_twentythirteen_author-bio-php',0), (604,'Twenty Thirteen 1.0','twenty-thirteen-1-0',0), (605,'wp-content/themes/twentythirteen/author.php','wp-content_themes_twentythirteen_author-php',0), (606,'wp-content/themes/twentythirteen/category.php','wp-content_themes_twentythirteen_category-php',0), (607,'wp-content/themes/twentythirteen/comments.php','wp-content_themes_twentythirteen_comments-php',0), (608,'wp-content/themes/twentythirteen/content-aside.php','wp-content_themes_twentythirteen_content-aside-php',0), (609,'wp-content/themes/twentythirteen/content-audio.php','wp-content_themes_twentythirteen_content-audio-php',0), (610,'wp-content/themes/twentythirteen/content-chat.php','wp-content_themes_twentythirteen_content-chat-php',0), (611,'wp-content/themes/twentythirteen/content-gallery.php','wp-content_themes_twentythirteen_content-gallery-php',0), (612,'wp-content/themes/twentythirteen/content-image.php','wp-content_themes_twentythirteen_content-image-php',0), (613,'wp-content/themes/twentythirteen/content-link.php','wp-content_themes_twentythirteen_content-link-php',0), (614,'wp-content/themes/twentythirteen/content-none.php','wp-content_themes_twentythirteen_content-none-php',0), (615,'wp-content/themes/twentythirteen/content-quote.php','wp-content_themes_twentythirteen_content-quote-php',0), (616,'wp-content/themes/twentythirteen/content-status.php','wp-content_themes_twentythirteen_content-status-php',0), (617,'wp-content/themes/twentythirteen/content-video.php','wp-content_themes_twentythirteen_content-video-php',0), (618,'wp-content/themes/twentythirteen/content.php','wp-content_themes_twentythirteen_content-php',0), (619,'wp-content/themes/twentythirteen/footer.php','wp-content_themes_twentythirteen_footer-php',0), (620,'wp-content/themes/twentythirteen/functions.php','wp-content_themes_twentythirteen_functions-php',0), (621,'Twenty_Thirteen','twenty_thirteen',0), (622,'wp-content/themes/twentythirteen/header.php','wp-content_themes_twentythirteen_header-php',0), (623,'wp-content/themes/twentythirteen/image.php','wp-content_themes_twentythirteen_image-php',0), (624,'wp-content/themes/twentythirteen/inc/back-compat.php','wp-content_themes_twentythirteen_inc_back-compat-php',0), (625,'wp-content/themes/twentythirteen/inc/custom-header.php','wp-content_themes_twentythirteen_inc_custom-header-php',0), (626,'wp-content/themes/twentythirteen/index.php','wp-content_themes_twentythirteen_index-php',0), (627,'wp-content/themes/twentythirteen/page.php','wp-content_themes_twentythirteen_page-php',0), (628,'wp-content/themes/twentythirteen/search.php','wp-content_themes_twentythirteen_search-php',0), (629,'wp-content/themes/twentythirteen/sidebar-main.php','wp-content_themes_twentythirteen_sidebar-main-php',0), (630,'wp-content/themes/twentythirteen/sidebar.php','wp-content_themes_twentythirteen_sidebar-php',0), (631,'wp-content/themes/twentythirteen/single.php','wp-content_themes_twentythirteen_single-php',0), (632,'wp-content/themes/twentythirteen/tag.php','wp-content_themes_twentythirteen_tag-php',0), (633,'wp-content/themes/twentythirteen/taxonomy-post_format.php','wp-content_themes_twentythirteen_taxonomy-post_format-php',0), (634,'wp-content/themes/twentytwelve/404.php','wp-content_themes_twentytwelve_404-php',0), (635,'wp-content/themes/twentytwelve/archive.php','wp-content_themes_twentytwelve_archive-php',0), (636,'wp-content/themes/twentytwelve/author.php','wp-content_themes_twentytwelve_author-php',0), (637,'Twenty Twelve 1.0','twenty-twelve-1-0',0), (638,'Twenty_Twelve','twenty_twelve',0), (639,'wp-content/themes/twentytwelve/category.php','wp-content_themes_twentytwelve_category-php',0), (640,'wp-content/themes/twentytwelve/comments.php','wp-content_themes_twentytwelve_comments-php',0), (641,'wp-content/themes/twentytwelve/content-aside.php','wp-content_themes_twentytwelve_content-aside-php',0), (642,'wp-content/themes/twentytwelve/content-image.php','wp-content_themes_twentytwelve_content-image-php',0), (643,'wp-content/themes/twentytwelve/content-link.php','wp-content_themes_twentytwelve_content-link-php',0), (644,'wp-content/themes/twentytwelve/content-none.php','wp-content_themes_twentytwelve_content-none-php',0), (645,'wp-content/themes/twentytwelve/content-page.php','wp-content_themes_twentytwelve_content-page-php',0), (646,'wp-content/themes/twentytwelve/content-quote.php','wp-content_themes_twentytwelve_content-quote-php',0), (647,'wp-content/themes/twentytwelve/content-status.php','wp-content_themes_twentytwelve_content-status-php',0), (648,'wp-content/themes/twentytwelve/content.php','wp-content_themes_twentytwelve_content-php',0), (649,'wp-content/themes/twentytwelve/footer.php','wp-content_themes_twentytwelve_footer-php',0), (650,'wp-content/themes/twentytwelve/functions.php','wp-content_themes_twentytwelve_functions-php',0), (651,'Twenty Twelve 1.2','twenty-twelve-1-2',0), (652,'wp-content/themes/twentytwelve/header.php','wp-content_themes_twentytwelve_header-php',0), (653,'wp-content/themes/twentytwelve/image.php','wp-content_themes_twentytwelve_image-php',0), (654,'wp-content/themes/twentytwelve/inc/custom-header.php','wp-content_themes_twentytwelve_inc_custom-header-php',0), (655,'wp-content/themes/twentytwelve/index.php','wp-content_themes_twentytwelve_index-php',0), (656,'wp-content/themes/twentytwelve/page-templates/front-page.php','wp-content_themes_twentytwelve_page-templates_front-page-php',0), (657,'wp-content/themes/twentytwelve/page-templates/full-width.php','wp-content_themes_twentytwelve_page-templates_full-width-php',0), (658,'wp-content/themes/twentytwelve/page.php','wp-content_themes_twentytwelve_page-php',0), (659,'wp-content/themes/twentytwelve/search.php','wp-content_themes_twentytwelve_search-php',0), (660,'wp-content/themes/twentytwelve/sidebar-front.php','wp-content_themes_twentytwelve_sidebar-front-php',0), (661,'wp-content/themes/twentytwelve/sidebar.php','wp-content_themes_twentytwelve_sidebar-php',0), (662,'wp-content/themes/twentytwelve/single.php','wp-content_themes_twentytwelve_single-php',0), (663,'wp-content/themes/twentytwelve/tag.php','wp-content_themes_twentytwelve_tag-php',0), (664,'wp-cron.php','wp-cron-php',0), (665,'wp-includes/update.php','wp-includes_update-php',0), (666,'wp-includes/user.php','wp-includes_user-php',0), (667,'Users','users',0), (668,'MU 1.1','mu-1-1',0), (669,'2.0.4','2-0-4',0), (670,'2.0.1','2-0-1',0), (671,'wp-includes/vars.php','wp-includes_vars-php',0), (672,'wp-includes/version.php','wp-includes_version-php',0), (673,'wp-includes/widgets.php','wp-includes_widgets-php',0), (674,'Widgets','widgets',0), (675,'wp-includes/wp-db.php','wp-includes_wp-db-php',0), (676,'2.0.8','2-0-8',0), (677,'wp-includes/wp-diff.php','wp-includes_wp-diff-php',0), (678,'Diff','diff',0), (679,'wp-includes/admin-bar.php','wp-includes_admin-bar-php',0), (680,'wp-includes/atomlib.php','wp-includes_atomlib-php',0), (681,'AtomLib','atomlib',0), (682,'wp-includes/author-template.php','wp-includes_author-template-php',0), (683,'Template','template',0), (684,'wp-includes/bookmark-template.php','wp-includes_bookmark-template-php',0), (685,'wp-includes/bookmark.php','wp-includes_bookmark-php',0), (686,'Bookmark','bookmark',0), (687,'wp-includes/cache.php','wp-includes_cache-php',0), (688,'Cache','cache',0), (689,'wp-includes/canonical.php','wp-includes_canonical-php',0), (690,'wp-includes/capabilities.php','wp-includes_capabilities-php',0), (691,'User','user',0), (692,'wp-includes/category-template.php','wp-includes_category-template-php',0), (693,'wp-includes/category.php','wp-includes_category-php',0), (694,'wp-includes/class-feed.php','wp-includes_class-feed-php',0), (695,'wp-includes/class-http.php','wp-includes_class-http-php',0), (696,'HTTP','http',0), (697,'2.8.1','2-8-1',0), (698,'wp-includes/class-IXR.php','wp-includes_class-ixr-php',0), (699,'IXR','ixr',0), (700,'wp-includes/class-json.php','wp-includes_class-json-php',0), (701,'wp-includes/class-oembed.php','wp-includes_class-oembed-php',0), (702,'oEmbed','oembed',0), (703,'wp-includes/class-phpass.php','wp-includes_class-phpass-php',0), (704,'phpass','phpass',0), (705,'wp-includes/class-phpmailer.php','wp-includes_class-phpmailer-php',0), (706,'PHPMailer','phpmailer',0), (707,'wp-includes/class-pop3.php','wp-includes_class-pop3-php',0), (708,'plugins','plugins',0), (709,'mail_fetch','mail_fetch',0), (710,'wp-includes/class-simplepie.php','wp-includes_class-simplepie-php',0), (711,'SimplePie','simplepie',0), (712,'API','api',0), (713,'1.0','1-0',0), (714,'1.1','1-1',0), (715,'Preview Release','preview-release',0), (716,'0.8','0-8',0), (717,'Preview Release (previously called `get_feed_url()` since SimplePie 0.8.)','preview-release-previously-called-get_feed_url-since-simplepie-0-8',0), (718,'Beta 2','beta-2',0), (719,'wp-includes/class-smtp.php','wp-includes_class-smtp-php',0), (720,'wp-includes/class-snoopy.php','wp-includes_class-snoopy-php',0), (721,'wp-includes/class-wp-admin-bar.php','wp-includes_class-wp-admin-bar-php',0), (722,'Toolbar','toolbar',0), (723,'wp-includes/class-wp-ajax-response.php','wp-includes_class-wp-ajax-response-php',0), (724,'wp-includes/class-wp-customize-control.php','wp-includes_class-wp-customize-control-php',0), (725,'3.4.2','3-4-2',0), (726,'wp-includes/class-wp-customize-manager.php','wp-includes_class-wp-customize-manager-php',0), (727,'wp-includes/class-wp-customize-section.php','wp-includes_class-wp-customize-section-php',0), (728,'wp-includes/class-wp-customize-setting.php','wp-includes_class-wp-customize-setting-php',0), (729,'wp-includes/class-wp-customize-widgets.php','wp-includes_class-wp-customize-widgets-php',0), (730,'wp-includes/class-wp-editor.php','wp-includes_class-wp-editor-php',0), (731,'wp-includes/class-wp-embed.php','wp-includes_class-wp-embed-php',0), (732,'Embed','embed',0), (733,'wp-includes/class-wp-error.php','wp-includes_class-wp-error-php',0), (734,'wp-includes/class-wp-http-ixr-client.php','wp-includes_class-wp-http-ixr-client-php',0), (735,'wp-includes/class-wp-image-editor-gd.php','wp-includes_class-wp-image-editor-gd-php',0), (736,'Image_Editor','image_editor',0), (737,'wp-includes/class-wp-image-editor-imagick.php','wp-includes_class-wp-image-editor-imagick-php',0), (738,'wp-includes/class-wp-image-editor.php','wp-includes_class-wp-image-editor-php',0), (739,'wp-includes/class-wp-theme.php','wp-includes_class-wp-theme-php',0), (740,'Theme','theme',0), (741,'wp-includes/class-wp-walker.php','wp-includes_class-wp-walker-php',0), (742,'wp-includes/class-wp-xmlrpc-server.php','wp-includes_class-wp-xmlrpc-server-php',0), (743,'Publishing','publishing',0), (744,'1.5.2','1-5-2',0), (745,'3.5.1','3-5-1',0), (746,'wp-includes/class-wp.php','wp-includes_class-wp-php',0), (747,'wp-includes/class.wp-dependencies.php','wp-includes_class-wp-dependencies-php',0), (748,'BackPress r74','backpress-r74',0), (749,'BackPress','backpress',0), (750,'wp-includes/class.wp-scripts.php','wp-includes_class-wp-scripts-php',0), (751,'r16','r16',0), (752,'wp-includes/class.wp-styles.php','wp-includes_class-wp-styles-php',0), (753,'r74','r74',0), (754,'wp-includes/comment-template.php','wp-includes_comment-template-php',0), (755,'2.1.3','2-1-3',0), (756,'wp-includes/comment.php','wp-includes_comment-php',0), (757,'Comment','comment',0), (758,'wp-includes/compat.php','wp-includes_compat-php',0), (759,'PHP','php',0), (760,'wp-includes/cron.php','wp-includes_cron-php',0), (761,'wp-includes/date.php','wp-includes_date-php',0), (762,'wp-includes/default-constants.php','wp-includes_default-constants-php',0), (763,'wp-includes/default-filters.php','wp-includes_default-filters-php',0), (764,'wp-includes/default-widgets.php','wp-includes_default-widgets-php',0), (765,'wp-includes/deprecated.php','wp-includes_deprecated-php',0), (766,'2.3.1','2-3-1',0), (767,'2.0.6','2-0-6',0), (768,'2.3.4','2-3-4',0), (769,'wp-includes/feed-atom-comments.php','wp-includes_feed-atom-comments-php',0), (770,'wp-includes/feed-atom.php','wp-includes_feed-atom-php',0), (771,'wp-includes/feed-rdf.php','wp-includes_feed-rdf-php',0), (772,'wp-includes/feed-rss.php','wp-includes_feed-rss-php',0), (773,'wp-includes/feed-rss2-comments.php','wp-includes_feed-rss2-comments-php',0), (774,'wp-includes/feed-rss2.php','wp-includes_feed-rss2-php',0), (775,'wp-includes/feed.php','wp-includes_feed-php',0), (776,'Feed','feed',0), (777,'wp-includes/formatting.php','wp-includes_formatting-php',0), (778,'1.2.1','1-2-1',0), (779,'1.2.2','1-2-2',0), (780,'2.3.2','2-3-2',0), (781,'2.2.1','2-2-1',0), (782,'3.1.3','3-1-3',0), (783,'wp-includes/functions.php','wp-includes_functions-php',0), (784,'2.8.6','2-8-6',0), (785,'wp-includes/functions.wp-scripts.php','wp-includes_functions-wp-scripts-php',0), (786,'wp-includes/functions.wp-styles.php','wp-includes_functions-wp-styles-php',0), (787,'wp-includes/general-template.php','wp-includes_general-template-php',0), (788,'2.0.10','2-0-10',0), (789,'wp-includes/http.php','wp-includes_http-php',0), (790,'3.5.2','3-5-2',0), (791,'wp-includes/ID3/getid3.lib.php','wp-includes_id3_getid3-lib-php',0), (792,'wp-includes/ID3/getid3.php','wp-includes_id3_getid3-php',0), (793,'wp-includes/ID3/module.audio-video.asf.php','wp-includes_id3_module-audio-video-asf-php',0), (794,'wp-includes/ID3/module.audio-video.flv.php','wp-includes_id3_module-audio-video-flv-php',0), (795,'wp-includes/ID3/module.audio-video.matroska.php','wp-includes_id3_module-audio-video-matroska-php',0), (796,'wp-includes/ID3/module.audio-video.quicktime.php','wp-includes_id3_module-audio-video-quicktime-php',0), (797,'wp-includes/ID3/module.audio-video.riff.php','wp-includes_id3_module-audio-video-riff-php',0), (798,'wp-includes/ID3/module.audio.ac3.php','wp-includes_id3_module-audio-ac3-php',0), (799,'wp-includes/ID3/module.audio.dts.php','wp-includes_id3_module-audio-dts-php',0), (800,'wp-includes/ID3/module.audio.flac.php','wp-includes_id3_module-audio-flac-php',0), (801,'wp-includes/ID3/module.audio.mp3.php','wp-includes_id3_module-audio-mp3-php',0), (802,'wp-includes/ID3/module.audio.ogg.php','wp-includes_id3_module-audio-ogg-php',0), (803,'wp-includes/ID3/module.tag.apetag.php','wp-includes_id3_module-tag-apetag-php',0), (804,'wp-includes/ID3/module.tag.id3v1.php','wp-includes_id3_module-tag-id3v1-php',0), (805,'wp-includes/ID3/module.tag.id3v2.php','wp-includes_id3_module-tag-id3v2-php',0), (806,'wp-includes/ID3/module.tag.lyrics3.php','wp-includes_id3_module-tag-lyrics3-php',0), (807,'wp-includes/js/tinymce/wp-mce-help.php','wp-includes_js_tinymce_wp-mce-help-php',0), (808,'wp-includes/js/tinymce/wp-tinymce.php','wp-includes_js_tinymce_wp-tinymce-php',0), (809,'wp-includes/kses.php','wp-includes_kses-php',0), (810,'External','external',0), (811,'KSES','kses',0), (812,'wp-includes/l10n.php','wp-includes_l10n-php',0), (813,'i18n','i18n',0), (814,'2.0.11','2-0-11',0), (815,'wp-includes/link-template.php','wp-includes_link-template-php',0), (816,'2.7.1','2-7-1',0), (817,'wp-includes/load.php','wp-includes_load-php',0), (818,'wp-includes/locale.php','wp-includes_locale-php',0), (819,'wp-includes/media-template.php','wp-includes_media-template-php',0), (820,'Media','media',0), (821,'wp-includes/media.php','wp-includes_media-php',0), (822,'wp-includes/meta.php','wp-includes_meta-php',0), (823,'Meta','meta',0), (824,'wp-includes/ms-blogs.php','wp-includes_ms-blogs-php',0), (825,'wp-includes/ms-default-constants.php','wp-includes_ms-default-constants-php',0), (826,'wp-includes/ms-default-filters.php','wp-includes_ms-default-filters-php',0), (827,'wp-includes/ms-deprecated.php','wp-includes_ms-deprecated-php',0), (828,'wp-includes/ms-files.php','wp-includes_ms-files-php',0), (829,'wp-includes/ms-functions.php','wp-includes_ms-functions-php',0), (830,'MU 1.0','mu-1-0',0), (831,'MU 2.7','mu-2-7',0), (832,'MU 2.6.5','mu-2-6-5',0), (833,'wp-includes/ms-load.php','wp-includes_ms-load-php',0), (834,'wp-includes/ms-settings.php','wp-includes_ms-settings-php',0), (835,'wp-includes/nav-menu-template.php','wp-includes_nav-menu-template-php',0), (836,'Nav_Menus','nav_menus',0), (837,'3.0.1','3-0-1',0), (838,'wp-includes/nav-menu.php','wp-includes_nav-menu-php',0), (839,'wp-includes/option.php','wp-includes_option-php',0), (840,'Option','option',0), (841,'wp-includes/pluggable-deprecated.php','wp-includes_pluggable-deprecated-php',0), (842,'wp-includes/pluggable.php','wp-includes_pluggable-php',0), (843,'2.6.2','2-6-2',0), (844,'wp-includes/plugin.php','wp-includes_plugin-php',0), (845,'2.2.3','2-2-3',0), (846,'wp-includes/pomo/entry.php','wp-includes_pomo_entry-php',0), (847,'pomo','pomo',0), (848,'entry','entry',0), (849,'wp-includes/pomo/mo.php','wp-includes_pomo_mo-php',0), (850,'mo','mo',0), (851,'wp-includes/pomo/po.php','wp-includes_pomo_po-php',0), (852,'po','po',0), (853,'wp-includes/pomo/streams.php','wp-includes_pomo_streams-php',0), (854,'streams','streams',0), (855,'wp-includes/pomo/translations.php','wp-includes_pomo_translations-php',0), (856,'translations','translations',0), (857,'wp-includes/post-formats.php','wp-includes_post-formats-php',0), (858,'Post','post',0), (859,'wp-includes/post-template.php','wp-includes_post-template-php',0), (860,'wp-includes/post-thumbnail-template.php','wp-includes_post-thumbnail-template-php',0), (861,'wp-includes/post.php','wp-includes_post-php',0), (862,'wp-includes/query.php','wp-includes_query-php',0), (863,'Query','query',0), (864,'wp-includes/registration-functions.php','wp-includes_registration-functions-php',0), (865,'wp-includes/registration.php','wp-includes_registration-php',0), (866,'wp-includes/revision.php','wp-includes_revision-php',0), (867,'wp-includes/rewrite.php','wp-includes_rewrite-php',0), (868,'Rewrite','rewrite',0), (869,'wp-includes/rss-functions.php','wp-includes_rss-functions-php',0), (870,'wp-includes/rss.php','wp-includes_rss-php',0), (871,'MagpieRSS','magpierss',0), (872,'wp-includes/script-loader.php','wp-includes_script-loader-php',0), (873,'wp-includes/shortcodes.php','wp-includes_shortcodes-php',0), (874,'Shortcodes','shortcodes',0), (875,'wp-includes/SimplePie/Author.php','wp-includes_simplepie_author-php',0), (876,'wp-includes/SimplePie/Cache/Base.php','wp-includes_simplepie_cache_base-php',0), (877,'wp-includes/SimplePie/Cache/DB.php','wp-includes_simplepie_cache_db-php',0), (878,'Caching','caching',0), (879,'wp-includes/SimplePie/Cache/File.php','wp-includes_simplepie_cache_file-php',0), (880,'wp-includes/SimplePie/Cache/Memcache.php','wp-includes_simplepie_cache_memcache-php',0), (881,'wp-includes/SimplePie/Cache/MySQL.php','wp-includes_simplepie_cache_mysql-php',0), (882,'wp-includes/SimplePie/Cache.php','wp-includes_simplepie_cache-php',0), (883,'wp-includes/SimplePie/Caption.php','wp-includes_simplepie_caption-php',0), (884,'wp-includes/SimplePie/Category.php','wp-includes_simplepie_category-php',0), (885,'wp-includes/SimplePie/Content/Type/Sniffer.php','wp-includes_simplepie_content_type_sniffer-php',0), (886,'wp-includes/SimplePie/Copyright.php','wp-includes_simplepie_copyright-php',0), (887,'wp-includes/SimplePie/Core.php','wp-includes_simplepie_core-php',0), (888,'wp-includes/SimplePie/Credit.php','wp-includes_simplepie_credit-php',0), (889,'wp-includes/SimplePie/Decode/HTML/Entities.php','wp-includes_simplepie_decode_html_entities-php',0), (890,'wp-includes/SimplePie/Enclosure.php','wp-includes_simplepie_enclosure-php',0), (891,'wp-includes/SimplePie/Exception.php','wp-includes_simplepie_exception-php',0), (892,'wp-includes/SimplePie/File.php','wp-includes_simplepie_file-php',0), (893,'wp-includes/SimplePie/gzdecode.php','wp-includes_simplepie_gzdecode-php',0), (894,'wp-includes/SimplePie/HTTP/Parser.php','wp-includes_simplepie_http_parser-php',0), (895,'wp-includes/SimplePie/IRI.php','wp-includes_simplepie_iri-php',0), (896,'wp-includes/SimplePie/Item.php','wp-includes_simplepie_item-php',0), (897,'1.3','1-3',0), (898,'Beta 2 (previously called `get_item_title` since 0.8)','beta-2-previously-called-get_item_title-since-0-8',0), (899,'Beta 3 (previously called `get_categories()` since Beta 2)','beta-3-previously-called-get_categories-since-beta-2',0), (900,'Beta 3','beta-3',0), (901,'Beta 2 (previously called `get_item_date` since 0.8)','beta-2-previously-called-get_item_date-since-0-8',0), (902,'wp-includes/SimplePie/Locator.php','wp-includes_simplepie_locator-php',0), (903,'wp-includes/SimplePie/Misc.php','wp-includes_simplepie_misc-php',0), (904,'wp-includes/SimplePie/Net/IPv6.php','wp-includes_simplepie_net_ipv6-php',0), (905,'wp-includes/SimplePie/Parse/Date.php','wp-includes_simplepie_parse_date-php',0), (906,'Parsing','parsing',0), (907,'wp-includes/SimplePie/Parser.php','wp-includes_simplepie_parser-php',0), (908,'wp-includes/SimplePie/Rating.php','wp-includes_simplepie_rating-php',0), (909,'wp-includes/SimplePie/Registry.php','wp-includes_simplepie_registry-php',0), (910,'wp-includes/SimplePie/Restriction.php','wp-includes_simplepie_restriction-php',0), (911,'wp-includes/SimplePie/Sanitize.php','wp-includes_simplepie_sanitize-php',0), (912,'wp-includes/SimplePie/Source.php','wp-includes_simplepie_source-php',0), (913,'wp-includes/SimplePie/XML/Declaration/Parser.php','wp-includes_simplepie_xml_declaration_parser-php',0), (914,'wp-includes/taxonomy.php','wp-includes_taxonomy-php',0), (915,'Taxonomy','taxonomy',0), (916,'wp-includes/template-loader.php','wp-includes_template-loader-php',0), (917,'wp-includes/template.php','wp-includes_template-php',0), (918,'wp-includes/Text/Diff/Engine/native.php','wp-includes_text_diff_engine_native-php',0), (919,'Text_Diff','text_diff',0), (920,'wp-includes/Text/Diff/Engine/shell.php','wp-includes_text_diff_engine_shell-php',0), (921,'0.3.0','0-3-0',0), (922,'wp-includes/Text/Diff/Engine/string.php','wp-includes_text_diff_engine_string-php',0), (923,'wp-includes/Text/Diff/Engine/xdiff.php','wp-includes_text_diff_engine_xdiff-php',0), (924,'wp-includes/Text/Diff/Renderer/inline.php','wp-includes_text_diff_renderer_inline-php',0), (925,'wp-includes/Text/Diff/Renderer.php','wp-includes_text_diff_renderer-php',0), (926,'wp-includes/Text/Diff.php','wp-includes_text_diff-php',0), (927,'Text_Diff 1.1.0','text_diff-1-1-0',0), (928,'wp-includes/theme-compat/comments-popup.php','wp-includes_theme-compat_comments-popup-php',0), (929,'wp-includes/theme-compat/comments.php','wp-includes_theme-compat_comments-php',0), (930,'wp-includes/theme-compat/footer.php','wp-includes_theme-compat_footer-php',0), (931,'wp-includes/theme-compat/header.php','wp-includes_theme-compat_header-php',0), (932,'wp-includes/theme-compat/sidebar.php','wp-includes_theme-compat_sidebar-php',0), (933,'wp-includes/theme.php','wp-includes_theme-php',0), (934,'wp-links-opml.php','wp-links-opml-php',0), (935,'wp-load.php','wp-load-php',0), (936,'wp-login.php','wp-login-php',0), (937,'wp-mail.php','wp-mail-php',0), (938,'wp-settings.php','wp-settings-php',0), (939,'wp-signup.php','wp-signup-php',0), (940,'wp-trackback.php','wp-trackback-php',0), (941,'Trackbacks','trackbacks',0), (942,'xmlrpc.php','xmlrpc-php',0); /*!40000 ALTER TABLE `wporg_33_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_34_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_34_commentmeta`; CREATE TABLE `wporg_34_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_34_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_34_comments`; CREATE TABLE `wporg_34_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_34_comments` WRITE; /*!40000 ALTER TABLE `wporg_34_comments` DISABLE KEYS */; INSERT INTO `wporg_34_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 22:11:11','2014-12-08 22:11:11','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_34_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_34_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_34_links`; CREATE TABLE `wporg_34_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_34_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_34_options`; CREATE TABLE `wporg_34_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_34_options` WRITE; /*!40000 ALTER TABLE `wporg_34_options` DISABLE KEYS */; INSERT INTO `wporg_34_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/flow','yes'), (2,'home','http://make.wordpressorg.dev/flow','yes'), (3,'blogname','Make Flow','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/34/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_34_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900730;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971283;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080253;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_34_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_34_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_34_postmeta`; CREATE TABLE `wporg_34_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_34_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_34_postmeta` DISABLE KEYS */; INSERT INTO `wporg_34_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_34_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_34_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_34_posts`; CREATE TABLE `wporg_34_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_34_posts` WRITE; /*!40000 ALTER TABLE `wporg_34_posts` DISABLE KEYS */; INSERT INTO `wporg_34_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,'2014-12-08 22:11:11','2014-12-08 22:11:11','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 22:11:11','2014-12-08 22:11:11','',0,'http://make.wordpressorg.dev/flow/?p=1',0,'post','',1), (2,1,'2014-12-08 22:11:11','2014-12-08 22:11:11','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:\n\n
Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 22:11:11','2014-12-08 22:11:11','',0,'http://make.wordpressorg.dev/flow/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:08:04','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:08:04','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/flow/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_34_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_34_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_34_term_relationships`; CREATE TABLE `wporg_34_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_34_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_34_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_34_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_34_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_34_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_34_term_taxonomy`; CREATE TABLE `wporg_34_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_34_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_34_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_34_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_34_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_34_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_34_termmeta`; CREATE TABLE `wporg_34_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_34_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_34_terms`; CREATE TABLE `wporg_34_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_34_terms` WRITE; /*!40000 ALTER TABLE `wporg_34_terms` DISABLE KEYS */; INSERT INTO `wporg_34_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_34_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_35_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_35_commentmeta`; CREATE TABLE `wporg_35_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_35_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_35_comments`; CREATE TABLE `wporg_35_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_35_comments` WRITE; /*!40000 ALTER TABLE `wporg_35_comments` DISABLE KEYS */; INSERT INTO `wporg_35_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,'Mr WordPress','','http://wordpressorg.dev/','','2015-07-29 18:34:19','2015-07-29 18:34:19','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_35_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_35_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_35_links`; CREATE TABLE `wporg_35_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_35_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_35_options`; CREATE TABLE `wporg_35_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_35_options` WRITE; /*!40000 ALTER TABLE `wporg_35_options` DISABLE KEYS */; INSERT INTO `wporg_35_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://wordpressorg.dev/themes','yes'), (2,'home','http://wordpressorg.dev/themes','yes'), (3,'blogname','Theme directory','yes'), (4,'blogdescription','Just another WordPress.dev Sites site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:1:{i:0;s:35:\"theme-directory/theme-directory.php\";}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','pub/wporg-themes','yes'), (42,'stylesheet','pub/wporg-themes','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','37965','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','/tags','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_171_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:64:{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:9:\"add_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:14:\"suspend_themes\";b:1;s:16:\"reinstate_themes\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:14:\"suspend_themes\";b:1;s:16:\"reinstate_themes\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:12:{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:14:\"suspend_themes\";b:1;s:16:\"reinstate_themes\";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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"orphaned_widgets_1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:2:{i:1480962863;a:1:{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:7:\"version\";i:2;}','yes'), (100,'_transient_twentyfifteen_categories','1','yes'), (115,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1438194912;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'template_root','/themes','yes'), (117,'stylesheet_root','/themes','yes'), (118,'current_theme','WordPress.org Themes','yes'), (119,'theme_mods_pub/wporg-themes','a:1:{i:0;b:0;}','yes'), (120,'theme_switched','','yes'), (123,'recently_activated','a:0:{}','yes'), (124,'post_count','1','yes'), (125,'rewrite_rules','a:71:{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: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: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: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:72:\"browse/(featured|popular|new|favorites)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?browse=$matches[1]&feed=$matches[2]\";s:67:\"browse/(featured|popular|new|favorites)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?browse=$matches[1]&feed=$matches[2]\";s:60:\"browse/(featured|popular|new|favorites)/page/?([0-9]{1,})/?$\";s:46:\"index.php?browse=$matches[1]&paged=$matches[2]\";s:42:\"browse/(featured|popular|new|favorites)/?$\";s:28:\"index.php?browse=$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: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: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: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:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)(/[0-9]+)?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";}','yes'), (156,'finished_splitting_shared_terms','1','yes'), (157,'db_upgraded','1','yes'), (158,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (159,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (160,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (161,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (163,'site_icon','0','yes'), (164,'medium_large_size_w','768','yes'), (165,'medium_large_size_h','0','yes'); /*!40000 ALTER TABLE `wporg_35_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_35_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_35_postmeta`; CREATE TABLE `wporg_35_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_35_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_35_postmeta` DISABLE KEYS */; INSERT INTO `wporg_35_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_35_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_35_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_35_posts`; CREATE TABLE `wporg_35_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_35_posts` WRITE; /*!40000 ALTER TABLE `wporg_35_posts` DISABLE KEYS */; INSERT INTO `wporg_35_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,'2015-07-29 18:34:19','2015-07-29 18:34:19','Welcome to WordPress.dev Sites. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2015-07-29 18:34:19','2015-07-29 18:34:19','',0,'http://wordpressorg.dev/themes/?p=1',0,'post','',1), (2,1,'2015-07-29 18:34:19','2015-07-29 18:34:19','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:\n\n
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ña coladas. (And gettin\' caught in the rain.)
\n\n...or something like this:\n\n
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.
\n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2015-07-29 18:34:19','2015-07-29 18:34:19','',0,'http://wordpressorg.dev/themes/?page_id=2',0,'page','',0), (3,1,'2015-07-29 18:34:23','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-07-29 18:34:23','0000-00-00 00:00:00','',0,'http://wordpressorg.dev/themes/?p=3',0,'post','',0), (4,1,'2015-07-29 18:35:27','2015-07-29 18:35:27','','commercial','','publish','closed','closed','','commercial','','','2015-07-29 18:35:27','2015-07-29 18:35:27','',0,'http://wordpressorg.dev/themes/commercial/',0,'page','',0), (5,1,'2015-07-29 18:35:27','2015-07-29 18:35:27','','getting-started','','publish','closed','closed','','getting-started','','','2015-07-29 18:35:27','2015-07-29 18:35:27','',0,'http://wordpressorg.dev/themes/getting-started/',0,'page','',0), (6,1,'2015-07-29 18:35:27','2015-07-29 18:35:27','','upload','','publish','closed','closed','','upload','','','2015-07-29 18:35:27','2015-07-29 18:35:27','',0,'http://wordpressorg.dev/themes/upload/',0,'page','',0), (7,1,'2015-07-29 19:48:19','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-07-29 19:48:19','0000-00-00 00:00:00','',0,'http://wordpressorg.dev/themes/?p=7',0,'post','',0); /*!40000 ALTER TABLE `wporg_35_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_35_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_35_term_relationships`; CREATE TABLE `wporg_35_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_35_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_35_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_35_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_35_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_35_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_35_term_taxonomy`; CREATE TABLE `wporg_35_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_35_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_35_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_35_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_35_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_35_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_35_termmeta`; CREATE TABLE `wporg_35_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_35_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_35_terms`; CREATE TABLE `wporg_35_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_35_terms` WRITE; /*!40000 ALTER TABLE `wporg_35_terms` DISABLE KEYS */; INSERT INTO `wporg_35_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_35_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_36_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_36_commentmeta`; CREATE TABLE `wporg_36_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_36_commentmeta` WRITE; /*!40000 ALTER TABLE `wporg_36_commentmeta` DISABLE KEYS */; INSERT INTO `wporg_36_commentmeta` (`meta_id`, `comment_id`, `meta_key`, `meta_value`) VALUES (12894,5232,'email_notification_jobid','20771724787'), (12895,5232,'email_notification_queued','1391111072'), (12896,5232,'reblog_ping','1'), (12898,5232,'akismet_result','false'), (12899,5232,'jabber_published','1391111072'), (12901,5233,'jabber_published','1391234589'), (12902,5233,'email_notification_jobid','20860648439'), (12903,5233,'email_notification_queued','1391211782'), (12905,5233,'akismet_result','false'), (12907,5234,'akismet_result','false'), (12909,5234,'email_notification_jobid','22103150418'), (12910,5234,'email_notification_queued','1393340131'), (12911,5234,'jabber_published','1393340131'), (12914,5235,'akismet_result','false'), (12916,5235,'email_notification_jobid','20956795933'), (12917,5235,'email_notification_queued','1391327645'), (12918,5235,'jabber_published','1391354004'), (12920,5236,'email_notification_jobid','20994170323'), (12921,5236,'email_notification_queued','1391371261'), (12922,5236,'jabber_published','1391371261'), (12923,5236,'akismet_result','false'), (12926,5237,'akismet_result','false'), (12928,5237,'email_notification_jobid','22103765778'), (12929,5237,'email_notification_queued','1393342020'), (12930,5237,'jabber_published','1393342020'), (12933,5238,'jabber_published','1393340041'), (12935,5238,'akismet_result','false'), (12937,5238,'email_notification_jobid','22103125472'), (12938,5238,'email_notification_queued','1393340041'), (12940,5239,'akismet_result','false'), (12942,5239,'email_notification_jobid','22103132094'), (12943,5239,'email_notification_queued','1393340064'), (12944,5239,'jabber_published','1393340064'), (12947,5240,'jabber_published','1395692180'), (12949,5240,'akismet_result','false'), (12951,5240,'email_notification_jobid','22749169955'), (12952,5240,'email_notification_queued','1395692180'), (12955,5241,'jabber_published','1395692169'), (12956,5241,'akismet_result','false'), (12958,5241,'email_notification_jobid','22749165095'), (12959,5241,'email_notification_queued','1395692169'), (12961,5242,'akismet_result','false'), (12963,5242,'email_notification_jobid','24115746626'), (12964,5242,'email_notification_queued','1400728547'), (12965,5242,'jabber_published','1400728944'), (12967,5243,'jabber_published','1400728959'), (12968,5243,'akismet_result','false'), (12970,5243,'email_notification_jobid','24115863319'), (12971,5243,'email_notification_queued','1400728960'), (12973,5244,'email_notification_queued','1396530819'), (12974,5244,'reblog_ping','1'), (12975,5244,'email_notification_jobid','23029596004'), (12976,5244,'jabber_published','1396530818'), (12978,5245,'email_notification_queued','1396533382'), (12979,5245,'jabber_published','1396536115'), (12980,5245,'email_notification_jobid','23030517783'), (12982,5246,'email_notification_queued','1397361800'), (12983,5246,'jabber_published','1397362002'), (12984,5246,'email_notification_jobid','23270985516'), (12985,5246,'akismet_result','false'), (12988,5247,'email_notification_jobid','23280320519'), (12989,5247,'email_notification_queued','1397409225'), (12990,5247,'jabber_published','1397409930'), (12991,5247,'akismet_result','false'), (12994,5248,'jabber_published','1401288741'), (12995,5248,'email_notification_jobid','24256669097'), (12996,5248,'email_notification_queued','1401267451'), (12997,5248,'akismet_result','false'), (13000,5249,'email_notification_jobid','24272719583'), (13001,5249,'email_notification_queued','1401321293'), (13002,5249,'jabber_published','1401321293'), (13003,5249,'akismet_result','false'), (13006,5250,'jabber_published','1399069444'), (13007,5250,'akismet_result','false'), (13010,5251,'jabber_published','1402051485'), (13011,5251,'email_notification_jobid','24461866192'), (13012,5251,'email_notification_queued','1402051433'), (13014,5251,'akismet_result','false'), (13016,5252,'email_notification_jobid','24461914513'), (13017,5252,'email_notification_queued','1402051627'), (13018,5252,'akismet_result','false'), (13020,5252,'jabber_published','1402051627'), (13022,5253,'jabber_published','1402053339'), (13023,5253,'email_notification_jobid','24461990347'), (13024,5253,'email_notification_queued','1402051930'), (13025,5253,'akismet_result','false'), (13028,5254,'akismet_result','false'), (13030,5254,'email_notification_jobid','24574027280'), (13031,5254,'email_notification_queued','1402484895'), (13033,5254,'jabber_published','1402494688'), (13034,5255,'akismet_result','false'), (13036,5255,'email_notification_jobid','25193389575'), (13037,5255,'email_notification_queued','1404819832'), (13039,5255,'jabber_published','1404819832'), (13041,5256,'jabber_published','1405231678'), (13042,5256,'akismet_result','false'), (13044,5256,'email_notification_jobid','25308935987'), (13045,5256,'email_notification_queued','1405231679'), (13047,5257,'akismet_result','false'), (13049,5257,'email_notification_jobid','25317794642'), (13050,5257,'email_notification_queued','1405268854'), (13052,5257,'jabber_published','1405271236'), (13054,5258,'jabber_published','1405271290'), (13055,5258,'akismet_result','false'), (13057,5258,'email_notification_jobid','25318498473'), (13058,5258,'email_notification_queued','1405271290'), (13060,5259,'akismet_result','false'), (13062,5259,'email_notification_jobid','25353201899'), (13063,5259,'email_notification_queued','1405395065'), (13064,5259,'jabber_published','1405401781'), (13067,5260,'akismet_result','false'), (13069,5260,'email_notification_jobid','245960505'), (13070,5260,'email_notification_queued','1408000319'), (13072,5260,'jabber_published','1408000319'), (13074,5261,'jabber_published','1408346047'), (13076,5261,'akismet_result','false'), (13078,5261,'email_notification_jobid','345431249'), (13079,5261,'email_notification_queued','1408346047'), (13129,5272,'akismet_result','false'), (13132,5272,'jabber_published','1386792586'), (13134,5273,'akismet_result','false'), (13136,5273,'jabber_published','1386792585'), (13140,5274,'jabber_published','1388450129'), (13142,5274,'akismet_result','false'), (13144,5275,'akismet_result','false'), (13146,5275,'reblog_ping','1'), (13147,5275,'jabber_published','1389507412'), (13151,5276,'akismet_result','false'), (13153,5276,'jabber_published','1391120791'), (13155,5277,'akismet_result','false'), (13157,5277,'jabber_published','1391127462'), (13160,5278,'akismet_result','false'), (13162,5278,'reblog_ping','1'), (13163,5278,'jabber_published','1391128972'), (13165,5279,'jabber_published','1391194306'), (13167,5279,'akismet_result','false'), (13169,5280,'jabber_published','1391194303'), (13171,5280,'akismet_result','false'), (13173,5281,'jabber_published','1391194250'), (13175,5282,'jabber_published','1391194249'), (13177,5282,'akismet_result','false'), (13179,5283,'jabber_published','1391194247'), (13181,5283,'akismet_result','false'), (13183,5284,'jabber_published','1393339894'), (13186,5284,'akismet_result','false'), (13188,5285,'jabber_published','1391194203'), (13190,5285,'akismet_result','false'), (13192,5286,'jabber_published','1391194194'), (13195,5286,'akismet_result','false'), (13196,5287,'jabber_published','1391194292'), (13197,5287,'akismet_result','false'), (13200,5288,'akismet_result','false'), (13202,5288,'jabber_published','1391198103'), (13205,5289,'jabber_published','1393339894'), (13207,5289,'akismet_result','false'), (13209,5290,'akismet_result','false'), (13211,5290,'jabber_published','1391298023'), (13213,5291,'jabber_published','1391298473'), (13214,5291,'akismet_result','false'), (13218,5292,'jabber_published','1391446924'), (13219,5292,'akismet_result','false'), (13222,5293,'akismet_result','false'), (13224,5293,'jabber_published','1391551665'), (13225,5294,'jabber_published','1393339894'), (13227,5294,'akismet_result','false'), (13231,5295,'jabber_published','1391551696'), (13232,5295,'akismet_result','false'), (13235,5296,'akismet_result','false'), (13237,5296,'jabber_published','1391552121'), (13239,5297,'jabber_published','1391552121'), (13240,5297,'akismet_result','false'), (13243,5298,'akismet_result','false'), (13245,5298,'jabber_published','1391554043'), (13247,5299,'jabber_published','1391554045'), (13248,5299,'akismet_result','false'), (13250,5300,'jabber_published','1393339894'), (13253,5300,'akismet_result','false'), (13256,5301,'akismet_result','false'), (13258,5301,'jabber_published','1391628817'), (13261,5302,'akismet_result','false'), (13263,5302,'jabber_published','1391639480'), (13266,5303,'jabber_published','1391639498'), (13267,5303,'akismet_result','false'), (13270,5304,'akismet_result','false'), (13272,5304,'jabber_published','1391713673'), (13274,5305,'jabber_published','1391713673'), (13275,5305,'akismet_result','false'), (13277,5306,'jabber_published','1393339893'), (13281,5306,'akismet_result','false'), (13283,5307,'jabber_published','1392075038'), (13285,5307,'akismet_result','false'), (13287,5307,'reblog_ping','1'), (13289,5308,'jabber_published','1393182891'), (13291,5308,'akismet_result','false'), (13294,5309,'akismet_result','false'), (13296,5309,'jabber_published','1392169741'), (13298,5310,'jabber_published','1392172001'), (13299,5310,'akismet_result','false'), (13301,5311,'jabber_published','1393339893'), (13305,5311,'reblog_ping','1'), (13306,5311,'akismet_result','false'), (13308,5312,'jabber_published','1392174011'), (13309,5312,'akismet_result','false'), (13312,5313,'jabber_published','1392175205'), (13313,5313,'akismet_result','false'), (13316,5314,'jabber_published','1392175201'), (13317,5314,'akismet_result','false'), (13320,5315,'akismet_result','false'), (13322,5315,'jabber_published','1392175199'), (13324,5316,'akismet_result','false'), (13326,5316,'jabber_published','1392175198'), (13328,5317,'akismet_result','false'), (13330,5317,'jabber_published','1392175196'), (13332,5318,'jabber_published','1392176871'), (13333,5318,'akismet_result','false'), (13336,5319,'jabber_published','1392176869'), (13338,5319,'akismet_result','false'), (13340,5320,'jabber_published','1392176867'), (13342,5320,'akismet_result','false'), (13344,5321,'jabber_published','1392176866'), (13346,5321,'akismet_result','false'), (13348,5322,'jabber_published','1392176862'), (13350,5322,'akismet_result','false'), (13352,5323,'jabber_published','1392176860'), (13354,5323,'akismet_result','false'), (13356,5324,'jabber_published','1392313767'), (13357,5324,'akismet_result','false'), (13360,5325,'akismet_result','false'), (13362,5325,'jabber_published','1395360551'), (13364,5326,'akismet_result','false'), (13366,5326,'jabber_published','1395360549'), (13368,5327,'akismet_result','false'), (13370,5327,'jabber_published','1395360547'), (13372,5328,'jabber_published','1395360545'), (13374,5329,'jabber_published','1395526979'), (13375,5329,'akismet_result','false'), (13378,5330,'jabber_published','1395608869'), (13379,5330,'akismet_result','false'), (13383,5331,'jabber_published','1395608870'), (13384,5331,'akismet_result','false'), (13385,5332,'akismet_result','false'), (13387,5332,'jabber_published','1395702816'), (13390,5333,'akismet_result','false'), (13392,5333,'jabber_published','1395685707'), (13394,5334,'akismet_result','false'), (13397,5334,'jabber_published','1395764604'), (13399,5335,'akismet_result','false'), (13401,5335,'jabber_published','1395764601'), (13403,5336,'akismet_result','false'), (13405,5336,'jabber_published','1395763110'), (13407,5337,'akismet_result','false'), (13409,5337,'jabber_published','1395763108'), (13410,5338,'jabber_published','1395764626'), (13411,5338,'akismet_result','false'), (13414,5339,'jabber_published','1395873517'), (13417,5339,'akismet_result','false'), (13419,5340,'jabber_published','1395873562'), (13420,5340,'akismet_result','false'), (13424,5341,'akismet_result','false'), (13426,5341,'jabber_published','1395894910'), (13429,5342,'jabber_published','1395894934'), (13430,5342,'akismet_result','false'), (13433,5343,'jabber_published','1395936351'), (13435,5343,'akismet_result','false'), (13437,5344,'jabber_published','1395936351'), (13438,5344,'akismet_result','false'), (13441,5345,'akismet_result','false'), (13443,5345,'jabber_published','1395948308'), (13445,5346,'jabber_published','1395948316'), (13446,5346,'akismet_result','false'), (13448,5347,'akismet_result','false'), (13451,5347,'jabber_published','1396312801'), (13453,5348,'jabber_published','1396312801'), (13454,5348,'akismet_result','false'), (13457,5349,'akismet_result','false'), (13459,5349,'jabber_published','1396326240'), (13462,5350,'jabber_published','1396473755'), (13465,5351,'jabber_published','1396473715'), (13468,5352,'jabber_published','1396567600'), (13471,5353,'jabber_published','1396928987'), (13473,5354,'jabber_published','1396929038'), (13475,5355,'jabber_published','1396929039'), (13476,5355,'akismet_result','false'), (13479,5356,'akismet_result','false'), (13481,5356,'jabber_published','1396929204'), (13483,5357,'jabber_published','1396929205'), (13484,5357,'akismet_result','false'), (13487,5358,'jabber_published','1396997364'), (13490,5359,'jabber_published','1396997396'), (13492,5360,'akismet_result','false'), (13494,5360,'jabber_published','1396998999'), (13497,5361,'jabber_published','1396999000'), (13498,5361,'akismet_result','false'), (13500,5362,'akismet_result','false'), (13502,5362,'jabber_published','1397063463'), (13505,5363,'jabber_published','1397026180'), (13507,5364,'jabber_published','1397025968'), (13509,5365,'jabber_published','1397025966'), (13511,5366,'jabber_published','1397025965'), (13513,5367,'jabber_published','1397025987'), (13514,5367,'akismet_result','false'), (13517,5368,'jabber_published','1397026182'), (13518,5368,'akismet_result','false'), (13521,5369,'jabber_published','1397028103'), (13522,5369,'akismet_result','false'), (13525,5370,'jabber_published','1397063560'), (13527,5371,'jabber_published','1397512533'), (13529,5371,'akismet_result','false'), (13532,5372,'jabber_published','1397429312'), (13533,5372,'akismet_result','false'), (13536,5373,'akismet_result','false'), (13538,5373,'jabber_published','1397429404'), (13539,5374,'akismet_result','false'), (13542,5374,'jabber_published','1397511715'), (13545,5375,'jabber_published','1397511752'), (13546,5375,'akismet_result','false'), (13549,5376,'jabber_published','1397512580'), (13550,5376,'akismet_result','false'), (13553,5377,'akismet_result','false'), (13555,5377,'jabber_published','1397943841'), (13557,5378,'akismet_result','false'), (13559,5378,'jabber_published','1397633855'), (13561,5379,'jabber_published','1397633855'), (13562,5379,'akismet_result','false'), (13565,5380,'jabber_published','1397943809'), (13567,5380,'akismet_result','false'), (13569,5381,'jabber_published','1397943912'), (13570,5381,'akismet_result','false'), (13573,5382,'jabber_published','1398268570'), (13575,5382,'akismet_result','false'), (13578,5383,'akismet_result','false'), (13580,5383,'jabber_published','1398268594'), (13581,5384,'akismet_result','false'), (13583,5384,'email_notification_jobid','25695596977'), (13584,5384,'email_notification_queued','1406562043'), (13586,5384,'jabber_published','1406562043'), (13589,5385,'jabber_published','1401156142'), (13590,5385,'akismet_result','false'), (13593,5386,'jabber_published','1401196125'), (13595,5386,'akismet_result','false'), (13597,5387,'jabber_published','1402359756'), (13598,5387,'akismet_result','false'), (13600,5388,'akismet_result','false'), (13603,5388,'jabber_published','1402499412'), (13604,5389,'email_notification_jobid','216479109'), (13605,5389,'email_notification_queued','1407915411'), (13606,5389,'jabber_published','1407915409'), (13607,5389,'akismet_result','false'), (13609,5390,'jabber_published','1407286292'), (13610,5390,'akismet_result','false'), (13612,5390,'email_notification_notqueued','1407286292'), (13614,5390,'comment_like_count','1'), (13616,5391,'email_notification_notqueued','1408000311'), (13618,5391,'akismet_result','false'), (13619,5391,'jabber_published','1408000311'), (13629,5393,'akismet_result','false'), (13631,5393,'email_notification_jobid','809679547'), (13632,5393,'email_notification_queued','1409833587'), (13634,5393,'jabber_published','1409833587'), (13636,5394,'jabber_published','1409833728'), (13637,5394,'akismet_result','false'), (13639,5394,'email_notification_jobid','809728517'), (13640,5394,'email_notification_queued','1409833730'); /*!40000 ALTER TABLE `wporg_36_commentmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_36_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_36_comments`; CREATE TABLE `wporg_36_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_36_comments` WRITE; /*!40000 ALTER TABLE `wporg_36_comments` DISABLE KEYS */; INSERT INTO `wporg_36_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 (5232,965,'rainerpeffm rcpffm','foo@example.org','http://rainerpeffm.wordpress.com','127.0.0.1','2014-01-30 11:44:32','2014-01-30 19:44:32','Reblogged this on Rainer "rcpffm" Peffm 's mobile blog and diary and commented:\n... reblogged ...\n\nNEW Version of WordPress for Android in the Google Play Store (Market) !',0,'1','','',0,0), (5233,965,'argentinauruguay','','http://argentinauruguay.wordpress.com','127.0.0.1','2014-01-31 15:43:02','2014-01-31 23:43:02','Hi, I work for a non-profit and I would like to use the source code to develope our app. The problem that i find is that the reader doesn’t load when i run the app from the source code. I know this is due to Oath2 permission. I there anyway I could load the reader? This would be an essential part of the app. Thanks in advance',0,'1','','',0,0), (5234,965,'JaneAnne','foo@example.org','http://janescorner.wordpress.com/','127.0.0.1','2014-02-01 23:47:43','2014-02-02 07:47:43','Hi there,\n\nJust a heads up...since the latest update I can not insert files or media files anymore, the select files button not working.\n\nHope this will be solved soon.\n\nAndroid version 4.3',0,'1','','',0,0), (5235,965,'Annemarie','','http://janescorner.wordpress.com/','127.0.0.1','2014-02-01 23:54:05','2014-02-02 07:54:05','Hi,\nJust a heads up, since the latest update inserting files and media is not possible any more, the select files button refuses to work.\nHope this will be fixed soon.\nAndroid version 4.3',0,'1','','',0,0), (5236,965,'rainerpeffm rcpffm','foo@example.org','http://rainerpeffm.wordpress.com','127.0.0.1','2014-02-02 12:01:00','2014-02-02 20:01:00','Does not have the option to edit own comments any more ! pls. fix.',0,'1','','',0,0), (5237,965,'Ayesha Jain','foo@example.org','','127.0.0.1','2014-02-02 20:49:13','2014-02-03 04:49:13','Wordpress is getting stronger than any other website building tools. Thank you for another update.',0,'1','','',0,0), (5238,965,'Adriano','foo@example.org','','127.0.0.1','2014-02-21 03:28:53','2014-02-21 11:28:53','Where the search post button?',0,'1','','',0,0), (5239,965,'angelbeccles','foo@example.org','http://fcukangel69.wordpress.com','127.0.0.1','2014-02-22 04:23:52','2014-02-22 12:23:52','I have found that if I save a draft on my mobile, it will not sync and appear on the web version. It means that I have effectively lost half of my work and being disabled I don\'t have the energy or ability to re-write everything that I wrote on my mobile. Is there a way of it being transferred automatically? Is there a way of transferring the data across?\nMany thanks',0,'1','','',0,0), (5240,965,'superkikim','foo@example.org','','127.0.0.1','2014-03-10 15:18:59','2014-03-10 23:18:59','Hey. Great app. Tx.\n\nHowever, when sharing medias through the Android Share function, it would be great to be able to add a category. Or perhaps, add the ability to set a default category for media sharing in the wordpress app settings.',0,'1','','',0,0), (5241,965,'jmndb','foo@example.org','http://mimolestaopinion.wordpress.com','127.0.0.1','2014-03-12 02:47:27','2014-03-12 10:47:27','I see no way to look for a blog in the Reader, either by its URL nor by tag matching (can follow a tag, but not SEARCH for posts with a tag). Is that so, or am I too dumb to see it?',0,'1','','',0,0), (5242,965,'adela012','','','127.0.0.1','2014-05-21 19:15:46','2014-05-22 03:15:46','I see no way to look for a blog in the Reader, either by its URL nor by tag matching',0,'1','','',0,0), (5243,965,'Dan','foo@example.org','http://danroundhill.com','127.0.0.1','2014-05-21 19:22:38','2014-05-22 03:22:38','That\'s coming soon ;)',0,'1','','',5242,1), (5244,990,'rainerpeffm rcpffm','foo@example.org','http://rainerpeffm.wordpress.com','127.0.0.1','2014-04-03 05:13:38','2014-04-03 13:13:38','Reblogged this on Rainer "rcpffm" Peffm 's mobile blog and diary and commented:\n... reblogged ...\n\nnew version 2.7 of WordPress for Android released !',0,'1','','',0,0), (5245,990,'zengiraffe','','','127.0.0.1','2014-04-03 05:56:21','2014-04-03 13:56:21','Thank you for all your hard work on this app. I use it daily. Since this last update, I have been unable to post to my self hosted blog. I re-installed the app and now I cannot even add my self hosted blog to the app. The error says, “We can’t log you in” “Couldn’t connect to the WordPress site”. On another device that I did not uninstall the app on, when I go to refresh my posts it says, “Posts could not be refreshed at this time”. Has anyone else reported this problem? Thanks for you attention to this matter.\nBrian',0,'1','','',0,0), (5246,990,'bibliofilica','','','127.0.0.1','2014-04-12 20:03:19','2014-04-13 04:03:19','yes, i have the same problem, but only one of my blogs has this problem.',0,'1','','',5245,0), (5247,990,'darkfader','','','127.0.0.1','2014-04-13 09:13:45','2014-04-13 17:13:45','You write about improvements?\nIf you wanna improve this app make it reasonsbly possible to save and leave the editor\nDont understand what i mean?\nNot surprised.',0,'1','','',0,0), (5248,990,'kirstyannepollock','','http://kirstyannepollock.wordpress.com','127.0.0.1','2014-05-28 00:57:31','2014-05-28 08:57:31','Pull to refresh does not work on my Sony Android phone. App unusable. Please put back a menu option!',0,'1','','',0,0), (5249,990,'Dan','foo@example.org','http://danroundhill.com','127.0.0.1','2014-05-28 15:54:53','2014-05-28 23:54:53','We are adding a menu button back in the next release. ',0,'1','','',5248,1), (5250,1017,'WPTavern: WordPress for Android 2.8 Released, New Beta Testers Needed | A2Z Web Design Tutorial','','http://www.a2zwebdesigntutorial.com/wptavern-wordpress-for-android-2-8-released-new-beta-testers-needed/','127.0.0.1','2014-05-02 14:20:02','2014-05-02 22:20:02','[…] for Android shipped its 2.8 release late last night. This milestone includes 55 closed issues. This release is packed full of many […]',0,'1','','pingback',0,0), (5251,1065,'Gamenology','','http://gamenology1.wordpress.com','127.0.0.1','2014-06-06 02:43:52','2014-06-06 10:43:52','Can you fix the thing where in the PIN entry screen, in landscape mode it looks a bit weird?',0,'1','','',0,0), (5252,1065,'Maxime','foo@example.org','http://biais.org','127.0.0.1','2014-06-06 02:47:07','2014-06-06 10:47:07','Which device are you using, can you send us a screenshot? Contact us via: android+feedback@automattic.com',0,'1','','',5251,1), (5253,1065,'Gamenology','','http://gamenology1.wordpress.com','127.0.0.1','2014-06-06 02:52:10','2014-06-06 10:52:10','I have sent you an email. Please check your inbox.\nThanks.',0,'1','','',5252,0), (5254,1065,'littlevikingintraining','','http://internationalinsweden.wordpress.com','127.0.0.1','2014-06-11 03:08:15','2014-06-11 11:08:15','how do i post something from the app, i have the text and i cant save it and post it',0,'1','','',0,0), (5255,1065,'Pushpendra Yadav','foo@example.org','http://www.promaticsindia.com/mobile-application-development/android/','127.0.0.1','2014-07-08 02:43:49','2014-07-08 10:43:49','This Android app is very useful for post a blog and it is easy to use.',0,'1','','',0,0), (5256,1065,'priyankpandey','foo@example.org','http://techspecia.com/','127.0.0.1','2014-07-12 22:07:58','2014-07-13 06:07:58','App is good but I\'m having problem after uploading a media file while copying the link of the file....',0,'1','','',0,0), (5257,1065,'horvathagoston','','http://omgjava.wordpress.com','127.0.0.1','2014-07-13 08:27:32','2014-07-13 16:27:32','HTTPS is not supported for self-hosted installations. Let alone http auth over https. This is a dealbreaker for me – I’m not going to publish wordpress admin interface on the internet as it is.',0,'1','','',0,0), (5258,1065,'Maxime','foo@example.org','http://biais.org','127.0.0.1','2014-07-13 09:08:10','2014-07-13 17:08:10','Contact our support, HTTPS is supported on self hosted sites.',0,'1','','',5257,1), (5259,1065,'Ronnie Poon','','http://www.rpbibleclass.com/wordpress/','127.0.0.1','2014-07-14 19:31:03','2014-07-15 03:31:03','I use polytonic Greek on my Blog using the ubuntu font available from Google web fonts. It looks OK on a browser but some characters cannot display in the app. I have set the default font for the device to ubuntu but it does not solve the problem.',0,'1','','',0,0), (5260,1065,'Toko Bunga Online','foo@example.org','http://tokobunga123.com','127.0.0.1','2014-08-14 06:58:06','2014-08-14 06:58:06','i use this app on my smart phone and this app verry easy to blogging by phone for newbie like me',0,'1','','',0,0), (5261,1065,'nitesh Khandelwal','foo@example.org','http://www.sagacademy.com/android-development-training-jaipur','127.0.0.1','2014-08-18 07:00:03','2014-08-18 07:00:03','This is such a very useful and good Android app. This app is very useful for posting a blog and easy to use.',0,'1','','',0,0), (5272,1512,'WordPress for iOS 3.8.5 | 37prime.news','','http://37prime.com/news/2013/12/10/wordpress-for-ios-3-8-5/','127.0.0.1','2013-12-11 05:58:02','2013-12-11 05:58:02','[…] What’s New in Version 3.8.5 […]',0,'1','','pingback',0,0), (5273,1512,'WordPress for iOS 3.8.5 | 37prime','','http://37prime.wordpress.com/2013/12/10/wordpress-for-ios-3-8-5/','127.0.0.1','2013-12-11 05:58:03','2013-12-11 05:58:03','[…] What’s New in Version 3.8.5 […]',0,'1','','pingback',0,0), (5274,1516,'WordPress › WordPress for iOS 3.8.6 Released Hey everyone great… « Make WordPress Mobile','','http://make.wordpress.org/mobile/2013/12/30/wordpress-for-ios-3-8-6-released-hey-everyone-great/','127.0.0.1','2013-12-30 20:10:55','2013-12-30 20:10:55','[…] a hot fix release targeting a Reader related bug. For more details you can view the release post here. We’re also hard at work on 3.9 which is about to enter the release candidate stage where […]',0,'1','','pingback',0,0), (5275,1516,'doehying','foo@example.org','http://doehying.wordpress.com','127.0.0.1','2014-01-11 12:23:20','2014-01-11 12:23:20','Reblogged this on 靜坐、靜默、靜觀其變.',0,'1','','',0,0), (5276,1528,'WordPress › WordPress for iOS 3.9 Released Hey everyone great… « Make WordPress Mobile','','http://make.wordpress.org/mobile/2014/01/30/wordpress-for-ios-3-9-released-hey-everyone-great/','127.0.0.1','2014-01-30 22:25:14','2014-01-30 22:25:14','[…] release was one of our largest releases to date. For more details you can view the release post here. We hope you enjoy this release and in the meantime know the team is hard at work on both 3.9.1 and […]',0,'1','','pingback',0,0), (5277,1528,'Major Update To WordPress For iOS Now Available','','http://wptavern.com/major-update-to-wordpress-for-ios-now-available','127.0.0.1','2014-01-31 00:06:37','2014-01-31 00:06:37','[…] for iOS 3.9 has been released and it includes some major changes. The first thing you’ll notice is that the  sidebar […]',0,'1','','pingback',0,0), (5278,1528,'Wheels Of Political Steel','foo@example.org','http://staretheridge.co.uk','127.0.0.1','2014-01-31 00:34:03','2014-01-31 00:34:03','Reblogged this on wheelsofpoliticalsteel.',0,'1','','',0,0), (5279,1528,'Aktualizacja: WordPress for iOS 3.9','','http://wpzen.pl/aktualizacja-wordpress-for-ios-3-9/','127.0.0.1','2014-01-31 07:37:57','2014-01-31 07:37:57','[…] Więcej informacji na temat tego uaktualnienia znaleźć można na oficjalnym blogu. […]',0,'1','','pingback',0,0), (5280,1528,'WordPress 3.9 for iOS | 37prime','','http://37prime.wordpress.com/2014/01/31/wordpress-3-9-for-ios/','127.0.0.1','2014-01-31 08:26:40','2014-01-31 08:26:40','[…] WordPress 3.9 for iOS is now available. Thanks to the auto-App-update feature in iOS 7, users might not know that the WordPress App had been updated. […]',0,'1','','pingback',0,0), (5281,1528,'WordPress 3.9 for iOS','','http://37prime.com/news/2014/01/31/wordpress-3-9-for-ios/','127.0.0.1','2014-01-31 08:26:41','2014-01-31 08:26:41','[…] WordPress 3.9 for iOS is now available. Thanks to the auto-App-update feature in iOS 7, users might not know that the WordPress App had been updated. […]',0,'1','','pingback',0,0), (5282,1528,'WordPress for iOS 3.9 | neurotroph','','http://neurotroph.de/2014/01/wordpress-for-ios-3-9/','127.0.0.1','2014-01-31 09:28:31','2014-01-31 09:28:31','[…] WordPress for iOS 3.9 […]',0,'1','','pingback',0,0), (5283,1528,'local cleaning','foo@example.org','http://waterdamagerestorationdetroit.com/water-damage-detroit-area/','127.0.0.1','2014-01-31 13:30:06','2014-01-31 13:30:06','I all the time used to study post in news papers but now as I am a user of web so from now I am using\nnet for content, thanks to web.',0,'1','','',0,0), (5284,1528,'Basti','foo@example.org','http://Tollerkerl.com','127.0.0.1','2014-01-31 13:43:44','2014-01-31 13:43:44','Are you kidding me?? Why is the admin panel all the way on a spot where it\'s hard to find and you implemented a READER!? Why would I need a reader?? This is just a joke sorry',0,'1','','',0,0), (5285,1528,'EnjeuxEnergies','foo@example.org','http://enjeuxenergies.wordpress.com','127.0.0.1','2014-01-31 14:02:44','2014-01-31 14:02:44','Unfortunatly, there is two major bugs in the last version:\n\n1- The link function to add an URL for a selected text does not work steady. We must chase the field on the interface. It\'s not a funny game!...\n\n2- The update function changes unexpectedly the original time of publication backward in the past, changing the order on the page. We must go to the Web site to edit and correct this. Not usefull...\n\nThanks a lot for the other new features!\n\nHope these two bugs will be corrected soon as we publish 50 to 75 new articles a day!',0,'1','','',0,0), (5286,1528,'WordPress for iOS 3.9 | Luyten.Info','','http://www.luyten.info/wordpress-for-ios-3-9/','127.0.0.1','2014-01-31 16:00:28','2014-01-31 16:00:28','[…] Het is nu nog eenvoudiger geworden om je WordPress website bij te werken vanaf je iPhone of iPad met versie 3.9 van WordPress for iOS. Lees verder wat er allemaal vernieuwd is. […]',0,'1','','pingback',0,0), (5287,1528,'Sendhil','foo@example.org','','127.0.0.1','2014-01-31 18:51:32','2014-01-31 18:51:32','Hi EnjeuxEnergies - thanks for pointing those out. We are aware of those bugs and will be fixing them very quickly for 3.9.1.',0,'1','','',5285,1), (5288,1528,'EnjeuxEnergies','foo@example.org','http://enjeuxenergies.wordpress.com','127.0.0.1','2014-01-31 19:46:23','2014-01-31 19:46:23','Great! Thanks!',0,'1','','',5287,0), (5289,1528,'jonboyjams','foo@example.org','http://gravatar.com/jonboyjams','127.0.0.1','2014-02-01 03:04:13','2014-02-01 03:04:13','I don\'t blame you for the terrible overall look-I know that Apple has pushed its standards on all apps. Absolutely NOT liking the update. It never remembers the last page I was on and I have to choose EVERY TIME. If the next update doesn\'t fix this I won\'t be using the app anymore.',0,'1','','',0,0), (5290,1528,'Paul','foo@example.org','http://www.catalystdesigns.co.uk','127.0.0.1','2014-02-01 19:19:04','2014-02-01 19:19:04','Love the upgrade and well done everyone on the hard work! Seems much quicker and I prefer the layout.\n\nThere doesn\'t seem to be an option to delete a self hosted blog anymore!\n\nAlways wanted to see a feature that kept the password up to date as that was often an excuse for not using the app.',0,'1','','',0,0), (5291,1528,'Sendhil','foo@example.org','','127.0.0.1','2014-02-01 23:47:53','2014-02-01 23:47:53','Thanks!\n\nAs far as removing your self hosted site, when you are in the \"Me\" tab tap the \"Edit\" button in the top left and you should see the remove button next to the self hosted site.',0,'1','','',5290,1), (5292,1528,'danh lo de online','foo@example.org','http://sodeonline.wordpress.com/feed/;icon-uri=http://s2.wp.com/i/favicon.ico','127.0.0.1','2014-02-03 15:14:23','2014-02-03 15:14:23','What\'s up to every body, it\'s my first go\nto see of this weblog; this blog carries remarkable and really good stuff for\nreaders.',0,'1','','',0,0), (5293,1528,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-02-04 22:00:41','2014-02-04 22:00:41','I have found a reproducible defect (at least on my iPhone) whereby updating a previous post with iPhone App 3.9 resets the timestamp to an earlier time. If you update the post enough times the timestamp shifts to the prior day - changing the URL and invalidating any links to that post.\n\nI have posted this here:\n\nhttp://ios.forums.wordpress.org/topic/v39-timestamp-defect-changes-url?replies=2#post-11608\n\nA direct link to my troubleshooting efforts can be found here:\n\nhttp://contrafactual.com/2014/02/01/wash-rinse-repeat/',0,'1','','',0,0), (5294,1528,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-02-04 22:07:40','2014-02-04 22:07:40','EnjeuxEnergies and Sendhil,\n\nI committed the sin of posting before reading (sorry). I spent the weekend documenting the shifting timestamp issue (see my prior post).\n\nI am glad that I am not loosing my mind.',0,'1','','',0,0), (5295,1528,'Sendhil','foo@example.org','','127.0.0.1','2014-02-04 22:08:16','2014-02-04 22:08:16','Hi Cb - thanks for the info, we appreciate your detailed response. We are aware of this bug and will be shipping a fix for it very soon. Sorry about any inconvenience.',0,'1','','',5293,1), (5296,1528,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-02-04 22:10:11','2014-02-04 22:10:11','I am just glad that it is known! At first I was doubting my own sanity :-)',0,'1','','',5295,0), (5297,1528,'Sendhil','foo@example.org','','127.0.0.1','2014-02-04 22:15:21','2014-02-04 22:15:21','No worries! Thanks for your help!',0,'1','','',5296,1), (5298,1528,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-02-04 22:28:13','2014-02-04 22:28:13','Sendhil,\n\nHas anyone observed problems with the new link function in iPhone App 3.9?\n\nWhen I try to use it, I frequently get a completely black screen as shown below,\n\nhttp://contrafactual.files.wordpress.com/2014/02/20140203-182409.jpg\n\nThanks,\n\ncb',0,'1','','',0,0), (5299,1528,'Sendhil','foo@example.org','','127.0.0.1','2014-02-04 22:47:24','2014-02-04 22:47:24','Hi Cb,\n\nWe have, thanks for reporting that. That will also be fixed in the new release(3.9.1).',0,'1','','',5298,1), (5300,1528,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-02-05 03:07:27','2014-02-05 03:07:27','Sendhil,\n\nI just got this comment on one of my many posts about this. Can you confirm that it is a UTC offset issue that can go either way?\n\n\n\"Matt February 4, 2014 at 5:45 PM Edit\nI’m having the same problem, but mine is going the other way: if I edit a post on the wordpress app on my iphone, the time for the post gets pushed out by 11 hours.\n\nHere’s what happened:\n\nI just had a scheduled post go live — scheduled via web access to my site, not via the app — and I spotted a typo. Quickly jumped on my phone to correct it and suddenly found that my published post was now unpublished and scheduled for publication in 11 hours time.\n\nIt’s a timezone bug. In my case I’m in Australia. For whatever reason the ios app is using the local time from my phone but treating it as if it is UTC, it’s then converting that back into “local time” by adding on another 11 hours.\n\nI found I could work around the problem by “scheduling” the post for 11 hours in the past (local time) and it suddenly went back to being live.\n\nI suspect you are located somewhere in a timezone that is UTC-6? That would explain why your posts are jumping back by 6 hours every time you update them.\"',0,'1','','',0,0), (5301,1528,'166 - How to Push Local Changes to Your Live WordPress Site','','http://yourwebsiteengineer.com/166-push-local-changes-live-wordpress-site/','127.0.0.1','2014-02-05 13:22:52','2014-02-05 13:22:52','[…] iOS 3.9 […]',0,'1','','pingback',0,0), (5302,1528,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-02-05 21:36:59','2014-02-05 21:36:59','Any guess as to when 3.9.1 will be available on the App Store?',0,'1','','',5299,0), (5303,1528,'Sendhil','foo@example.org','','127.0.0.1','2014-02-05 22:31:38','2014-02-05 22:31:38','We\'re hoping to submit it here this week so it should be there by the end of next week?',0,'1','','',5302,1), (5304,1528,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-02-06 19:03:12','2014-02-06 19:03:12','I have also noticed weirdness with the Notifications tab whereby I will see something like \"John Smith and 2 others liked your post Blah blah blah\", but when I click on the notification the view only shows the first person to like it.',0,'1','','',0,0), (5305,1528,'Sendhil','foo@example.org','','127.0.0.1','2014-02-06 19:07:53','2014-02-06 19:07:53','Yea, that\'s a bug we\'re going to address in a future version.',0,'1','','',5304,1), (5306,1528,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-02-06 19:12:05','2014-02-06 19:12:05','Thanks',0,'1','','',5305,0), (5307,1528,'lamensjan','foo@example.org','http://lamensjan.wordpress.com','127.0.0.1','2014-02-08 13:28:32','2014-02-08 13:28:32','Reblogged this on granddepart.',0,'1','','',0,0), (5308,1528,'thefutureisbright','foo@example.org','http://www.catalystdesigns.co.uk','127.0.0.1','2014-02-22 08:02:07','2014-02-22 08:02:07','Thanks got it!',0,'1','','',5291,0), (5309,1535,'WordPress › WordPress for iOS 3.9.1 Released! « Make WordPress Mobile','','https://make.wordpress.org/mobile/2014/02/12/wordpress-for-ios-3-9-1-released/','127.0.0.1','2014-02-12 01:48:52','2014-02-12 01:48:52','[…] For more details you can view the release post here. […]',0,'1','','pingback',0,0), (5310,1535,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-02-12 02:25:12','2014-02-12 02:25:12','Thank you so very much!!!',0,'1','','',0,0), (5311,1535,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-02-12 02:25:54','2014-02-12 02:25:54','Reblogged this on Contrafactual and commented:\nYes!',0,'1','','',0,0), (5312,1535,'Sendhil','foo@example.org','','127.0.0.1','2014-02-12 03:00:10','2014-02-12 03:00:10','Thank you for your patience!',0,'1','','',5310,1), (5313,1535,'Posted Timestamp Issue to WordPress for iOS | Contrafactual','','http://contrafactual.com/2014/02/04/posted-timestamp-issue-to-wordpress-for-ios/','127.0.0.1','2014-02-12 03:09:07','2014-02-12 03:09:07','[…] http://ios.wordpress.org/2014/02/12/wordpress-for-ios-3-9-1-released/ […]',0,'1','','pingback',0,0), (5314,1535,'If you are reading this … | Contrafactual','','http://contrafactual.com/2014/02/04/if-you-are-reading-this/','127.0.0.1','2014-02-12 03:11:07','2014-02-12 03:11:07','[…] http://ios.wordpress.org/2014/02/12/wordpress-for-ios-3-9-1-released/ […]',0,'1','','pingback',0,0), (5315,1535,'I am not crazy | Contrafactual','','http://contrafactual.com/2014/02/04/i-am-not-crazy/','127.0.0.1','2014-02-12 03:13:55','2014-02-12 03:13:55','[…] http://ios.wordpress.org/2014/02/12/wordpress-for-ios-3-9-1-released/ […]',0,'1','','pingback',0,0), (5316,1535,'Troubleshooting | Contrafactual','','http://contrafactual.com/2014/01/31/1737/','127.0.0.1','2014-02-12 03:16:53','2014-02-12 03:16:53','[…] http://ios.wordpress.org/2014/02/12/wordpress-for-ios-3-9-1-released/ […]',0,'1','','pingback',0,0), (5317,1535,'Post, edit, update, repeat | Contrafactual','','http://contrafactual.com/2014/02/01/post-edit-update-repeat/','127.0.0.1','2014-02-12 03:17:33','2014-02-12 03:17:33','[…] http://ios.wordpress.org/2014/02/12/wordpress-for-ios-3-9-1-released/ […]',0,'1','','pingback',0,0), (5318,1535,'The Nudist War, iOS app 3.9.1, … | Contrafactual','','http://contrafactual.com/2014/02/05/the-nudist-war-ios-app-3-9-1/','127.0.0.1','2014-02-12 03:26:53','2014-02-12 03:26:53','[…] http://ios.wordpress.org/2014/02/12/wordpress-for-ios-3-9-1-released/ […]',0,'1','','pingback',0,0), (5319,1535,'Wash, rinse, repeat | Contrafactual','','http://contrafactual.com/2014/02/04/wash-rinse-repeat-2/','127.0.0.1','2014-02-12 03:28:51','2014-02-12 03:28:51','[…] http://ios.wordpress.org/2014/02/12/wordpress-for-ios-3-9-1-released/ • • • • • • • • • • • • • • • • • • • • • • • • • […]',0,'1','','pingback',0,0), (5320,1535,'Must have scotch … | Contrafactual','','http://contrafactual.com/2014/02/02/must-have-scotch/','127.0.0.1','2014-02-12 03:30:38','2014-02-12 03:30:38','[…] http://ios.wordpress.org/2014/02/12/wordpress-for-ios-3-9-1-released/ […]',0,'1','','pingback',0,0), (5321,1535,'Wash, rinse, repeat | Contrafactual','','http://contrafactual.com/2014/02/01/wash-rinse-repeat/','127.0.0.1','2014-02-12 03:31:19','2014-02-12 03:31:19','[…] http://ios.wordpress.org/2014/02/12/wordpress-for-ios-3-9-1-released/ […]',0,'1','','pingback',0,0), (5322,1535,'Fear of Updating or … | Contrafactual','','http://contrafactual.com/2014/02/01/fear-of-updating-or/','127.0.0.1','2014-02-12 03:36:14','2014-02-12 03:36:14','[…] http://ios.wordpress.org/2014/02/12/wordpress-for-ios-3-9-1-released/ […]',0,'1','','pingback',0,0), (5323,1535,'Ongoing WP Problems | Contrafactual','','http://contrafactual.com/2014/02/02/ongoing-wp-problems/','127.0.0.1','2014-02-12 03:41:29','2014-02-12 03:41:29','[…] http://ios.wordpress.org/2014/02/12/wordpress-for-ios-3-9-1-released/ […]',0,'1','','pingback',0,0), (5324,1535,'technology blog','foo@example.org','http://www.yywuxian.com','127.0.0.1','2014-02-13 15:06:37','2014-02-13 15:06:37','Hey there! Someone in my Facebook group shared this site with us so I\ncame to take a look. I\'m definitely loving the information.\nI\'m bookmarking and will be tweeting this to my followers!\nOutstanding blog and wonderful style and design.',0,'1','','',0,0), (5325,1542,'Aktualizacja: WordPress for iOS 4.0','','http://wpzen.pl/aktualizacja-wordpress-for-ios-4-0/','127.0.0.1','2014-03-20 21:06:50','2014-03-20 21:06:50','[…] Więcej informacji na temat tego uaktualnienia znaleźć można na oficjalnym blogu. […]',0,'1','','pingback',0,0), (5326,1542,'WordPress 4.0 für iOS bringt verbesserte Statistik Ansicht » iFrick.ch - Nothing but Tech','','http://www.ifrick.ch/2014/03/wordpress-4-0-fuer-ios-bringt-verbesserte-statistik-ansicht/','127.0.0.1','2014-03-20 21:31:45','2014-03-20 21:31:45','[…] WordPress für iOS ist ein praktische App welche ich aber vor allem für die Statistik benutze. Bloggen tue ich dann doch lieber am Laptop oder iMac. (via WordPress) […]',0,'1','','pingback',0,0), (5327,1542,'WordPress 4.0 for iOS | 37prime','','http://37prime.wordpress.com/2014/03/20/wordpress-4-0-for-ios/','127.0.0.1','2014-03-20 23:39:50','2014-03-20 23:39:50','[…] What’s New in Version 4.0 […]',0,'1','','pingback',0,0), (5328,1542,'WordPress 4.0 for iOS','','http://37prime.com/news/2014/03/20/wordpress-4-0-for-ios/','127.0.0.1','2014-03-20 23:39:53','2014-03-20 23:39:53','[…] What’s New in Version 4.0 […]',0,'1','','pingback',0,0), (5329,1542,'WPTavern: WordPress For iOS 4.0 Available, New and Improved Stats | A2Z Web Design Tutorial','','http://www.a2zwebdesigntutorial.com/wptavern-wordpress-for-ios-4-0-available-new-and-improved-stats/','127.0.0.1','2014-03-22 22:21:47','2014-03-22 22:21:47','[…] for iOS 4.0 has been released. Stats are now a native component, improving their look and feel on devices running iOS. While I […]',0,'1','','pingback',0,0), (5330,1542,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-03-23 21:01:44','2014-03-23 21:01:44','Still some glitches\n\nOn iPhone cannot position cursor after last character in post.\n\nCannot always easily get back out of the options window.',0,'1','','',0,0), (5331,1542,'Sendhil','foo@example.org','','127.0.0.1','2014-03-23 21:07:50','2014-03-23 21:07:50','Hey cb - thanks for the notifications on the bugs. We are aware of the cursor one. What happens that you can\'t easily back out of the options window? Could you describe it or perhaps take a picture?',0,'1','','',5330,1), (5332,1542,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-03-23 21:29:05','2014-03-23 21:29:05','Will post pick next time it happens',0,'1','','',5331,0), (5333,1542,'WordPress For iOS 4.0 Available, New and Improved Stats','','http://demo.wpstuffs.com/blog/2014/03/22/wordpress-for-ios-4-0-available-new-and-improved-stats/','127.0.0.1','2014-03-24 18:04:13','2014-03-24 18:04:13','[…] for iOS 4.0 has been released. Stats are now a native component, improving their look and feel on devices running iOS. While I […]',0,'1','','pingback',0,0), (5334,1542,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-03-25 01:41:37','2014-03-25 01:41:37','http://contrafactual.com/2014/03/24/wordpress-for-ios-4-0/',0,'1','','',5331,0), (5335,1542,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-03-25 04:44:08','2014-03-25 04:44:08','I added more content to\n\nhttp://contrafactual.com/2014/03/24/wordpress-for-ios-4-0/\n\nShowing \"Options\" weirdness',0,'1','','',0,0), (5336,1542,'WordPress App: Update auf Version 4.0 bringt verbesserte Statistik-Integration | iPhone-Ticker','','http://www.iphone-ticker.de/wordpress-app-update-auf-version-4-0-bringt-verbesserte-statistik-integration-63091/','127.0.0.1','2014-03-25 10:05:22','2014-03-25 10:05:22','[…] hat seine iOS App mit einem Update auf Version 4.0 versehen. Die wichtigste Neueurung ist dabei die Integration der Statistikfunktionen, darüber […]',0,'1','','pingback',0,0), (5337,1542,'WordPress 4.0 - annuaire-sites-wordpress','','http://www.annuaire-sites-wordpress.com/2014/03/wordpress-4-0/','127.0.0.1','2014-03-25 13:40:21','2014-03-25 13:40:21','[…] le blog WordPress, on apprend toutefois que la 4.1 devrait améliorer la gestion des images insérées dans les […]',0,'1','','pingback',0,0), (5338,1542,'Sendhil','foo@example.org','','127.0.0.1','2014-03-25 16:23:46','2014-03-25 16:23:46','Thanks for the detail cb! We\'re looking into those and will hopefully patch them for 4.0.1.',0,'1','','',5334,1), (5339,1542,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-03-26 06:22:02','2014-03-26 06:22:02','Another thing ... Don\'t know the correct term ... When you hold down finger on text and get the magnifying glass with an insertion bar in order to insert text ... Much much too sensitive on iPhone 5s ... Same for attempting to drag selection to expand or shrink selection ... Too sensitive ... Scrolls up and down too fast\n\nPrevious sensitivity was better',0,'1','','',5338,0), (5340,1542,'Sendhil','foo@example.org','','127.0.0.1','2014-03-26 22:39:21','2014-03-26 22:39:21','Hey CB - I think that might be an Apple issue, can you check and see if this happens on other apps?',0,'1','','',5339,1), (5341,1542,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-03-26 23:24:07','2014-03-26 23:24:07','It does not. Just checked the Apple Notes App. It is OK.\n\nThe increased sensitivity is noticeable between 3.9.1 and 4.0',0,'1','','',5340,0), (5342,1542,'Sendhil','foo@example.org','','127.0.0.1','2014-03-27 04:35:34','2014-03-27 04:35:34','Hmmm, it may get solved in 4.0.1 coming out next week, we\'ve tweaked the text editor some to fix a few bugs.',0,'1','','',5341,1), (5343,1542,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-03-27 15:29:03','2014-03-27 15:29:03','It is worse (most noticeable) in landscape mode ',0,'1','','',5342,0), (5344,1542,'Sendhil','foo@example.org','','127.0.0.1','2014-03-27 16:05:51','2014-03-27 16:05:51','Thanks for the extra details.',0,'1','','',5343,1), (5345,1542,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-03-27 16:19:03','2014-03-27 16:19:03','Enhancement Request (for future) - add a \'Search\' option to the \'Posts\' section to more easily find ancient posts. This would eliminate the need for endless scrolling and searching.',0,'1','','',5344,0), (5346,1542,'Sendhil','foo@example.org','','127.0.0.1','2014-03-27 19:25:15','2014-03-27 19:25:15','It\'s definitely on our radar - https://github.com/wordpress-mobile/WordPress-iOS/issues/133',0,'1','','',5345,1), (5347,1542,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-03-30 18:36:57','2014-03-30 18:36:57','Regarding the disappearing blue top banner that allows you to go back from the options on a new post ... I have reproduced the exact cause.\n\nIt occurs if you create a new post give it a title but no content and then try to set the options.',0,'1','','',5344,0), (5348,1542,'Sendhil','foo@example.org','','127.0.0.1','2014-04-01 00:40:01','2014-04-01 00:40:01','Thanks as always cb! This will be fixed in 4.0.1 getting submitted to the app store shortly.',0,'1','','',5347,1), (5349,1542,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-04-01 02:01:15','2014-04-01 02:01:15','Great Thanks!',0,'1','','',5348,0), (5350,1542,'Jiwan Tamang','foo@example.org','http://www.meroip.cm','127.0.0.1','2014-04-02 09:12:02','2014-04-02 09:12:02','Really i fell it is is to comfortable and get extra features',0,'1','','',0,0), (5351,1542,'MeroIP','foo@example.org','http://www.meroip.cm','127.0.0.1','2014-04-02 09:13:25','2014-04-02 09:13:25','Want to thanks total developer teams ...very nice',0,'1','','',0,0), (5352,1542,'Ukash','foo@example.org','https://www.ekonomikkart.com','127.0.0.1','2014-04-02 22:59:05','2014-04-02 22:59:05','Ukash as a team really enjoyed your article thank you very much.',0,'1','','',0,0), (5353,1542,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-04-08 03:10:54','2014-04-08 03:10:54','I have a work-around for Preview not working\n\nhttp://contrafactual.com/2014/04/07/iphone-app-previewcert-error/',0,'1','','',0,0), (5354,1553,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-04-08 03:50:00','2014-04-08 03:50:00','The Preview failure / Certificate error issue has not been resolved.\n\nhttp://contrafactual.com/2014/04/07/iphone-app-previewcert-error/',0,'1','','',0,0), (5355,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-08 03:50:38','2014-04-08 03:50:38','Hi cb - we are aware of that one and will resolve it for the next release. ',0,'1','','',5354,1), (5356,1553,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-04-08 03:52:07','2014-04-08 03:52:07','Excellent, thanks. My post lists a workaround :-)',0,'1','','',5355,0), (5357,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-08 03:53:24','2014-04-08 03:53:24','Thanks for the work around! If you want you can track this issue here - https://github.com/wordpress-mobile/WordPress-iOS/issues/1520.',0,'1','','',5356,1), (5358,1553,'Sahmiieh','foo@example.org','http://sinnerhouse.wordpress.com','127.0.0.1','2014-04-08 16:49:37','2014-04-08 16:49:37','Another issue about photos added in a post and published through iOS devices: It seems the photos will be listed as \"unattached\" to any posts, and when I apply the [gallery] code to the content it then casuses the images to be hidden! It used to work fine in previous releases, how come this time it doesn\'t work?',0,'1','','',0,0), (5359,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-08 22:49:55','2014-04-08 22:49:55','Hi Sahmiieh,\n\nSorry to hear that. Is your blog on WordPress.com or is it a self hosted blog?',0,'1','','',5358,1), (5360,1553,'Sahmiieh','foo@example.org','http://sinnerhouse.wordpress.com','127.0.0.1','2014-04-08 23:13:19','2014-04-08 23:13:19','Hi Sendhil,\nIt is a WordPress.com blog. ',0,'1','','',5359,0), (5361,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-08 23:16:40','2014-04-08 23:16:40','Could you try logging out of your blog, re-logging back in, upload a photo and let me know if the problem still persists?',0,'1','','',5360,1), (5362,1553,'Sahmiieh','foo@example.org','http://sinnerhouse.wordpress.com','127.0.0.1','2014-04-08 23:32:16','2014-04-08 23:32:16','Just tried and yup, still having the same problem.',0,'1','','',5361,0), (5363,1553,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-04-08 23:49:06','2014-04-08 23:49:06','Rats ... 4.0.1 no longer allows me to schedule posts on the future.\n\nALL new posts are Immediate.\n\n:-(\n\nI used that feature a lot.',0,'1','','',0,0), (5364,1553,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-04-09 00:11:29','2014-04-09 00:11:29','http://contrafactual.com/2014/04/08/arrrgggghhhhh/',0,'1','','',0,0), (5365,1553,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-04-09 03:23:58','2014-04-09 03:23:58','4.0.1 scrolling is glitchy. While editing a long post in portrait mode, rapid scrolling to the top (or bottom?) causes as reset back to the bottom (or top). Like a \"Ground Hog Day\" for scrolling (keeps repeating at the same place).',0,'1','','',0,0), (5366,1553,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-04-09 03:51:46','2014-04-09 03:51:46','Beta testers ...\n\nHow do I apply to become one?\n\nI seem to turning over all the stones with \"treasures\" hidden under them.',0,'1','','',0,0), (5367,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-09 06:46:26','2014-04-09 06:46:26','Hey CB - shoot me an email at sendhil AT automattic.com.',0,'1','','',5366,1), (5368,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-09 06:49:41','2014-04-09 06:49:41','Oof - we\'re sorry about that. I was able to reproduce that just now. We\'ll fix that immediately and get out a hot fix asap.',0,'1','','',5363,1), (5369,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-09 07:21:43','2014-04-09 07:21:43','Hi cb - could you go into more detail? What do you mena that rapid scrolling to the top \"causes as reset back to the bottom\"?',0,'1','','',5365,1), (5370,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-09 17:12:40','2014-04-09 17:12:40','Sorry to hear that. We\'ve created an issue and will tackle it asap.',0,'1','','',5362,1), (5371,1553,'Sarah Kalemkiarian','foo@example.org','http://www.nbpes.ca','127.0.0.1','2014-04-12 17:48:02','2014-04-12 17:48:02','I seem to be unable to login using the app with my iPad. It tells me I have the correct username and password (I even logged in through my computer and created a new account to try which doesn\'t work either!) Not sure what to do, I can log in using Safari and going to the site but the app will not allow me to even login.\n\nHELP!!',0,'1','','',0,0), (5372,1553,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-04-13 20:36:42','2014-04-13 20:36:42','http or https?\n\nThe iOS app post editor 4.0.1 forces all occurrences of http or https to https\n\nIs this by design or defect?',0,'1','','',0,0), (5373,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-13 22:50:03','2014-04-13 22:50:03','This is a bit of a flaw that\'s causing some of the problems people are having when they preview posts in the app right now or view the site. As far as the beta test stuff, I got your email and will respond soon.',0,'1','','',5372,1), (5374,1553,'esszymanski','foo@example.org','','127.0.0.1','2014-04-14 14:57:16','2014-04-14 14:57:16','Hi there,\nI cannot get my wordpress app to work properly. I am subscribed to two blogs and only two posts will open from \"one\" of the blogs on my iphone 5. If I try to scroll down, its just blank. I have the most recent of the wordpress app (4.0.1), ive tried restarting my phone several times. So, I know something is seriously wrong with the app. Also, when I try to put in my username/password/ web address for the second blog I subscribe to, it just flashes on my screen and takes me back to my homepage....Help???!?!??!',0,'1','','',0,0), (5375,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-14 21:42:31','2014-04-14 21:42:31','Hi there,\n\nSorry to hear you are having trouble. Are your blogs on WordPress.com or are they self hosted?',0,'1','','',5374,1), (5376,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-14 21:56:20','2014-04-14 21:56:20','Hi Sarah,\n\nIs your blog on WordPress.com or is it on a self hosted blog? If it\'s on WordPress.com do you have two factor authentication setup?',0,'1','','',5371,1), (5377,1553,'esszymanski','foo@example.org','','127.0.0.1','2014-04-14 23:10:30','2014-04-14 23:10:30','Hi there. Im not sure but these are the websites:\nWww.sunflowerhomejournals.com\nHttp://sogladimhere.wordpress.com\n\nThe second one is the one that wont show up at all when i enter the website and the screen just flashes and leaves the app.\n\nCan you help?!',0,'1','','',5375,0), (5378,1553,'cb','foo@example.org','http://contrafactual.wordpress.com','127.0.0.1','2014-04-16 02:59:20','2014-04-16 02:59:20','4.0.2 is out\n\nIt fixes the scheduling and preview issues\n\nWoo Hoo!',0,'1','','',0,0), (5379,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-16 07:37:35','2014-04-16 07:37:35','Glad to hear it!',0,'1','','',5378,1), (5380,1553,'esszymanski','foo@example.org','','127.0.0.1','2014-04-19 01:40:23','2014-04-19 01:40:23','You never responded after i sent my answers. Can you please respond and help me? Pls email me at esszymanski@gmail.com',0,'1','','',5375,0), (5381,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-19 21:45:12','2014-04-19 21:45:12','HI there - sorry about that. Could you do us a favor? Would you mind removing the app, re-installing it, logging into both and then letting me know if the problem still persists?',0,'1','','',5380,1), (5382,1553,'mrstraceyryanTracey','foo@example.org','http://fortheloveoffamily.net','127.0.0.1','2014-04-23 03:15:04','2014-04-23 03:15:04','I attempted to update wordpress tonight, received fatal error messages. I had just posted a new entry which did not post to my media avenues and the site is not working at all now. Message given internal server error.',0,'1','','',0,0), (5383,1553,'Sendhil','foo@example.org','','127.0.0.1','2014-04-23 15:56:34','2014-04-23 15:56:34','Sorry to hear that. Could you try uninstalling the app, re-installing it and letting us know if the problem persists?',0,'1','','',5382,1), (5384,1553,'หลักสูตรการแสดง','foo@example.org','http://kellylarry1221.wordpress.com/2014/05/11/%E0%B9%80%E0%B8%A3%E0%B8%B5%E0%B8%A2%E0%B8%99%E0%B8%A3%E0%B9%89%E0%B8%AD%E0%B8%87%E0%B9%80%E0%B8%9E%E0%B8%A5%E0%B8%87-%E0%B8%AB%E0%B8%A5%E0%B8%B1%E0%B8%8','127.0.0.1','2014-07-28 05:32:11','2014-07-28 05:32:11','Hey just wanted to give you a brief heads up and let you know a\nfew of the pictures aren\'t loading properly. I\'m not\nsure why but I think its a linking issue.\nI\'ve tried it in two different internet browsers and\nboth show the same outcome.',0,'1','','',0,0), (5385,1558,'rubberchickenapps','','http://rubberchickenapps.wordpress.com','127.0.0.1','2014-05-27 00:24:31','2014-05-27 00:24:31','This new version seems to do away with the ability to snap photos or movies or insert movies from the camera roll to a blog. This has created a huge issue for our school that rely on the WordPress for iOS app. Please consider putting this functionality back into the app!\nThanks.',0,'1','','',0,0), (5386,1558,'Donald Lacy','foo@example.org','http://dlacy.wordpress.com','127.0.0.1','2014-05-27 02:23:04','2014-05-27 02:23:04','I use about 5 - 10 pics each entry for my class website. Please make it so that I can select multiple pictures In a Particular Order that I define by the order in which I select my pictures.',0,'1','','',0,0), (5387,1558,'egraves','','','127.0.0.1','2014-06-09 20:12:00','2014-06-09 20:12:00','This new “simpler” image interface takes WordPress back to about 2008. I now have one size of image and it’s too small to see any detail. Please bring back the ability to choose the size of the image I embed and add the ability to choose justification. This change has really undermined the power of the app to render great stories.\n Also, always on my wish list has been the ability to choose to insert target=”_blank” automatically when inserting a link like on the desktop.',0,'1','','',0,0), (5388,1558,'ashmeadprimary','','http://ashmeadprimary.wordpress.com','127.0.0.1','2014-06-11 14:06:21','2014-06-11 14:06:21','Can I echo rubberchickenapps’ concerns? We use the app to upload photos to our blog every day and not being able to add videos is really frustrating!',0,'1','','',0,0), (5389,1558,'Ricard Torres','foo@example.org','http://www.quicoto.com','127.0.0.1','2014-08-13 07:36:48','2014-08-13 07:36:48','Why there\'s no more upload percentage when adding pictures? So useful when having slow connection. Now I just don\'t know how much is left to upload.\n\nAlso the app is way slower than before in iPhone 4 (latest iOS).\n\nThank you.',0,'1','','',0,0), (5390,2117,'Matt','foo@example.org','http://matt.wordpress.com','127.0.0.1','2014-08-06 00:51:31','2014-08-06 00:51:31','Really great release everybody!',0,'1','','',0,0), (5391,2117,'Julio E. Isaias Rodriguez Gonzalez','foo@example.org','http://www.cbc.com.do','127.0.0.1','2014-08-13 21:55:25','2014-08-13 21:55:25','Glad to feel the power of wordpress. I am Luvin\' it...day by day',0,'1','','',0,0), (5393,2193,'Jan Lamens','foo@example.org','http://lamensjan.gaatverweg.nl','127.0.0.1','2014-09-04 02:32:31','2014-09-04 02:32:31','Ii use version 4.2.1 on my ipad mini! Does replace this 3.1 version app my app 4.2.1 on the ipad?',0,'1','','',0,0), (5394,2193,'Maxime','foo@example.org','http://biais.org','127.0.0.1','2014-09-04 12:28:48','2014-09-04 12:28:48','This version is for Android devices only, but a new version of the WordPress iOS app is coming soon. You\'ll be able to update to the WordPress iOS app version 4.3 next week.',0,'1','','',5393,1); /*!40000 ALTER TABLE `wporg_36_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_36_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_36_links`; CREATE TABLE `wporg_36_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_36_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_36_options`; CREATE TABLE `wporg_36_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_36_options` WRITE; /*!40000 ALTER TABLE `wporg_36_options` DISABLE KEYS */; INSERT INTO `wporg_36_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (3,'siteurl','http://apps.wordpressorg.dev','yes'), (4,'home','http://apps.wordpressorg.dev','yes'), (5,'blogname','WordPress.org Mobile Apps','yes'), (6,'blogdescription','Just another WordPress site','yes'), (7,'users_can_register','0','yes'), (8,'admin_email','foo@example.org','yes'), (9,'start_of_week','1','yes'), (10,'use_balanceTags','0','yes'), (11,'use_smilies','1','yes'), (12,'require_name_email','1','yes'), (13,'comments_notify','1','yes'), (14,'posts_per_rss','10','yes'), (15,'rss_use_excerpt','0','yes'), (16,'mailserver_url','mail.example.com','yes'), (17,'mailserver_login','login@example.com','yes'), (18,'mailserver_pass','password','yes'), (19,'mailserver_port','110','yes'), (20,'default_category','1','yes'), (21,'default_comment_status','open','yes'), (22,'default_ping_status','open','yes'), (23,'default_pingback_flag','1','yes'), (24,'posts_per_page','10','yes'), (25,'date_format','F j, Y','yes'), (26,'time_format','g:i a','yes'), (27,'links_updated_date_format','F j, Y g:i a','yes'), (28,'comment_moderation','0','yes'), (29,'moderation_notify','1','yes'), (30,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (32,'hack_file','0','yes'), (33,'blog_charset','UTF-8','yes'), (34,'moderation_keys','','no'), (35,'active_plugins','a:1:{i:0;s:41:\"wordpress-importer/wordpress-importer.php\";}','yes'), (36,'category_base','','yes'), (37,'ping_sites','http://rpc.pingomatic.com/','yes'), (39,'comment_max_links','2','yes'), (40,'gmt_offset','0','yes'), (41,'default_email_category','1','yes'), (42,'recently_edited','','no'), (43,'template','pub/wporg-apps','yes'), (44,'stylesheet','pub/wporg-apps','yes'), (45,'comment_whitelist','1','yes'), (46,'blacklist_keys','','no'), (47,'comment_registration','0','yes'), (48,'html_type','text/html','yes'), (49,'use_trackback','0','yes'), (50,'default_role','subscriber','yes'), (51,'db_version','37965','yes'), (52,'uploads_use_yearmonth_folders','1','yes'), (53,'upload_path','','yes'), (54,'blog_public','1','yes'), (55,'default_link_category','2','yes'), (56,'show_on_front','page','yes'), (57,'tag_base','','yes'), (58,'show_avatars','1','yes'), (59,'avatar_rating','G','yes'), (60,'upload_url_path','','yes'), (61,'thumbnail_size_w','150','yes'), (62,'thumbnail_size_h','150','yes'), (63,'thumbnail_crop','1','yes'), (64,'medium_size_w','300','yes'), (65,'medium_size_h','300','yes'), (66,'avatar_default','mystery','yes'), (67,'large_size_w','1024','yes'), (68,'large_size_h','1024','yes'), (69,'image_default_link_type','file','yes'), (70,'image_default_size','','yes'), (71,'image_default_align','','yes'), (72,'close_comments_for_old_posts','0','yes'), (73,'close_comments_days_old','14','yes'), (74,'thread_comments','1','yes'), (75,'thread_comments_depth','5','yes'), (76,'page_comments','0','yes'), (77,'comments_per_page','50','yes'), (78,'default_comments_page','newest','yes'), (79,'comment_order','asc','yes'), (80,'sticky_posts','a:0:{}','yes'), (81,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (82,'widget_text','a:0:{}','yes'), (83,'widget_rss','a:0:{}','yes'), (84,'uninstall_plugins','a:0:{}','no'), (85,'timezone_string','','yes'), (86,'page_for_posts','11','yes'), (87,'page_on_front','2369','yes'), (88,'default_post_format','0','yes'), (89,'link_manager_enabled','0','yes'), (90,'initial_db_version','29630','yes'), (91,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_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'), (92,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (94,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (95,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (96,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (97,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";N;s:13:\"array_version\";i:3;}','yes'), (98,'cron','a:3:{i:1480909575;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1480952795;a:1:{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:7:\"version\";i:2;}','yes'), (103,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1417660229;s:7:\"checked\";a:7:{s:12:\"twentyeleven\";s:3:\"1.9\";s:13:\"twentyfifteen\";s:3:\"1.0\";s:14:\"twentyfourteen\";s:3:\"1.2\";s:9:\"twentyten\";s:3:\"1.7\";s:14:\"twentythirteen\";s:3:\"1.3\";s:12:\"twentytwelve\";s:3:\"1.5\";s:10:\"wporg-apps\";s:3:\"1.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'), (104,'_transient_random_seed','b83be093acc7bc8b905a080dbbc44292','yes'), (105,'auth_key','7c8&XA]SXJw1TCI84InTSLJ$R%Cu_z&gRE(H=(,mL>~p[6ih?R.b 1Hm6m/rm(S4','yes'), (106,'auth_salt','H/seix(=]t,LxV!<6Q>TpN|j*,7{`]?V1S^yY3kt #]#Gm]^?K-`62!.WqKwS*g{','yes'), (107,'logged_in_key','e[!<03I(C;6-QtWN]6iI_zhw|2Uy_Q-L4 llG|x$x?6;K13TL<0rK3L$','yes'), (109,'nonce_key','x*vxxV0o6z**(R~oGe;ofkxW!YhPmx,>]dH','yes'), (110,'nonce_salt','LGwFW(:xZq/tsZoPS{u-A4~_cHwy5]KGF*bME4GPM;3#N<;&uf;<]VtO2Yg5%?J,','yes'), (129,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1417660228;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}}','yes'), (130,'recently_activated','a:1:{i:0;b:0;}','yes'), (145,'theme_mods_twentyfourteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1410884178;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'), (146,'template_root','/themes','yes'), (147,'stylesheet_root','/themes','yes'), (148,'current_theme','wpmobileapps','yes'), (149,'theme_mods_wporg-apps','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:163;s:6:\"social\";i:164;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418084099;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}}}}','yes'), (150,'theme_switched','','yes'), (162,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'), (171,'_site_transient_timeout_theme_roots','1417662027','yes'), (172,'_site_transient_theme_roots','a:7:{s:12:\"twentyeleven\";s:58:\"/srv/www/apps.wordpressorg.dev/wordpress/wp-content/themes\";s:13:\"twentyfifteen\";s:58:\"/srv/www/apps.wordpressorg.dev/wordpress/wp-content/themes\";s:14:\"twentyfourteen\";s:58:\"/srv/www/apps.wordpressorg.dev/wordpress/wp-content/themes\";s:9:\"twentyten\";s:58:\"/srv/www/apps.wordpressorg.dev/wordpress/wp-content/themes\";s:14:\"twentythirteen\";s:58:\"/srv/www/apps.wordpressorg.dev/wordpress/wp-content/themes\";s:12:\"twentytwelve\";s:58:\"/srv/www/apps.wordpressorg.dev/wordpress/wp-content/themes\";s:10:\"wporg-apps\";s:7:\"/themes\";}','yes'), (173,'db_upgraded','1','yes'), (175,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:11:\"development\";s:8:\"download\";s:57:\"https://wordpress.org/nightly-builds/wordpress-latest.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://wordpress.org/nightly-builds/wordpress-latest.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:15:\"4.1-beta2-30734\";s:7:\"version\";s:15:\"4.1-beta2-30734\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.8\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://wordpress.org/nightly-builds/wordpress-latest.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://wordpress.org/nightly-builds/wordpress-latest.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:15:\"4.1-beta2-30734\";s:7:\"version\";s:15:\"4.1-beta2-30734\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"3.8\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1417660687;s:15:\"version_checked\";s:15:\"4.1-beta2-30738\";s:12:\"translations\";a:0:{}}','yes'), (176,'_site_transient_timeout_browser_b07ac3be77f9031e8f7fe4cd2bfd43e4','1418265487','yes'), (177,'_site_transient_browser_b07ac3be77f9031e8f7fe4cd2bfd43e4','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"35.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','yes'), (206,'theme_mods_twentyfifteen','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418084145;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (207,'allowedthemes','a:1:{s:14:\"pub/wporg-apps\";b:1;}','yes'), (208,'theme_mods_pub/wporg-apps','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:163;s:6:\"social\";i:164;}}','yes'), (213,'finished_splitting_shared_terms','1','yes'), (214,'rewrite_rules','a:72:{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: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: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:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s: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:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=2369&cpage=$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: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: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:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (226,'category_children','a:0:{}','yes'), (227,'_split_terms','a:4:{i:2;a:1:{s:8:\"post_tag\";i:166;}i:4;a:1:{s:8:\"post_tag\";i:167;}i:5;a:1:{s:8:\"post_tag\";i:168;}i:10;a:1:{s:8:\"post_tag\";i:169;}}','yes'), (230,'post_count','15','yes'), (231,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (232,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (233,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (234,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (236,'site_icon','0','yes'), (237,'medium_large_size_w','768','yes'), (238,'medium_large_size_h','0','yes'); /*!40000 ALTER TABLE `wporg_36_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_36_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_36_postmeta`; CREATE TABLE `wporg_36_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_36_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_36_postmeta` DISABLE KEYS */; INSERT INTO `wporg_36_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (4,103,'_wp_attached_file','2008/07/blogtitle.png'), (5,103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:638;s:6:\"height\";i:117;s:4:\"file\";s:21:\"2008/07/blogtitle.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"blogtitle-150x117.png\";s:5:\"width\";i:150;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"blogtitle-300x55.png\";s:5:\"width\";i:300;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7,103,'pre_import_post_parent','0'), (8,103,'pre_import_post_id','7'), (12,103,'original_post_id','5'), (13,103,'_wp_old_slug','5'), (16,103,'original_post_id','6'), (17,103,'_wp_old_slug','6'), (20,103,'original_post_id','5'), (21,103,'_wp_old_slug','5'), (22,112,'_wp_attached_file','2008/07/ss1.jpg'), (23,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:414;s:6:\"height\";i:770;s:4:\"file\";s:15:\"2008/07/ss1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ss1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ss1-161x300.jpg\";s:5:\"width\";i:161;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"ss1-414x372.jpg\";s:5:\"width\";i:414;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:15:\"ss1-414x576.jpg\";s:5:\"width\";i:414;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (24,112,'pre_import_post_parent','101'), (25,112,'pre_import_post_id','14'), (30,112,'_wp_old_slug','12'), (31,112,'original_post_id','12'), (34,112,'original_post_id','13'), (35,112,'_wp_old_slug','13'), (38,112,'original_post_id','12'), (39,112,'_wp_old_slug','12'), (40,113,'_wp_attached_file','2008/07/ss2.jpg'), (41,113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:414;s:6:\"height\";i:770;s:4:\"file\";s:15:\"2008/07/ss2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ss2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ss2-161x300.jpg\";s:5:\"width\";i:161;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"ss2-414x372.jpg\";s:5:\"width\";i:414;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:15:\"ss2-414x576.jpg\";s:5:\"width\";i:414;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (42,113,'pre_import_post_parent','101'), (43,113,'pre_import_post_id','15'), (46,113,'_wp_old_slug','12'), (47,113,'original_post_id','12'), (52,113,'original_post_id','13'), (53,113,'_wp_old_slug','13'), (56,113,'original_post_id','12'), (57,113,'_wp_old_slug','12'), (58,114,'_wp_attached_file','2008/07/ss3.jpg'), (59,114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:414;s:6:\"height\";i:770;s:4:\"file\";s:15:\"2008/07/ss3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ss3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ss3-161x300.jpg\";s:5:\"width\";i:161;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"ss3-414x372.jpg\";s:5:\"width\";i:414;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:15:\"ss3-414x576.jpg\";s:5:\"width\";i:414;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (60,114,'pre_import_post_parent','101'), (61,114,'pre_import_post_id','16'), (64,114,'original_post_id','12'), (65,114,'_wp_old_slug','12'), (70,114,'original_post_id','13'), (71,114,'_wp_old_slug','13'), (74,114,'original_post_id','12'), (75,114,'_wp_old_slug','12'), (76,237,'_wp_attached_file','2008/09/chart-test.pdf'), (79,237,'pre_import_post_parent','0'), (80,237,'pre_import_post_id','237'), (85,237,'original_post_id','118'), (86,237,'_wp_old_slug','118'), (87,237,'original_post_id','216'), (88,237,'_wp_old_slug','216'), (91,237,'original_post_id','118'), (92,237,'_wp_old_slug','118'), (93,238,'_wp_attached_file','2008/09/wp-iphone-july-august.png'), (94,238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:509;s:6:\"height\";i:381;s:4:\"file\";s:33:\"2008/09/wp-iphone-july-august.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"wp-iphone-july-august-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"wp-iphone-july-august-300x224.png\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"wp-iphone-july-august-509x372.png\";s:5:\"width\";i:509;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (95,238,'pre_import_post_parent','236'), (96,238,'pre_import_post_id','238'), (99,238,'original_post_id','118'), (100,238,'_wp_old_slug','118'), (105,238,'original_post_id','236'), (106,238,'_wp_old_slug','236'), (109,238,'original_post_id','118'), (110,238,'_wp_old_slug','118'), (111,239,'_wp_attached_file','2008/09/wp-iphone-stats.png'), (112,239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:462;s:6:\"height\";i:368;s:4:\"file\";s:27:\"2008/09/wp-iphone-stats.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"wp-iphone-stats-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"wp-iphone-stats-300x238.png\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (113,239,'pre_import_post_parent','236'), (114,239,'pre_import_post_id','239'), (117,239,'original_post_id','118'), (118,239,'_wp_old_slug','118'), (123,239,'original_post_id','236'), (124,239,'_wp_old_slug','236'), (127,239,'original_post_id','118'), (128,239,'_wp_old_slug','118'), (129,242,'_wp_attached_file','2008/09/wp-iphone-installs.png'), (130,242,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:359;s:6:\"height\";i:362;s:4:\"file\";s:30:\"2008/09/wp-iphone-installs.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"wp-iphone-installs-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"wp-iphone-installs-297x300.png\";s:5:\"width\";i:297;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (131,242,'pre_import_post_parent','236'), (132,242,'pre_import_post_id','242'), (135,242,'_wp_old_slug','118'), (136,242,'original_post_id','118'), (141,242,'original_post_id','236'), (142,242,'_wp_old_slug','236'), (145,242,'original_post_id','118'), (146,242,'_wp_old_slug','118'), (147,244,'_wp_attached_file','2008/09/iphone-wordpress-stats.png'), (148,244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:337;s:6:\"height\";i:339;s:4:\"file\";s:34:\"2008/09/iphone-wordpress-stats.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"iphone-wordpress-stats-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"iphone-wordpress-stats-298x300.png\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (149,244,'pre_import_post_parent','236'), (150,244,'pre_import_post_id','244'), (154,244,'original_post_id','118'), (155,244,'_wp_old_slug','118'), (159,244,'original_post_id','236'), (160,244,'_wp_old_slug','236'), (163,244,'original_post_id','118'), (164,244,'_wp_old_slug','118'), (165,246,'_wp_attached_file','2008/09/iphone-wp-stats.png'), (166,246,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:470;s:6:\"height\";i:400;s:4:\"file\";s:27:\"2008/09/iphone-wp-stats.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"iphone-wp-stats-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"iphone-wp-stats-300x255.png\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"iphone-wp-stats-470x372.png\";s:5:\"width\";i:470;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (167,246,'pre_import_post_parent','236'), (168,246,'pre_import_post_id','246'), (171,246,'_wp_old_slug','118'), (172,246,'original_post_id','118'), (177,246,'original_post_id','236'), (178,246,'_wp_old_slug','236'), (181,246,'original_post_id','118'), (182,246,'_wp_old_slug','118'), (183,319,'_wp_attached_file','2009/03/wordpress-iphone-app-store.png'), (184,319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:373;s:6:\"height\";i:156;s:4:\"file\";s:38:\"2009/03/wordpress-iphone-app-store.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"wordpress-iphone-app-store-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"wordpress-iphone-app-store-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (185,319,'pre_import_post_parent','318'), (186,319,'pre_import_post_id','319'), (189,319,'_wp_old_slug','318'), (192,319,'original_post_id','118'), (193,319,'_wp_old_slug','118'), (194,319,'original_post_id','318'), (199,319,'original_post_id','118'), (200,319,'_wp_old_slug','118'), (201,321,'_wp_attached_file','2009/03/ss-about.jpg'), (202,321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:790;s:4:\"file\";s:20:\"2009/03/ss-about.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"ss-about-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"ss-about-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"ss-about-460x372.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"ss-about-460x576.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (203,321,'_wp_old_slug','318'), (204,321,'original_post_id','318'), (205,321,'pre_import_post_parent','107'), (206,321,'pre_import_post_id','321'), (211,321,'original_post_id','118'), (212,321,'_wp_old_slug','118'), (217,321,'original_post_id','118'), (218,321,'_wp_old_slug','118'), (219,322,'_wp_attached_file','2009/03/ss-add.jpg'), (220,322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:790;s:4:\"file\";s:18:\"2009/03/ss-add.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ss-add-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"ss-add-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"ss-add-460x372.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"ss-add-460x576.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (222,322,'pre_import_post_parent','107'), (223,322,'pre_import_post_id','322'), (228,322,'original_post_id','118'), (229,322,'_wp_old_slug','118'), (231,322,'original_post_id','318'), (232,322,'_wp_old_slug','318'), (235,322,'original_post_id','118'), (236,322,'_wp_old_slug','118'), (237,323,'_wp_attached_file','2009/03/ss-commentmod.jpg'), (238,323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:460;s:4:\"file\";s:25:\"2009/03/ss-commentmod.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"ss-commentmod-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"ss-commentmod-300x174.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"ss-commentmod-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (239,323,'pre_import_post_parent','107'), (240,323,'pre_import_post_id','323'), (243,323,'original_post_id','118'), (244,323,'_wp_old_slug','118'), (249,323,'original_post_id','318'), (250,323,'_wp_old_slug','318'), (253,323,'original_post_id','118'), (254,323,'_wp_old_slug','118'), (255,324,'_wp_attached_file','2009/03/ss-comments.jpg'), (256,324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:790;s:4:\"file\";s:23:\"2009/03/ss-comments.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"ss-comments-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"ss-comments-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"ss-comments-460x372.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"ss-comments-460x576.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (258,324,'original_post_id','318'), (259,324,'_wp_old_slug','318'), (260,324,'pre_import_post_parent','107'), (261,324,'pre_import_post_id','324'), (264,324,'_wp_old_slug','118'), (265,324,'original_post_id','118'), (271,324,'original_post_id','118'), (272,324,'_wp_old_slug','118'), (273,325,'_wp_attached_file','2009/03/ss-main.jpg'), (274,325,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:790;s:4:\"file\";s:19:\"2009/03/ss-main.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"ss-main-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"ss-main-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"ss-main-460x372.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:19:\"ss-main-460x576.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (277,325,'pre_import_post_parent','107'), (278,325,'pre_import_post_id','325'), (283,325,'_wp_old_slug','118'), (284,325,'original_post_id','118'), (285,325,'original_post_id','318'), (286,325,'_wp_old_slug','318'), (289,325,'original_post_id','118'), (290,325,'_wp_old_slug','118'), (291,326,'_wp_attached_file','2009/03/ss-page.jpg'), (292,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:790;s:4:\"file\";s:19:\"2009/03/ss-page.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"ss-page-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"ss-page-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"ss-page-460x372.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:19:\"ss-page-460x576.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (293,326,'pre_import_post_parent','107'), (294,326,'pre_import_post_id','326'), (297,326,'original_post_id','118'), (298,326,'_wp_old_slug','118'), (301,326,'original_post_id','318'), (302,326,'_wp_old_slug','318'), (307,326,'original_post_id','118'), (308,326,'_wp_old_slug','118'), (309,327,'_wp_attached_file','2009/03/ss-photos.jpg'), (310,327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:790;s:4:\"file\";s:21:\"2009/03/ss-photos.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"ss-photos-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"ss-photos-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"ss-photos-460x372.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"ss-photos-460x576.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (311,327,'_wp_old_slug','318'), (312,327,'original_post_id','318'), (314,327,'pre_import_post_parent','107'), (315,327,'pre_import_post_id','327'), (319,327,'original_post_id','118'), (320,327,'_wp_old_slug','118'), (325,327,'original_post_id','118'), (326,327,'_wp_old_slug','118'), (327,328,'_wp_attached_file','2009/03/ss-posts.jpg'), (328,328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:790;s:4:\"file\";s:20:\"2009/03/ss-posts.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"ss-posts-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"ss-posts-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"ss-posts-460x372.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"ss-posts-460x576.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (331,328,'pre_import_post_parent','107'), (332,328,'pre_import_post_id','328'), (336,328,'original_post_id','118'), (337,328,'_wp_old_slug','118'), (339,328,'_wp_old_slug','318'), (340,328,'original_post_id','318'), (343,328,'original_post_id','118'), (344,328,'_wp_old_slug','118'), (345,329,'_wp_attached_file','2009/03/ss-write.jpg'), (346,329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:790;s:4:\"file\";s:20:\"2009/03/ss-write.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"ss-write-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"ss-write-174x300.jpg\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"ss-write-460x372.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"ss-write-460x576.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (347,329,'pre_import_post_parent','107'), (348,329,'pre_import_post_id','329'), (353,329,'original_post_id','118'), (354,329,'_wp_old_slug','118'), (357,329,'original_post_id','318'), (358,329,'_wp_old_slug','318'), (361,329,'original_post_id','118'), (362,329,'_wp_old_slug','118'), (363,162,'_wp_attached_file','2009/11/04-mainscreen-storm-lcd-only.png'), (364,162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:40:\"2009/11/04-mainscreen-storm-lcd-only.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"04-mainscreen-storm-lcd-only-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"04-mainscreen-storm-lcd-only-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"04-mainscreen-storm-lcd-only-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (365,162,'pre_import_post_parent','0'), (366,162,'pre_import_post_id','162'), (369,163,'_wp_attached_file','2009/11/02-mainscreen-full-storm-device.png'), (370,163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:43:\"2009/11/02-mainscreen-full-storm-device.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"02-mainscreen-full-storm-device-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"02-mainscreen-full-storm-device-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"02-mainscreen-full-storm-device-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:43:\"02-mainscreen-full-storm-device-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (371,163,'pre_import_post_parent','0'), (372,163,'pre_import_post_id','163'), (375,165,'_wp_attached_file','2009/11/09-media-properties-full-storm-device.png'), (376,165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:49:\"2009/11/09-media-properties-full-storm-device.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"09-media-properties-full-storm-device-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"09-media-properties-full-storm-device-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"09-media-properties-full-storm-device-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:49:\"09-media-properties-full-storm-device-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (377,165,'pre_import_post_parent','0'), (378,165,'pre_import_post_id','165'), (381,166,'_wp_attached_file','2009/11/08-media-screen-storm-lcd-only.png'), (382,166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:42:\"2009/11/08-media-screen-storm-lcd-only.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"08-media-screen-storm-lcd-only-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"08-media-screen-storm-lcd-only-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"08-media-screen-storm-lcd-only-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (383,166,'pre_import_post_parent','0'), (384,166,'pre_import_post_id','166'), (387,167,'_wp_attached_file','2009/11/07-media-screen-full-storm-device.png'), (388,167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:45:\"2009/11/07-media-screen-full-storm-device.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"07-media-screen-full-storm-device-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"07-media-screen-full-storm-device-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"07-media-screen-full-storm-device-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:45:\"07-media-screen-full-storm-device-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (389,167,'pre_import_post_parent','0'), (390,167,'pre_import_post_id','167'), (393,168,'_wp_attached_file','2009/11/06-blog-screen-storm-lcd-only.png'), (394,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:41:\"2009/11/06-blog-screen-storm-lcd-only.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"06-blog-screen-storm-lcd-only-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"06-blog-screen-storm-lcd-only-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"06-blog-screen-storm-lcd-only-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (395,168,'pre_import_post_parent','0'), (396,168,'pre_import_post_id','168'), (399,169,'_wp_attached_file','2009/11/05-blog-screen-full-storm-device.png'), (400,169,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:44:\"2009/11/05-blog-screen-full-storm-device.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"05-blog-screen-full-storm-device-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"05-blog-screen-full-storm-device-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"05-blog-screen-full-storm-device-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:44:\"05-blog-screen-full-storm-device-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (401,169,'pre_import_post_parent','0'), (402,169,'pre_import_post_id','169'), (405,170,'_wp_attached_file','2009/11/03-mainscreen-lcd-only.png'), (406,170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:34:\"2009/11/03-mainscreen-lcd-only.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"03-mainscreen-lcd-only-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"03-mainscreen-lcd-only-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (407,170,'pre_import_post_parent','0'), (408,170,'pre_import_post_id','170'), (411,171,'_wp_attached_file','2009/11/01-mainscreen-full-device.png'), (412,171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:632;s:6:\"height\";i:1084;s:4:\"file\";s:37:\"2009/11/01-mainscreen-full-device.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"01-mainscreen-full-device-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"01-mainscreen-full-device-174x300.png\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"01-mainscreen-full-device-597x1024.png\";s:5:\"width\";i:597;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"01-mainscreen-full-device-632x372.png\";s:5:\"width\";i:632;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"01-mainscreen-full-device-632x576.png\";s:5:\"width\";i:632;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (413,171,'pre_import_post_parent','0'), (414,171,'pre_import_post_id','171'), (417,330,'_wp_attached_file','2009/03/ss-writeland.jpg'), (418,330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:460;s:4:\"file\";s:24:\"2009/03/ss-writeland.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"ss-writeland-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"ss-writeland-300x174.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"ss-writeland-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (419,330,'_wp_old_slug','318'), (420,330,'original_post_id','318'), (421,330,'pre_import_post_parent','107'), (422,330,'pre_import_post_id','330'), (425,330,'_wp_old_slug','118'), (426,330,'original_post_id','118'), (433,330,'original_post_id','118'), (434,330,'_wp_old_slug','118'), (435,368,'_wp_attached_file','2009/05/add-a-blog.png'), (436,368,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:480;s:4:\"file\";s:22:\"2009/05/add-a-blog.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"add-a-blog-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"add-a-blog-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"add-a-blog-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (437,368,'pre_import_post_parent','357'), (438,368,'pre_import_post_id','368'), (442,368,'_wp_old_slug','357'), (443,368,'original_post_id','357'), (445,368,'original_post_id','118'), (446,368,'_wp_old_slug','118'), (451,368,'original_post_id','118'), (452,368,'_wp_old_slug','118'), (453,369,'_wp_attached_file','2009/05/home-screen.png'), (454,369,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:480;s:4:\"file\";s:23:\"2009/05/home-screen.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"home-screen-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"home-screen-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"home-screen-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (455,369,'_wp_old_slug','357'), (456,369,'original_post_id','357'), (457,369,'pre_import_post_parent','357'), (458,369,'pre_import_post_id','369'), (463,369,'original_post_id','118'), (464,369,'_wp_old_slug','118'), (469,369,'original_post_id','118'), (470,369,'_wp_old_slug','118'), (471,370,'_wp_attached_file','2009/05/how-to-edit-or-delete.png'), (472,370,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:480;s:4:\"file\";s:33:\"2009/05/how-to-edit-or-delete.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"how-to-edit-or-delete-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"how-to-edit-or-delete-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"how-to-edit-or-delete-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (475,370,'pre_import_post_parent','357'), (476,370,'pre_import_post_id','370'), (479,370,'_wp_old_slug','118'), (482,370,'original_post_id','118'), (483,370,'_wp_old_slug','357'), (484,370,'original_post_id','357'), (487,370,'original_post_id','118'), (488,370,'_wp_old_slug','118'), (489,371,'_wp_attached_file','2009/05/saving.png'), (490,371,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:480;s:4:\"file\";s:18:\"2009/05/saving.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"saving-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"saving-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"saving-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (491,371,'pre_import_post_parent','357'), (492,371,'pre_import_post_id','371'), (495,371,'original_post_id','118'), (498,371,'_wp_old_slug','118'), (501,371,'original_post_id','357'), (502,371,'_wp_old_slug','357'), (505,371,'original_post_id','118'), (506,371,'_wp_old_slug','118'), (507,374,'_wp_attached_file','2009/05/new-validation.png'), (508,374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:480;s:4:\"file\";s:26:\"2009/05/new-validation.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"new-validation-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"new-validation-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"new-validation-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (509,374,'pre_import_post_parent','357'), (510,374,'pre_import_post_id','374'), (513,374,'_wp_old_slug','118'), (514,374,'original_post_id','118'), (519,374,'original_post_id','357'), (520,374,'_wp_old_slug','357'), (523,374,'original_post_id','118'), (524,374,'_wp_old_slug','118'), (525,401,'_wp_attached_file','2009/07/iphone-simulator-1.png'), (526,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:414;s:6:\"height\";i:770;s:4:\"file\";s:30:\"2009/07/iphone-simulator-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"iphone-simulator-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"iphone-simulator-1-161x300.png\";s:5:\"width\";i:161;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"iphone-simulator-1-414x372.png\";s:5:\"width\";i:414;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"iphone-simulator-1-414x576.png\";s:5:\"width\";i:414;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (527,401,'pre_import_post_parent','0'), (528,401,'pre_import_post_id','401'), (530,401,'_wp_old_slug','118'), (531,401,'original_post_id','118'), (534,401,'original_post_id','397'), (535,401,'_wp_old_slug','397'), (537,401,'original_post_id','118'), (538,401,'_wp_old_slug','118'), (539,418,'_wp_attached_file','2009/08/img_0173.png'), (540,418,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:480;s:4:\"file\";s:20:\"2009/08/img_0173.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"img_0173-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"img_0173-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"img_0173-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (541,418,'pre_import_post_parent','417'), (542,418,'pre_import_post_id','418'), (543,418,'original_post_id','118'), (548,418,'_wp_old_slug','118'), (551,418,'original_post_id','417'), (552,418,'_wp_old_slug','417'), (555,418,'original_post_id','118'), (556,418,'_wp_old_slug','118'), (557,447,'_wp_attached_file','2009/09/ss.png'), (558,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:624;s:6:\"height\";i:586;s:4:\"file\";s:14:\"2009/09/ss.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"ss-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"ss-300x281.png\";s:5:\"width\";i:300;s:6:\"height\";i:281;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"ss-624x372.png\";s:5:\"width\";i:624;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:14:\"ss-624x576.png\";s:5:\"width\";i:624;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (559,447,'_wp_old_slug','118'), (560,447,'original_post_id','118'), (561,447,'pre_import_post_parent','0'), (562,447,'pre_import_post_id','447'), (566,447,'original_post_id','432'), (567,447,'_wp_old_slug','432'), (569,447,'original_post_id','118'), (570,447,'_wp_old_slug','118'), (571,540,'_wp_attached_file','2009/11/charts1.png'), (572,540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:571;s:6:\"height\";i:485;s:4:\"file\";s:19:\"2009/11/charts1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"charts1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"charts1-300x254.png\";s:5:\"width\";i:300;s:6:\"height\";i:254;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"charts1-571x372.png\";s:5:\"width\";i:571;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (573,540,'_wp_old_slug','118'), (576,540,'original_post_id','118'), (577,540,'pre_import_post_parent','506'), (578,540,'pre_import_post_id','540'), (583,540,'original_post_id','506'), (584,540,'_wp_old_slug','506'), (587,540,'original_post_id','118'), (588,540,'_wp_old_slug','118'), (589,1725,'_wp_attached_file','2009/11/10-media-properties-storm-lcd-only.png'), (590,1725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:46:\"2009/11/10-media-properties-storm-lcd-only.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"10-media-properties-storm-lcd-only-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"10-media-properties-storm-lcd-only-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"10-media-properties-storm-lcd-only-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (591,1725,'pre_import_post_parent','0'), (592,1725,'pre_import_post_id','164'), (595,175,'_wp_attached_file','2009/11/04-mainscreen-storm-lcd-only1.png'), (596,175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:41:\"2009/11/04-mainscreen-storm-lcd-only1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"04-mainscreen-storm-lcd-only1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"04-mainscreen-storm-lcd-only1-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"04-mainscreen-storm-lcd-only1-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (597,175,'pre_import_post_parent','161'), (598,175,'pre_import_post_id','175'), (601,176,'_wp_attached_file','2009/11/02-mainscreen-full-storm-device1.png'), (602,176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:44:\"2009/11/02-mainscreen-full-storm-device1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"02-mainscreen-full-storm-device1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"02-mainscreen-full-storm-device1-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"02-mainscreen-full-storm-device1-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:44:\"02-mainscreen-full-storm-device1-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (603,176,'pre_import_post_parent','161'), (604,176,'pre_import_post_id','176'), (607,177,'_wp_attached_file','2009/11/10-media-properties-storm-lcd-only1.png'), (608,177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:47:\"2009/11/10-media-properties-storm-lcd-only1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"10-media-properties-storm-lcd-only1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"10-media-properties-storm-lcd-only1-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:47:\"10-media-properties-storm-lcd-only1-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (609,177,'pre_import_post_parent','161'), (610,177,'pre_import_post_id','177'), (613,178,'_wp_attached_file','2009/11/09-media-properties-full-storm-device1.png'), (614,178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:50:\"2009/11/09-media-properties-full-storm-device1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"09-media-properties-full-storm-device1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"09-media-properties-full-storm-device1-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"09-media-properties-full-storm-device1-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:50:\"09-media-properties-full-storm-device1-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (615,178,'pre_import_post_parent','161'), (616,178,'pre_import_post_id','178'), (619,179,'_wp_attached_file','2009/11/08-media-screen-storm-lcd-only1.png'), (620,179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:43:\"2009/11/08-media-screen-storm-lcd-only1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"08-media-screen-storm-lcd-only1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"08-media-screen-storm-lcd-only1-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"08-media-screen-storm-lcd-only1-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (621,179,'pre_import_post_parent','161'), (622,179,'pre_import_post_id','179'), (625,180,'_wp_attached_file','2009/11/07-media-screen-full-storm-device1.png'), (626,180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:46:\"2009/11/07-media-screen-full-storm-device1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"07-media-screen-full-storm-device1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"07-media-screen-full-storm-device1-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"07-media-screen-full-storm-device1-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"07-media-screen-full-storm-device1-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (627,180,'pre_import_post_parent','161'), (628,180,'pre_import_post_id','180'), (631,181,'_wp_attached_file','2009/11/06-blog-screen-storm-lcd-only1.png'), (632,181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:42:\"2009/11/06-blog-screen-storm-lcd-only1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"06-blog-screen-storm-lcd-only1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"06-blog-screen-storm-lcd-only1-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"06-blog-screen-storm-lcd-only1-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (633,181,'pre_import_post_parent','161'), (634,181,'pre_import_post_id','181'), (637,182,'_wp_attached_file','2009/11/05-blog-screen-full-storm-device1.png'), (638,182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:45:\"2009/11/05-blog-screen-full-storm-device1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"05-blog-screen-full-storm-device1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"05-blog-screen-full-storm-device1-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"05-blog-screen-full-storm-device1-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:45:\"05-blog-screen-full-storm-device1-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (639,182,'pre_import_post_parent','161'), (640,182,'pre_import_post_id','182'), (643,591,'_wp_attached_file','2010/02/1.png'), (644,591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:460;s:4:\"file\";s:13:\"2010/02/1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"1-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (647,591,'pre_import_post_parent','579'), (648,591,'pre_import_post_id','591'), (651,591,'_wp_old_slug','118'), (652,591,'original_post_id','118'), (655,591,'original_post_id','579'), (656,591,'_wp_old_slug','579'), (659,591,'original_post_id','118'), (660,591,'_wp_old_slug','118'), (661,592,'_wp_attached_file','2010/02/2.png'), (662,592,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:460;s:4:\"file\";s:13:\"2010/02/2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"2-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (663,592,'_wp_old_slug','118'), (664,592,'original_post_id','118'), (665,592,'pre_import_post_parent','579'), (666,592,'pre_import_post_id','592'), (673,592,'original_post_id','579'), (674,592,'_wp_old_slug','579'), (677,592,'original_post_id','118'), (678,592,'_wp_old_slug','118'), (679,593,'_wp_attached_file','2010/02/3.png'), (680,593,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:460;s:4:\"file\";s:13:\"2010/02/3.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"3-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"3-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (683,593,'pre_import_post_parent','579'), (684,593,'pre_import_post_id','593'), (687,593,'_wp_old_slug','118'), (688,593,'original_post_id','118'), (691,593,'original_post_id','579'), (692,593,'_wp_old_slug','579'), (695,593,'original_post_id','118'), (696,593,'_wp_old_slug','118'), (697,594,'_wp_attached_file','2010/02/4.png'), (698,594,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:460;s:4:\"file\";s:13:\"2010/02/4.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"4-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"4-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (700,594,'pre_import_post_parent','579'), (701,594,'pre_import_post_id','594'), (705,594,'_wp_old_slug','118'), (706,594,'original_post_id','118'), (709,594,'original_post_id','579'), (710,594,'_wp_old_slug','579'), (713,594,'original_post_id','118'), (714,594,'_wp_old_slug','118'), (715,596,'_wp_attached_file','2010/02/6.png'), (716,596,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:460;s:4:\"file\";s:13:\"2010/02/6.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"6-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"6-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (719,596,'pre_import_post_parent','579'), (720,596,'pre_import_post_id','596'), (725,596,'original_post_id','579'), (726,596,'_wp_old_slug','579'), (727,596,'original_post_id','118'), (728,596,'_wp_old_slug','118'), (731,596,'original_post_id','118'), (732,596,'_wp_old_slug','118'), (733,597,'_wp_attached_file','2010/02/7.png'), (734,597,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:460;s:4:\"file\";s:13:\"2010/02/7.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"7-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"7-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (735,597,'pre_import_post_parent','579'), (736,597,'pre_import_post_id','597'), (741,597,'original_post_id','579'), (742,597,'_wp_old_slug','579'), (745,597,'original_post_id','118'), (746,597,'_wp_old_slug','118'), (749,597,'original_post_id','118'), (750,597,'_wp_old_slug','118'), (751,1692,'_wp_attached_file','2010/01/wpid-2010-01-25-15-29-17.jpg'), (752,1692,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:375;s:4:\"file\";s:36:\"2010/01/wpid-2010-01-25-15-29-17.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"wpid-2010-01-25-15-29-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"wpid-2010-01-25-15-29-17-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"wpid-2010-01-25-15-29-17-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (754,1692,'pre_import_post_id','71'), (755,1692,'pre_import_post_parent','0'), (756,1723,'_wp_attached_file','2009/11/03-mainscreen-lcd-only1.png'), (757,1723,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:35:\"2009/11/03-mainscreen-lcd-only1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"03-mainscreen-lcd-only1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"03-mainscreen-lcd-only1-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (758,1723,'pre_import_post_parent','161'), (759,1723,'pre_import_post_id','183'), (763,103,'pre_import_post_parent','0'), (764,103,'pre_import_post_id','7'), (768,103,'original_post_id','5'), (769,103,'_wp_old_slug','5'), (772,103,'original_post_id','6'), (773,103,'_wp_old_slug','6'), (776,103,'original_post_id','5'), (777,103,'_wp_old_slug','5'), (778,112,'pre_import_post_parent','101'), (779,112,'pre_import_post_id','14'), (784,112,'_wp_old_slug','12'), (785,112,'original_post_id','12'), (788,112,'original_post_id','13'), (789,112,'_wp_old_slug','13'), (792,112,'original_post_id','12'), (793,112,'_wp_old_slug','12'), (794,113,'pre_import_post_parent','101'), (795,113,'pre_import_post_id','15'), (798,113,'_wp_old_slug','12'), (799,113,'original_post_id','12'), (804,113,'original_post_id','13'), (805,113,'_wp_old_slug','13'), (808,113,'original_post_id','12'), (809,113,'_wp_old_slug','12'), (810,114,'pre_import_post_parent','101'), (811,114,'pre_import_post_id','16'), (814,114,'original_post_id','12'), (815,114,'_wp_old_slug','12'), (820,114,'original_post_id','13'), (821,114,'_wp_old_slug','13'), (824,114,'original_post_id','12'), (825,114,'_wp_old_slug','12'), (828,237,'pre_import_post_parent','0'), (829,237,'pre_import_post_id','237'), (834,237,'original_post_id','118'), (835,237,'_wp_old_slug','118'), (836,237,'original_post_id','216'), (837,237,'_wp_old_slug','216'), (840,237,'original_post_id','118'), (841,237,'_wp_old_slug','118'), (842,238,'pre_import_post_parent','236'), (843,238,'pre_import_post_id','238'), (846,238,'original_post_id','118'), (847,238,'_wp_old_slug','118'), (852,238,'original_post_id','236'), (853,238,'_wp_old_slug','236'), (856,238,'original_post_id','118'), (857,238,'_wp_old_slug','118'), (858,239,'pre_import_post_parent','236'), (859,239,'pre_import_post_id','239'), (862,239,'original_post_id','118'), (863,239,'_wp_old_slug','118'), (868,239,'original_post_id','236'), (869,239,'_wp_old_slug','236'), (872,239,'original_post_id','118'), (873,239,'_wp_old_slug','118'), (874,242,'pre_import_post_parent','236'), (875,242,'pre_import_post_id','242'), (878,242,'_wp_old_slug','118'), (879,242,'original_post_id','118'), (884,242,'original_post_id','236'), (885,242,'_wp_old_slug','236'), (888,242,'original_post_id','118'), (889,242,'_wp_old_slug','118'), (890,244,'pre_import_post_parent','236'), (891,244,'pre_import_post_id','244'), (895,244,'original_post_id','118'), (896,244,'_wp_old_slug','118'), (900,244,'original_post_id','236'), (901,244,'_wp_old_slug','236'), (904,244,'original_post_id','118'), (905,244,'_wp_old_slug','118'), (906,246,'pre_import_post_parent','236'), (907,246,'pre_import_post_id','246'), (910,246,'_wp_old_slug','118'), (911,246,'original_post_id','118'), (916,246,'original_post_id','236'), (917,246,'_wp_old_slug','236'), (920,246,'original_post_id','118'), (921,246,'_wp_old_slug','118'), (922,319,'pre_import_post_parent','318'), (923,319,'pre_import_post_id','319'), (926,319,'_wp_old_slug','318'), (929,319,'original_post_id','118'), (930,319,'_wp_old_slug','118'), (931,319,'original_post_id','318'), (936,319,'original_post_id','118'), (937,319,'_wp_old_slug','118'), (938,321,'_wp_old_slug','318'), (939,321,'original_post_id','318'), (940,321,'pre_import_post_parent','107'), (941,321,'pre_import_post_id','321'), (946,321,'original_post_id','118'), (947,321,'_wp_old_slug','118'), (952,321,'original_post_id','118'), (953,321,'_wp_old_slug','118'), (955,322,'pre_import_post_parent','107'), (956,322,'pre_import_post_id','322'), (961,322,'original_post_id','118'), (962,322,'_wp_old_slug','118'), (964,322,'original_post_id','318'), (965,322,'_wp_old_slug','318'), (968,322,'original_post_id','118'), (969,322,'_wp_old_slug','118'), (970,323,'pre_import_post_parent','107'), (971,323,'pre_import_post_id','323'), (974,323,'original_post_id','118'), (975,323,'_wp_old_slug','118'), (980,323,'original_post_id','318'), (981,323,'_wp_old_slug','318'), (984,323,'original_post_id','118'), (985,323,'_wp_old_slug','118'), (987,324,'original_post_id','318'), (988,324,'_wp_old_slug','318'), (989,324,'pre_import_post_parent','107'), (990,324,'pre_import_post_id','324'), (993,324,'_wp_old_slug','118'), (994,324,'original_post_id','118'), (1000,324,'original_post_id','118'), (1001,324,'_wp_old_slug','118'), (1004,325,'pre_import_post_parent','107'), (1005,325,'pre_import_post_id','325'), (1010,325,'_wp_old_slug','118'), (1011,325,'original_post_id','118'), (1012,325,'original_post_id','318'), (1013,325,'_wp_old_slug','318'), (1016,325,'original_post_id','118'), (1017,325,'_wp_old_slug','118'), (1018,326,'pre_import_post_parent','107'), (1019,326,'pre_import_post_id','326'), (1022,326,'original_post_id','118'), (1023,326,'_wp_old_slug','118'), (1026,326,'original_post_id','318'), (1027,326,'_wp_old_slug','318'), (1032,326,'original_post_id','118'), (1033,326,'_wp_old_slug','118'), (1034,327,'_wp_old_slug','318'), (1035,327,'original_post_id','318'), (1037,327,'pre_import_post_parent','107'), (1038,327,'pre_import_post_id','327'), (1042,327,'original_post_id','118'), (1043,327,'_wp_old_slug','118'), (1048,327,'original_post_id','118'), (1049,327,'_wp_old_slug','118'), (1052,328,'pre_import_post_parent','107'), (1053,328,'pre_import_post_id','328'), (1057,328,'original_post_id','118'), (1058,328,'_wp_old_slug','118'), (1060,328,'_wp_old_slug','318'), (1061,328,'original_post_id','318'), (1064,328,'original_post_id','118'), (1065,328,'_wp_old_slug','118'), (1066,329,'pre_import_post_parent','107'), (1067,329,'pre_import_post_id','329'), (1072,329,'original_post_id','118'), (1073,329,'_wp_old_slug','118'), (1076,329,'original_post_id','318'), (1077,329,'_wp_old_slug','318'), (1080,329,'original_post_id','118'), (1081,329,'_wp_old_slug','118'), (1082,162,'pre_import_post_parent','0'), (1083,162,'pre_import_post_id','162'), (1086,163,'pre_import_post_parent','0'), (1087,163,'pre_import_post_id','163'), (1090,165,'pre_import_post_parent','0'), (1091,165,'pre_import_post_id','165'), (1094,166,'pre_import_post_parent','0'), (1095,166,'pre_import_post_id','166'), (1098,167,'pre_import_post_parent','0'), (1099,167,'pre_import_post_id','167'), (1102,168,'pre_import_post_parent','0'), (1103,168,'pre_import_post_id','168'), (1106,169,'pre_import_post_parent','0'), (1107,169,'pre_import_post_id','169'), (1110,170,'pre_import_post_parent','0'), (1111,170,'pre_import_post_id','170'), (1114,171,'pre_import_post_parent','0'), (1115,171,'pre_import_post_id','171'), (1118,330,'_wp_old_slug','318'), (1119,330,'original_post_id','318'), (1120,330,'pre_import_post_parent','107'), (1121,330,'pre_import_post_id','330'), (1124,330,'_wp_old_slug','118'), (1125,330,'original_post_id','118'), (1132,330,'original_post_id','118'), (1133,330,'_wp_old_slug','118'), (1134,368,'pre_import_post_parent','357'), (1135,368,'pre_import_post_id','368'), (1139,368,'_wp_old_slug','357'), (1140,368,'original_post_id','357'), (1142,368,'original_post_id','118'), (1143,368,'_wp_old_slug','118'), (1148,368,'original_post_id','118'), (1149,368,'_wp_old_slug','118'), (1150,369,'_wp_old_slug','357'), (1151,369,'original_post_id','357'), (1152,369,'pre_import_post_parent','357'), (1153,369,'pre_import_post_id','369'), (1158,369,'original_post_id','118'), (1159,369,'_wp_old_slug','118'), (1164,369,'original_post_id','118'), (1165,369,'_wp_old_slug','118'), (1168,370,'pre_import_post_parent','357'), (1169,370,'pre_import_post_id','370'), (1172,370,'_wp_old_slug','118'), (1175,370,'original_post_id','118'), (1176,370,'_wp_old_slug','357'), (1177,370,'original_post_id','357'), (1180,370,'original_post_id','118'), (1181,370,'_wp_old_slug','118'), (1182,371,'pre_import_post_parent','357'), (1183,371,'pre_import_post_id','371'), (1186,371,'original_post_id','118'), (1189,371,'_wp_old_slug','118'), (1192,371,'original_post_id','357'), (1193,371,'_wp_old_slug','357'), (1196,371,'original_post_id','118'), (1197,371,'_wp_old_slug','118'), (1198,374,'pre_import_post_parent','357'), (1199,374,'pre_import_post_id','374'), (1202,374,'_wp_old_slug','118'), (1203,374,'original_post_id','118'), (1208,374,'original_post_id','357'), (1209,374,'_wp_old_slug','357'), (1212,374,'original_post_id','118'), (1213,374,'_wp_old_slug','118'), (1214,401,'pre_import_post_parent','0'), (1215,401,'pre_import_post_id','401'), (1217,401,'_wp_old_slug','118'), (1218,401,'original_post_id','118'), (1221,401,'original_post_id','397'), (1222,401,'_wp_old_slug','397'), (1224,401,'original_post_id','118'), (1225,401,'_wp_old_slug','118'), (1226,418,'pre_import_post_parent','417'), (1227,418,'pre_import_post_id','418'), (1228,418,'original_post_id','118'), (1233,418,'_wp_old_slug','118'), (1236,418,'original_post_id','417'), (1237,418,'_wp_old_slug','417'), (1240,418,'original_post_id','118'), (1241,418,'_wp_old_slug','118'), (1242,447,'_wp_old_slug','118'), (1243,447,'original_post_id','118'), (1244,447,'pre_import_post_parent','0'), (1245,447,'pre_import_post_id','447'), (1249,447,'original_post_id','432'), (1250,447,'_wp_old_slug','432'), (1252,447,'original_post_id','118'), (1253,447,'_wp_old_slug','118'), (1254,540,'_wp_old_slug','118'), (1257,540,'original_post_id','118'), (1258,540,'pre_import_post_parent','506'), (1259,540,'pre_import_post_id','540'), (1264,540,'original_post_id','506'), (1265,540,'_wp_old_slug','506'), (1268,540,'original_post_id','118'), (1269,540,'_wp_old_slug','118'), (1270,1725,'pre_import_post_parent','0'), (1271,1725,'pre_import_post_id','164'), (1274,175,'pre_import_post_parent','161'), (1275,175,'pre_import_post_id','175'), (1278,176,'pre_import_post_parent','161'), (1279,176,'pre_import_post_id','176'), (1282,177,'pre_import_post_parent','161'), (1283,177,'pre_import_post_id','177'), (1286,178,'pre_import_post_parent','161'), (1287,178,'pre_import_post_id','178'), (1290,179,'pre_import_post_parent','161'), (1291,179,'pre_import_post_id','179'), (1294,180,'pre_import_post_parent','161'), (1295,180,'pre_import_post_id','180'), (1298,181,'pre_import_post_parent','161'), (1299,181,'pre_import_post_id','181'), (1302,182,'pre_import_post_parent','161'), (1303,182,'pre_import_post_id','182'), (1308,591,'pre_import_post_parent','579'), (1309,591,'pre_import_post_id','591'), (1312,591,'_wp_old_slug','118'), (1313,591,'original_post_id','118'), (1316,591,'original_post_id','579'), (1317,591,'_wp_old_slug','579'), (1320,591,'original_post_id','118'), (1321,591,'_wp_old_slug','118'), (1322,592,'_wp_old_slug','118'), (1323,592,'original_post_id','118'), (1324,592,'pre_import_post_parent','579'), (1325,592,'pre_import_post_id','592'), (1332,592,'original_post_id','579'), (1333,592,'_wp_old_slug','579'), (1336,592,'original_post_id','118'), (1337,592,'_wp_old_slug','118'), (1340,593,'pre_import_post_parent','579'), (1341,593,'pre_import_post_id','593'), (1344,593,'_wp_old_slug','118'), (1345,593,'original_post_id','118'), (1348,593,'original_post_id','579'), (1349,593,'_wp_old_slug','579'), (1352,593,'original_post_id','118'), (1353,593,'_wp_old_slug','118'), (1355,594,'pre_import_post_parent','579'), (1356,594,'pre_import_post_id','594'), (1360,594,'_wp_old_slug','118'), (1361,594,'original_post_id','118'), (1364,594,'original_post_id','579'), (1365,594,'_wp_old_slug','579'), (1368,594,'original_post_id','118'), (1369,594,'_wp_old_slug','118'), (1372,596,'pre_import_post_parent','579'), (1373,596,'pre_import_post_id','596'), (1378,596,'original_post_id','579'), (1379,596,'_wp_old_slug','579'), (1380,596,'original_post_id','118'), (1381,596,'_wp_old_slug','118'), (1384,596,'original_post_id','118'), (1385,596,'_wp_old_slug','118'), (1386,597,'pre_import_post_parent','579'), (1387,597,'pre_import_post_id','597'), (1392,597,'original_post_id','579'), (1393,597,'_wp_old_slug','579'), (1396,597,'original_post_id','118'), (1397,597,'_wp_old_slug','118'), (1400,597,'original_post_id','118'), (1401,597,'_wp_old_slug','118'), (1403,1692,'pre_import_post_id','71'), (1404,1692,'pre_import_post_parent','0'), (1405,1723,'pre_import_post_parent','161'), (1406,1723,'pre_import_post_id','183'), (1409,1724,'_wp_attached_file','2009/11/01-mainscreen-full-device1.png'), (1410,1724,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:632;s:6:\"height\";i:1084;s:4:\"file\";s:38:\"2009/11/01-mainscreen-full-device1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"01-mainscreen-full-device1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"01-mainscreen-full-device1-174x300.png\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"01-mainscreen-full-device1-597x1024.png\";s:5:\"width\";i:597;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"01-mainscreen-full-device1-632x372.png\";s:5:\"width\";i:632;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:38:\"01-mainscreen-full-device1-632x576.png\";s:5:\"width\";i:632;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1411,1724,'pre_import_post_parent','161'), (1412,1724,'pre_import_post_id','184'), (1415,1726,'_wp_attached_file','2009/11/01-mainscreen-full-device11.png'), (1416,1727,'_wp_attached_file','2010/03/blackberry-wordpress-04.png'), (1417,1727,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2010/03/blackberry-wordpress-04.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-04-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-04-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1418,1727,'pre_import_post_parent','226'), (1419,1727,'pre_import_post_id','238'), (1422,1726,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:632;s:6:\"height\";i:1084;s:4:\"file\";s:39:\"2009/11/01-mainscreen-full-device11.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"01-mainscreen-full-device11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"01-mainscreen-full-device11-174x300.png\";s:5:\"width\";i:174;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"01-mainscreen-full-device11-597x1024.png\";s:5:\"width\";i:597;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"01-mainscreen-full-device11-632x372.png\";s:5:\"width\";i:632;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:39:\"01-mainscreen-full-device11-632x576.png\";s:5:\"width\";i:632;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1423,1726,'pre_import_post_parent','161'), (1424,1726,'pre_import_post_id','184'), (1427,1727,'pre_import_post_parent','226'), (1428,1727,'pre_import_post_id','238'), (1431,1728,'_wp_attached_file','2010/03/blackberry-wordpress-07.png'), (1432,1729,'_wp_attached_file','2010/03/blackberry-wordpress-071.png'), (1433,1729,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:36:\"2010/03/blackberry-wordpress-071.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-071-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-071-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-071-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1434,1729,'pre_import_post_parent','226'), (1435,1729,'pre_import_post_id','237'), (1438,1728,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2010/03/blackberry-wordpress-07.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-07-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-07-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-07-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1439,1728,'pre_import_post_parent','226'), (1440,1728,'pre_import_post_id','237'), (1443,1730,'_wp_attached_file','2010/03/blackberry-wordpress-06.png'), (1444,1731,'_wp_attached_file','2010/03/blackberry-wordpress-061.png'), (1445,1730,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:35:\"2010/03/blackberry-wordpress-06.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-06-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-06-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1446,1730,'pre_import_post_parent','226'), (1447,1730,'pre_import_post_id','239'), (1450,1731,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:36:\"2010/03/blackberry-wordpress-061.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-061-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-061-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1451,1731,'pre_import_post_parent','226'), (1452,1731,'pre_import_post_id','239'), (1455,141,'_wp_attached_file','2010/03/add_media.png'), (1456,1732,'_wp_attached_file','2010/03/add_media1.png'), (1457,141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:455;s:4:\"file\";s:21:\"2010/03/add_media.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"add_media-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"add_media-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"add_media-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1460,141,'pre_import_post_parent','0'), (1461,141,'pre_import_post_id','141'), (1462,1732,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:455;s:4:\"file\";s:22:\"2010/03/add_media1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"add_media1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"add_media1-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"add_media1-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1465,1732,'pre_import_post_parent','0'), (1466,1732,'pre_import_post_id','141'), (1467,142,'_wp_attached_file','2010/03/blogs.png'), (1468,1733,'_wp_attached_file','2010/03/blogs1.png'), (1469,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:455;s:4:\"file\";s:17:\"2010/03/blogs.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blogs-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blogs-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"blogs-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1471,142,'pre_import_post_id','142'), (1472,142,'pre_import_post_parent','0'), (1474,1733,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:455;s:4:\"file\";s:18:\"2010/03/blogs1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"blogs1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"blogs1-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"blogs1-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1476,1733,'pre_import_post_id','142'), (1477,1733,'pre_import_post_parent','0'), (1479,143,'_wp_attached_file','2010/03/categories.png'), (1480,1734,'_wp_attached_file','2010/03/categories1.png'), (1481,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:455;s:4:\"file\";s:22:\"2010/03/categories.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"categories-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"categories-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"categories-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1482,143,'pre_import_post_id','143'), (1483,143,'pre_import_post_parent','0'), (1486,1734,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:455;s:4:\"file\";s:23:\"2010/03/categories1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"categories1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"categories1-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"categories1-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1487,1734,'pre_import_post_id','143'), (1488,1734,'pre_import_post_parent','0'), (1491,144,'_wp_attached_file','2010/03/comments.png'), (1492,144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:455;s:4:\"file\";s:20:\"2010/03/comments.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"comments-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"comments-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"comments-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1493,144,'pre_import_post_parent','0'), (1494,144,'pre_import_post_id','144'), (1497,1735,'_wp_attached_file','2010/03/comments1.png'), (1498,1735,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:455;s:4:\"file\";s:21:\"2010/03/comments1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"comments1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"comments1-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"comments1-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1499,1735,'pre_import_post_parent','0'), (1500,1735,'pre_import_post_id','144'), (1503,145,'_wp_attached_file','2010/03/german.png'), (1504,1736,'_wp_attached_file','2010/03/german1.png'), (1505,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:189;s:4:\"file\";s:18:\"2010/03/german.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"german-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"german-300x177.png\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1508,145,'pre_import_post_parent','0'), (1509,145,'pre_import_post_id','145'), (1510,1736,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:189;s:4:\"file\";s:19:\"2010/03/german1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"german1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"german1-300x177.png\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1513,1736,'pre_import_post_parent','0'), (1514,1736,'pre_import_post_id','145'), (1515,150,'_wp_attached_file','2010/03/view_comment1.png'), (1516,150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:455;s:4:\"file\";s:25:\"2010/03/view_comment1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"view_comment1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"view_comment1-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"view_comment1-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1519,150,'pre_import_post_parent','147'), (1520,150,'pre_import_post_id','150'), (1521,1737,'_wp_attached_file','2010/03/view_comment11.png'), (1522,1737,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:455;s:4:\"file\";s:26:\"2010/03/view_comment11.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"view_comment11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"view_comment11-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"view_comment11-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1525,1737,'pre_import_post_parent','147'), (1526,1737,'pre_import_post_id','150'), (1527,164,'_wp_attached_file','2010/03/blogs11.png'), (1528,1738,'_wp_attached_file','2010/03/blogs12.png'), (1529,164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:296;s:4:\"file\";s:19:\"2010/03/blogs11.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"blogs11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"blogs11-300x277.png\";s:5:\"width\";i:300;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1532,164,'pre_import_post_parent','147'), (1533,164,'pre_import_post_id','164'), (1534,1738,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:296;s:4:\"file\";s:19:\"2010/03/blogs12.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"blogs12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"blogs12-300x277.png\";s:5:\"width\";i:300;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1537,1738,'pre_import_post_parent','147'), (1538,1738,'pre_import_post_id','164'), (1539,609,'_wp_attached_file','2010/03/wp-23-31.png'), (1540,1739,'_wp_attached_file','2010/03/wp-23-311.png'), (1541,609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:460;s:4:\"file\";s:20:\"2010/03/wp-23-31.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"wp-23-31-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"wp-23-31-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"wp-23-31-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1542,609,'pre_import_post_parent','0'), (1543,609,'pre_import_post_id','609'), (1548,609,'original_post_id','601'), (1549,609,'_wp_old_slug','601'), (1552,609,'original_post_id','118'), (1553,609,'_wp_old_slug','118'), (1556,609,'original_post_id','118'), (1557,609,'_wp_old_slug','118'), (1558,1739,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:460;s:4:\"file\";s:21:\"2010/03/wp-23-311.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"wp-23-311-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"wp-23-311-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"wp-23-311-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1559,1739,'pre_import_post_parent','0'), (1560,1739,'pre_import_post_id','609'), (1565,1739,'original_post_id','601'), (1566,1739,'_wp_old_slug','601'), (1569,1739,'original_post_id','118'), (1570,1739,'_wp_old_slug','118'), (1573,1739,'original_post_id','118'), (1574,1739,'_wp_old_slug','118'), (1575,610,'_wp_attached_file','2010/03/wp-23-2.png'), (1576,610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:460;s:4:\"file\";s:19:\"2010/03/wp-23-2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"wp-23-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"wp-23-2-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"wp-23-2-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1577,610,'pre_import_post_parent','0'), (1578,610,'pre_import_post_id','610'), (1583,610,'original_post_id','601'), (1584,610,'_wp_old_slug','601'), (1587,610,'original_post_id','118'), (1588,610,'_wp_old_slug','118'), (1591,610,'original_post_id','118'), (1592,610,'_wp_old_slug','118'), (1593,1740,'_wp_attached_file','2010/03/wp-23-21.png'), (1594,1740,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:460;s:4:\"file\";s:20:\"2010/03/wp-23-21.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"wp-23-21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"wp-23-21-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"wp-23-21-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1595,1740,'pre_import_post_parent','0'), (1596,1740,'pre_import_post_id','610'), (1601,1740,'original_post_id','601'), (1602,1740,'_wp_old_slug','601'), (1605,1740,'original_post_id','118'), (1606,1740,'_wp_old_slug','118'), (1609,1740,'original_post_id','118'), (1610,1740,'_wp_old_slug','118'), (1611,611,'_wp_attached_file','2010/03/wp-23-1.png'), (1612,611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:460;s:4:\"file\";s:19:\"2010/03/wp-23-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"wp-23-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"wp-23-1-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"wp-23-1-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1613,611,'pre_import_post_parent','0'), (1614,611,'pre_import_post_id','611'), (1619,611,'original_post_id','601'), (1620,611,'_wp_old_slug','601'), (1623,611,'original_post_id','118'), (1624,611,'_wp_old_slug','118'), (1627,611,'original_post_id','118'), (1628,611,'_wp_old_slug','118'), (1629,1741,'_wp_attached_file','2010/03/wp-23-11.png'), (1630,1741,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:460;s:4:\"file\";s:20:\"2010/03/wp-23-11.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"wp-23-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"wp-23-11-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"wp-23-11-320x372.png\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1631,1741,'pre_import_post_parent','0'), (1632,1741,'pre_import_post_id','611'), (1637,1741,'original_post_id','601'), (1638,1741,'_wp_old_slug','601'), (1641,1741,'original_post_id','118'), (1642,1741,'_wp_old_slug','118'), (1645,1741,'original_post_id','118'), (1646,1741,'_wp_old_slug','118'), (1647,657,'_wp_attached_file','2010/04/home-appstore.png'), (1648,657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:142;s:6:\"height\";i:50;s:4:\"file\";s:25:\"2010/04/home-appstore.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1649,657,'pre_import_post_parent','0'), (1650,657,'pre_import_post_id','657'), (1653,657,'original_post_id','638'), (1654,657,'_wp_old_slug','638'), (1656,657,'original_post_id','118'), (1657,657,'_wp_old_slug','118'), (1659,657,'original_post_id','118'), (1660,657,'_wp_old_slug','118'), (1661,1742,'_wp_attached_file','2010/04/home-appstore1.png'), (1662,1742,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:142;s:6:\"height\";i:50;s:4:\"file\";s:26:\"2010/04/home-appstore1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1663,1742,'pre_import_post_parent','0'), (1664,1742,'pre_import_post_id','657'), (1667,1742,'original_post_id','638'), (1668,1742,'_wp_old_slug','638'), (1670,1742,'original_post_id','118'), (1671,1742,'_wp_old_slug','118'), (1673,1742,'original_post_id','118'), (1674,1742,'_wp_old_slug','118'), (1675,659,'_wp_attached_file','2010/04/home-devices.jpg'), (1676,659,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:518;s:6:\"height\";i:411;s:4:\"file\";s:24:\"2010/04/home-devices.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-devices-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-devices-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"home-devices-518x372.jpg\";s:5:\"width\";i:518;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1677,659,'pre_import_post_parent','0'), (1678,659,'pre_import_post_id','659'), (1681,659,'original_post_id','638'), (1682,659,'_wp_old_slug','638'), (1684,659,'original_post_id','118'), (1685,659,'_wp_old_slug','118'), (1687,659,'original_post_id','118'), (1688,659,'_wp_old_slug','118'), (1689,1743,'_wp_attached_file','2010/04/home-devices1.jpg'), (1690,1743,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:518;s:6:\"height\";i:411;s:4:\"file\";s:25:\"2010/04/home-devices1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"home-devices1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"home-devices1-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"home-devices1-518x372.jpg\";s:5:\"width\";i:518;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1691,1743,'pre_import_post_parent','0'), (1692,1743,'pre_import_post_id','659'), (1695,1743,'original_post_id','638'), (1696,1743,'_wp_old_slug','638'), (1698,1743,'original_post_id','118'), (1699,1743,'_wp_old_slug','118'), (1701,1743,'original_post_id','118'), (1702,1743,'_wp_old_slug','118'), (1703,660,'_wp_attached_file','2010/04/home-geo.jpg'), (1704,1744,'_wp_attached_file','2010/04/home-geo1.jpg'), (1705,660,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:404;s:6:\"height\";i:307;s:4:\"file\";s:20:\"2010/04/home-geo.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"home-geo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"home-geo-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1706,660,'pre_import_post_parent','0'), (1707,660,'pre_import_post_id','660'), (1710,660,'original_post_id','638'), (1711,660,'_wp_old_slug','638'), (1713,660,'original_post_id','118'), (1714,660,'_wp_old_slug','118'), (1716,660,'original_post_id','118'), (1717,660,'_wp_old_slug','118'), (1718,1744,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:404;s:6:\"height\";i:307;s:4:\"file\";s:21:\"2010/04/home-geo1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"home-geo1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"home-geo1-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1719,1744,'pre_import_post_parent','0'), (1720,1744,'pre_import_post_id','660'), (1723,1744,'original_post_id','638'), (1724,1744,'_wp_old_slug','638'), (1726,1744,'original_post_id','118'), (1727,1744,'_wp_old_slug','118'), (1729,1744,'original_post_id','118'), (1730,1744,'_wp_old_slug','118'), (1731,661,'_wp_attached_file','2010/04/home-logo.png'), (1732,1745,'_wp_attached_file','2010/04/home-logo1.png'), (1733,661,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:411;s:4:\"file\";s:21:\"2010/04/home-logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"home-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"home-logo-243x300.png\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"home-logo-334x372.png\";s:5:\"width\";i:334;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1734,661,'pre_import_post_parent','0'), (1735,661,'pre_import_post_id','661'), (1738,661,'original_post_id','638'), (1739,661,'_wp_old_slug','638'), (1741,661,'original_post_id','118'), (1742,661,'_wp_old_slug','118'), (1744,661,'original_post_id','118'), (1745,661,'_wp_old_slug','118'), (1746,1745,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:411;s:4:\"file\";s:22:\"2010/04/home-logo1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"home-logo1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"home-logo1-243x300.png\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"home-logo1-334x372.png\";s:5:\"width\";i:334;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1747,1745,'pre_import_post_parent','0'), (1748,1745,'pre_import_post_id','661'), (1751,1745,'original_post_id','638'), (1752,1745,'_wp_old_slug','638'), (1754,1745,'original_post_id','118'), (1755,1745,'_wp_old_slug','118'), (1757,1745,'original_post_id','118'), (1758,1745,'_wp_old_slug','118'), (1759,662,'_wp_attached_file','2010/04/home-photos.jpg'), (1760,662,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:514;s:6:\"height\";i:360;s:4:\"file\";s:23:\"2010/04/home-photos.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"home-photos-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"home-photos-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1761,662,'pre_import_post_parent','0'), (1762,662,'pre_import_post_id','662'), (1765,662,'original_post_id','638'), (1766,662,'_wp_old_slug','638'), (1768,662,'original_post_id','118'), (1769,662,'_wp_old_slug','118'), (1771,662,'original_post_id','118'), (1772,662,'_wp_old_slug','118'), (1773,1746,'_wp_attached_file','2010/04/home-photos1.jpg'), (1774,1746,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:514;s:6:\"height\";i:360;s:4:\"file\";s:24:\"2010/04/home-photos1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-photos1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-photos1-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1775,1746,'pre_import_post_parent','0'), (1776,1746,'pre_import_post_id','662'), (1779,1746,'original_post_id','638'), (1780,1746,'_wp_old_slug','638'), (1782,1746,'original_post_id','118'), (1783,1746,'_wp_old_slug','118'), (1785,1746,'original_post_id','118'), (1786,1746,'_wp_old_slug','118'), (1787,663,'_wp_attached_file','2010/04/home-writing.jpg'), (1788,1747,'_wp_attached_file','2010/04/home-writing1.jpg'), (1789,663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:514;s:6:\"height\";i:417;s:4:\"file\";s:24:\"2010/04/home-writing.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-writing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-writing-300x243.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"home-writing-514x372.jpg\";s:5:\"width\";i:514;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1790,663,'pre_import_post_parent','0'), (1791,663,'pre_import_post_id','663'), (1794,663,'original_post_id','638'), (1795,663,'_wp_old_slug','638'), (1797,663,'original_post_id','118'), (1798,663,'_wp_old_slug','118'), (1800,663,'original_post_id','118'), (1801,663,'_wp_old_slug','118'), (1802,1747,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:514;s:6:\"height\";i:417;s:4:\"file\";s:25:\"2010/04/home-writing1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"home-writing1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"home-writing1-300x243.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"home-writing1-514x372.jpg\";s:5:\"width\";i:514;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1803,1747,'pre_import_post_parent','0'), (1804,1747,'pre_import_post_id','663'), (1807,1747,'original_post_id','638'), (1808,1747,'_wp_old_slug','638'), (1810,1747,'original_post_id','118'), (1811,1747,'_wp_old_slug','118'), (1813,1747,'original_post_id','118'), (1814,1747,'_wp_old_slug','118'), (1815,671,'_wp_attached_file','2010/04/1.png'), (1816,671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:748;s:4:\"file\";s:13:\"2010/04/1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:14:\"1-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1817,671,'pre_import_post_parent','638'), (1818,671,'pre_import_post_id','671'), (1823,671,'original_post_id','638'), (1824,671,'_wp_old_slug','638'), (1827,671,'original_post_id','118'), (1828,671,'_wp_old_slug','118'), (1831,671,'original_post_id','118'), (1832,671,'_wp_old_slug','118'), (1833,1748,'_wp_attached_file','2010/04/11.png'), (1834,1748,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:748;s:4:\"file\";s:14:\"2010/04/11.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"11-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"11-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:15:\"11-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1835,1748,'pre_import_post_parent','638'), (1836,1748,'pre_import_post_id','671'), (1841,1748,'original_post_id','638'), (1842,1748,'_wp_old_slug','638'), (1845,1748,'original_post_id','118'), (1846,1748,'_wp_old_slug','118'), (1849,1748,'original_post_id','118'), (1850,1748,'_wp_old_slug','118'), (1851,672,'_wp_attached_file','2010/04/2.png'), (1852,672,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:748;s:4:\"file\";s:13:\"2010/04/2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"2-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:14:\"2-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1853,672,'pre_import_post_parent','638'), (1854,672,'pre_import_post_id','672'), (1859,672,'original_post_id','638'), (1860,672,'_wp_old_slug','638'), (1861,1749,'_wp_attached_file','2010/04/21.png'), (1864,672,'original_post_id','118'), (1865,672,'_wp_old_slug','118'), (1868,672,'original_post_id','118'), (1869,672,'_wp_old_slug','118'), (1870,1749,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:748;s:4:\"file\";s:14:\"2010/04/21.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"21-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"21-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:15:\"21-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1871,1749,'pre_import_post_parent','638'), (1872,1749,'pre_import_post_id','672'), (1877,1749,'original_post_id','638'), (1878,1749,'_wp_old_slug','638'), (1881,1749,'original_post_id','118'), (1882,1749,'_wp_old_slug','118'), (1885,1749,'original_post_id','118'), (1886,1749,'_wp_old_slug','118'), (1887,673,'_wp_attached_file','2010/04/31.png'), (1888,1750,'_wp_attached_file','2010/04/3.png'), (1889,1750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1004;s:4:\"file\";s:13:\"2010/04/3.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"3-229x300.png\";s:5:\"width\";i:229;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"3-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:13:\"3-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1890,1750,'pre_import_post_parent','638'), (1891,1750,'pre_import_post_id','673'), (1896,1750,'original_post_id','638'), (1897,1750,'_wp_old_slug','638'), (1900,1750,'original_post_id','118'), (1901,1750,'_wp_old_slug','118'), (1904,1750,'original_post_id','118'), (1905,1750,'_wp_old_slug','118'), (1906,673,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1004;s:4:\"file\";s:14:\"2010/04/31.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"31-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"31-229x300.png\";s:5:\"width\";i:229;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"31-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:14:\"31-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1907,673,'pre_import_post_parent','638'), (1908,673,'pre_import_post_id','673'), (1913,673,'original_post_id','638'), (1914,673,'_wp_old_slug','638'), (1917,673,'original_post_id','118'), (1918,673,'_wp_old_slug','118'), (1921,673,'original_post_id','118'), (1922,673,'_wp_old_slug','118'), (1923,674,'_wp_attached_file','2010/04/4.png'), (1924,674,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:748;s:4:\"file\";s:13:\"2010/04/4.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"4-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"4-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:14:\"4-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1925,674,'pre_import_post_parent','638'), (1926,674,'pre_import_post_id','674'), (1931,674,'original_post_id','638'), (1932,674,'_wp_old_slug','638'), (1935,674,'original_post_id','118'), (1936,674,'_wp_old_slug','118'), (1939,674,'original_post_id','118'), (1940,674,'_wp_old_slug','118'), (1941,1751,'_wp_attached_file','2010/04/41.png'), (1942,1751,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:748;s:4:\"file\";s:14:\"2010/04/41.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"41-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"41-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"41-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:15:\"41-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1943,1751,'pre_import_post_parent','638'), (1944,1751,'pre_import_post_id','674'), (1949,1751,'original_post_id','638'), (1950,1751,'_wp_old_slug','638'), (1953,1751,'original_post_id','118'), (1954,1751,'_wp_old_slug','118'), (1957,1751,'original_post_id','118'), (1958,1751,'_wp_old_slug','118'), (1959,184,'_wp_attached_file','2010/04/share.jpg'), (1960,184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:652;s:4:\"file\";s:17:\"2010/04/share.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"share-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"share-220x300.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"share-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"share-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1963,184,'pre_import_post_id','184'), (1964,184,'pre_import_post_parent','183'), (1965,1752,'_wp_attached_file','2010/04/share1.jpg'), (1966,191,'_wp_attached_file','2010/05/video.jpg'), (1967,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:500;s:4:\"file\";s:17:\"2010/05/video.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"video-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"video-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"video-300x372.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1970,191,'pre_import_post_id','191'), (1971,191,'pre_import_post_parent','189'), (1972,1752,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:652;s:4:\"file\";s:18:\"2010/04/share1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"share1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"share1-220x300.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"share1-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"share1-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1975,1752,'pre_import_post_id','184'), (1976,1752,'pre_import_post_parent','183'), (1979,191,'pre_import_post_id','191'), (1980,191,'pre_import_post_parent','189'), (1981,192,'_wp_attached_file','2010/05/location.jpg'), (1982,1753,'_wp_attached_file','2010/05/location1.jpg'), (1983,192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:186;s:4:\"file\";s:20:\"2010/05/location.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"location-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"location-300x116.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1986,192,'pre_import_post_parent','189'), (1987,192,'pre_import_post_id','192'), (1988,1753,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:186;s:4:\"file\";s:21:\"2010/05/location1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"location1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"location1-300x116.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1991,1753,'pre_import_post_parent','189'), (1992,1753,'pre_import_post_id','192'), (1993,199,'_wp_attached_file','2010/05/delete.jpg'), (1994,199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:350;s:4:\"file\";s:18:\"2010/05/delete.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"delete-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"delete-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (1997,199,'pre_import_post_parent','198'), (1998,199,'pre_import_post_id','199'), (1999,1754,'_wp_attached_file','2010/05/delete1.jpg'), (2000,1754,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:350;s:4:\"file\";s:19:\"2010/05/delete1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"delete1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"delete1-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2003,1754,'pre_import_post_parent','198'), (2004,1754,'pre_import_post_id','199'), (2005,200,'_wp_attached_file','2010/05/post-signature.jpg'), (2006,1755,'_wp_attached_file','2010/05/post-signature1.jpg'), (2007,200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:246;s:4:\"file\";s:26:\"2010/05/post-signature.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"post-signature-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"post-signature-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2010,200,'pre_import_post_parent','198'), (2011,200,'pre_import_post_id','200'), (2012,1755,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:246;s:4:\"file\";s:27:\"2010/05/post-signature1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"post-signature1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"post-signature1-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2015,1755,'pre_import_post_parent','198'), (2016,1755,'pre_import_post_id','200'), (2017,273,'_wp_attached_file','2010/05/blackberry-wordpress-02.png'), (2018,1756,'_wp_attached_file','2010/05/blackberry-wordpress-021.png'), (2019,273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:35:\"2010/05/blackberry-wordpress-02.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-02-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2020,273,'pre_import_post_parent','267'), (2021,273,'pre_import_post_id','273'), (2024,1756,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:36:\"2010/05/blackberry-wordpress-021.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-021-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-021-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2025,1756,'pre_import_post_parent','267'), (2026,1756,'pre_import_post_id','273'), (2029,274,'_wp_attached_file','2010/05/blackberry-wordpress-03.png'), (2030,1757,'_wp_attached_file','2010/05/blackberry-wordpress-031.png'), (2031,274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2010/05/blackberry-wordpress-03.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-03-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-03-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2032,274,'pre_import_post_parent','267'), (2033,274,'pre_import_post_id','274'), (2036,1757,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:36:\"2010/05/blackberry-wordpress-031.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-031-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-031-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-031-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2037,1757,'pre_import_post_parent','267'), (2038,1757,'pre_import_post_id','274'), (2041,275,'_wp_attached_file','2010/05/blackberry-wordpress-04.png'), (2042,1758,'_wp_attached_file','2010/05/blackberry-wordpress-041.png'), (2043,275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2010/05/blackberry-wordpress-04.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-04-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-04-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2044,275,'pre_import_post_parent','267'), (2045,275,'pre_import_post_id','275'), (2048,1758,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:36:\"2010/05/blackberry-wordpress-041.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-041-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-041-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-041-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2049,1758,'pre_import_post_parent','267'), (2050,1758,'pre_import_post_id','275'), (2053,276,'_wp_attached_file','2010/05/blackberry-wordpress-05.png'), (2054,1759,'_wp_attached_file','2010/05/blackberry-wordpress-051.png'), (2055,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2010/05/blackberry-wordpress-05.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-05-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-05-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-05-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2056,276,'pre_import_post_parent','267'), (2057,276,'pre_import_post_id','276'), (2060,1759,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:36:\"2010/05/blackberry-wordpress-051.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-051-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-051-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-051-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2061,1759,'pre_import_post_parent','267'), (2062,1759,'pre_import_post_id','276'), (2065,277,'_wp_attached_file','2010/05/blackberry-wordpress-06.png'), (2066,1760,'_wp_attached_file','2010/05/blackberry-wordpress-061.png'), (2067,277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2010/05/blackberry-wordpress-06.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-06-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-06-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-06-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2068,277,'pre_import_post_parent','267'), (2069,277,'pre_import_post_id','277'), (2072,1760,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:36:\"2010/05/blackberry-wordpress-061.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-061-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-061-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-061-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2073,1760,'pre_import_post_parent','267'), (2074,1760,'pre_import_post_id','277'), (2077,675,'_wp_attached_file','2010/04/5.png'), (2078,1761,'_wp_attached_file','2010/04/51.png'), (2079,1761,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:748;s:4:\"file\";s:14:\"2010/04/51.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"51-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"51-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"51-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:15:\"51-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2080,1761,'pre_import_post_parent','638'), (2081,1761,'pre_import_post_id','675'), (2086,1761,'original_post_id','638'), (2087,1761,'_wp_old_slug','638'), (2090,1761,'original_post_id','118'), (2091,1761,'_wp_old_slug','118'), (2094,1761,'original_post_id','118'), (2095,1761,'_wp_old_slug','118'), (2096,675,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:748;s:4:\"file\";s:13:\"2010/04/5.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"5-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"5-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:14:\"5-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2097,675,'pre_import_post_parent','638'), (2098,675,'pre_import_post_id','675'), (2103,675,'original_post_id','638'), (2104,675,'_wp_old_slug','638'), (2107,675,'original_post_id','118'), (2108,675,'_wp_old_slug','118'), (2111,675,'original_post_id','118'), (2112,675,'_wp_old_slug','118'), (2113,676,'_wp_attached_file','2010/04/home-comment.jpg'), (2114,1762,'_wp_attached_file','2010/04/home-comment1.jpg'), (2115,676,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:468;s:6:\"height\";i:238;s:4:\"file\";s:24:\"2010/04/home-comment.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-comment-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-comment-300x152.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2116,676,'pre_import_post_parent','0'), (2117,676,'pre_import_post_id','676'), (2120,1762,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:468;s:6:\"height\";i:238;s:4:\"file\";s:25:\"2010/04/home-comment1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"home-comment1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"home-comment1-300x152.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2121,1762,'pre_import_post_parent','0'), (2122,676,'original_post_id','638'), (2123,1762,'pre_import_post_id','676'), (2126,1762,'original_post_id','638'), (2127,1762,'_wp_old_slug','638'), (2129,1762,'original_post_id','118'), (2130,676,'_wp_old_slug','638'), (2132,1762,'_wp_old_slug','118'), (2133,676,'original_post_id','118'), (2135,1762,'original_post_id','118'), (2136,1762,'_wp_old_slug','118'), (2137,676,'_wp_old_slug','118'), (2139,676,'original_post_id','118'), (2140,676,'_wp_old_slug','118'), (2141,687,'_wp_attached_file','2010/04/home-devices-1.jpg'), (2142,1763,'_wp_attached_file','2010/04/home-devices-1.jpg'), (2143,687,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:518;s:6:\"height\";i:411;s:4:\"file\";s:26:\"2010/04/home-devices-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-devices-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-devices-1-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"home-devices-1-518x372.jpg\";s:5:\"width\";i:518;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2144,687,'pre_import_post_parent','0'), (2145,687,'pre_import_post_id','687'), (2148,687,'original_post_id','638'), (2149,687,'_wp_old_slug','638'), (2151,687,'original_post_id','118'), (2152,687,'_wp_old_slug','118'), (2154,687,'original_post_id','118'), (2155,687,'_wp_old_slug','118'), (2156,1763,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:518;s:6:\"height\";i:411;s:4:\"file\";s:26:\"2010/04/home-devices-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-devices-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"home-devices-1-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"home-devices-1-518x372.jpg\";s:5:\"width\";i:518;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2157,1763,'pre_import_post_parent','0'), (2158,1763,'pre_import_post_id','687'), (2161,1763,'original_post_id','638'), (2162,1763,'_wp_old_slug','638'), (2164,1763,'original_post_id','118'), (2165,1763,'_wp_old_slug','118'), (2167,1763,'original_post_id','118'), (2168,1763,'_wp_old_slug','118'), (2169,688,'_wp_attached_file','2010/04/home-icon.png'), (2170,1764,'_wp_attached_file','2010/04/home-icon1.png'), (2171,688,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:411;s:4:\"file\";s:21:\"2010/04/home-icon.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"home-icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"home-icon-243x300.png\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"home-icon-334x372.png\";s:5:\"width\";i:334;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2172,688,'pre_import_post_parent','0'), (2173,688,'pre_import_post_id','688'), (2176,688,'original_post_id','638'), (2177,688,'_wp_old_slug','638'), (2179,688,'original_post_id','118'), (2180,688,'_wp_old_slug','118'), (2182,688,'original_post_id','118'), (2183,688,'_wp_old_slug','118'), (2184,1764,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:411;s:4:\"file\";s:22:\"2010/04/home-icon1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"home-icon1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"home-icon1-243x300.png\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"home-icon1-334x372.png\";s:5:\"width\";i:334;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2185,1764,'pre_import_post_parent','0'), (2186,1764,'pre_import_post_id','688'), (2189,1764,'original_post_id','638'), (2190,1764,'_wp_old_slug','638'), (2192,1764,'original_post_id','118'), (2193,1764,'_wp_old_slug','118'), (2195,1764,'original_post_id','118'), (2196,1764,'_wp_old_slug','118'), (2197,690,'_wp_attached_file','2010/04/home-ss.png'), (2198,1765,'_wp_attached_file','2010/04/home-ss1.png'), (2199,690,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:518;s:6:\"height\";i:411;s:4:\"file\";s:19:\"2010/04/home-ss.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"home-ss-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"home-ss-300x238.png\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"home-ss-518x372.png\";s:5:\"width\";i:518;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2200,690,'pre_import_post_parent','0'), (2201,690,'pre_import_post_id','690'), (2204,690,'original_post_id','638'), (2205,690,'_wp_old_slug','638'), (2207,690,'original_post_id','118'), (2208,690,'_wp_old_slug','118'), (2210,690,'original_post_id','118'), (2211,690,'_wp_old_slug','118'), (2212,1765,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:518;s:6:\"height\";i:411;s:4:\"file\";s:20:\"2010/04/home-ss1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"home-ss1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"home-ss1-300x238.png\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"home-ss1-518x372.png\";s:5:\"width\";i:518;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2213,1765,'pre_import_post_parent','0'), (2214,1765,'pre_import_post_id','690'), (2217,1765,'original_post_id','638'), (2218,1765,'_wp_old_slug','638'), (2220,1765,'original_post_id','118'), (2221,1765,'_wp_old_slug','118'), (2223,1765,'original_post_id','118'), (2224,1765,'_wp_old_slug','118'), (2225,698,'_wp_attached_file','2010/04/blogging-ipad-keyboard.jpg'), (2226,698,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:225;s:4:\"file\";s:34:\"2010/04/blogging-ipad-keyboard.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"blogging-ipad-keyboard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2227,698,'pre_import_post_parent','691'), (2228,698,'pre_import_post_id','698'), (2233,698,'original_post_id','691'), (2234,698,'_wp_old_slug','691'), (2237,698,'original_post_id','118'), (2238,698,'_wp_old_slug','118'), (2241,698,'original_post_id','118'), (2242,698,'_wp_old_slug','118'), (2243,1766,'_wp_attached_file','2010/04/blogging-ipad-keyboard1.jpg'), (2244,1766,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:225;s:4:\"file\";s:35:\"2010/04/blogging-ipad-keyboard1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blogging-ipad-keyboard1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2245,1766,'pre_import_post_parent','691'), (2246,1766,'pre_import_post_id','698'), (2251,1766,'original_post_id','691'), (2252,1766,'_wp_old_slug','691'), (2255,1766,'original_post_id','118'), (2256,1766,'_wp_old_slug','118'), (2259,1766,'original_post_id','118'), (2260,1766,'_wp_old_slug','118'), (2261,702,'_wp_attached_file','2010/05/screenshot.png'), (2262,702,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:419;s:6:\"height\";i:344;s:4:\"file\";s:22:\"2010/05/screenshot.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"screenshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"screenshot-300x246.png\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2263,702,'pre_import_post_parent','701'), (2264,702,'pre_import_post_id','702'), (2265,702,'_wp_attachment_image_alt','Geolocation Plugin Screenshot'), (2268,702,'_wp_attachment_image_alt','Geolocation Plugin Screenshot'), (2271,702,'original_post_id','701'), (2272,702,'_wp_old_slug','701'), (2273,702,'_wp_attachment_image_alt','Geolocation Plugin Screenshot'), (2276,702,'original_post_id','118'), (2277,702,'_wp_old_slug','118'), (2278,702,'_wp_attachment_image_alt','Geolocation Plugin Screenshot'), (2281,702,'original_post_id','118'), (2282,702,'_wp_old_slug','118'), (2283,1767,'_wp_attached_file','2010/05/screenshot1.png'), (2284,1767,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:419;s:6:\"height\";i:344;s:4:\"file\";s:23:\"2010/05/screenshot1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"screenshot1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"screenshot1-300x246.png\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2285,1767,'pre_import_post_parent','701'), (2286,1767,'pre_import_post_id','702'), (2287,1767,'_wp_attachment_image_alt','Geolocation Plugin Screenshot'), (2290,1767,'_wp_attachment_image_alt','Geolocation Plugin Screenshot'), (2293,1767,'original_post_id','701'), (2294,1767,'_wp_old_slug','701'), (2295,1767,'_wp_attachment_image_alt','Geolocation Plugin Screenshot'), (2298,1767,'original_post_id','118'), (2299,1767,'_wp_old_slug','118'), (2300,1767,'_wp_attachment_image_alt','Geolocation Plugin Screenshot'), (2303,1767,'original_post_id','118'), (2304,1767,'_wp_old_slug','118'), (2305,721,'_wp_attached_file','2010/06/home-icon.png'), (2306,1768,'_wp_attached_file','2010/06/home-icon1.png'), (2307,721,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:411;s:4:\"file\";s:21:\"2010/06/home-icon.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"home-icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"home-icon-243x300.png\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"home-icon-334x372.png\";s:5:\"width\";i:334;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2308,721,'pre_import_post_parent','0'), (2309,721,'pre_import_post_id','721'), (2312,721,'original_post_id','701'), (2313,721,'_wp_old_slug','701'), (2315,721,'original_post_id','118'), (2316,721,'_wp_old_slug','118'), (2318,721,'original_post_id','118'), (2319,721,'_wp_old_slug','118'), (2320,1768,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:411;s:4:\"file\";s:22:\"2010/06/home-icon1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"home-icon1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"home-icon1-243x300.png\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"home-icon1-334x372.png\";s:5:\"width\";i:334;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2321,1768,'pre_import_post_parent','0'), (2322,1768,'pre_import_post_id','721'), (2325,1768,'original_post_id','701'), (2326,1768,'_wp_old_slug','701'), (2328,1768,'original_post_id','118'), (2329,1768,'_wp_old_slug','118'), (2331,1768,'original_post_id','118'), (2332,1768,'_wp_old_slug','118'), (2333,1769,'_wp_attached_file','2010/05/screenshot11.png'), (2334,1770,'_wp_attached_file','2010/05/screenshot12.png'), (2335,1769,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:419;s:6:\"height\";i:344;s:4:\"file\";s:24:\"2010/05/screenshot11.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"screenshot11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"screenshot11-300x246.png\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2336,1769,'pre_import_post_parent','245'), (2337,1769,'pre_import_post_id','246'), (2340,1770,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:419;s:6:\"height\";i:344;s:4:\"file\";s:24:\"2010/05/screenshot12.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"screenshot12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"screenshot12-300x246.png\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2341,1770,'pre_import_post_parent','245'), (2342,1770,'pre_import_post_id','246'), (2345,1771,'_wp_attached_file','2010/05/blackberry-wordpress-01.png'), (2346,1772,'_wp_attached_file','2010/05/blackberry-wordpress-011.png'), (2347,1771,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2010/05/blackberry-wordpress-01.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-01-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-01-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2348,1771,'pre_import_post_parent','267'), (2349,1771,'pre_import_post_id','272'), (2351,1772,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:36:\"2010/05/blackberry-wordpress-011.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-011-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-011-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-011-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2352,1772,'pre_import_post_parent','267'), (2353,1772,'pre_import_post_id','272'), (2357,307,'_wp_attached_file','2010/07/blackberry-wordpress-02.png'), (2358,307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2010/07/blackberry-wordpress-02.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-02-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-02-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2359,307,'pre_import_post_parent','300'), (2360,307,'pre_import_post_id','307'), (2363,243,'_wp_attached_file','2010/07/comments1.png'), (2364,309,'_wp_attached_file','2010/07/blackberry-wordpress-01.png'), (2365,309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2010/07/blackberry-wordpress-01.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-01-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-01-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2366,309,'pre_import_post_parent','300'), (2367,309,'pre_import_post_id','309'), (2370,243,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2010/07/comments1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"comments1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"comments1-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"comments1-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"comments1-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2371,243,'pre_import_post_parent','234'), (2372,243,'pre_import_post_id','243'), (2375,307,'pre_import_post_parent','300'), (2376,307,'pre_import_post_id','307'), (2379,309,'pre_import_post_parent','300'), (2380,309,'pre_import_post_id','309'), (2383,338,'_wp_attached_file','2010/08/01.png'), (2384,338,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2010/08/01.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"01-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"01-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2385,338,'pre_import_post_parent','0'), (2386,338,'pre_import_post_id','338'), (2389,1773,'_wp_attached_file','2010/08/011.png'), (2390,1773,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2010/08/011.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"011-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"011-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"011-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2391,1773,'pre_import_post_parent','0'), (2392,1773,'pre_import_post_id','338'), (2395,340,'_wp_attached_file','2010/08/03.png'), (2396,1774,'_wp_attached_file','2010/08/031.png'), (2397,340,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:14:\"2010/08/03.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"03-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2398,340,'pre_import_post_parent','1730'), (2399,340,'pre_import_post_id','340'), (2402,1774,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2010/08/031.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"031-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"031-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2403,1774,'pre_import_post_parent','1730'), (2404,1774,'pre_import_post_id','340'), (2407,342,'_wp_attached_file','2010/08/05.png'), (2408,1775,'_wp_attached_file','2010/08/051.png'), (2409,342,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2010/08/05.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"05-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"05-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"05-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2410,342,'pre_import_post_parent','1730'), (2411,342,'pre_import_post_id','342'), (2414,1775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2010/08/051.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"051-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"051-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"051-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2415,1775,'pre_import_post_parent','1730'), (2416,1775,'pre_import_post_id','342'), (2419,362,'_wp_attached_file','2010/08/0511.png'), (2420,1776,'_wp_attached_file','2010/08/0512.png'), (2421,362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:16:\"2010/08/0511.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0511-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0511-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"0511-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2422,362,'pre_import_post_parent','360'), (2423,362,'pre_import_post_id','362'), (2426,1776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:16:\"2010/08/0512.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0512-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0512-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"0512-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2427,1776,'pre_import_post_parent','360'), (2428,1776,'pre_import_post_id','362'), (2431,363,'_wp_attached_file','2010/08/0112.png'), (2432,1777,'_wp_attached_file','2010/08/0111.png'), (2433,363,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:16:\"2010/08/0112.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0112-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0112-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"0112-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2434,363,'pre_import_post_parent','360'), (2435,363,'pre_import_post_id','363'), (2438,1777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:16:\"2010/08/0111.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0111-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0111-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"0111-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2439,1777,'pre_import_post_parent','360'), (2440,1777,'pre_import_post_id','363'), (2443,364,'_wp_attached_file','2010/08/021.png'), (2444,364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2010/08/021.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"021-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"021-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"021-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2445,364,'pre_import_post_parent','360'), (2446,364,'pre_import_post_id','364'), (2449,1778,'_wp_attached_file','2010/08/0211.png'), (2450,1778,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:16:\"2010/08/0211.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0211-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0211-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"0211-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2451,1778,'pre_import_post_parent','360'), (2452,1778,'pre_import_post_id','364'), (2455,742,'_wp_attached_file','2010/06/home-geo.jpg'), (2456,1779,'_wp_attached_file','2010/06/home-geo1.jpg'), (2457,742,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:404;s:6:\"height\";i:307;s:4:\"file\";s:20:\"2010/06/home-geo.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"home-geo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"home-geo-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2458,742,'pre_import_post_parent','0'), (2459,742,'pre_import_post_id','742'), (2461,742,'_wp_old_slug','725'), (2462,742,'original_post_id','725'), (2465,742,'original_post_id','118'), (2466,742,'_wp_old_slug','118'), (2468,742,'original_post_id','118'), (2469,742,'_wp_old_slug','118'), (2470,1779,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:404;s:6:\"height\";i:307;s:4:\"file\";s:21:\"2010/06/home-geo1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"home-geo1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"home-geo1-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2471,1779,'pre_import_post_parent','0'), (2472,1779,'pre_import_post_id','742'), (2474,1779,'_wp_old_slug','725'), (2475,1779,'original_post_id','725'), (2478,1779,'original_post_id','118'), (2479,1779,'_wp_old_slug','118'), (2481,1779,'original_post_id','118'), (2482,1779,'_wp_old_slug','118'), (2483,744,'_wp_attached_file','2010/07/home-ss1.jpg'), (2484,744,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:518;s:6:\"height\";i:411;s:4:\"file\";s:20:\"2010/07/home-ss1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"home-ss1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"home-ss1-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"home-ss1-518x372.jpg\";s:5:\"width\";i:518;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2485,744,'original_post_id','725'), (2486,744,'_wp_old_slug','725'), (2487,744,'pre_import_post_parent','0'), (2488,744,'pre_import_post_id','744'), (2492,744,'original_post_id','118'), (2493,744,'_wp_old_slug','118'), (2495,744,'original_post_id','118'), (2496,744,'_wp_old_slug','118'), (2497,1780,'_wp_attached_file','2010/07/home-ss11.jpg'), (2498,1780,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:518;s:6:\"height\";i:411;s:4:\"file\";s:21:\"2010/07/home-ss11.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"home-ss11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"home-ss11-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"home-ss11-518x372.jpg\";s:5:\"width\";i:518;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2499,1780,'original_post_id','725'), (2500,1780,'_wp_old_slug','725'), (2501,1780,'pre_import_post_parent','0'), (2502,1780,'pre_import_post_id','744'), (2506,1780,'original_post_id','118'), (2507,1780,'_wp_old_slug','118'), (2509,1780,'original_post_id','118'), (2510,1780,'_wp_old_slug','118'), (2511,1695,'_wp_attached_file','2010/07/reports.png'), (2512,1695,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2010/07/reports.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"reports-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"reports-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"reports-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:19:\"reports-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2513,1695,'pre_import_post_parent','234'), (2514,1695,'pre_import_post_id','237'), (2517,1781,'_wp_attached_file','2010/07/reports1.png'), (2518,1781,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2010/07/reports1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"reports1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"reports1-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"reports1-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"reports1-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2519,1781,'pre_import_post_parent','234'), (2520,1781,'pre_import_post_id','237'), (2523,1696,'_wp_attached_file','2010/07/comments2.png'), (2524,1782,'_wp_attached_file','2010/07/comments.png'), (2525,1696,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2010/07/comments2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"comments2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"comments2-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"comments2-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"comments2-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2526,1696,'pre_import_post_parent','234'), (2527,1696,'pre_import_post_id','236'), (2530,1782,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2010/07/comments.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"comments-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"comments-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"comments-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"comments-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2531,1782,'pre_import_post_parent','234'), (2532,1782,'pre_import_post_id','236'), (2535,1697,'_wp_attached_file','2010/07/visualeditor.png'), (2536,1783,'_wp_attached_file','2010/07/visualeditor1.png'), (2537,1697,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2010/07/visualeditor.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"visualeditor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"visualeditor-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"visualeditor-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"visualeditor-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2538,1697,'pre_import_post_parent','234'), (2539,1697,'pre_import_post_id','239'), (2542,1783,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2010/07/visualeditor1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"visualeditor1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"visualeditor1-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"visualeditor1-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"visualeditor1-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2543,1783,'pre_import_post_parent','234'), (2544,1783,'pre_import_post_id','239'), (2547,1699,'_wp_attached_file','2010/07/views1.png'), (2548,1699,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2010/07/views1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"views1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"views1-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"views1-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"views1-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2549,1699,'pre_import_post_parent','234'), (2550,1699,'pre_import_post_id','238'), (2553,1784,'_wp_attached_file','2010/07/views.png'), (2554,1785,'_wp_attached_file','2010/08/04.png'), (2555,1784,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:17:\"2010/07/views.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"views-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"views-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"views-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"views-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2556,1784,'pre_import_post_parent','234'), (2557,1784,'pre_import_post_id','238'), (2560,1785,'pre_import_post_parent','1730'), (2561,1785,'pre_import_post_id','341'), (2564,1785,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2010/08/04.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"04-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"04-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2565,1785,'pre_import_post_parent','1730'), (2566,1785,'pre_import_post_id','341'), (2569,1786,'_wp_attached_file','2010/07/blackberry-wordpress-03.png'), (2570,1787,'_wp_attached_file','2010/07/blackberry-wordpress-031.png'), (2571,1786,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2010/07/blackberry-wordpress-03.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-03-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-03-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2572,1786,'pre_import_post_parent','300'), (2573,1786,'pre_import_post_id','308'), (2576,1787,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:36:\"2010/07/blackberry-wordpress-031.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-031-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-031-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-031-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2577,1787,'pre_import_post_parent','300'), (2578,1787,'pre_import_post_id','308'), (2581,1788,'_wp_attached_file','2010/08/02.png'), (2582,1788,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2010/08/02.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"02-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"02-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2583,1788,'pre_import_post_parent','0'), (2584,1788,'pre_import_post_id','339'), (2587,1789,'_wp_attached_file','2010/08/022.png'), (2588,1789,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2010/08/022.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"022-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"022-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"022-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2589,1789,'pre_import_post_parent','0'), (2590,1789,'pre_import_post_id','339'), (2593,1790,'_wp_attached_file','2010/08/0311.png'), (2594,1791,'_wp_attached_file','2010/08/0312.png'), (2595,1790,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2010/08/0311.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0311-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0311-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2596,1790,'pre_import_post_parent','360'), (2597,1790,'pre_import_post_id','365'), (2600,1791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2010/08/0312.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0312-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0312-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2601,1791,'pre_import_post_parent','360'), (2602,1791,'pre_import_post_id','365'), (2605,1792,'_wp_attached_file','2010/08/041.png'), (2606,1792,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2010/08/041.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"041-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"041-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"041-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2607,1792,'pre_import_post_parent','360'), (2608,1792,'pre_import_post_id','366'), (2611,1793,'_wp_attached_file','2010/08/0411.png'), (2612,1793,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:16:\"2010/08/0411.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0411-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0411-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"0411-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2613,1793,'pre_import_post_parent','360'), (2614,1793,'pre_import_post_id','366'), (2617,308,'_wp_attached_file','2010/08/ishot-77.jpg'), (2618,1794,'_wp_attached_file','2010/08/ishot-771.jpg'), (2619,1794,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:150;s:4:\"file\";s:21:\"2010/08/ishot-771.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"ishot-771-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"ishot-771-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2620,1794,'pre_import_post_parent','295'), (2621,1794,'pre_import_post_id','308'), (2623,308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:150;s:4:\"file\";s:20:\"2010/08/ishot-77.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"ishot-77-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"ishot-77-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2625,308,'pre_import_post_parent','295'), (2626,308,'pre_import_post_id','308'), (2629,312,'_wp_attached_file','2010/08/notification.jpg'), (2630,312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:124;s:4:\"file\";s:24:\"2010/08/notification.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"notification-150x124.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"notification-300x116.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2631,312,'pre_import_post_parent','295'), (2632,312,'pre_import_post_id','312'), (2635,1795,'_wp_attached_file','2010/08/notification.jpg'), (2636,1795,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:124;s:4:\"file\";s:24:\"2010/08/notification.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"notification-150x124.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"notification-300x116.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2637,1795,'pre_import_post_parent','295'), (2638,1795,'pre_import_post_id','312'), (2641,349,'_wp_attached_file','2010/11/1-3-8-screen.jpg'), (2642,349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:375;s:4:\"file\";s:24:\"2010/11/1-3-8-screen.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"1-3-8-screen-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"1-3-8-screen-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"1-3-8-screen-250x372.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2643,349,'pre_import_post_parent','347'), (2644,349,'pre_import_post_id','349'), (2647,1796,'_wp_attached_file','2010/11/1-3-8-screen1.jpg'), (2648,1796,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:375;s:4:\"file\";s:25:\"2010/11/1-3-8-screen1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"1-3-8-screen1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"1-3-8-screen1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"1-3-8-screen1-250x372.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2649,1796,'pre_import_post_parent','347'), (2650,1796,'pre_import_post_id','349'), (2653,378,'_wp_attached_file','2010/09/00.png'), (2654,1797,'_wp_attached_file','2010/09/001.png'), (2655,378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2010/09/00.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"00-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"00-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"00-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2656,378,'pre_import_post_parent','376'), (2657,378,'pre_import_post_id','378'), (2660,1797,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2010/09/001.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"001-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"001-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2661,1797,'pre_import_post_parent','376'), (2662,1797,'pre_import_post_id','378'), (2665,379,'_wp_attached_file','2010/09/01.png'), (2666,379,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2010/09/01.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"01-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"01-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2667,379,'pre_import_post_parent','376'), (2668,379,'pre_import_post_id','379'), (2671,1798,'_wp_attached_file','2010/09/011.png'), (2672,1798,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2010/09/011.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"011-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"011-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"011-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2673,1798,'pre_import_post_parent','376'), (2674,1798,'pre_import_post_id','379'), (2677,380,'_wp_attached_file','2010/09/02.png'), (2678,380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2010/09/02.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"02-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"02-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2679,380,'pre_import_post_parent','376'), (2680,380,'pre_import_post_id','380'), (2683,1799,'_wp_attached_file','2010/09/021.png'), (2684,381,'_wp_attached_file','2010/09/03.png'), (2685,381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2010/09/03.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"03-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"03-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2686,381,'pre_import_post_parent','376'), (2687,381,'pre_import_post_id','381'), (2690,1799,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2010/09/021.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"021-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"021-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"021-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2691,1799,'pre_import_post_parent','376'), (2692,1799,'pre_import_post_id','380'), (2695,381,'pre_import_post_parent','376'), (2696,381,'pre_import_post_id','381'), (2699,848,'_wp_attached_file','2010/10/welcome.png'), (2700,848,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:920;s:4:\"file\";s:19:\"2010/10/welcome.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"welcome-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"welcome-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"welcome-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:19:\"welcome-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2703,848,'original_post_id','846'), (2704,848,'_wp_old_slug','846'), (2705,848,'pre_import_post_parent','846'), (2706,848,'pre_import_post_id','848'), (2711,848,'original_post_id','118'), (2712,848,'_wp_old_slug','118'), (2715,848,'original_post_id','118'), (2716,848,'_wp_old_slug','118'), (2717,1800,'_wp_attached_file','2010/10/welcome1.png'), (2718,1800,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:920;s:4:\"file\";s:20:\"2010/10/welcome1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"welcome1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"welcome1-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"welcome1-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"welcome1-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2721,1800,'original_post_id','846'), (2722,1800,'_wp_old_slug','846'), (2723,1800,'pre_import_post_parent','846'), (2724,1800,'pre_import_post_id','848'), (2729,1800,'original_post_id','118'), (2730,1800,'_wp_old_slug','118'), (2733,1800,'original_post_id','118'), (2734,1800,'_wp_old_slug','118'), (2735,849,'_wp_attached_file','2010/10/video_upload.png'), (2736,849,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:920;s:4:\"file\";s:24:\"2010/10/video_upload.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"video_upload-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"video_upload-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"video_upload-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"video_upload-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2739,849,'_wp_old_slug','846'), (2740,849,'original_post_id','846'), (2741,849,'pre_import_post_parent','846'), (2742,849,'pre_import_post_id','849'), (2747,849,'original_post_id','118'), (2748,849,'_wp_old_slug','118'), (2751,849,'original_post_id','118'), (2752,849,'_wp_old_slug','118'), (2753,1801,'_wp_attached_file','2010/10/video_upload1.png'), (2754,1801,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:920;s:4:\"file\";s:25:\"2010/10/video_upload1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"video_upload1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"video_upload1-208x300.png\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"video_upload1-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"video_upload1-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2757,1801,'_wp_old_slug','846'), (2758,1801,'original_post_id','846'), (2759,1801,'pre_import_post_parent','846'), (2760,1801,'pre_import_post_id','849'), (2765,1801,'original_post_id','118'), (2766,1801,'_wp_old_slug','118'), (2769,1801,'original_post_id','118'), (2770,1801,'_wp_old_slug','118'), (2771,873,'_wp_attached_file','2010/10/screen-shot-2010-10-25-at-6-39-59-pm.png'), (2772,873,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:434;s:6:\"height\";i:145;s:4:\"file\";s:48:\"2010/10/screen-shot-2010-10-25-at-6-39-59-pm.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"screen-shot-2010-10-25-at-6-39-59-pm-150x145.png\";s:5:\"width\";i:150;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"screen-shot-2010-10-25-at-6-39-59-pm-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2774,873,'pre_import_post_parent','872'), (2775,873,'pre_import_post_id','873'), (2781,873,'original_post_id','118'), (2782,873,'_wp_old_slug','118'), (2783,873,'original_post_id','872'), (2784,873,'_wp_old_slug','872'), (2787,873,'original_post_id','118'), (2788,873,'_wp_old_slug','118'), (2789,1802,'_wp_attached_file','2010/10/screen-shot-2010-10-25-at-6-39-59-pm1.png'), (2790,1803,'_wp_attached_file','2010/09/06.png'), (2791,1802,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:434;s:6:\"height\";i:145;s:4:\"file\";s:49:\"2010/10/screen-shot-2010-10-25-at-6-39-59-pm1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"screen-shot-2010-10-25-at-6-39-59-pm1-150x145.png\";s:5:\"width\";i:150;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"screen-shot-2010-10-25-at-6-39-59-pm1-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2793,1802,'pre_import_post_parent','872'), (2794,1802,'pre_import_post_id','873'), (2800,1802,'original_post_id','118'), (2801,1802,'_wp_old_slug','118'), (2802,1802,'original_post_id','872'), (2803,1802,'_wp_old_slug','872'), (2806,1802,'original_post_id','118'), (2807,1802,'_wp_old_slug','118'), (2808,1803,'pre_import_post_parent','376'), (2809,1803,'pre_import_post_id','384'), (2812,1803,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2010/09/06.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"06-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"06-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"06-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2813,1803,'pre_import_post_parent','376'), (2814,1803,'pre_import_post_id','384'), (2817,1804,'_wp_attached_file','2010/09/05.png'), (2818,1805,'_wp_attached_file','2010/09/051.png'), (2819,1804,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2010/09/05.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"05-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"05-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"05-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2820,1804,'pre_import_post_parent','376'), (2821,1804,'pre_import_post_id','383'), (2824,1805,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2010/09/051.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"051-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"051-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"051-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2825,1805,'pre_import_post_parent','376'), (2826,1805,'pre_import_post_id','383'), (2829,1806,'_wp_attached_file','2010/09/04.png'), (2830,1807,'_wp_attached_file','2010/09/041.png'), (2831,1806,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2010/09/04.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"04-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"04-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2832,1806,'pre_import_post_parent','376'), (2833,1806,'pre_import_post_id','382'), (2836,1807,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2010/09/041.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"041-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"041-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"041-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2837,1807,'pre_import_post_parent','376'), (2838,1807,'pre_import_post_id','382'), (2841,1808,'_wp_attached_file','2010/12/3232323.jpg'), (2842,1809,'_wp_attached_file','2010/12/32323231.jpg'), (2843,1808,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:257;s:6:\"height\";i:163;s:4:\"file\";s:19:\"2010/12/3232323.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"3232323-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2844,1808,'pre_import_post_parent','1761'), (2845,1808,'pre_import_post_id','36'), (2848,1809,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:257;s:6:\"height\";i:163;s:4:\"file\";s:20:\"2010/12/32323231.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"32323231-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2849,1809,'pre_import_post_parent','1761'), (2850,1809,'pre_import_post_id','36'), (2853,1810,'_wp_attached_file','2010/12/wordpress-for-windows-phone-logo.png'), (2854,1811,'_wp_attached_file','2010/12/wordpress-for-windows-phone-logo1.png'), (2855,1810,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:447;s:6:\"height\";i:109;s:4:\"file\";s:44:\"2010/12/wordpress-for-windows-phone-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"wordpress-for-windows-phone-logo-150x109.png\";s:5:\"width\";i:150;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"wordpress-for-windows-phone-logo-300x73.png\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2856,1810,'pre_import_post_parent','1760'), (2857,1810,'pre_import_post_id','25'), (2860,1811,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:447;s:6:\"height\";i:109;s:4:\"file\";s:45:\"2010/12/wordpress-for-windows-phone-logo1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"wordpress-for-windows-phone-logo1-150x109.png\";s:5:\"width\";i:150;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"wordpress-for-windows-phone-logo1-300x73.png\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2861,1811,'pre_import_post_parent','1760'), (2862,1811,'pre_import_post_id','25'), (2865,1812,'_wp_attached_file','2010/12/open-source-illustration.jpg'), (2866,1812,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:260;s:6:\"height\";i:302;s:4:\"file\";s:36:\"2010/12/open-source-illustration.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"open-source-illustration-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"open-source-illustration-258x300.jpg\";s:5:\"width\";i:258;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2867,1812,'pre_import_post_parent','1758'), (2868,1812,'pre_import_post_id','55'), (2871,1813,'_wp_attached_file','2010/12/open-source-illustration1.jpg'), (2872,1813,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:260;s:6:\"height\";i:302;s:4:\"file\";s:37:\"2010/12/open-source-illustration1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"open-source-illustration1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"open-source-illustration1-258x300.jpg\";s:5:\"width\";i:258;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2873,1813,'pre_import_post_parent','1758'), (2874,1813,'pre_import_post_id','55'), (2877,1814,'_wp_attached_file','2010/12/screen-shot-2010-12-07-at-3-03-41-am.png'), (2878,1814,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:465;s:6:\"height\";i:477;s:4:\"file\";s:48:\"2010/12/screen-shot-2010-12-07-at-3-03-41-am.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"screen-shot-2010-12-07-at-3-03-41-am-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"screen-shot-2010-12-07-at-3-03-41-am-292x300.png\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"screen-shot-2010-12-07-at-3-03-41-am-465x372.png\";s:5:\"width\";i:465;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2879,1814,'pre_import_post_parent','0'), (2880,1814,'pre_import_post_id','70'), (2882,1815,'_wp_attached_file','2010/12/screen-shot-2010-12-07-at-3-03-41-am1.png'), (2883,1815,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:465;s:6:\"height\";i:477;s:4:\"file\";s:49:\"2010/12/screen-shot-2010-12-07-at-3-03-41-am1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"screen-shot-2010-12-07-at-3-03-41-am1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"screen-shot-2010-12-07-at-3-03-41-am1-292x300.png\";s:5:\"width\";i:292;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"screen-shot-2010-12-07-at-3-03-41-am1-465x372.png\";s:5:\"width\";i:465;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2884,1815,'pre_import_post_parent','0'), (2885,1815,'pre_import_post_id','70'), (2887,1816,'_wp_attached_file','2010/12/screen_4.png'), (2888,1817,'_wp_attached_file','2010/12/screen_41.png'), (2889,1816,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2010/12/screen_4.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"screen_4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"screen_4-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"screen_4-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"screen_4-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2890,1816,'pre_import_post_parent','1767'), (2891,1816,'pre_import_post_id','96'), (2892,1816,'_wp_attachment_image_alt','Screenshot of the Pages view'), (2895,1817,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2010/12/screen_41.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"screen_41-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"screen_41-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"screen_41-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"screen_41-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2896,1817,'pre_import_post_parent','1767'), (2897,1817,'pre_import_post_id','96'), (2898,1817,'_wp_attachment_image_alt','Screenshot of the Pages view'), (2901,1818,'_wp_attached_file','2010/12/screen_5.png'), (2902,1819,'_wp_attached_file','2010/12/screen_51.png'), (2903,1818,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2010/12/screen_5.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"screen_5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"screen_5-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"screen_5-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"screen_5-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2904,1818,'pre_import_post_parent','1767'), (2905,1818,'pre_import_post_id','95'), (2906,1818,'_wp_attachment_image_alt','Screenshot of the Stats view'), (2909,1819,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2010/12/screen_51.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"screen_51-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"screen_51-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"screen_51-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"screen_51-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2910,1819,'pre_import_post_parent','1767'), (2911,1819,'pre_import_post_id','95'), (2912,1819,'_wp_attachment_image_alt','Screenshot of the Stats view'), (2915,1820,'_wp_attached_file','2010/12/screen_1.png'), (2916,1821,'_wp_attached_file','2010/12/screen_11.png'), (2917,1820,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2010/12/screen_1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"screen_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"screen_1-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"screen_1-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"screen_1-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'); INSERT INTO `wporg_36_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (2918,1820,'pre_import_post_parent','1767'), (2919,1820,'pre_import_post_id','94'), (2920,1820,'_wp_attachment_image_alt','Screenshot of the Actions Dashboard'), (2923,1821,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2010/12/screen_11.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"screen_11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"screen_11-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"screen_11-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"screen_11-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2924,1821,'pre_import_post_parent','1767'), (2925,1821,'pre_import_post_id','94'), (2926,1821,'_wp_attachment_image_alt','Screenshot of the Actions Dashboard'), (2929,365,'_wp_attached_file','2011/01/qp-select.png'), (2930,1822,'_wp_attached_file','2011/01/qp-select1.png'), (2931,1822,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2011/01/qp-select1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"qp-select1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"qp-select1-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"qp-select1-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:22:\"qp-select1-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2932,1822,'pre_import_post_parent','361'), (2933,1822,'pre_import_post_id','365'), (2936,365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2011/01/qp-select.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"qp-select-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"qp-select-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"qp-select-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"qp-select-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2937,365,'pre_import_post_parent','361'), (2938,365,'pre_import_post_id','365'), (2941,366,'_wp_attached_file','2011/01/share-url.png'), (2942,1823,'_wp_attached_file','2011/01/share-url1.png'), (2943,1823,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2011/01/share-url1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"share-url1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"share-url1-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"share-url1-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:22:\"share-url1-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2944,1823,'pre_import_post_parent','361'), (2945,1823,'pre_import_post_id','366'), (2948,366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2011/01/share-url.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"share-url-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"share-url-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"share-url-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"share-url-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2949,366,'pre_import_post_parent','361'), (2950,366,'pre_import_post_id','366'), (2953,433,'_wp_attached_file','2011/02/00.png'), (2954,1824,'_wp_attached_file','2011/02/001.png'), (2955,433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2011/02/00.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"00-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"00-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"00-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2956,433,'pre_import_post_parent','1739'), (2957,433,'pre_import_post_id','433'), (2960,1824,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2011/02/001.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"001-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"001-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2961,1824,'pre_import_post_parent','1739'), (2962,1824,'pre_import_post_id','433'), (2965,440,'_wp_attached_file','2011/03/04.png'), (2966,1825,'_wp_attached_file','2011/03/041.png'), (2967,440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2011/03/04.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"04-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"04-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2968,440,'pre_import_post_parent','1739'), (2969,440,'pre_import_post_id','440'), (2972,1825,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2011/03/041.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"041-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"041-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"041-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2973,1825,'pre_import_post_parent','1739'), (2974,1825,'pre_import_post_id','440'), (2977,443,'_wp_attached_file','2011/03/20-post-list-screen.png'), (2978,443,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:31:\"2011/03/20-post-list-screen.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"20-post-list-screen-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"20-post-list-screen-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"20-post-list-screen-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"20-post-list-screen-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2979,443,'pre_import_post_parent','1739'), (2980,443,'pre_import_post_id','443'), (2983,1826,'_wp_attached_file','2011/03/20-post-list-screen1.png'), (2984,1826,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:32:\"2011/03/20-post-list-screen1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"20-post-list-screen1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"20-post-list-screen1-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"20-post-list-screen1-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:32:\"20-post-list-screen1-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2985,1826,'pre_import_post_parent','1739'), (2986,1826,'pre_import_post_id','443'), (2989,444,'_wp_attached_file','2011/03/blackberry-wordpress-02.png'), (2990,1827,'_wp_attached_file','2011/03/blackberry-wordpress-021.png'), (2991,444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2011/03/blackberry-wordpress-02.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-02-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"blackberry-wordpress-02-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2992,444,'pre_import_post_parent','1739'), (2993,444,'pre_import_post_id','444'), (2996,1827,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:36:\"2011/03/blackberry-wordpress-021.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-021-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-021-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"blackberry-wordpress-021-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (2997,1827,'pre_import_post_parent','1739'), (2998,1827,'pre_import_post_id','444'), (3001,445,'_wp_attached_file','2011/03/02.png'), (3002,445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2011/03/02.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"02-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"02-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3003,445,'pre_import_post_parent','1739'), (3004,445,'pre_import_post_id','445'), (3007,1828,'_wp_attached_file','2011/03/021.png'), (3008,1828,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2011/03/021.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"021-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"021-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"021-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3009,1828,'pre_import_post_parent','1739'), (3010,1828,'pre_import_post_id','445'), (3013,446,'_wp_attached_file','2011/03/031.png'), (3014,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2011/03/031.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"031-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"031-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"031-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3015,446,'pre_import_post_parent','1739'), (3016,446,'pre_import_post_id','446'), (3019,1829,'_wp_attached_file','2011/03/0311.png'), (3020,1829,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:16:\"2011/03/0311.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0311-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0311-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"0311-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3021,1829,'pre_import_post_parent','1739'), (3022,1829,'pre_import_post_id','446'), (3025,448,'_wp_attached_file','2011/03/22-post-settings.png'), (3026,448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:28:\"2011/03/22-post-settings.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"22-post-settings-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"22-post-settings-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"22-post-settings-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:28:\"22-post-settings-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3027,448,'pre_import_post_parent','1739'), (3028,448,'pre_import_post_id','448'), (3031,1830,'_wp_attached_file','2011/03/22-post-settings1.png'), (3032,1830,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:29:\"2011/03/22-post-settings1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"22-post-settings1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"22-post-settings1-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"22-post-settings1-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"22-post-settings1-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3033,1830,'pre_import_post_parent','1739'), (3034,1830,'pre_import_post_id','448'), (3037,452,'_wp_attached_file','2011/03/09-options-screen.png'), (3038,452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:29:\"2011/03/09-options-screen.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"09-options-screen-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"09-options-screen-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"09-options-screen-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"09-options-screen-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3039,452,'pre_import_post_parent','1739'), (3040,452,'pre_import_post_id','452'), (3043,1831,'_wp_attached_file','2011/03/09-options-screen1.png'), (3044,1831,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:30:\"2011/03/09-options-screen1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"09-options-screen1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"09-options-screen1-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"09-options-screen1-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"09-options-screen1-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3045,1831,'pre_import_post_parent','1739'), (3046,1831,'pre_import_post_id','452'), (3049,453,'_wp_attached_file','2011/03/10-options-screen.png'), (3050,1832,'_wp_attached_file','2011/03/10-options-screen1.png'), (3051,1832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:30:\"2011/03/10-options-screen1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"10-options-screen1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"10-options-screen1-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"10-options-screen1-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"10-options-screen1-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3052,1832,'pre_import_post_parent','1739'), (3053,1832,'pre_import_post_id','453'), (3056,453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:491;s:6:\"height\";i:797;s:4:\"file\";s:29:\"2011/03/10-options-screen.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"10-options-screen-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"10-options-screen-184x300.png\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"10-options-screen-491x372.png\";s:5:\"width\";i:491;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"10-options-screen-491x576.png\";s:5:\"width\";i:491;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3057,453,'pre_import_post_parent','1739'), (3058,453,'pre_import_post_id','453'), (3061,917,'_wp_attached_file','2011/01/wp-ios-2641.png'), (3062,917,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:23:\"2011/01/wp-ios-2641.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"wp-ios-2641-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3065,917,'original_post_id','906'), (3066,917,'_wp_old_slug','906'), (3067,917,'pre_import_post_parent','906'), (3068,917,'pre_import_post_id','917'), (3073,917,'original_post_id','118'), (3074,917,'_wp_old_slug','118'), (3077,917,'original_post_id','118'), (3078,917,'_wp_old_slug','118'), (3079,934,'_wp_attached_file','2011/01/wp-ios-265.png'), (3080,1833,'_wp_attached_file','2011/01/wp-ios-2651.png'), (3081,1833,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:264;s:6:\"height\";i:415;s:4:\"file\";s:23:\"2011/01/wp-ios-2651.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"wp-ios-2651-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"wp-ios-2651-190x300.png\";s:5:\"width\";i:190;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"wp-ios-2651-264x372.png\";s:5:\"width\";i:264;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3082,1833,'original_post_id','933'), (3083,1833,'_wp_old_slug','933'), (3085,1833,'pre_import_post_parent','933'), (3086,1833,'pre_import_post_id','934'), (3092,1833,'original_post_id','118'), (3093,1833,'_wp_old_slug','118'), (3096,1833,'original_post_id','118'), (3097,1833,'_wp_old_slug','118'), (3098,934,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:264;s:6:\"height\";i:415;s:4:\"file\";s:22:\"2011/01/wp-ios-265.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"wp-ios-265-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"wp-ios-265-190x300.png\";s:5:\"width\";i:190;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"wp-ios-265-264x372.png\";s:5:\"width\";i:264;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3099,934,'original_post_id','933'), (3100,934,'_wp_old_slug','933'), (3102,934,'pre_import_post_parent','933'), (3103,934,'pre_import_post_id','934'), (3109,934,'original_post_id','118'), (3110,934,'_wp_old_slug','118'), (3113,934,'original_post_id','118'), (3114,934,'_wp_old_slug','118'), (3115,951,'_wp_attached_file','2011/03/pull-to-refresh.jpg'), (3116,1834,'_wp_attached_file','2011/03/pull-to-refresh1.jpg'), (3117,951,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:480;s:4:\"file\";s:27:\"2011/03/pull-to-refresh.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"pull-to-refresh-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"pull-to-refresh-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"pull-to-refresh-320x372.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3120,951,'original_post_id','949'), (3121,951,'_wp_old_slug','949'), (3122,951,'pre_import_post_parent','949'), (3123,951,'pre_import_post_id','951'), (3128,951,'original_post_id','118'), (3129,951,'_wp_old_slug','118'), (3132,951,'original_post_id','118'), (3133,951,'_wp_old_slug','118'), (3134,1834,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:480;s:4:\"file\";s:28:\"2011/03/pull-to-refresh1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"pull-to-refresh1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"pull-to-refresh1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"pull-to-refresh1-320x372.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3137,1834,'original_post_id','949'), (3138,1834,'_wp_old_slug','949'), (3139,1834,'pre_import_post_parent','949'), (3140,1834,'pre_import_post_id','951'), (3145,1834,'original_post_id','118'), (3146,1834,'_wp_old_slug','118'), (3149,1834,'original_post_id','118'), (3150,1834,'_wp_old_slug','118'), (3151,957,'_wp_attached_file','2011/03/ipad-editor.jpg'), (3152,1835,'_wp_attached_file','2011/03/ipad-editor1.jpg'), (3153,957,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:514;s:6:\"height\";i:383;s:4:\"file\";s:23:\"2011/03/ipad-editor.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"ipad-editor-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"ipad-editor-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"ipad-editor-514x372.jpg\";s:5:\"width\";i:514;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3154,957,'_wp_old_slug','949'), (3155,957,'original_post_id','949'), (3158,957,'pre_import_post_parent','949'), (3159,957,'pre_import_post_id','957'), (3164,957,'original_post_id','118'), (3165,957,'_wp_old_slug','118'), (3168,957,'original_post_id','118'), (3169,957,'_wp_old_slug','118'), (3170,1835,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:514;s:6:\"height\";i:383;s:4:\"file\";s:24:\"2011/03/ipad-editor1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"ipad-editor1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"ipad-editor1-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"ipad-editor1-514x372.jpg\";s:5:\"width\";i:514;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3171,1835,'_wp_old_slug','949'), (3172,1835,'original_post_id','949'), (3175,1835,'pre_import_post_parent','949'), (3176,1835,'pre_import_post_id','957'), (3181,1835,'original_post_id','118'), (3182,1835,'_wp_old_slug','118'), (3185,1835,'original_post_id','118'), (3186,1835,'_wp_old_slug','118'), (3187,1836,'_wp_attached_file','2011/03/03.png'), (3188,1837,'_wp_attached_file','2011/03/032.png'), (3189,1836,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:14:\"2011/03/03.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"03-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3190,1836,'pre_import_post_parent','1739'), (3191,1836,'pre_import_post_id','441'), (3194,1837,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2011/03/032.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"032-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"032-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3195,1837,'pre_import_post_parent','1739'), (3196,1837,'pre_import_post_id','441'), (3199,1838,'_wp_attached_file','2011/03/06.png'), (3200,1838,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:14:\"2011/03/06.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"06-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"06-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"06-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3201,1838,'pre_import_post_parent','1739'), (3202,1838,'pre_import_post_id','439'), (3205,1839,'_wp_attached_file','2011/03/061.png'), (3206,1839,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:15:\"2011/03/061.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"061-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"061-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"061-360x372.png\";s:5:\"width\";i:360;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3207,1839,'pre_import_post_parent','1739'), (3208,1839,'pre_import_post_id','439'), (3211,1840,'_wp_attached_file','2010/12/screen_3.png'), (3212,1840,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2010/12/screen_3.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"screen_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"screen_3-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"screen_3-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"screen_3-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3213,1840,'pre_import_post_parent','1767'), (3214,1840,'pre_import_post_id','97'), (3215,1840,'_wp_attachment_image_alt','Screenshot of the Posts view'), (3218,1841,'_wp_attached_file','2010/12/screen_31.png'), (3219,1841,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2010/12/screen_31.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"screen_31-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"screen_31-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"screen_31-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"screen_31-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3220,1841,'pre_import_post_parent','1767'), (3221,1841,'pre_import_post_id','97'), (3222,1841,'_wp_attachment_image_alt','Screenshot of the Posts view'), (3225,1843,'_wp_attached_file','2010/12/screen_21.png'), (3226,1842,'_wp_attached_file','2010/12/screen_2.png'), (3227,1842,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2010/12/screen_2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"screen_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"screen_2-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"screen_2-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"screen_2-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3228,1842,'pre_import_post_parent','1767'), (3229,1842,'pre_import_post_id','98'), (3230,1842,'_wp_attachment_image_alt','Screenshot of the Comments view'), (3233,1843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2010/12/screen_21.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"screen_21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"screen_21-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"screen_21-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"screen_21-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3234,1843,'pre_import_post_parent','1767'), (3235,1843,'pre_import_post_id','98'), (3236,1843,'_wp_attachment_image_alt','Screenshot of the Comments view'), (3239,1844,'_wp_attached_file','2010/12/glotpress.png'), (3240,1844,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:107;s:6:\"height\";i:304;s:4:\"file\";s:21:\"2010/12/glotpress.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"glotpress-107x150.png\";s:5:\"width\";i:107;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"glotpress-105x300.png\";s:5:\"width\";i:105;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3241,1844,'pre_import_post_parent','125'), (3242,1844,'pre_import_post_id','141'), (3245,1845,'_wp_attached_file','2010/12/glotpress1.png'), (3246,1845,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:107;s:6:\"height\";i:304;s:4:\"file\";s:22:\"2010/12/glotpress1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"glotpress1-107x150.png\";s:5:\"width\";i:107;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"glotpress1-105x300.png\";s:5:\"width\";i:105;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3247,1845,'pre_import_post_parent','125'), (3248,1845,'pre_import_post_id','141'), (3251,383,'_wp_attached_file','2011/04/wp-android-httppswd.jpg'), (3252,383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:244;s:6:\"height\";i:197;s:4:\"file\";s:31:\"2011/04/wp-android-httppswd.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"wp-android-httppswd-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3253,383,'pre_import_post_parent','382'), (3254,383,'pre_import_post_id','383'), (3257,1846,'_wp_attached_file','2011/04/wp-android-httppswd1.jpg'), (3258,1846,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:244;s:6:\"height\";i:197;s:4:\"file\";s:32:\"2011/04/wp-android-httppswd1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"wp-android-httppswd1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3259,1846,'pre_import_post_parent','382'), (3260,1846,'pre_import_post_id','383'), (3263,384,'_wp_attached_file','2011/04/wp-android-postpassword.jpg'), (3264,384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:244;s:6:\"height\";i:146;s:4:\"file\";s:35:\"2011/04/wp-android-postpassword.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"wp-android-postpassword-150x146.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3265,384,'pre_import_post_parent','382'), (3266,384,'pre_import_post_id','384'), (3269,1847,'_wp_attached_file','2011/04/wp-android-postpassword1.jpg'), (3270,388,'_wp_attached_file','2011/04/wp-android-httppswd11.jpg'), (3271,1847,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:244;s:6:\"height\";i:146;s:4:\"file\";s:36:\"2011/04/wp-android-postpassword1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"wp-android-postpassword1-150x146.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3272,1847,'pre_import_post_parent','382'), (3273,1847,'pre_import_post_id','384'), (3276,388,'pre_import_post_parent','382'), (3277,388,'pre_import_post_id','388'), (3280,388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:244;s:6:\"height\";i:197;s:4:\"file\";s:33:\"2011/04/wp-android-httppswd11.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"wp-android-httppswd11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3281,388,'pre_import_post_parent','382'), (3282,388,'pre_import_post_id','388'), (3285,473,'_wp_attached_file','2011/04/011.png'), (3286,473,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:483;s:6:\"height\";i:810;s:4:\"file\";s:15:\"2011/04/011.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"011-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"011-178x300.png\";s:5:\"width\";i:178;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"011-483x372.png\";s:5:\"width\";i:483;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:15:\"011-483x576.png\";s:5:\"width\";i:483;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3287,473,'pre_import_post_parent','0'), (3288,473,'pre_import_post_id','473'), (3291,1848,'_wp_attached_file','2011/04/01.png'), (3292,1848,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:483;s:6:\"height\";i:810;s:4:\"file\";s:14:\"2011/04/01.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"01-178x300.png\";s:5:\"width\";i:178;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"01-483x372.png\";s:5:\"width\";i:483;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:14:\"01-483x576.png\";s:5:\"width\";i:483;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3293,1848,'pre_import_post_parent','0'), (3294,1848,'pre_import_post_id','473'), (3297,474,'_wp_attached_file','2011/04/02.png'), (3298,474,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:483;s:6:\"height\";i:810;s:4:\"file\";s:14:\"2011/04/02.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"02-178x300.png\";s:5:\"width\";i:178;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"02-483x372.png\";s:5:\"width\";i:483;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:14:\"02-483x576.png\";s:5:\"width\";i:483;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3299,474,'pre_import_post_parent','0'), (3300,474,'pre_import_post_id','474'), (3303,1849,'_wp_attached_file','2011/04/021.png'), (3304,1849,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:483;s:6:\"height\";i:810;s:4:\"file\";s:15:\"2011/04/021.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"021-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"021-178x300.png\";s:5:\"width\";i:178;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"021-483x372.png\";s:5:\"width\";i:483;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:15:\"021-483x576.png\";s:5:\"width\";i:483;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3305,1849,'pre_import_post_parent','0'), (3306,1849,'pre_import_post_id','474'), (3309,475,'_wp_attached_file','2011/04/031.png'), (3310,1850,'_wp_attached_file','2011/04/03.png'), (3311,475,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:417;s:6:\"height\";i:699;s:4:\"file\";s:15:\"2011/04/031.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"031-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"031-178x300.png\";s:5:\"width\";i:178;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"031-417x372.png\";s:5:\"width\";i:417;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:15:\"031-417x576.png\";s:5:\"width\";i:417;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3312,475,'pre_import_post_parent','0'), (3313,475,'pre_import_post_id','475'), (3316,1850,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:417;s:6:\"height\";i:699;s:4:\"file\";s:14:\"2011/04/03.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"03-178x300.png\";s:5:\"width\";i:178;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"03-417x372.png\";s:5:\"width\";i:417;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:14:\"03-417x576.png\";s:5:\"width\";i:417;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3317,1850,'pre_import_post_parent','0'), (3318,1850,'pre_import_post_id','475'), (3321,478,'_wp_attached_file','2011/04/postformats-1.png'), (3322,478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:25:\"2011/04/postformats-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"postformats-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"postformats-1-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3323,478,'pre_import_post_parent','0'), (3324,478,'pre_import_post_id','478'), (3327,1851,'_wp_attached_file','2011/04/postformats-11.png'), (3328,479,'_wp_attached_file','2011/04/postformats-2.png'), (3329,479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:25:\"2011/04/postformats-2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"postformats-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"postformats-2-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3330,479,'pre_import_post_parent','0'), (3331,479,'pre_import_post_id','479'), (3334,1851,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:26:\"2011/04/postformats-11.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"postformats-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"postformats-11-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3335,1851,'pre_import_post_parent','0'), (3336,1851,'pre_import_post_id','478'), (3339,479,'pre_import_post_parent','0'), (3340,479,'pre_import_post_id','479'), (3343,480,'_wp_attached_file','2011/04/resize-opt11.png'), (3344,480,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:24:\"2011/04/resize-opt11.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"resize-opt11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"resize-opt11-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3345,480,'pre_import_post_parent','0'), (3346,480,'pre_import_post_id','480'), (3349,1852,'_wp_attached_file','2011/04/resize-opt1.png'), (3350,1852,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:23:\"2011/04/resize-opt1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"resize-opt1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"resize-opt1-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3351,1852,'pre_import_post_parent','0'), (3352,1852,'pre_import_post_id','480'), (3355,481,'_wp_attached_file','2011/04/resize-opt2.png'), (3356,1853,'_wp_attached_file','2011/04/resize-opt21.png'), (3357,481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:23:\"2011/04/resize-opt2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"resize-opt2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"resize-opt2-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3358,481,'pre_import_post_parent','464'), (3359,481,'pre_import_post_id','481'), (3362,1853,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:24:\"2011/04/resize-opt21.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"resize-opt21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"resize-opt21-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3363,1853,'pre_import_post_parent','464'), (3364,1853,'pre_import_post_id','481'), (3367,960,'_wp_attached_file','2011/03/ipad-editor11.jpg'), (3368,960,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:514;s:6:\"height\";i:383;s:4:\"file\";s:25:\"2011/03/ipad-editor11.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"ipad-editor11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"ipad-editor11-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"ipad-editor11-514x372.jpg\";s:5:\"width\";i:514;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3371,960,'original_post_id','949'), (3372,960,'_wp_old_slug','949'), (3373,960,'pre_import_post_parent','949'), (3374,960,'pre_import_post_id','960'), (3379,960,'original_post_id','118'), (3380,960,'_wp_old_slug','118'), (3383,960,'original_post_id','118'), (3384,960,'_wp_old_slug','118'), (3385,1854,'_wp_attached_file','2011/03/ipad-editor12.jpg'), (3386,1854,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:514;s:6:\"height\";i:383;s:4:\"file\";s:25:\"2011/03/ipad-editor12.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"ipad-editor12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"ipad-editor12-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"ipad-editor12-514x372.jpg\";s:5:\"width\";i:514;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3389,1854,'original_post_id','949'), (3390,1854,'_wp_old_slug','949'), (3391,1854,'pre_import_post_parent','949'), (3392,1854,'pre_import_post_id','960'), (3397,1854,'original_post_id','118'), (3398,1854,'_wp_old_slug','118'), (3401,1854,'original_post_id','118'), (3402,1854,'_wp_old_slug','118'), (3403,963,'_wp_attached_file','2011/03/ipad-editor2.jpg'), (3404,1855,'_wp_attached_file','2011/03/ipad-editor21.jpg'), (3405,963,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:514;s:6:\"height\";i:383;s:4:\"file\";s:24:\"2011/03/ipad-editor2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"ipad-editor2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"ipad-editor2-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"ipad-editor2-514x372.jpg\";s:5:\"width\";i:514;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3406,963,'_wp_old_slug','949'), (3407,963,'original_post_id','949'), (3410,963,'pre_import_post_parent','949'), (3411,963,'pre_import_post_id','963'), (3416,963,'original_post_id','118'), (3417,963,'_wp_old_slug','118'), (3420,963,'original_post_id','118'), (3421,963,'_wp_old_slug','118'), (3422,1855,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:514;s:6:\"height\";i:383;s:4:\"file\";s:25:\"2011/03/ipad-editor21.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"ipad-editor21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"ipad-editor21-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"ipad-editor21-514x372.jpg\";s:5:\"width\";i:514;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3423,1855,'_wp_old_slug','949'), (3424,1855,'original_post_id','949'), (3427,1855,'pre_import_post_parent','949'), (3428,1855,'pre_import_post_id','963'), (3433,1855,'original_post_id','118'), (3434,1855,'_wp_old_slug','118'), (3437,1855,'original_post_id','118'), (3438,1855,'_wp_old_slug','118'), (3439,968,'_wp_attached_file','2011/03/iphone-editor.jpg'), (3440,968,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:480;s:4:\"file\";s:25:\"2011/03/iphone-editor.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"iphone-editor-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"iphone-editor-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"iphone-editor-320x372.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3443,968,'pre_import_post_parent','949'), (3444,968,'pre_import_post_id','968'), (3449,968,'original_post_id','118'), (3450,968,'_wp_old_slug','118'), (3451,968,'_wp_old_slug','949'), (3452,968,'original_post_id','949'), (3455,968,'original_post_id','118'), (3456,968,'_wp_old_slug','118'), (3457,1856,'_wp_attached_file','2011/03/iphone-editor1.jpg'), (3458,1856,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:480;s:4:\"file\";s:26:\"2011/03/iphone-editor1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"iphone-editor1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"iphone-editor1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"iphone-editor1-320x372.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3461,1856,'pre_import_post_parent','949'), (3462,1856,'pre_import_post_id','968'), (3467,1856,'original_post_id','118'), (3468,1856,'_wp_old_slug','118'), (3469,1856,'_wp_old_slug','949'), (3470,1856,'original_post_id','949'), (3473,1856,'original_post_id','118'), (3474,1856,'_wp_old_slug','118'), (3475,973,'_wp_attached_file','2011/03/iphone-editor11.jpg'), (3476,973,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:480;s:4:\"file\";s:27:\"2011/03/iphone-editor11.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"iphone-editor11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"iphone-editor11-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"iphone-editor11-320x372.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3477,973,'pre_import_post_parent','949'), (3478,973,'pre_import_post_id','973'), (3481,973,'_wp_old_slug','949'), (3482,973,'original_post_id','949'), (3485,973,'original_post_id','118'), (3486,973,'_wp_old_slug','118'), (3491,973,'original_post_id','118'), (3492,973,'_wp_old_slug','118'), (3493,1857,'_wp_attached_file','2011/03/iphone-editor12.jpg'), (3494,1857,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:480;s:4:\"file\";s:27:\"2011/03/iphone-editor12.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"iphone-editor12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"iphone-editor12-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"iphone-editor12-320x372.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3495,1857,'pre_import_post_parent','949'), (3496,1857,'pre_import_post_id','973'), (3499,1857,'_wp_old_slug','949'), (3500,1857,'original_post_id','949'), (3503,1857,'original_post_id','118'), (3504,1857,'_wp_old_slug','118'), (3509,1857,'original_post_id','118'), (3510,1857,'_wp_old_slug','118'), (3511,999,'_wp_attached_file','2011/03/20110316-192842.jpg'), (3512,999,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2011/03/20110316-192842.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20110316-192842-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (3513,999,'_wp_old_slug','949'), (3514,999,'original_post_id','949'), (3515,999,'pre_import_post_parent','0'), (3516,999,'pre_import_post_id','999'), (3520,999,'original_post_id','118'), (3521,999,'_wp_old_slug','118'), (3523,999,'original_post_id','118'), (3524,999,'_wp_old_slug','118'), (3525,1858,'_wp_attached_file','2011/03/20110316-1928421.jpg'), (3526,1858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2011/03/20110316-1928421.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"20110316-1928421-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (3527,1858,'_wp_old_slug','949'), (3528,1858,'original_post_id','949'), (3529,1858,'pre_import_post_parent','0'), (3530,1858,'pre_import_post_id','999'), (3534,1858,'original_post_id','118'), (3535,1858,'_wp_old_slug','118'), (3537,1858,'original_post_id','118'), (3538,1858,'_wp_old_slug','118'), (3539,1000,'_wp_attached_file','2011/03/20110316-192935.jpg'), (3540,1000,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2011/03/20110316-192935.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20110316-192935-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (3542,1000,'pre_import_post_parent','0'), (3543,1000,'pre_import_post_id','1000'), (3546,1000,'original_post_id','118'), (3547,1000,'_wp_old_slug','118'), (3548,1000,'_wp_old_slug','949'), (3549,1000,'original_post_id','949'), (3551,1000,'original_post_id','118'), (3552,1000,'_wp_old_slug','118'), (3553,1859,'_wp_attached_file','2011/03/20110316-1929351.jpg'), (3554,1859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2011/03/20110316-1929351.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"20110316-1929351-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (3556,1859,'pre_import_post_parent','0'), (3557,1859,'pre_import_post_id','1000'), (3560,1859,'original_post_id','118'), (3561,1859,'_wp_old_slug','118'), (3562,1859,'_wp_old_slug','949'), (3563,1859,'original_post_id','949'), (3565,1859,'original_post_id','118'), (3566,1859,'_wp_old_slug','118'), (3567,1010,'_wp_attached_file','2011/04/home-icon1-e1302016469212.png'), (3568,1010,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:310;s:6:\"height\";i:310;s:4:\"file\";s:37:\"2011/04/home-icon1-e1302016469212.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"home-icon1-e1302016469212-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"home-icon1-e1302016469212-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3569,1010,'_wp_old_slug','1004'), (3570,1010,'original_post_id','1004'), (3571,1010,'pre_import_post_parent','1004'), (3572,1010,'pre_import_post_id','1010'), (3573,1010,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";s:3:\"334\";s:6:\"height\";s:3:\"411\";s:4:\"file\";s:14:\"home-icon1.png\";}}'), (3578,1010,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";s:3:\"334\";s:6:\"height\";s:3:\"411\";s:4:\"file\";s:14:\"home-icon1.png\";}}'), (3581,1010,'original_post_id','1004'), (3582,1010,'_wp_old_slug','1004'), (3583,1010,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";s:3:\"334\";s:6:\"height\";s:3:\"411\";s:4:\"file\";s:14:\"home-icon1.png\";}}'), (3584,1010,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";s:3:\"334\";s:6:\"height\";s:3:\"411\";s:4:\"file\";s:14:\"home-icon1.png\";}}'), (3587,1010,'original_post_id','118'), (3588,1010,'_wp_old_slug','118'), (3589,1860,'_wp_attached_file','2011/04/home-icon1-e13020164692121.png'), (3590,1044,'_wp_attached_file','2011/05/wpioscrashreports-graph-may16.png'), (3591,1860,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:310;s:6:\"height\";i:310;s:4:\"file\";s:38:\"2011/04/home-icon1-e13020164692121.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"home-icon1-e13020164692121-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"home-icon1-e13020164692121-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3592,1860,'_wp_old_slug','1004'), (3593,1860,'original_post_id','1004'), (3594,1860,'pre_import_post_parent','1004'), (3595,1860,'pre_import_post_id','1010'), (3596,1860,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";s:3:\"334\";s:6:\"height\";s:3:\"411\";s:4:\"file\";s:14:\"home-icon1.png\";}}'), (3601,1860,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";s:3:\"334\";s:6:\"height\";s:3:\"411\";s:4:\"file\";s:14:\"home-icon1.png\";}}'), (3604,1860,'original_post_id','1004'), (3605,1860,'_wp_old_slug','1004'), (3606,1860,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";s:3:\"334\";s:6:\"height\";s:3:\"411\";s:4:\"file\";s:14:\"home-icon1.png\";}}'), (3607,1860,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";s:3:\"334\";s:6:\"height\";s:3:\"411\";s:4:\"file\";s:14:\"home-icon1.png\";}}'), (3610,1860,'original_post_id','118'), (3611,1860,'_wp_old_slug','118'), (3614,1044,'pre_import_post_parent','1042'), (3615,1044,'pre_import_post_id','1044'), (3620,1044,'original_post_id','1042'), (3621,1044,'_wp_old_slug','1042'), (3622,1044,'original_post_id','1042'), (3623,1044,'_wp_old_slug','1042'), (3626,1044,'original_post_id','118'), (3627,1044,'_wp_old_slug','118'), (3628,1044,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:736;s:6:\"height\";i:350;s:4:\"file\";s:41:\"2011/05/wpioscrashreports-graph-may16.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"wpioscrashreports-graph-may16-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"wpioscrashreports-graph-may16-300x142.png\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"wpioscrashreports-graph-may16-672x350.png\";s:5:\"width\";i:672;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3631,1044,'pre_import_post_parent','1042'), (3632,1044,'pre_import_post_id','1044'), (3637,1044,'original_post_id','1042'), (3638,1044,'_wp_old_slug','1042'), (3639,1044,'original_post_id','1042'), (3640,1044,'_wp_old_slug','1042'), (3643,1044,'original_post_id','118'), (3644,1044,'_wp_old_slug','118'), (3645,1051,'_wp_attached_file','2011/05/wpioscrashreports-graph-small.png'), (3646,1861,'_wp_attached_file','2011/05/wpioscrashreports-graph-small1.png'), (3647,1051,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:266;s:4:\"file\";s:41:\"2011/05/wpioscrashreports-graph-small.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"wpioscrashreports-graph-small-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"wpioscrashreports-graph-small-300x142.png\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3648,1051,'pre_import_post_parent','1042'), (3649,1051,'pre_import_post_id','1051'), (3654,1051,'original_post_id','1042'), (3655,1051,'_wp_old_slug','1042'), (3656,1051,'_wp_old_slug','1042'), (3659,1051,'original_post_id','1042'), (3662,1051,'original_post_id','118'), (3663,1051,'_wp_old_slug','118'), (3664,1861,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:266;s:4:\"file\";s:42:\"2011/05/wpioscrashreports-graph-small1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"wpioscrashreports-graph-small1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"wpioscrashreports-graph-small1-300x142.png\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3665,1861,'pre_import_post_parent','1042'), (3666,1861,'pre_import_post_id','1051'), (3671,1861,'original_post_id','1042'), (3672,1861,'_wp_old_slug','1042'), (3673,1861,'_wp_old_slug','1042'), (3676,1861,'original_post_id','1042'), (3679,1861,'original_post_id','118'), (3680,1861,'_wp_old_slug','118'), (3681,1700,'_wp_attached_file','2011/04/wp-android-setdate.jpg'), (3682,1862,'_wp_attached_file','2011/04/wp-android-setdate1.jpg'), (3683,1700,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:244;s:6:\"height\";i:175;s:4:\"file\";s:30:\"2011/04/wp-android-setdate.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"wp-android-setdate-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3684,1700,'pre_import_post_parent','382'), (3685,1700,'pre_import_post_id','385'), (3688,1862,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:244;s:6:\"height\";i:175;s:4:\"file\";s:31:\"2011/04/wp-android-setdate1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"wp-android-setdate1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3689,1862,'pre_import_post_parent','382'), (3690,1862,'pre_import_post_id','385'), (3693,215,'_wp_attached_file','2011/08/landscape.jpg'), (3694,1863,'_wp_attached_file','2011/08/landscape.jpg'), (3695,215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:316;s:4:\"file\";s:21:\"2011/08/landscape.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"landscape-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"landscape-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3696,215,'pre_import_post_parent','1772'), (3697,215,'pre_import_post_id','215'), (3700,1863,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:316;s:4:\"file\";s:21:\"2011/08/landscape.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"landscape-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"landscape-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3701,1863,'pre_import_post_parent','1772'), (3702,1863,'pre_import_post_id','215'), (3705,223,'_wp_attached_file','2011/08/wordpress-windows-phone-7-post-editor-screenshot-version-1-2.png'), (3706,1864,'_wp_attached_file','2011/08/wordpress-windows-phone-7-post-editor-screenshot-version-1-21.png'), (3707,223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:72:\"2011/08/wordpress-windows-phone-7-post-editor-screenshot-version-1-2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:72:\"wordpress-windows-phone-7-post-editor-screenshot-version-1-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:72:\"wordpress-windows-phone-7-post-editor-screenshot-version-1-2-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:72:\"wordpress-windows-phone-7-post-editor-screenshot-version-1-2-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:72:\"wordpress-windows-phone-7-post-editor-screenshot-version-1-2-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3708,223,'pre_import_post_parent','1761'), (3709,223,'pre_import_post_id','223'), (3710,223,'_wp_attachment_image_alt','WordPress for Windows Phone 7: post editor screenshot'), (3713,1864,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:73:\"2011/08/wordpress-windows-phone-7-post-editor-screenshot-version-1-21.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:73:\"wordpress-windows-phone-7-post-editor-screenshot-version-1-21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:73:\"wordpress-windows-phone-7-post-editor-screenshot-version-1-21-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:73:\"wordpress-windows-phone-7-post-editor-screenshot-version-1-21-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:73:\"wordpress-windows-phone-7-post-editor-screenshot-version-1-21-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3714,1864,'pre_import_post_parent','1761'), (3715,1864,'pre_import_post_id','223'), (3716,1864,'_wp_attachment_image_alt','WordPress for Windows Phone 7: post editor screenshot'), (3719,431,'_wp_attached_file','2011/05/amazon_appstore.png'), (3720,1865,'_wp_attached_file','2011/05/amazon_appstore1.png'), (3721,431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:135;s:6:\"height\";i:135;s:4:\"file\";s:27:\"2011/05/amazon_appstore.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3722,431,'pre_import_post_parent','1689'), (3723,431,'pre_import_post_id','431'), (3726,1865,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:135;s:6:\"height\";i:135;s:4:\"file\";s:28:\"2011/05/amazon_appstore1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3727,1865,'pre_import_post_parent','1689'), (3728,1865,'pre_import_post_id','431'), (3731,483,'_wp_attached_file','2011/09/version-1-5-follow-example.png'), (3732,483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:226;s:6:\"height\";i:38;s:4:\"file\";s:38:\"2011/09/version-1-5-follow-example.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"version-1-5-follow-example-150x38.png\";s:5:\"width\";i:150;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3733,483,'pre_import_post_parent','439'), (3734,483,'pre_import_post_id','483'), (3737,505,'_wp_attached_file','2011/12/dashboard.png'), (3738,505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2011/12/dashboard.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"dashboard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"dashboard-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"dashboard-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"dashboard-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3739,505,'pre_import_post_parent','0'), (3740,505,'pre_import_post_id','505'), (3743,511,'_wp_attached_file','2011/12/tablet-posts.png'), (3744,511,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2011/12/tablet-posts.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"tablet-posts-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"tablet-posts-300x187.png\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"tablet-posts-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"tablet-posts-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"tablet-posts-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3745,511,'pre_import_post_parent','0'), (3746,511,'pre_import_post_id','511'), (3749,536,'_wp_attached_file','2011/12/wordpress-android-2_0-dashboard.png'), (3750,536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:43:\"2011/12/wordpress-android-2_0-dashboard.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"wordpress-android-2_0-dashboard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"wordpress-android-2_0-dashboard-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:43:\"wordpress-android-2_0-dashboard-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:43:\"wordpress-android-2_0-dashboard-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3751,536,'pre_import_post_parent','1689'), (3752,536,'pre_import_post_id','536'), (3755,1064,'_wp_attached_file','2011/05/quick-photo-walkthrough.jpg'), (3756,1064,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:960;s:4:\"file\";s:35:\"2011/05/quick-photo-walkthrough.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"quick-photo-walkthrough-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"quick-photo-walkthrough-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"quick-photo-walkthrough-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"quick-photo-walkthrough-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"quick-photo-walkthrough-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (3757,1064,'pre_import_post_parent','1040'), (3758,1064,'pre_import_post_id','1064'), (3761,1064,'original_post_id','1042'), (3762,1064,'_wp_old_slug','1042'), (3765,1064,'original_post_id','1042'), (3766,1064,'_wp_old_slug','1042'), (3771,1064,'original_post_id','118'), (3772,1064,'_wp_old_slug','118'), (3773,1066,'_wp_attached_file','2011/05/wordpress-ios-stats-screenshot.png'), (3774,1066,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:960;s:4:\"file\";s:42:\"2011/05/wordpress-ios-stats-screenshot.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"wordpress-ios-stats-screenshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"wordpress-ios-stats-screenshot-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"wordpress-ios-stats-screenshot-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:42:\"wordpress-ios-stats-screenshot-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3775,1066,'pre_import_post_parent','1040'), (3776,1066,'pre_import_post_id','1066'), (3779,1066,'_wp_old_slug','1042'), (3780,1066,'original_post_id','1042'), (3785,1066,'original_post_id','1042'), (3786,1066,'_wp_old_slug','1042'), (3789,1066,'original_post_id','118'), (3790,1066,'_wp_old_slug','118'), (3791,1078,'_wp_attached_file','2011/06/20110602-010624.jpg'), (3792,1078,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:643;s:4:\"file\";s:27:\"2011/06/20110602-010624.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20110602-010624-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20110602-010624-223x300.jpg\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"20110602-010624-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:27:\"20110602-010624-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (3793,1078,'_wp_old_slug','1042'), (3794,1078,'original_post_id','1042'), (3795,1078,'pre_import_post_parent','0'), (3796,1078,'pre_import_post_id','1078'), (3800,1078,'original_post_id','1042'), (3801,1078,'_wp_old_slug','1042'), (3803,1078,'original_post_id','118'), (3804,1078,'_wp_old_slug','118'), (3805,1102,'_wp_attached_file','2011/09/wordpress-ios-2-9-html-format-bar-screenshot.png'), (3806,1102,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1840;s:4:\"file\";s:56:\"2011/09/wordpress-ios-2-9-html-format-bar-screenshot.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"wordpress-ios-2-9-html-format-bar-screenshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"wordpress-ios-2-9-html-format-bar-screenshot-163x300.png\";s:5:\"width\";i:163;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"wordpress-ios-2-9-html-format-bar-screenshot-556x1024.png\";s:5:\"width\";i:556;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"wordpress-ios-2-9-html-format-bar-screenshot-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:57:\"wordpress-ios-2-9-html-format-bar-screenshot-1000x576.png\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3809,1102,'pre_import_post_parent','1090'), (3810,1102,'pre_import_post_id','1102'), (3815,1102,'original_post_id','1090'), (3816,1102,'_wp_old_slug','1090'), (3817,1102,'original_post_id','1090'), (3818,1102,'_wp_old_slug','1090'), (3821,1102,'original_post_id','118'), (3822,1102,'_wp_old_slug','118'), (3823,1104,'_wp_attached_file','2011/09/wordpress-ios-2-9-full-screen.png'), (3824,1104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:813;s:6:\"height\";i:560;s:4:\"file\";s:41:\"2011/09/wordpress-ios-2-9-full-screen.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"wordpress-ios-2-9-full-screen-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"wordpress-ios-2-9-full-screen-300x206.png\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"wordpress-ios-2-9-full-screen-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3825,1104,'pre_import_post_parent','1090'), (3826,1104,'pre_import_post_id','1104'), (3827,1104,'_wp_attachment_image_alt','WordPress for iOS 2.9 - Full Screen Editing'), (3830,1104,'_wp_attachment_image_alt','WordPress for iOS 2.9 - Full Screen Editing'), (3833,1104,'original_post_id','1090'), (3834,1104,'_wp_old_slug','1090'), (3835,1104,'_wp_old_slug','1090'), (3836,1104,'original_post_id','1090'), (3837,1104,'_wp_attachment_image_alt','WordPress for iOS 2.9 - Full Screen Editing'), (3840,1104,'_wp_attachment_image_alt','WordPress for iOS 2.9 - Full Screen Editing'), (3843,1104,'original_post_id','118'), (3844,1104,'_wp_old_slug','118'), (3845,1107,'_wp_attached_file','2011/09/wordpress-ios-2-9-update.png'), (3846,1107,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:1554;s:4:\"file\";s:36:\"2011/09/wordpress-ios-2-9-update.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"wordpress-ios-2-9-update-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"wordpress-ios-2-9-update-152x300.png\";s:5:\"width\";i:152;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"wordpress-ios-2-9-update-520x1024.png\";s:5:\"width\";i:520;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"wordpress-ios-2-9-update-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"wordpress-ios-2-9-update-790x576.png\";s:5:\"width\";i:790;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3847,1107,'pre_import_post_parent','1090'), (3848,1107,'pre_import_post_id','1107'), (3849,1107,'_wp_attachment_image_alt','alt'), (3852,1107,'original_post_id','1090'), (3853,1107,'_wp_old_slug','1090'), (3856,1107,'_wp_attachment_image_alt','alt'), (3857,1107,'_wp_attachment_image_alt','alt'), (3860,1107,'original_post_id','1090'), (3861,1107,'_wp_old_slug','1090'), (3862,1107,'_wp_attachment_image_alt','alt'), (3865,1107,'original_post_id','118'), (3866,1107,'_wp_old_slug','118'), (3867,1111,'_wp_attached_file','2011/09/wordpress-ios-2-9.png'), (3868,1111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:1554;s:4:\"file\";s:29:\"2011/09/wordpress-ios-2-9.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"wordpress-ios-2-9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"wordpress-ios-2-9-152x300.png\";s:5:\"width\";i:152;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"wordpress-ios-2-9-520x1024.png\";s:5:\"width\";i:520;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"wordpress-ios-2-9-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"wordpress-ios-2-9-790x576.png\";s:5:\"width\";i:790;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3869,1111,'pre_import_post_parent','0'), (3870,1111,'pre_import_post_id','1111'), (3872,1111,'_wp_old_slug','1090'), (3873,1111,'original_post_id','1090'), (3876,1111,'original_post_id','1090'), (3877,1111,'_wp_old_slug','1090'), (3879,1111,'original_post_id','118'), (3880,1111,'_wp_old_slug','118'), (3881,1112,'_wp_attached_file','2011/09/wordpress-ios-2-9-html-format-bar.png'), (3882,1112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:277;s:4:\"file\";s:45:\"2011/09/wordpress-ios-2-9-html-format-bar.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"wordpress-ios-2-9-html-format-bar-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"wordpress-ios-2-9-html-format-bar-300x86.png\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"wordpress-ios-2-9-html-format-bar-672x277.png\";s:5:\"width\";i:672;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3883,1112,'original_post_id','1090'), (3884,1112,'_wp_old_slug','1090'), (3887,1112,'pre_import_post_parent','1090'), (3888,1112,'pre_import_post_id','1112'), (3889,1112,'_wp_attachment_image_alt','WordPress for iOS 2.9 HTML Format Bar'), (3892,1112,'_wp_attachment_image_alt','WordPress for iOS 2.9 HTML Format Bar'), (3893,1112,'_wp_attachment_image_alt','WordPress for iOS 2.9 HTML Format Bar'), (3896,1112,'original_post_id','1090'), (3897,1112,'_wp_old_slug','1090'), (3898,1112,'_wp_attachment_image_alt','WordPress for iOS 2.9 HTML Format Bar'), (3901,1112,'original_post_id','118'), (3902,1112,'_wp_old_slug','118'), (3903,1115,'_wp_attached_file','2011/09/wordpress-ios-2-9-take2.png'), (3904,1115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:1554;s:4:\"file\";s:35:\"2011/09/wordpress-ios-2-9-take2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"wordpress-ios-2-9-take2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"wordpress-ios-2-9-take2-152x300.png\";s:5:\"width\";i:152;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"wordpress-ios-2-9-take2-520x1024.png\";s:5:\"width\";i:520;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"wordpress-ios-2-9-take2-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"wordpress-ios-2-9-take2-790x576.png\";s:5:\"width\";i:790;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3905,1115,'_wp_old_slug','1090'), (3906,1115,'original_post_id','1090'), (3908,1115,'pre_import_post_parent','0'), (3909,1115,'pre_import_post_id','1115'), (3912,1115,'original_post_id','1090'), (3913,1115,'_wp_old_slug','1090'), (3915,1115,'original_post_id','118'), (3916,1115,'_wp_old_slug','118'), (3917,1116,'_wp_attached_file','2011/09/wordpress-ios-2-9-read.png'), (3918,1116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:1554;s:4:\"file\";s:34:\"2011/09/wordpress-ios-2-9-read.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"wordpress-ios-2-9-read-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"wordpress-ios-2-9-read-152x300.png\";s:5:\"width\";i:152;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"wordpress-ios-2-9-read-520x1024.png\";s:5:\"width\";i:520;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"wordpress-ios-2-9-read-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"wordpress-ios-2-9-read-790x576.png\";s:5:\"width\";i:790;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3920,1116,'_wp_attachment_image_alt','WordPress for iOS Read'), (3921,1116,'pre_import_post_parent','1090'), (3922,1116,'pre_import_post_id','1116'), (3923,1116,'_wp_attachment_image_alt','WordPress for iOS Read'), (3926,1116,'_wp_attachment_image_alt','WordPress for iOS Read'), (3929,1116,'original_post_id','1090'), (3930,1116,'_wp_old_slug','1090'), (3931,1116,'original_post_id','1090'), (3932,1116,'_wp_old_slug','1090'), (3934,1116,'_wp_attachment_image_alt','WordPress for iOS Read'), (3937,1116,'original_post_id','118'), (3938,1116,'_wp_old_slug','118'), (3939,1866,'_wp_attached_file','2011/08/capture2.png'), (3940,1866,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2011/08/capture2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"capture2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"capture2-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"capture2-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"capture2-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3941,1866,'pre_import_post_parent','1772'), (3942,1866,'pre_import_post_id','181'), (3945,1867,'_wp_attached_file','2011/09/screen-shot-2011-09-22-at-5-47-59-pm.png'), (3946,1867,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:964;s:6:\"height\";i:608;s:4:\"file\";s:48:\"2011/09/screen-shot-2011-09-22-at-5-47-59-pm.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"screen-shot-2011-09-22-at-5-47-59-pm-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"screen-shot-2011-09-22-at-5-47-59-pm-300x189.png\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"screen-shot-2011-09-22-at-5-47-59-pm-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:48:\"screen-shot-2011-09-22-at-5-47-59-pm-964x576.png\";s:5:\"width\";i:964;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3947,1867,'pre_import_post_parent','0'), (3948,1867,'pre_import_post_id','226'), (3950,510,'_wp_attached_file','2012/02/wordpress-for-playbook-dashboard-press-image.jpg'), (3951,510,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1721;s:6:\"height\";i:1336;s:4:\"file\";s:56:\"2012/02/wordpress-for-playbook-dashboard-press-image.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"wordpress-for-playbook-dashboard-press-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"wordpress-for-playbook-dashboard-press-image-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"wordpress-for-playbook-dashboard-press-image-1024x794.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:794;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"wordpress-for-playbook-dashboard-press-image-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:57:\"wordpress-for-playbook-dashboard-press-image-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3952,510,'pre_import_post_parent','502'), (3953,510,'pre_import_post_id','510'), (3954,510,'_wp_attachment_image_alt','WordPress for PlayBook - showing the Dashboard - blackberry.wordpress.org'), (3957,512,'_wp_attached_file','2012/02/detail-screenshot-dashboard-button.jpg'), (3958,512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:46:\"2012/02/detail-screenshot-dashboard-button.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"detail-screenshot-dashboard-button-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3959,512,'pre_import_post_parent','502'), (3960,512,'pre_import_post_id','512'), (3961,512,'_wp_attachment_image_alt','WordPress for PlayBook - Detail: Dashboard button'), (3964,542,'_wp_attached_file','2011/12/wordpress-android-2_0-tablet-thumb.png'), (3965,542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:324;s:6:\"height\";i:194;s:4:\"file\";s:46:\"2011/12/wordpress-android-2_0-tablet-thumb.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"wordpress-android-2_0-tablet-thumb-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"wordpress-android-2_0-tablet-thumb-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3966,542,'pre_import_post_parent','0'), (3967,542,'pre_import_post_id','542'), (3969,549,'_wp_attached_file','2011/12/wordpress-android-2_0-new-editor.png'), (3970,549,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:44:\"2011/12/wordpress-android-2_0-new-editor.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"wordpress-android-2_0-new-editor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"wordpress-android-2_0-new-editor-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"wordpress-android-2_0-new-editor-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:44:\"wordpress-android-2_0-new-editor-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3971,549,'pre_import_post_parent','1689'), (3972,549,'pre_import_post_id','549'), (3975,550,'_wp_attached_file','2011/12/wordpress-android-2_0-tablet-ready.png'), (3976,550,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:800;s:4:\"file\";s:46:\"2011/12/wordpress-android-2_0-tablet-ready.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"wordpress-android-2_0-tablet-ready-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"wordpress-android-2_0-tablet-ready-300x187.png\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"wordpress-android-2_0-tablet-ready-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"wordpress-android-2_0-tablet-ready-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:47:\"wordpress-android-2_0-tablet-ready-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3977,550,'pre_import_post_parent','1689'), (3978,550,'pre_import_post_id','550'), (3981,573,'_wp_attached_file','2011/12/editor-merged.png'), (3982,573,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2011/12/editor-merged.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"editor-merged-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"editor-merged-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"editor-merged-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"editor-merged-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3983,573,'pre_import_post_parent','504'), (3984,573,'pre_import_post_id','573'), (3987,600,'_wp_attached_file','2012/05/version-1-6-dashboard-promo.png'), (3988,600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:442;s:6:\"height\";i:844;s:4:\"file\";s:39:\"2012/05/version-1-6-dashboard-promo.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"version-1-6-dashboard-promo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"version-1-6-dashboard-promo-157x300.png\";s:5:\"width\";i:157;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"version-1-6-dashboard-promo-442x372.png\";s:5:\"width\";i:442;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:39:\"version-1-6-dashboard-promo-442x576.png\";s:5:\"width\";i:442;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3989,600,'pre_import_post_parent','531'), (3990,600,'pre_import_post_id','600'), (3991,600,'_wp_attachment_image_alt','Version 1.6 of WordPress for BlackBerry: device showing the Dashboard and the Action Bar.'), (3994,603,'_wp_attached_file','2012/01/kindle-fire-final.jpg'), (3995,603,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:1560;s:4:\"file\";s:29:\"2012/01/kindle-fire-final.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"kindle-fire-final-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"kindle-fire-final-184x300.jpg\";s:5:\"width\";i:184;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"kindle-fire-final-630x1024.jpg\";s:5:\"width\";i:630;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"kindle-fire-final-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"kindle-fire-final-960x576.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (3996,603,'pre_import_post_parent','589'), (3997,603,'pre_import_post_id','603'), (4000,604,'_wp_attached_file','2012/05/dashboard_icon_new_photo_96.png'), (4001,604,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:96;s:6:\"height\";i:96;s:4:\"file\";s:39:\"2012/05/dashboard_icon_new_photo_96.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4002,604,'pre_import_post_parent','531'), (4003,604,'pre_import_post_id','604'), (4004,604,'_wp_attachment_image_alt','Quick Photo icon in version 1.6 of WordPress for BlackBerry'), (4007,606,'_wp_attached_file','2012/01/wordpress-android-phones-tablets.jpg'), (4008,606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:576;s:6:\"height\";i:245;s:4:\"file\";s:44:\"2012/01/wordpress-android-phones-tablets.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"wordpress-android-phones-tablets-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"wordpress-android-phones-tablets-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4009,606,'pre_import_post_parent','589'), (4010,606,'pre_import_post_id','606'), (4013,627,'_wp_attached_file','2012/02/kindle-firenook-color-press-image.jpg'), (4014,627,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:1743;s:4:\"file\";s:45:\"2012/02/kindle-firenook-color-press-image.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"kindle-firenook-color-press-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"kindle-firenook-color-press-image-215x300.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"kindle-firenook-color-press-image-734x1024.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"kindle-firenook-color-press-image-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"kindle-firenook-color-press-image-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4015,627,'pre_import_post_parent','589'), (4016,627,'pre_import_post_id','627'), (4017,627,'_wp_attachment_image_alt','WordPress for Android 2.0 on Nook Color and Kindle Fire'), (4020,651,'_wp_attached_file','2012/05/2-1-header.jpg'), (4021,651,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:576;s:6:\"height\";i:341;s:4:\"file\";s:22:\"2012/05/2-1-header.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2-1-header-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"2-1-header-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4022,651,'pre_import_post_parent','643'), (4023,651,'pre_import_post_id','651'), (4026,681,'_wp_attached_file','2012/05/version-2-1-devices.jpg'), (4027,681,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:792;s:4:\"file\";s:31:\"2012/05/version-2-1-devices.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"version-2-1-devices-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"version-2-1-devices-300x247.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"version-2-1-devices-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"version-2-1-devices-960x576.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4028,681,'pre_import_post_parent','643'), (4029,681,'pre_import_post_id','681'), (4030,681,'_wp_attachment_image_alt','Device examples of version 2.1 of WordPress for Android'), (4033,684,'_wp_attached_file','2012/05/version-2-1-wordpress-for-android-logo.jpg'), (4034,684,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:444;s:4:\"file\";s:50:\"2012/05/version-2-1-wordpress-for-android-logo.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"version-2-1-wordpress-for-android-logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"version-2-1-wordpress-for-android-logo-270x300.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"version-2-1-wordpress-for-android-logo-400x372.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4035,684,'pre_import_post_parent','643'), (4036,684,'pre_import_post_id','684'), (4037,684,'_wp_attachment_image_alt','WordPress for Android Logo'), (4040,1139,'_wp_attached_file','2012/03/wordpress-camera-plus.png'), (4041,1139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:438;s:4:\"file\";s:33:\"2012/03/wordpress-camera-plus.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"wordpress-camera-plus-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"wordpress-camera-plus-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"wordpress-camera-plus-580x372.png\";s:5:\"width\";i:580;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4044,1139,'_wp_attachment_image_alt','WordPress integrates Camera+'), (4045,1139,'pre_import_post_parent','1129'), (4046,1139,'pre_import_post_id','1139'), (4047,1139,'_wp_attachment_image_alt','WordPress integrates Camera+'), (4050,1139,'_wp_attachment_image_alt','WordPress integrates Camera+'), (4053,1139,'original_post_id','1129'), (4054,1139,'_wp_old_slug','1129'), (4055,1139,'_wp_old_slug','1129'), (4056,1139,'original_post_id','1129'), (4057,1139,'_wp_attachment_image_alt','WordPress integrates Camera+'), (4060,1139,'original_post_id','118'), (4061,1139,'_wp_old_slug','118'), (4062,1164,'_wp_attached_file','2012/05/wordpress-ios-3-0-swipe-to-moderate.png'), (4063,1164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:1554;s:4:\"file\";s:47:\"2012/05/wordpress-ios-3-0-swipe-to-moderate.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"wordpress-ios-3-0-swipe-to-moderate-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"wordpress-ios-3-0-swipe-to-moderate-152x300.png\";s:5:\"width\";i:152;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"wordpress-ios-3-0-swipe-to-moderate-520x1024.png\";s:5:\"width\";i:520;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:47:\"wordpress-ios-3-0-swipe-to-moderate-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:47:\"wordpress-ios-3-0-swipe-to-moderate-790x576.png\";s:5:\"width\";i:790;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4064,1164,'original_post_id','1153'), (4065,1164,'_wp_old_slug','1153'), (4068,1164,'_wp_attachment_image_alt','Swipe-to-moderate in version 3.0 of WordPress for iOS'), (4069,1164,'pre_import_post_parent','1153'), (4070,1164,'pre_import_post_id','1164'), (4071,1164,'_wp_attachment_image_alt','Swipe-to-moderate in version 3.0 of WordPress for iOS'), (4074,1164,'_wp_attachment_image_alt','Swipe-to-moderate in version 3.0 of WordPress for iOS'), (4077,1164,'original_post_id','1153'), (4078,1164,'_wp_old_slug','1153'), (4079,1164,'_wp_attachment_image_alt','Swipe-to-moderate in version 3.0 of WordPress for iOS'), (4082,1164,'original_post_id','118'), (4083,1164,'_wp_old_slug','118'), (4084,1701,'_wp_attached_file','2012/01/wp-kindle-fire.jpg'), (4085,1701,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1024;s:4:\"file\";s:26:\"2012/01/wp-kindle-fire.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"wp-kindle-fire-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"wp-kindle-fire-175x300.jpg\";s:5:\"width\";i:175;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"wp-kindle-fire-600x372.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:26:\"wp-kindle-fire-600x576.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4086,1701,'pre_import_post_parent','589'), (4087,1701,'pre_import_post_id','591'), (4090,1702,'_wp_attached_file','2012/05/2-1-header1.jpg'), (4091,1702,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:576;s:6:\"height\";i:341;s:4:\"file\";s:23:\"2012/05/2-1-header1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"2-1-header1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"2-1-header1-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4092,1702,'pre_import_post_parent','643'), (4093,1702,'pre_import_post_id','660'), (4096,1704,'_wp_attached_file','2012/05/2-1-header2.jpg'), (4097,1704,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:576;s:6:\"height\";i:341;s:4:\"file\";s:23:\"2012/05/2-1-header2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"2-1-header2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"2-1-header2-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4098,1704,'pre_import_post_parent','643'), (4099,1704,'pre_import_post_id','657'), (4102,1868,'_wp_attached_file','2012/02/wordpress-windowsphone-v1-5.jpg'), (4103,1868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:258;s:6:\"height\";i:455;s:4:\"file\";s:39:\"2012/02/wordpress-windowsphone-v1-5.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"wordpress-windowsphone-v1-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"wordpress-windowsphone-v1-5-170x300.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"wordpress-windowsphone-v1-5-258x372.jpg\";s:5:\"width\";i:258;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4104,1868,'pre_import_post_parent','1780'), (4105,1868,'pre_import_post_id','246'), (4106,1868,'_wp_attachment_image_alt','Version 1.5 of WordPress for Windows Phone - showing the updated dashboard'), (4109,633,'_wp_attached_file','2012/05/version-1-6-follow-example.png'), (4110,633,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:226;s:6:\"height\";i:38;s:4:\"file\";s:38:\"2012/05/version-1-6-follow-example.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"version-1-6-follow-example-150x38.png\";s:5:\"width\";i:150;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4111,633,'pre_import_post_parent','531'), (4112,633,'pre_import_post_id','633'), (4113,633,'_wp_attachment_image_alt','Screenshot of the follow button in the WordPress.com Toolbar'), (4116,717,'_wp_attached_file','2012/08/wordpress-for-android-version-2-2-featured-image-stats.png'), (4117,717,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:701;s:6:\"height\";i:941;s:4:\"file\";s:66:\"2012/08/wordpress-for-android-version-2-2-featured-image-stats.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-2-featured-image-stats-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-2-featured-image-stats-223x300.png\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-2-featured-image-stats-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-2-featured-image-stats-701x576.png\";s:5:\"width\";i:701;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4118,717,'pre_import_post_parent','700'), (4119,717,'pre_import_post_id','717'), (4120,717,'_wp_attachment_image_alt','Version 2.2 of WordPress for Android: Featured Images & All-New Stats'), (4123,1219,'_wp_attached_file','2012/08/1-wpios-3-1-sidebar.png'), (4124,1219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:960;s:4:\"file\";s:31:\"2012/08/1-wpios-3-1-sidebar.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"1-wpios-3-1-sidebar-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"1-wpios-3-1-sidebar-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"1-wpios-3-1-sidebar-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"1-wpios-3-1-sidebar-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4125,1219,'original_post_id','1195'), (4126,1219,'_wp_old_slug','1195'), (4127,1219,'pre_import_post_parent','0'), (4128,1219,'pre_import_post_id','1219'), (4135,1219,'original_post_id','1195'), (4136,1219,'_wp_old_slug','1195'), (4139,1219,'original_post_id','118'), (4140,1219,'_wp_old_slug','118'), (4141,1220,'_wp_attached_file','2012/08/2-wpios-3-1-photo.png'), (4142,1220,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:960;s:4:\"file\";s:29:\"2012/08/2-wpios-3-1-photo.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"2-wpios-3-1-photo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"2-wpios-3-1-photo-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"2-wpios-3-1-photo-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"2-wpios-3-1-photo-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4143,1220,'_wp_old_slug','1195'), (4144,1220,'original_post_id','1195'), (4147,1220,'pre_import_post_parent','0'), (4148,1220,'pre_import_post_id','1220'), (4153,1220,'original_post_id','1195'), (4154,1220,'_wp_old_slug','1195'), (4157,1220,'original_post_id','118'), (4158,1220,'_wp_old_slug','118'), (4159,1221,'_wp_attached_file','2012/08/3-wpios-3-1-comments.png'), (4160,1221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:960;s:4:\"file\";s:32:\"2012/08/3-wpios-3-1-comments.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"3-wpios-3-1-comments-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"3-wpios-3-1-comments-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"3-wpios-3-1-comments-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:32:\"3-wpios-3-1-comments-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4161,1221,'pre_import_post_parent','0'), (4162,1221,'pre_import_post_id','1221'), (4167,1221,'original_post_id','1195'), (4168,1221,'_wp_old_slug','1195'), (4169,1221,'_wp_old_slug','1195'), (4170,1221,'original_post_id','1195'), (4175,1221,'original_post_id','118'), (4176,1221,'_wp_old_slug','118'), (4177,1222,'_wp_attached_file','2012/08/4-wpios-3-1-editor.png'), (4178,1222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:960;s:4:\"file\";s:30:\"2012/08/4-wpios-3-1-editor.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"4-wpios-3-1-editor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"4-wpios-3-1-editor-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"4-wpios-3-1-editor-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"4-wpios-3-1-editor-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4179,1222,'pre_import_post_parent','0'), (4180,1222,'pre_import_post_id','1222'), (4183,1222,'original_post_id','1195'), (4184,1222,'_wp_old_slug','1195'), (4188,1222,'original_post_id','1195'), (4189,1222,'_wp_old_slug','1195'), (4193,1222,'original_post_id','118'), (4194,1222,'_wp_old_slug','118'), (4195,1223,'_wp_attached_file','2012/08/5-wpios-3-1-reader.png'), (4196,1223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:960;s:4:\"file\";s:30:\"2012/08/5-wpios-3-1-reader.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"5-wpios-3-1-reader-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"5-wpios-3-1-reader-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"5-wpios-3-1-reader-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"5-wpios-3-1-reader-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4197,1223,'_wp_old_slug','1195'), (4198,1223,'original_post_id','1195'), (4199,1223,'pre_import_post_parent','0'), (4200,1223,'pre_import_post_id','1223'), (4207,1223,'original_post_id','1195'), (4208,1223,'_wp_old_slug','1195'), (4211,1223,'original_post_id','118'), (4212,1223,'_wp_old_slug','118'), (4213,1224,'_wp_attached_file','2012/08/1-wpios-ipad-3-1-viewsite.png'), (4214,1224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:37:\"2012/08/1-wpios-ipad-3-1-viewsite.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"1-wpios-ipad-3-1-viewsite-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"1-wpios-ipad-3-1-viewsite-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"1-wpios-ipad-3-1-viewsite-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"1-wpios-ipad-3-1-viewsite-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:38:\"1-wpios-ipad-3-1-viewsite-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4215,1224,'_wp_old_slug','1195'), (4216,1224,'original_post_id','1195'), (4219,1224,'pre_import_post_parent','0'), (4220,1224,'pre_import_post_id','1224'), (4225,1224,'original_post_id','1195'), (4226,1224,'_wp_old_slug','1195'), (4229,1224,'original_post_id','118'), (4230,1224,'_wp_old_slug','118'), (4231,1225,'_wp_attached_file','2012/08/2-wpios-ipad-3-1-photo.png'), (4232,1225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:34:\"2012/08/2-wpios-ipad-3-1-photo.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"2-wpios-ipad-3-1-photo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"2-wpios-ipad-3-1-photo-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"2-wpios-ipad-3-1-photo-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"2-wpios-ipad-3-1-photo-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"2-wpios-ipad-3-1-photo-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4235,1225,'pre_import_post_parent','0'), (4236,1225,'pre_import_post_id','1225'), (4241,1225,'original_post_id','1195'), (4242,1225,'_wp_old_slug','1195'), (4243,1225,'original_post_id','1195'), (4244,1225,'_wp_old_slug','1195'), (4247,1225,'original_post_id','118'), (4248,1225,'_wp_old_slug','118'), (4249,1226,'_wp_attached_file','2012/08/3-wpios-ipad-3-1-comments.png'), (4250,1226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:37:\"2012/08/3-wpios-ipad-3-1-comments.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"3-wpios-ipad-3-1-comments-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"3-wpios-ipad-3-1-comments-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"3-wpios-ipad-3-1-comments-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"3-wpios-ipad-3-1-comments-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:38:\"3-wpios-ipad-3-1-comments-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4253,1226,'original_post_id','1199'), (4254,1226,'_wp_old_slug','1199'), (4255,1226,'pre_import_post_parent','1199'), (4256,1226,'pre_import_post_id','1226'), (4261,1226,'original_post_id','1199'), (4262,1226,'_wp_old_slug','1199'), (4265,1226,'original_post_id','118'), (4266,1226,'_wp_old_slug','118'), (4267,1227,'_wp_attached_file','2012/08/4-wpios-ipad-3-1-editor.png'), (4268,1227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:35:\"2012/08/4-wpios-ipad-3-1-editor.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"4-wpios-ipad-3-1-editor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"4-wpios-ipad-3-1-editor-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"4-wpios-ipad-3-1-editor-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"4-wpios-ipad-3-1-editor-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"4-wpios-ipad-3-1-editor-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4269,1227,'_wp_old_slug','1199'), (4270,1227,'original_post_id','1199'), (4273,1227,'pre_import_post_parent','1199'), (4274,1227,'pre_import_post_id','1227'), (4279,1227,'original_post_id','1199'), (4280,1227,'_wp_old_slug','1199'), (4283,1227,'original_post_id','118'), (4284,1227,'_wp_old_slug','118'), (4285,1228,'_wp_attached_file','2012/08/5-wpios-ipad-3-1-reader.png'), (4286,1228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:35:\"2012/08/5-wpios-ipad-3-1-reader.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"5-wpios-ipad-3-1-reader-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"5-wpios-ipad-3-1-reader-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"5-wpios-ipad-3-1-reader-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"5-wpios-ipad-3-1-reader-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"5-wpios-ipad-3-1-reader-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4288,1228,'pre_import_post_parent','1199'), (4289,1228,'pre_import_post_id','1228'), (4294,1228,'original_post_id','1199'), (4295,1228,'_wp_old_slug','1199'), (4296,1228,'original_post_id','1199'), (4297,1228,'_wp_old_slug','1199'), (4301,1228,'original_post_id','118'), (4302,1228,'_wp_old_slug','118'), (4303,1233,'_wp_attached_file','2012/08/wpios-3-1-iphone-updated-interface.jpg'), (4304,1233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:1554;s:4:\"file\";s:46:\"2012/08/wpios-3-1-iphone-updated-interface.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"wpios-3-1-iphone-updated-interface-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"wpios-3-1-iphone-updated-interface-152x300.jpg\";s:5:\"width\";i:152;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"wpios-3-1-iphone-updated-interface-520x1024.jpg\";s:5:\"width\";i:520;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"wpios-3-1-iphone-updated-interface-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"wpios-3-1-iphone-updated-interface-790x576.jpg\";s:5:\"width\";i:790;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4305,1233,'pre_import_post_parent','1199'), (4306,1233,'pre_import_post_id','1233'), (4307,1233,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Updated Interface'), (4310,1233,'original_post_id','1199'), (4311,1233,'_wp_old_slug','1199'), (4312,1233,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Updated Interface'), (4315,1233,'original_post_id','1199'), (4316,1233,'_wp_old_slug','1199'), (4318,1233,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Updated Interface'), (4320,1233,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Updated Interface'), (4323,1233,'original_post_id','118'), (4324,1233,'_wp_old_slug','118'), (4325,1236,'_wp_attached_file','2012/08/wpios-3-1-iphone-ipad-panels-sidebar-comments.jpg'), (4326,1236,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2848;s:6:\"height\";i:2336;s:4:\"file\";s:57:\"2012/08/wpios-3-1-iphone-ipad-panels-sidebar-comments.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"wpios-3-1-iphone-ipad-panels-sidebar-comments-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"wpios-3-1-iphone-ipad-panels-sidebar-comments-300x246.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"wpios-3-1-iphone-ipad-panels-sidebar-comments-1024x839.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:839;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:57:\"wpios-3-1-iphone-ipad-panels-sidebar-comments-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:58:\"wpios-3-1-iphone-ipad-panels-sidebar-comments-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (4327,1236,'pre_import_post_parent','1199'), (4328,1236,'pre_import_post_id','1236'), (4329,1236,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Panels & Sidebar'), (4332,1236,'_wp_old_slug','1199'), (4333,1236,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Panels & Sidebar'), (4336,1236,'original_post_id','1199'), (4337,1236,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Panels & Sidebar'), (4340,1236,'original_post_id','1199'), (4341,1236,'_wp_old_slug','1199'), (4342,1236,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Panels & Sidebar'), (4345,1236,'original_post_id','118'), (4346,1236,'_wp_old_slug','118'), (4347,1272,'_wp_attached_file','2012/10/wpios-3-2-featured-image-support1.jpg'), (4348,1272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:45:\"2012/10/wpios-3-2-featured-image-support1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"wpios-3-2-featured-image-support1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"wpios-3-2-featured-image-support1-139x300.jpg\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"wpios-3-2-featured-image-support1-475x1024.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"wpios-3-2-featured-image-support1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:45:\"wpios-3-2-featured-image-support1-804x576.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4351,1272,'pre_import_post_parent','1250'), (4352,1272,'pre_import_post_id','1272'), (4357,1272,'original_post_id','1250'), (4358,1272,'_wp_old_slug','1250'), (4359,1272,'original_post_id','1250'), (4360,1272,'_wp_old_slug','1250'), (4363,1272,'original_post_id','118'), (4364,1272,'_wp_old_slug','118'), (4365,1274,'_wp_attached_file','2012/10/wpios-3-2-accessible-settings.jpg'), (4366,1274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:41:\"2012/10/wpios-3-2-accessible-settings.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"wpios-3-2-accessible-settings-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"wpios-3-2-accessible-settings-139x300.jpg\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"wpios-3-2-accessible-settings-475x1024.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"wpios-3-2-accessible-settings-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:41:\"wpios-3-2-accessible-settings-804x576.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4367,1274,'pre_import_post_parent','1250'), (4368,1274,'pre_import_post_id','1274'), (4373,1274,'original_post_id','1250'), (4374,1274,'_wp_old_slug','1250'), (4375,1274,'original_post_id','1250'), (4376,1274,'_wp_old_slug','1250'), (4381,1274,'original_post_id','118'), (4382,1274,'_wp_old_slug','118'), (4383,1705,'_wp_attached_file','2012/08/stats.png'), (4384,1705,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:17:\"2012/08/stats.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"stats-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"stats-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"stats-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"stats-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4385,1705,'pre_import_post_parent','700'), (4386,1705,'pre_import_post_id','701'), (4389,1706,'_wp_attached_file','2012/08/featured-image.png'), (4390,1706,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2012/08/featured-image.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"featured-image-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"featured-image-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"featured-image-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:26:\"featured-image-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4391,1706,'pre_import_post_parent','700'), (4392,1706,'pre_import_post_id','702'), (4395,1869,'_wp_attached_file','2012/05/dashboard_icon_subs_96.png'), (4396,1869,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:96;s:6:\"height\";i:96;s:4:\"file\";s:34:\"2012/05/dashboard_icon_subs_96.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4397,1869,'pre_import_post_parent','531'), (4398,1869,'pre_import_post_id','606'), (4399,1869,'_wp_attachment_image_alt','WordPress.com Read icon in version 1.6 of WordPress for BlackBerry'), (4402,1870,'_wp_attached_file','2012/05/version-1-6-infinite-scroll.png'), (4403,1870,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:39:\"2012/05/version-1-6-infinite-scroll.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"version-1-6-infinite-scroll-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"version-1-6-infinite-scroll-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4404,1870,'pre_import_post_parent','531'), (4405,1870,'pre_import_post_id','611'), (4406,1870,'_wp_attachment_image_alt','Infinite Scroll in version 1.6 of WordPress for BlackBerry'), (4409,286,'_wp_attached_file','2012/11/01-700-nokia-lumia-920-grey-front.png'), (4410,286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:730;s:6:\"height\";i:981;s:4:\"file\";s:45:\"2012/11/01-700-nokia-lumia-920-grey-front.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"01-700-nokia-lumia-920-grey-front-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"01-700-nokia-lumia-920-grey-front-223x300.png\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"01-700-nokia-lumia-920-grey-front-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:45:\"01-700-nokia-lumia-920-grey-front-730x576.png\";s:5:\"width\";i:730;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4411,286,'pre_import_post_parent','269'), (4412,286,'pre_import_post_id','286'), (4415,287,'_wp_attached_file','2012/11/02-700-nokia-lumia-920-grey-front.png'), (4416,287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:730;s:6:\"height\";i:981;s:4:\"file\";s:45:\"2012/11/02-700-nokia-lumia-920-grey-front.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"02-700-nokia-lumia-920-grey-front-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"02-700-nokia-lumia-920-grey-front-223x300.png\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"02-700-nokia-lumia-920-grey-front-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:45:\"02-700-nokia-lumia-920-grey-front-730x576.png\";s:5:\"width\";i:730;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4417,287,'pre_import_post_parent','269'), (4418,287,'pre_import_post_id','287'), (4421,289,'_wp_attached_file','2012/11/04-700-nokia-lumia-920-grey-front.png'), (4422,289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:730;s:6:\"height\";i:981;s:4:\"file\";s:45:\"2012/11/04-700-nokia-lumia-920-grey-front.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"04-700-nokia-lumia-920-grey-front-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"04-700-nokia-lumia-920-grey-front-223x300.png\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"04-700-nokia-lumia-920-grey-front-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:45:\"04-700-nokia-lumia-920-grey-front-730x576.png\";s:5:\"width\";i:730;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4423,289,'pre_import_post_parent','269'), (4424,289,'pre_import_post_id','289'), (4427,316,'_wp_attached_file','2012/12/screen-capture-2.jpg'), (4428,316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:28:\"2012/12/screen-capture-2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"screen-capture-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"screen-capture-2-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"screen-capture-2-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:28:\"screen-capture-2-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4429,316,'pre_import_post_parent','1782'), (4430,316,'pre_import_post_id','316'), (4433,317,'_wp_attached_file','2012/12/screen-capture-3.jpg'), (4434,317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:28:\"2012/12/screen-capture-3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"screen-capture-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"screen-capture-3-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"screen-capture-3-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:28:\"screen-capture-3-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4435,317,'pre_import_post_parent','1782'), (4436,317,'pre_import_post_id','317'), (4439,1277,'_wp_attached_file','2012/10/wpios-3-2-self-hosted-push-notifications.png'), (4440,1277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:634;s:6:\"height\";i:310;s:4:\"file\";s:52:\"2012/10/wpios-3-2-self-hosted-push-notifications.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"wpios-3-2-self-hosted-push-notifications-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"wpios-3-2-self-hosted-push-notifications-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4441,1277,'pre_import_post_parent','1250'), (4442,1277,'pre_import_post_id','1277'), (4443,1277,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (4446,1277,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (4449,1277,'original_post_id','1250'), (4450,1277,'_wp_old_slug','1250'), (4451,1277,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (4454,1277,'original_post_id','1250'), (4455,1277,'_wp_old_slug','1250'), (4456,1277,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (4459,1277,'original_post_id','118'), (4460,1277,'_wp_old_slug','118'), (4461,1280,'_wp_attached_file','2012/10/wpios-3-2-self-hosted-push-notifications1.png'), (4462,1280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:631;s:6:\"height\";i:310;s:4:\"file\";s:53:\"2012/10/wpios-3-2-self-hosted-push-notifications1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"wpios-3-2-self-hosted-push-notifications1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"wpios-3-2-self-hosted-push-notifications1-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4463,1280,'pre_import_post_parent','1250'), (4464,1280,'pre_import_post_id','1280'), (4467,1280,'_wp_old_slug','1250'), (4468,1280,'original_post_id','1250'), (4473,1280,'original_post_id','1250'), (4474,1280,'_wp_old_slug','1250'), (4477,1280,'original_post_id','118'), (4478,1280,'_wp_old_slug','118'), (4479,1286,'_wp_attached_file','2012/10/wpios-3-2-self-hosted-push-notifications2.png'), (4480,1286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:629;s:6:\"height\";i:307;s:4:\"file\";s:53:\"2012/10/wpios-3-2-self-hosted-push-notifications2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"wpios-3-2-self-hosted-push-notifications2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"wpios-3-2-self-hosted-push-notifications2-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4481,1286,'original_post_id','1250'), (4482,1286,'_wp_old_slug','1250'), (4484,1286,'pre_import_post_parent','1250'), (4485,1286,'pre_import_post_id','1286'), (4486,1286,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (4489,1286,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (4491,1286,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (4494,1286,'original_post_id','1250'), (4495,1286,'_wp_old_slug','1250'), (4496,1286,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (4499,1286,'original_post_id','118'), (4500,1286,'_wp_old_slug','118'), (4501,1302,'_wp_attached_file','2012/11/home-photos.jpg'), (4502,1302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:378;s:4:\"file\";s:23:\"2012/11/home-photos.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"home-photos-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"home-photos-300x226.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"home-photos-500x372.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4503,1302,'original_post_id','1250'), (4504,1302,'_wp_old_slug','1250'), (4506,1302,'pre_import_post_parent','0'), (4507,1302,'pre_import_post_id','1302'), (4510,1302,'original_post_id','1250'), (4511,1302,'_wp_old_slug','1250'), (4513,1302,'original_post_id','118'), (4514,1302,'_wp_old_slug','118'), (4515,1303,'_wp_attached_file','2012/11/home-comments.jpg'), (4516,1303,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:465;s:6:\"height\";i:255;s:4:\"file\";s:25:\"2012/11/home-comments.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"home-comments-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"home-comments-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4518,1303,'pre_import_post_parent','0'), (4519,1303,'pre_import_post_id','1303'), (4522,1303,'original_post_id','1250'), (4523,1303,'_wp_old_slug','1250'), (4524,1303,'_wp_old_slug','1250'), (4525,1303,'original_post_id','1250'), (4527,1303,'original_post_id','118'), (4528,1303,'_wp_old_slug','118'), (4529,1304,'_wp_attached_file','2012/11/home-editor.jpg'), (4530,1304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:514;s:6:\"height\";i:421;s:4:\"file\";s:23:\"2012/11/home-editor.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"home-editor-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"home-editor-300x245.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"home-editor-514x372.jpg\";s:5:\"width\";i:514;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4531,1304,'_wp_old_slug','1250'), (4532,1304,'original_post_id','1250'), (4533,1304,'pre_import_post_parent','0'), (4534,1304,'pre_import_post_id','1304'), (4537,1304,'original_post_id','1250'), (4538,1304,'_wp_old_slug','1250'), (4541,1304,'original_post_id','118'), (4542,1304,'_wp_old_slug','118'), (4544,103,'pre_import_post_parent','0'), (4545,103,'pre_import_post_id','7'), (4549,103,'original_post_id','5'), (4550,103,'_wp_old_slug','5'), (4551,1305,'_wp_attached_file','2012/11/home-reader.jpg'), (4554,103,'original_post_id','6'), (4555,103,'_wp_old_slug','6'), (4558,103,'original_post_id','5'), (4559,103,'_wp_old_slug','5'), (4560,112,'pre_import_post_parent','101'), (4561,112,'pre_import_post_id','14'), (4566,112,'_wp_old_slug','12'), (4567,112,'original_post_id','12'), (4570,112,'original_post_id','13'), (4571,112,'_wp_old_slug','13'), (4574,112,'original_post_id','12'), (4575,112,'_wp_old_slug','12'), (4576,113,'pre_import_post_parent','101'), (4577,113,'pre_import_post_id','15'), (4580,113,'_wp_old_slug','12'), (4581,113,'original_post_id','12'), (4586,113,'original_post_id','13'), (4587,113,'_wp_old_slug','13'), (4590,113,'original_post_id','12'), (4591,113,'_wp_old_slug','12'), (4592,114,'pre_import_post_parent','101'), (4593,114,'pre_import_post_id','16'), (4596,114,'original_post_id','12'), (4597,114,'_wp_old_slug','12'), (4602,114,'original_post_id','13'), (4603,114,'_wp_old_slug','13'), (4606,114,'original_post_id','12'), (4607,114,'_wp_old_slug','12'), (4610,237,'pre_import_post_parent','0'), (4611,237,'pre_import_post_id','237'), (4616,237,'original_post_id','118'), (4617,237,'_wp_old_slug','118'), (4618,237,'original_post_id','216'), (4619,237,'_wp_old_slug','216'), (4622,237,'original_post_id','118'), (4623,237,'_wp_old_slug','118'), (4624,238,'pre_import_post_parent','236'), (4625,238,'pre_import_post_id','238'), (4628,238,'original_post_id','118'), (4629,238,'_wp_old_slug','118'), (4634,238,'original_post_id','236'), (4635,238,'_wp_old_slug','236'), (4638,238,'original_post_id','118'), (4639,238,'_wp_old_slug','118'), (4640,239,'pre_import_post_parent','236'), (4641,239,'pre_import_post_id','239'), (4644,239,'original_post_id','118'), (4645,239,'_wp_old_slug','118'), (4649,1305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:513;s:6:\"height\";i:421;s:4:\"file\";s:23:\"2012/11/home-reader.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"home-reader-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"home-reader-300x246.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"home-reader-513x372.jpg\";s:5:\"width\";i:513;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4650,1305,'original_post_id','1250'), (4651,1305,'_wp_old_slug','1250'), (4654,1305,'pre_import_post_parent','0'), (4655,1305,'pre_import_post_id','1305'), (4656,239,'original_post_id','236'), (4657,239,'_wp_old_slug','236'), (4661,1305,'original_post_id','1250'), (4663,1305,'_wp_old_slug','1250'), (4664,239,'original_post_id','118'), (4666,1305,'original_post_id','118'), (4667,239,'_wp_old_slug','118'), (4668,1305,'_wp_old_slug','118'), (4669,242,'pre_import_post_parent','236'), (4670,242,'pre_import_post_id','242'), (4673,242,'_wp_old_slug','118'), (4674,242,'original_post_id','118'), (4679,242,'original_post_id','236'), (4680,242,'_wp_old_slug','236'), (4683,242,'original_post_id','118'), (4684,242,'_wp_old_slug','118'), (4685,244,'pre_import_post_parent','236'), (4686,244,'pre_import_post_id','244'), (4690,244,'original_post_id','118'), (4691,244,'_wp_old_slug','118'), (4695,244,'original_post_id','236'), (4696,244,'_wp_old_slug','236'), (4699,244,'original_post_id','118'), (4700,244,'_wp_old_slug','118'), (4701,246,'pre_import_post_parent','236'), (4702,246,'pre_import_post_id','246'), (4705,246,'_wp_old_slug','118'), (4706,246,'original_post_id','118'), (4711,246,'original_post_id','236'), (4712,246,'_wp_old_slug','236'), (4715,246,'original_post_id','118'), (4716,246,'_wp_old_slug','118'), (4717,319,'pre_import_post_parent','318'), (4718,319,'pre_import_post_id','319'), (4721,319,'_wp_old_slug','318'), (4724,319,'original_post_id','118'), (4725,319,'_wp_old_slug','118'), (4726,319,'original_post_id','318'), (4731,319,'original_post_id','118'), (4732,319,'_wp_old_slug','118'), (4733,321,'_wp_old_slug','318'), (4734,321,'original_post_id','318'), (4735,321,'pre_import_post_parent','107'), (4736,321,'pre_import_post_id','321'), (4741,321,'original_post_id','118'), (4742,321,'_wp_old_slug','118'), (4747,321,'original_post_id','118'), (4748,321,'_wp_old_slug','118'), (4750,322,'pre_import_post_parent','107'), (4751,322,'pre_import_post_id','322'), (4756,322,'original_post_id','118'), (4757,322,'_wp_old_slug','118'), (4759,322,'original_post_id','318'), (4760,322,'_wp_old_slug','318'), (4763,322,'original_post_id','118'), (4764,322,'_wp_old_slug','118'), (4765,323,'pre_import_post_parent','107'), (4766,323,'pre_import_post_id','323'), (4769,323,'original_post_id','118'), (4770,323,'_wp_old_slug','118'), (4775,323,'original_post_id','318'), (4776,323,'_wp_old_slug','318'), (4779,323,'original_post_id','118'), (4780,323,'_wp_old_slug','118'), (4782,324,'original_post_id','318'), (4783,324,'_wp_old_slug','318'), (4784,324,'pre_import_post_parent','107'), (4785,324,'pre_import_post_id','324'), (4788,324,'_wp_old_slug','118'), (4789,324,'original_post_id','118'), (4795,324,'original_post_id','118'), (4796,324,'_wp_old_slug','118'), (4799,325,'pre_import_post_parent','107'), (4800,325,'pre_import_post_id','325'), (4805,325,'_wp_old_slug','118'), (4806,325,'original_post_id','118'), (4807,325,'original_post_id','318'), (4808,325,'_wp_old_slug','318'), (4811,325,'original_post_id','118'), (4812,325,'_wp_old_slug','118'), (4813,326,'pre_import_post_parent','107'), (4814,326,'pre_import_post_id','326'), (4817,326,'original_post_id','118'), (4818,326,'_wp_old_slug','118'), (4821,326,'original_post_id','318'), (4822,326,'_wp_old_slug','318'), (4827,326,'original_post_id','118'), (4828,326,'_wp_old_slug','118'), (4829,327,'_wp_old_slug','318'), (4830,327,'original_post_id','318'), (4832,327,'pre_import_post_parent','107'), (4833,327,'pre_import_post_id','327'), (4837,327,'original_post_id','118'), (4838,327,'_wp_old_slug','118'), (4840,1306,'_wp_attached_file','2012/11/home-devices.jpg'), (4844,327,'original_post_id','118'), (4845,327,'_wp_old_slug','118'), (4848,328,'pre_import_post_parent','107'), (4849,328,'pre_import_post_id','328'), (4853,328,'original_post_id','118'), (4854,328,'_wp_old_slug','118'), (4856,328,'_wp_old_slug','318'), (4857,328,'original_post_id','318'), (4860,328,'original_post_id','118'), (4861,328,'_wp_old_slug','118'), (4862,329,'pre_import_post_parent','107'), (4863,329,'pre_import_post_id','329'), (4868,329,'original_post_id','118'), (4869,329,'_wp_old_slug','118'), (4872,329,'original_post_id','318'), (4873,329,'_wp_old_slug','318'), (4876,329,'original_post_id','118'), (4877,329,'_wp_old_slug','118'), (4878,162,'pre_import_post_parent','0'), (4879,162,'pre_import_post_id','162'), (4882,163,'pre_import_post_parent','0'), (4883,163,'pre_import_post_id','163'), (4886,165,'pre_import_post_parent','0'), (4887,165,'pre_import_post_id','165'), (4890,166,'pre_import_post_parent','0'), (4891,166,'pre_import_post_id','166'), (4894,167,'pre_import_post_parent','0'), (4895,167,'pre_import_post_id','167'), (4898,168,'pre_import_post_parent','0'), (4899,168,'pre_import_post_id','168'), (4902,169,'pre_import_post_parent','0'), (4903,169,'pre_import_post_id','169'), (4906,170,'pre_import_post_parent','0'), (4907,170,'pre_import_post_id','170'), (4910,171,'pre_import_post_parent','0'), (4911,171,'pre_import_post_id','171'), (4914,330,'_wp_old_slug','318'), (4915,330,'original_post_id','318'), (4916,330,'pre_import_post_parent','107'), (4917,330,'pre_import_post_id','330'), (4920,330,'_wp_old_slug','118'), (4921,330,'original_post_id','118'), (4925,1306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:518;s:6:\"height\";i:411;s:4:\"file\";s:24:\"2012/11/home-devices.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-devices-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-devices-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"home-devices-518x372.jpg\";s:5:\"width\";i:518;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (4927,1306,'pre_import_post_parent','0'), (4928,1306,'pre_import_post_id','1306'), (4931,1306,'original_post_id','1250'), (4932,1306,'_wp_old_slug','1250'), (4933,1306,'original_post_id','1250'), (4935,1306,'_wp_old_slug','1250'), (4938,1306,'original_post_id','118'), (4939,1306,'_wp_old_slug','118'), (4941,330,'original_post_id','118'), (4942,330,'_wp_old_slug','118'), (4943,368,'pre_import_post_parent','357'), (4944,368,'pre_import_post_id','368'), (4948,368,'_wp_old_slug','357'), (4949,368,'original_post_id','357'), (4951,368,'original_post_id','118'), (4952,368,'_wp_old_slug','118'), (4957,368,'original_post_id','118'), (4958,368,'_wp_old_slug','118'), (4959,369,'_wp_old_slug','357'), (4960,369,'original_post_id','357'), (4961,369,'pre_import_post_parent','357'), (4962,369,'pre_import_post_id','369'), (4967,369,'original_post_id','118'), (4968,369,'_wp_old_slug','118'), (4973,369,'original_post_id','118'), (4974,369,'_wp_old_slug','118'), (4977,370,'pre_import_post_parent','357'), (4978,370,'pre_import_post_id','370'), (4981,370,'_wp_old_slug','118'), (4984,370,'original_post_id','118'), (4985,370,'_wp_old_slug','357'), (4986,370,'original_post_id','357'), (4989,370,'original_post_id','118'), (4990,370,'_wp_old_slug','118'), (4991,371,'pre_import_post_parent','357'), (4992,371,'pre_import_post_id','371'), (4995,371,'original_post_id','118'), (4998,371,'_wp_old_slug','118'), (5001,371,'original_post_id','357'), (5002,371,'_wp_old_slug','357'), (5005,371,'original_post_id','118'), (5006,371,'_wp_old_slug','118'), (5007,374,'pre_import_post_parent','357'), (5008,374,'pre_import_post_id','374'), (5011,374,'_wp_old_slug','118'), (5012,374,'original_post_id','118'), (5017,374,'original_post_id','357'), (5018,374,'_wp_old_slug','357'), (5021,374,'original_post_id','118'), (5022,374,'_wp_old_slug','118'), (5023,401,'pre_import_post_parent','0'), (5024,401,'pre_import_post_id','401'), (5026,401,'_wp_old_slug','118'), (5027,401,'original_post_id','118'), (5030,401,'original_post_id','397'), (5031,401,'_wp_old_slug','397'), (5033,401,'original_post_id','118'), (5034,401,'_wp_old_slug','118'), (5035,418,'pre_import_post_parent','417'), (5036,418,'pre_import_post_id','418'), (5037,418,'original_post_id','118'), (5042,418,'_wp_old_slug','118'), (5045,418,'original_post_id','417'), (5046,418,'_wp_old_slug','417'), (5047,1307,'_wp_attached_file','2012/11/home-moderate-comments.jpg'), (5050,418,'original_post_id','118'), (5051,418,'_wp_old_slug','118'), (5052,447,'_wp_old_slug','118'), (5053,447,'original_post_id','118'), (5054,447,'pre_import_post_parent','0'), (5055,447,'pre_import_post_id','447'), (5059,447,'original_post_id','432'), (5060,447,'_wp_old_slug','432'), (5062,447,'original_post_id','118'), (5063,447,'_wp_old_slug','118'), (5064,540,'_wp_old_slug','118'), (5067,540,'original_post_id','118'), (5068,540,'pre_import_post_parent','506'), (5069,540,'pre_import_post_id','540'), (5074,540,'original_post_id','506'), (5075,540,'_wp_old_slug','506'), (5078,540,'original_post_id','118'), (5079,540,'_wp_old_slug','118'), (5080,1725,'pre_import_post_parent','0'), (5081,1725,'pre_import_post_id','164'), (5084,175,'pre_import_post_parent','161'), (5085,175,'pre_import_post_id','175'), (5088,176,'pre_import_post_parent','161'), (5089,176,'pre_import_post_id','176'), (5092,177,'pre_import_post_parent','161'), (5093,177,'pre_import_post_id','177'), (5096,178,'pre_import_post_parent','161'), (5097,178,'pre_import_post_id','178'), (5099,1307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:465;s:6:\"height\";i:246;s:4:\"file\";s:34:\"2012/11/home-moderate-comments.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"home-moderate-comments-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"home-moderate-comments-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (5100,1307,'pre_import_post_parent','0'), (5101,1307,'pre_import_post_id','1307'), (5104,1307,'original_post_id','1250'), (5105,1307,'_wp_old_slug','1250'), (5106,1307,'original_post_id','1250'), (5107,1307,'_wp_old_slug','1250'), (5111,1307,'original_post_id','118'), (5112,1307,'_wp_old_slug','118'), (5113,179,'pre_import_post_parent','161'), (5114,179,'pre_import_post_id','179'), (5117,180,'pre_import_post_parent','161'), (5118,180,'pre_import_post_id','180'), (5121,181,'pre_import_post_parent','161'), (5122,181,'pre_import_post_id','181'), (5125,182,'pre_import_post_parent','161'), (5126,182,'pre_import_post_id','182'), (5131,591,'pre_import_post_parent','579'), (5132,591,'pre_import_post_id','591'), (5135,591,'_wp_old_slug','118'), (5136,591,'original_post_id','118'), (5139,591,'original_post_id','579'), (5140,591,'_wp_old_slug','579'), (5143,591,'original_post_id','118'), (5144,591,'_wp_old_slug','118'), (5145,592,'_wp_old_slug','118'), (5146,592,'original_post_id','118'), (5147,592,'pre_import_post_parent','579'), (5148,592,'pre_import_post_id','592'), (5155,592,'original_post_id','579'), (5156,592,'_wp_old_slug','579'), (5159,592,'original_post_id','118'), (5160,592,'_wp_old_slug','118'), (5163,593,'pre_import_post_parent','579'), (5164,593,'pre_import_post_id','593'), (5167,593,'_wp_old_slug','118'), (5168,593,'original_post_id','118'), (5171,593,'original_post_id','579'), (5172,593,'_wp_old_slug','579'), (5175,593,'original_post_id','118'), (5176,593,'_wp_old_slug','118'), (5178,594,'pre_import_post_parent','579'), (5179,594,'pre_import_post_id','594'), (5183,594,'_wp_old_slug','118'), (5184,594,'original_post_id','118'), (5187,594,'original_post_id','579'), (5188,594,'_wp_old_slug','579'), (5191,594,'original_post_id','118'), (5192,594,'_wp_old_slug','118'), (5195,596,'pre_import_post_parent','579'), (5196,596,'pre_import_post_id','596'), (5201,596,'original_post_id','579'), (5202,596,'_wp_old_slug','579'), (5203,596,'original_post_id','118'), (5204,596,'_wp_old_slug','118'), (5207,596,'original_post_id','118'), (5208,596,'_wp_old_slug','118'), (5209,597,'pre_import_post_parent','579'), (5210,597,'pre_import_post_id','597'), (5215,597,'original_post_id','579'), (5216,597,'_wp_old_slug','579'), (5219,597,'original_post_id','118'), (5220,597,'_wp_old_slug','118'), (5223,597,'original_post_id','118'), (5224,597,'_wp_old_slug','118'), (5225,1308,'_wp_attached_file','2012/11/home-moderate-comments1.jpg'), (5227,1692,'pre_import_post_id','71'), (5228,1692,'pre_import_post_parent','0'), (5229,1723,'pre_import_post_parent','161'), (5230,1723,'pre_import_post_id','183'), (5233,1724,'pre_import_post_parent','161'), (5234,1724,'pre_import_post_id','184'), (5237,1727,'pre_import_post_parent','226'), (5238,1727,'pre_import_post_id','238'), (5241,1728,'pre_import_post_parent','226'), (5242,1728,'pre_import_post_id','237'), (5245,1730,'pre_import_post_parent','226'), (5246,1730,'pre_import_post_id','239'), (5251,141,'pre_import_post_parent','0'), (5252,141,'pre_import_post_id','141'), (5254,142,'pre_import_post_id','142'), (5255,142,'pre_import_post_parent','0'), (5257,143,'pre_import_post_id','143'), (5258,143,'pre_import_post_parent','0'), (5261,144,'pre_import_post_parent','0'), (5262,1308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:465;s:6:\"height\";i:246;s:4:\"file\";s:35:\"2012/11/home-moderate-comments1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"home-moderate-comments1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"home-moderate-comments1-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (5263,1308,'pre_import_post_parent','0'), (5264,1308,'pre_import_post_id','1308'), (5266,1308,'original_post_id','1250'), (5267,1308,'_wp_old_slug','1250'), (5269,1308,'original_post_id','1250'), (5270,1308,'_wp_old_slug','1250'), (5273,1308,'original_post_id','118'), (5274,1308,'_wp_old_slug','118'), (5275,144,'pre_import_post_id','144'), (5280,145,'pre_import_post_parent','0'), (5281,145,'pre_import_post_id','145'), (5284,150,'pre_import_post_parent','147'), (5285,150,'pre_import_post_id','150'), (5288,164,'pre_import_post_parent','147'), (5289,164,'pre_import_post_id','164'), (5290,609,'pre_import_post_parent','0'), (5291,609,'pre_import_post_id','609'), (5296,609,'original_post_id','601'), (5297,609,'_wp_old_slug','601'), (5300,609,'original_post_id','118'), (5301,609,'_wp_old_slug','118'), (5304,609,'original_post_id','118'), (5305,609,'_wp_old_slug','118'), (5306,610,'pre_import_post_parent','0'), (5307,610,'pre_import_post_id','610'), (5312,610,'original_post_id','601'), (5313,610,'_wp_old_slug','601'), (5316,610,'original_post_id','118'), (5317,610,'_wp_old_slug','118'), (5320,610,'original_post_id','118'), (5321,610,'_wp_old_slug','118'), (5322,611,'pre_import_post_parent','0'), (5323,611,'pre_import_post_id','611'), (5328,611,'original_post_id','601'), (5329,611,'_wp_old_slug','601'), (5332,611,'original_post_id','118'), (5333,611,'_wp_old_slug','118'), (5336,611,'original_post_id','118'), (5337,611,'_wp_old_slug','118'), (5338,657,'pre_import_post_parent','0'), (5339,657,'pre_import_post_id','657'), (5342,657,'original_post_id','638'), (5343,657,'_wp_old_slug','638'), (5345,657,'original_post_id','118'), (5346,657,'_wp_old_slug','118'), (5348,657,'original_post_id','118'), (5349,657,'_wp_old_slug','118'), (5350,659,'pre_import_post_parent','0'), (5351,659,'pre_import_post_id','659'), (5354,659,'original_post_id','638'), (5355,659,'_wp_old_slug','638'), (5357,659,'original_post_id','118'), (5358,659,'_wp_old_slug','118'), (5360,659,'original_post_id','118'), (5361,659,'_wp_old_slug','118'), (5362,660,'pre_import_post_parent','0'), (5363,660,'pre_import_post_id','660'), (5366,660,'original_post_id','638'), (5367,660,'_wp_old_slug','638'), (5369,660,'original_post_id','118'), (5370,660,'_wp_old_slug','118'), (5372,660,'original_post_id','118'), (5373,660,'_wp_old_slug','118'), (5374,661,'pre_import_post_parent','0'), (5375,661,'pre_import_post_id','661'), (5378,661,'original_post_id','638'), (5379,661,'_wp_old_slug','638'), (5381,661,'original_post_id','118'), (5382,661,'_wp_old_slug','118'), (5384,661,'original_post_id','118'), (5385,661,'_wp_old_slug','118'), (5386,1309,'_wp_attached_file','2012/11/home-moderate-comments2.jpg'), (5387,662,'pre_import_post_parent','0'), (5388,662,'pre_import_post_id','662'), (5391,662,'original_post_id','638'), (5392,662,'_wp_old_slug','638'), (5394,662,'original_post_id','118'), (5395,662,'_wp_old_slug','118'), (5397,662,'original_post_id','118'), (5398,662,'_wp_old_slug','118'), (5399,663,'pre_import_post_parent','0'), (5400,663,'pre_import_post_id','663'), (5403,663,'original_post_id','638'), (5404,663,'_wp_old_slug','638'), (5406,663,'original_post_id','118'), (5407,663,'_wp_old_slug','118'), (5409,663,'original_post_id','118'), (5410,663,'_wp_old_slug','118'), (5411,671,'pre_import_post_parent','638'), (5412,671,'pre_import_post_id','671'), (5417,671,'original_post_id','638'), (5418,671,'_wp_old_slug','638'), (5421,671,'original_post_id','118'), (5422,671,'_wp_old_slug','118'), (5425,671,'original_post_id','118'), (5426,671,'_wp_old_slug','118'), (5427,672,'pre_import_post_parent','638'), (5428,672,'pre_import_post_id','672'), (5433,672,'original_post_id','638'), (5434,672,'_wp_old_slug','638'), (5437,672,'original_post_id','118'), (5438,672,'_wp_old_slug','118'), (5441,672,'original_post_id','118'), (5442,672,'_wp_old_slug','118'), (5443,673,'pre_import_post_parent','638'), (5444,673,'pre_import_post_id','673'), (5449,673,'original_post_id','638'), (5450,673,'_wp_old_slug','638'), (5453,673,'original_post_id','118'), (5454,673,'_wp_old_slug','118'), (5457,673,'original_post_id','118'), (5458,673,'_wp_old_slug','118'), (5459,674,'pre_import_post_parent','638'), (5460,674,'pre_import_post_id','674'), (5465,674,'original_post_id','638'), (5466,674,'_wp_old_slug','638'), (5469,674,'original_post_id','118'), (5470,674,'_wp_old_slug','118'), (5473,674,'original_post_id','118'), (5474,674,'_wp_old_slug','118'), (5477,184,'pre_import_post_id','184'), (5478,184,'pre_import_post_parent','183'), (5481,191,'pre_import_post_id','191'), (5482,191,'pre_import_post_parent','189'), (5485,192,'pre_import_post_parent','189'), (5486,192,'pre_import_post_id','192'), (5489,199,'pre_import_post_parent','198'), (5490,199,'pre_import_post_id','199'), (5493,200,'pre_import_post_parent','198'), (5494,200,'pre_import_post_id','200'), (5495,273,'pre_import_post_parent','267'), (5496,273,'pre_import_post_id','273'), (5499,274,'pre_import_post_parent','267'), (5500,274,'pre_import_post_id','274'), (5503,275,'pre_import_post_parent','267'), (5504,275,'pre_import_post_id','275'), (5507,276,'pre_import_post_parent','267'), (5508,276,'pre_import_post_id','276'), (5511,277,'pre_import_post_parent','267'), (5512,277,'pre_import_post_id','277'), (5515,675,'pre_import_post_parent','638'), (5516,675,'pre_import_post_id','675'), (5521,675,'original_post_id','638'), (5522,675,'_wp_old_slug','638'), (5525,675,'original_post_id','118'), (5526,675,'_wp_old_slug','118'), (5529,675,'original_post_id','118'), (5530,675,'_wp_old_slug','118'), (5531,676,'pre_import_post_parent','0'), (5532,676,'pre_import_post_id','676'), (5535,676,'original_post_id','638'), (5536,676,'_wp_old_slug','638'), (5538,676,'original_post_id','118'), (5539,676,'_wp_old_slug','118'), (5541,676,'original_post_id','118'), (5542,676,'_wp_old_slug','118'), (5543,687,'pre_import_post_parent','0'), (5544,687,'pre_import_post_id','687'), (5547,687,'original_post_id','638'), (5548,687,'_wp_old_slug','638'), (5550,687,'original_post_id','118'), (5551,687,'_wp_old_slug','118'), (5553,687,'original_post_id','118'), (5554,687,'_wp_old_slug','118'), (5555,1309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:465;s:6:\"height\";i:246;s:4:\"file\";s:35:\"2012/11/home-moderate-comments2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"home-moderate-comments2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"home-moderate-comments2-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (5556,1309,'pre_import_post_parent','0'), (5557,688,'pre_import_post_parent','0'), (5558,688,'pre_import_post_id','688'), (5561,688,'original_post_id','638'), (5562,688,'_wp_old_slug','638'), (5563,1309,'pre_import_post_id','1309'), (5565,688,'original_post_id','118'), (5567,688,'_wp_old_slug','118'), (5570,688,'original_post_id','118'), (5571,1309,'original_post_id','1250'), (5572,688,'_wp_old_slug','118'), (5573,1309,'_wp_old_slug','1250'), (5574,690,'pre_import_post_parent','0'), (5575,690,'pre_import_post_id','690'), (5579,690,'original_post_id','638'), (5580,690,'_wp_old_slug','638'), (5581,1309,'original_post_id','1250'), (5583,1309,'_wp_old_slug','1250'), (5584,690,'original_post_id','118'), (5585,690,'_wp_old_slug','118'), (5588,690,'original_post_id','118'), (5589,1309,'original_post_id','118'), (5590,690,'_wp_old_slug','118'), (5591,1309,'_wp_old_slug','118'), (5592,698,'pre_import_post_parent','691'), (5593,698,'pre_import_post_id','698'), (5598,698,'original_post_id','691'), (5599,698,'_wp_old_slug','691'), (5602,698,'original_post_id','118'), (5603,698,'_wp_old_slug','118'), (5606,698,'original_post_id','118'), (5607,698,'_wp_old_slug','118'), (5608,702,'pre_import_post_parent','701'), (5609,702,'pre_import_post_id','702'), (5610,702,'_wp_attachment_image_alt','Geolocation Plugin Screenshot'), (5613,702,'_wp_attachment_image_alt','Geolocation Plugin Screenshot'), (5616,702,'original_post_id','701'), (5617,702,'_wp_old_slug','701'), (5618,702,'_wp_attachment_image_alt','Geolocation Plugin Screenshot'), (5621,702,'original_post_id','118'), (5622,702,'_wp_old_slug','118'), (5623,702,'_wp_attachment_image_alt','Geolocation Plugin Screenshot'), (5626,702,'original_post_id','118'), (5627,702,'_wp_old_slug','118'), (5628,721,'pre_import_post_parent','0'), (5629,721,'pre_import_post_id','721'), (5632,721,'original_post_id','701'), (5633,721,'_wp_old_slug','701'), (5635,721,'original_post_id','118'), (5636,721,'_wp_old_slug','118'), (5638,721,'original_post_id','118'), (5639,721,'_wp_old_slug','118'), (5640,1769,'pre_import_post_parent','245'), (5641,1769,'pre_import_post_id','246'), (5644,1771,'pre_import_post_parent','267'), (5645,1771,'pre_import_post_id','272'), (5648,243,'pre_import_post_parent','234'), (5649,243,'pre_import_post_id','243'), (5652,307,'pre_import_post_parent','300'), (5653,307,'pre_import_post_id','307'), (5656,309,'pre_import_post_parent','300'), (5657,309,'pre_import_post_id','309'), (5660,338,'pre_import_post_parent','0'), (5661,338,'pre_import_post_id','338'), (5664,340,'pre_import_post_parent','1730'), (5665,340,'pre_import_post_id','340'), (5668,342,'pre_import_post_parent','1730'), (5669,342,'pre_import_post_id','342'), (5672,362,'pre_import_post_parent','360'), (5673,362,'pre_import_post_id','362'), (5676,363,'pre_import_post_parent','360'), (5677,363,'pre_import_post_id','363'), (5680,364,'pre_import_post_parent','360'), (5681,364,'pre_import_post_id','364'), (5684,742,'pre_import_post_parent','0'), (5685,742,'pre_import_post_id','742'), (5687,742,'_wp_old_slug','725'), (5688,742,'original_post_id','725'), (5691,742,'original_post_id','118'), (5692,742,'_wp_old_slug','118'), (5694,742,'original_post_id','118'), (5695,742,'_wp_old_slug','118'), (5696,744,'original_post_id','725'), (5697,744,'_wp_old_slug','725'), (5698,744,'pre_import_post_parent','0'), (5699,744,'pre_import_post_id','744'), (5703,744,'original_post_id','118'), (5704,744,'_wp_old_slug','118'), (5706,744,'original_post_id','118'), (5707,744,'_wp_old_slug','118'), (5708,1695,'pre_import_post_parent','234'), (5709,1695,'pre_import_post_id','237'), (5712,1310,'_wp_attached_file','2012/11/home-moderate-comments3.jpg'), (5713,1696,'pre_import_post_parent','234'), (5714,1696,'pre_import_post_id','236'), (5717,1697,'pre_import_post_parent','234'), (5718,1697,'pre_import_post_id','239'), (5721,1699,'pre_import_post_parent','234'), (5722,1699,'pre_import_post_id','238'), (5725,1785,'pre_import_post_parent','1730'), (5726,1785,'pre_import_post_id','341'), (5729,1786,'pre_import_post_parent','300'), (5730,1786,'pre_import_post_id','308'), (5733,1788,'pre_import_post_parent','0'), (5734,1788,'pre_import_post_id','339'), (5737,1790,'pre_import_post_parent','360'), (5738,1790,'pre_import_post_id','365'), (5741,1792,'pre_import_post_parent','360'), (5742,1792,'pre_import_post_id','366'), (5745,308,'pre_import_post_parent','295'), (5746,308,'pre_import_post_id','308'), (5749,312,'pre_import_post_parent','295'), (5750,312,'pre_import_post_id','312'), (5753,349,'pre_import_post_parent','347'), (5754,349,'pre_import_post_id','349'), (5757,1310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:465;s:6:\"height\";i:246;s:4:\"file\";s:35:\"2012/11/home-moderate-comments3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"home-moderate-comments3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"home-moderate-comments3-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (5758,1310,'pre_import_post_parent','0'), (5759,1310,'pre_import_post_id','1310'), (5761,378,'pre_import_post_parent','376'), (5762,1310,'original_post_id','1250'), (5763,1310,'_wp_old_slug','1250'), (5764,378,'pre_import_post_id','378'), (5769,1310,'original_post_id','1250'), (5770,1310,'_wp_old_slug','1250'), (5772,1310,'original_post_id','118'), (5773,1310,'_wp_old_slug','118'), (5774,379,'pre_import_post_parent','376'), (5775,379,'pre_import_post_id','379'), (5778,380,'pre_import_post_parent','376'), (5779,380,'pre_import_post_id','380'), (5782,381,'pre_import_post_parent','376'), (5783,381,'pre_import_post_id','381'), (5788,848,'original_post_id','846'), (5789,848,'_wp_old_slug','846'), (5790,848,'pre_import_post_parent','846'), (5791,848,'pre_import_post_id','848'), (5796,848,'original_post_id','118'), (5797,848,'_wp_old_slug','118'), (5800,848,'original_post_id','118'), (5801,848,'_wp_old_slug','118'), (5804,849,'_wp_old_slug','846'), (5805,849,'original_post_id','846'), (5806,849,'pre_import_post_parent','846'), (5807,849,'pre_import_post_id','849'), (5812,849,'original_post_id','118'), (5813,849,'_wp_old_slug','118'), (5816,849,'original_post_id','118'), (5817,849,'_wp_old_slug','118'), (5819,873,'pre_import_post_parent','872'), (5820,873,'pre_import_post_id','873'), (5826,873,'original_post_id','118'), (5827,873,'_wp_old_slug','118'), (5828,873,'original_post_id','872'), (5829,873,'_wp_old_slug','872'), (5832,873,'original_post_id','118'), (5833,873,'_wp_old_slug','118'), (5834,1803,'pre_import_post_parent','376'), (5835,1803,'pre_import_post_id','384'), (5838,1804,'pre_import_post_parent','376'), (5839,1804,'pre_import_post_id','383'), (5842,1806,'pre_import_post_parent','376'), (5843,1806,'pre_import_post_id','382'), (5846,1808,'pre_import_post_parent','1761'), (5847,1808,'pre_import_post_id','36'), (5850,1810,'pre_import_post_parent','1760'), (5851,1810,'pre_import_post_id','25'), (5854,1812,'pre_import_post_parent','1758'), (5855,1812,'pre_import_post_id','55'), (5858,1814,'pre_import_post_parent','0'), (5859,1814,'pre_import_post_id','70'), (5861,1816,'pre_import_post_parent','1767'), (5862,1816,'pre_import_post_id','96'), (5863,1816,'_wp_attachment_image_alt','Screenshot of the Pages view'), (5866,1818,'pre_import_post_parent','1767'), (5867,1818,'pre_import_post_id','95'), (5868,1818,'_wp_attachment_image_alt','Screenshot of the Stats view'), (5871,1820,'pre_import_post_parent','1767'), (5872,1820,'pre_import_post_id','94'), (5873,1820,'_wp_attachment_image_alt','Screenshot of the Actions Dashboard'), (5876,365,'pre_import_post_parent','361'), (5877,365,'pre_import_post_id','365'), (5880,366,'pre_import_post_parent','361'), (5881,366,'pre_import_post_id','366'), (5884,433,'pre_import_post_parent','1739'), (5885,433,'pre_import_post_id','433'), (5888,440,'pre_import_post_parent','1739'), (5889,440,'pre_import_post_id','440'), (5892,443,'pre_import_post_parent','1739'), (5893,443,'pre_import_post_id','443'), (5896,444,'pre_import_post_parent','1739'), (5897,444,'pre_import_post_id','444'), (5900,445,'pre_import_post_parent','1739'), (5901,445,'pre_import_post_id','445'), (5904,446,'pre_import_post_parent','1739'), (5905,446,'pre_import_post_id','446'), (5908,448,'pre_import_post_parent','1739'), (5909,448,'pre_import_post_id','448'), (5912,452,'pre_import_post_parent','1739'), (5913,452,'pre_import_post_id','452'), (5916,453,'pre_import_post_parent','1739'), (5917,453,'pre_import_post_id','453'), (5922,917,'original_post_id','906'), (5923,917,'_wp_old_slug','906'), (5924,917,'pre_import_post_parent','906'), (5925,917,'pre_import_post_id','917'), (5930,917,'original_post_id','118'), (5931,917,'_wp_old_slug','118'), (5934,917,'original_post_id','118'), (5935,917,'_wp_old_slug','118'), (5936,934,'original_post_id','933'), (5937,934,'_wp_old_slug','933'), (5939,934,'pre_import_post_parent','933'), (5940,934,'pre_import_post_id','934'), (5946,934,'original_post_id','118'), (5947,934,'_wp_old_slug','118'), (5950,934,'original_post_id','118'), (5951,934,'_wp_old_slug','118'), (5954,951,'original_post_id','949'), (5955,951,'_wp_old_slug','949'), (5956,951,'pre_import_post_parent','949'), (5957,951,'pre_import_post_id','951'), (5962,951,'original_post_id','118'), (5963,951,'_wp_old_slug','118'), (5966,951,'original_post_id','118'), (5967,951,'_wp_old_slug','118'), (5968,957,'_wp_old_slug','949'), (5969,957,'original_post_id','949'), (5972,957,'pre_import_post_parent','949'), (5973,957,'pre_import_post_id','957'), (5977,1317,'_wp_attached_file','2012/11/wpios-3-2-sounds1.jpg'), (5979,957,'original_post_id','118'), (5980,957,'_wp_old_slug','118'), (5983,957,'original_post_id','118'), (5984,957,'_wp_old_slug','118'), (5985,1836,'pre_import_post_parent','1739'), (5986,1836,'pre_import_post_id','441'), (5989,1838,'pre_import_post_parent','1739'), (5990,1838,'pre_import_post_id','439'), (5993,1840,'pre_import_post_parent','1767'), (5994,1840,'pre_import_post_id','97'), (5995,1840,'_wp_attachment_image_alt','Screenshot of the Posts view'), (5998,1842,'pre_import_post_parent','1767'), (5999,1842,'pre_import_post_id','98'), (6000,1842,'_wp_attachment_image_alt','Screenshot of the Comments view'), (6003,1844,'pre_import_post_parent','125'), (6004,1844,'pre_import_post_id','141'), (6007,383,'pre_import_post_parent','382'), (6008,383,'pre_import_post_id','383'), (6011,384,'pre_import_post_parent','382'), (6012,384,'pre_import_post_id','384'), (6015,388,'pre_import_post_parent','382'), (6016,388,'pre_import_post_id','388'), (6019,473,'pre_import_post_parent','0'), (6020,473,'pre_import_post_id','473'), (6023,474,'pre_import_post_parent','0'), (6024,474,'pre_import_post_id','474'), (6027,475,'pre_import_post_parent','0'), (6028,475,'pre_import_post_id','475'), (6031,478,'pre_import_post_parent','0'), (6032,478,'pre_import_post_id','478'), (6035,479,'pre_import_post_parent','0'), (6036,479,'pre_import_post_id','479'), (6039,480,'pre_import_post_parent','0'), (6040,480,'pre_import_post_id','480'), (6043,481,'pre_import_post_parent','464'), (6044,481,'pre_import_post_id','481'), (6049,960,'original_post_id','949'), (6050,960,'_wp_old_slug','949'), (6051,960,'pre_import_post_parent','949'), (6052,960,'pre_import_post_id','960'), (6057,960,'original_post_id','118'), (6058,960,'_wp_old_slug','118'), (6061,960,'original_post_id','118'), (6062,960,'_wp_old_slug','118'), (6063,963,'_wp_old_slug','949'), (6064,963,'original_post_id','949'), (6067,963,'pre_import_post_parent','949'), (6068,963,'pre_import_post_id','963'), (6073,963,'original_post_id','118'), (6074,963,'_wp_old_slug','118'), (6077,963,'original_post_id','118'), (6078,963,'_wp_old_slug','118'), (6081,968,'pre_import_post_parent','949'), (6082,968,'pre_import_post_id','968'), (6087,968,'original_post_id','118'), (6088,968,'_wp_old_slug','118'), (6089,968,'_wp_old_slug','949'), (6090,968,'original_post_id','949'), (6093,968,'original_post_id','118'), (6094,968,'_wp_old_slug','118'), (6095,973,'pre_import_post_parent','949'), (6096,973,'pre_import_post_id','973'), (6099,973,'_wp_old_slug','949'), (6100,973,'original_post_id','949'), (6103,973,'original_post_id','118'), (6104,973,'_wp_old_slug','118'), (6109,973,'original_post_id','118'), (6110,973,'_wp_old_slug','118'), (6111,999,'_wp_old_slug','949'), (6112,999,'original_post_id','949'), (6113,999,'pre_import_post_parent','0'), (6114,999,'pre_import_post_id','999'), (6118,999,'original_post_id','118'), (6119,999,'_wp_old_slug','118'), (6121,999,'original_post_id','118'), (6122,999,'_wp_old_slug','118'), (6124,1000,'pre_import_post_parent','0'), (6125,1000,'pre_import_post_id','1000'), (6128,1000,'original_post_id','118'), (6129,1000,'_wp_old_slug','118'), (6130,1000,'_wp_old_slug','949'), (6131,1000,'original_post_id','949'), (6133,1000,'original_post_id','118'), (6134,1000,'_wp_old_slug','118'), (6135,1010,'_wp_old_slug','1004'), (6136,1010,'original_post_id','1004'), (6137,1010,'pre_import_post_parent','1004'), (6138,1010,'pre_import_post_id','1010'), (6139,1010,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";s:3:\"334\";s:6:\"height\";s:3:\"411\";s:4:\"file\";s:14:\"home-icon1.png\";}}'), (6144,1010,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";s:3:\"334\";s:6:\"height\";s:3:\"411\";s:4:\"file\";s:14:\"home-icon1.png\";}}'), (6147,1010,'original_post_id','1004'), (6148,1010,'_wp_old_slug','1004'), (6149,1010,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";s:3:\"334\";s:6:\"height\";s:3:\"411\";s:4:\"file\";s:14:\"home-icon1.png\";}}'), (6150,1010,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";s:3:\"334\";s:6:\"height\";s:3:\"411\";s:4:\"file\";s:14:\"home-icon1.png\";}}'), (6153,1010,'original_post_id','118'), (6154,1010,'_wp_old_slug','118'), (6157,1044,'pre_import_post_parent','1042'), (6158,1044,'pre_import_post_id','1044'), (6163,1044,'original_post_id','1042'), (6164,1044,'_wp_old_slug','1042'), (6165,1044,'original_post_id','1042'), (6166,1044,'_wp_old_slug','1042'), (6169,1044,'original_post_id','118'), (6170,1044,'_wp_old_slug','118'), (6171,1051,'pre_import_post_parent','1042'), (6172,1051,'pre_import_post_id','1051'), (6177,1051,'original_post_id','1042'), (6178,1051,'_wp_old_slug','1042'), (6179,1051,'_wp_old_slug','1042'), (6182,1051,'original_post_id','1042'), (6185,1051,'original_post_id','118'), (6186,1051,'_wp_old_slug','118'), (6187,1700,'pre_import_post_parent','382'), (6188,1700,'pre_import_post_id','385'), (6191,215,'pre_import_post_parent','1772'), (6192,215,'pre_import_post_id','215'), (6195,223,'pre_import_post_parent','1761'), (6196,223,'pre_import_post_id','223'), (6197,223,'_wp_attachment_image_alt','WordPress for Windows Phone 7: post editor screenshot'), (6200,431,'pre_import_post_parent','1689'), (6201,431,'pre_import_post_id','431'), (6204,1317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:29:\"2012/11/wpios-3-2-sounds1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"wpios-3-2-sounds1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"wpios-3-2-sounds1-139x300.jpg\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"wpios-3-2-sounds1-475x1024.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"wpios-3-2-sounds1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"wpios-3-2-sounds1-804x576.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (6207,1317,'pre_import_post_parent','1311'), (6208,1317,'pre_import_post_id','1317'), (6211,1317,'original_post_id','1311'), (6212,1317,'_wp_old_slug','1311'), (6215,1317,'original_post_id','1311'), (6216,1317,'_wp_old_slug','1311'), (6219,1317,'original_post_id','118'), (6220,1317,'_wp_old_slug','118'), (6221,441,'_wp_attached_file','2011/09/android-read.jpg'), (6222,441,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:480;s:4:\"file\";s:24:\"2011/09/android-read.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"android-read-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"android-read-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"android-read-320x372.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (6223,441,'pre_import_post_parent','439'), (6224,441,'pre_import_post_id','441'), (6227,483,'pre_import_post_parent','439'), (6228,483,'pre_import_post_id','483'), (6231,1336,'_wp_attached_file','2012/12/wpios-3-3-sounds.jpg'), (6232,505,'pre_import_post_parent','0'), (6233,505,'pre_import_post_id','505'), (6236,511,'pre_import_post_parent','0'), (6237,511,'pre_import_post_id','511'), (6240,536,'pre_import_post_parent','1689'), (6241,536,'pre_import_post_id','536'), (6244,1064,'pre_import_post_parent','1040'), (6245,1064,'pre_import_post_id','1064'), (6248,1064,'original_post_id','1042'), (6249,1064,'_wp_old_slug','1042'), (6252,1064,'original_post_id','1042'), (6253,1064,'_wp_old_slug','1042'), (6258,1064,'original_post_id','118'), (6259,1064,'_wp_old_slug','118'), (6260,1066,'pre_import_post_parent','1040'), (6261,1066,'pre_import_post_id','1066'), (6264,1066,'_wp_old_slug','1042'), (6265,1066,'original_post_id','1042'), (6270,1066,'original_post_id','1042'), (6271,1066,'_wp_old_slug','1042'), (6274,1066,'original_post_id','118'), (6275,1066,'_wp_old_slug','118'), (6276,1078,'_wp_old_slug','1042'), (6277,1078,'original_post_id','1042'), (6278,1078,'pre_import_post_parent','0'), (6279,1078,'pre_import_post_id','1078'), (6283,1078,'original_post_id','1042'), (6284,1078,'_wp_old_slug','1042'), (6286,1078,'original_post_id','118'), (6287,1078,'_wp_old_slug','118'), (6290,1102,'pre_import_post_parent','1090'), (6291,1102,'pre_import_post_id','1102'), (6296,1102,'original_post_id','1090'), (6297,1102,'_wp_old_slug','1090'), (6298,1102,'original_post_id','1090'), (6299,1102,'_wp_old_slug','1090'), (6302,1102,'original_post_id','118'), (6303,1102,'_wp_old_slug','118'), (6304,1104,'pre_import_post_parent','1090'), (6305,1104,'pre_import_post_id','1104'), (6306,1104,'_wp_attachment_image_alt','WordPress for iOS 2.9 - Full Screen Editing'), (6309,1104,'_wp_attachment_image_alt','WordPress for iOS 2.9 - Full Screen Editing'), (6312,1104,'original_post_id','1090'), (6313,1104,'_wp_old_slug','1090'), (6314,1104,'_wp_old_slug','1090'), (6315,1104,'original_post_id','1090'), (6316,1104,'_wp_attachment_image_alt','WordPress for iOS 2.9 - Full Screen Editing'), (6319,1104,'_wp_attachment_image_alt','WordPress for iOS 2.9 - Full Screen Editing'), (6322,1104,'original_post_id','118'), (6323,1104,'_wp_old_slug','118'), (6324,1107,'pre_import_post_parent','1090'), (6325,1107,'pre_import_post_id','1107'), (6326,1107,'_wp_attachment_image_alt','alt'), (6329,1107,'original_post_id','1090'), (6330,1107,'_wp_old_slug','1090'), (6333,1107,'_wp_attachment_image_alt','alt'), (6334,1107,'_wp_attachment_image_alt','alt'), (6337,1107,'original_post_id','1090'), (6338,1107,'_wp_old_slug','1090'), (6339,1107,'_wp_attachment_image_alt','alt'), (6342,1107,'original_post_id','118'), (6343,1107,'_wp_old_slug','118'), (6344,1111,'pre_import_post_parent','0'), (6345,1111,'pre_import_post_id','1111'), (6347,1111,'_wp_old_slug','1090'), (6348,1111,'original_post_id','1090'), (6351,1111,'original_post_id','1090'), (6352,1111,'_wp_old_slug','1090'), (6354,1111,'original_post_id','118'), (6355,1111,'_wp_old_slug','118'), (6356,1112,'original_post_id','1090'), (6357,1112,'_wp_old_slug','1090'), (6360,1112,'pre_import_post_parent','1090'), (6361,1112,'pre_import_post_id','1112'), (6362,1112,'_wp_attachment_image_alt','WordPress for iOS 2.9 HTML Format Bar'), (6365,1112,'_wp_attachment_image_alt','WordPress for iOS 2.9 HTML Format Bar'), (6366,1112,'_wp_attachment_image_alt','WordPress for iOS 2.9 HTML Format Bar'), (6369,1112,'original_post_id','1090'), (6370,1112,'_wp_old_slug','1090'), (6371,1112,'_wp_attachment_image_alt','WordPress for iOS 2.9 HTML Format Bar'), (6374,1112,'original_post_id','118'), (6375,1112,'_wp_old_slug','118'), (6376,1115,'_wp_old_slug','1090'), (6377,1115,'original_post_id','1090'), (6379,1115,'pre_import_post_parent','0'), (6380,1115,'pre_import_post_id','1115'), (6383,1115,'original_post_id','1090'), (6384,1115,'_wp_old_slug','1090'), (6386,1115,'original_post_id','118'), (6387,1115,'_wp_old_slug','118'), (6389,1116,'_wp_attachment_image_alt','WordPress for iOS Read'), (6390,1116,'pre_import_post_parent','1090'), (6391,1116,'pre_import_post_id','1116'), (6392,1116,'_wp_attachment_image_alt','WordPress for iOS Read'), (6395,1116,'_wp_attachment_image_alt','WordPress for iOS Read'), (6398,1116,'original_post_id','1090'), (6399,1116,'_wp_old_slug','1090'), (6400,1116,'original_post_id','1090'), (6401,1116,'_wp_old_slug','1090'), (6403,1116,'_wp_attachment_image_alt','WordPress for iOS Read'), (6406,1116,'original_post_id','118'), (6407,1116,'_wp_old_slug','118'), (6408,1866,'pre_import_post_parent','1772'), (6409,1866,'pre_import_post_id','181'), (6412,1867,'pre_import_post_parent','0'), (6413,1867,'pre_import_post_id','226'), (6415,510,'pre_import_post_parent','502'), (6416,510,'pre_import_post_id','510'), (6417,510,'_wp_attachment_image_alt','WordPress for PlayBook - showing the Dashboard - blackberry.wordpress.org'), (6420,512,'pre_import_post_parent','502'), (6421,512,'pre_import_post_id','512'), (6422,512,'_wp_attachment_image_alt','WordPress for PlayBook - Detail: Dashboard button'), (6425,542,'pre_import_post_parent','0'), (6426,542,'pre_import_post_id','542'), (6428,549,'pre_import_post_parent','1689'), (6429,549,'pre_import_post_id','549'), (6432,550,'pre_import_post_parent','1689'), (6433,550,'pre_import_post_id','550'), (6436,573,'pre_import_post_parent','504'), (6437,573,'pre_import_post_id','573'), (6440,600,'pre_import_post_parent','531'), (6441,600,'pre_import_post_id','600'), (6442,600,'_wp_attachment_image_alt','Version 1.6 of WordPress for BlackBerry: device showing the Dashboard and the Action Bar.'), (6445,603,'pre_import_post_parent','589'), (6446,603,'pre_import_post_id','603'), (6449,604,'pre_import_post_parent','531'), (6450,604,'pre_import_post_id','604'), (6451,604,'_wp_attachment_image_alt','Quick Photo icon in version 1.6 of WordPress for BlackBerry'), (6454,606,'pre_import_post_parent','589'), (6455,606,'pre_import_post_id','606'), (6458,627,'pre_import_post_parent','589'), (6459,627,'pre_import_post_id','627'), (6460,627,'_wp_attachment_image_alt','WordPress for Android 2.0 on Nook Color and Kindle Fire'), (6463,651,'pre_import_post_parent','643'), (6464,651,'pre_import_post_id','651'), (6467,681,'pre_import_post_parent','643'), (6468,681,'pre_import_post_id','681'), (6469,681,'_wp_attachment_image_alt','Device examples of version 2.1 of WordPress for Android'), (6472,684,'pre_import_post_parent','643'), (6473,684,'pre_import_post_id','684'), (6474,684,'_wp_attachment_image_alt','WordPress for Android Logo'), (6479,1139,'_wp_attachment_image_alt','WordPress integrates Camera+'), (6480,1139,'pre_import_post_parent','1129'), (6481,1139,'pre_import_post_id','1139'), (6482,1139,'_wp_attachment_image_alt','WordPress integrates Camera+'), (6485,1139,'_wp_attachment_image_alt','WordPress integrates Camera+'), (6488,1139,'original_post_id','1129'), (6489,1139,'_wp_old_slug','1129'), (6490,1139,'_wp_old_slug','1129'), (6491,1139,'original_post_id','1129'), (6492,1139,'_wp_attachment_image_alt','WordPress integrates Camera+'), (6495,1139,'original_post_id','118'), (6496,1139,'_wp_old_slug','118'), (6497,1164,'original_post_id','1153'), (6498,1164,'_wp_old_slug','1153'), (6501,1164,'_wp_attachment_image_alt','Swipe-to-moderate in version 3.0 of WordPress for iOS'), (6502,1164,'pre_import_post_parent','1153'), (6503,1164,'pre_import_post_id','1164'), (6504,1164,'_wp_attachment_image_alt','Swipe-to-moderate in version 3.0 of WordPress for iOS'), (6507,1164,'_wp_attachment_image_alt','Swipe-to-moderate in version 3.0 of WordPress for iOS'), (6510,1164,'original_post_id','1153'), (6511,1164,'_wp_old_slug','1153'), (6512,1164,'_wp_attachment_image_alt','Swipe-to-moderate in version 3.0 of WordPress for iOS'), (6515,1164,'original_post_id','118'), (6516,1164,'_wp_old_slug','118'), (6517,1701,'pre_import_post_parent','589'), (6518,1701,'pre_import_post_id','591'), (6521,1702,'pre_import_post_parent','643'), (6522,1702,'pre_import_post_id','660'), (6525,1704,'pre_import_post_parent','643'), (6526,1704,'pre_import_post_id','657'), (6529,1868,'pre_import_post_parent','1780'), (6530,1868,'pre_import_post_id','246'), (6531,1868,'_wp_attachment_image_alt','Version 1.5 of WordPress for Windows Phone - showing the updated dashboard'), (6534,633,'pre_import_post_parent','531'), (6535,633,'pre_import_post_id','633'), (6536,633,'_wp_attachment_image_alt','Screenshot of the follow button in the WordPress.com Toolbar'), (6539,717,'pre_import_post_parent','700'), (6540,717,'pre_import_post_id','717'), (6541,717,'_wp_attachment_image_alt','Version 2.2 of WordPress for Android: Featured Images & All-New Stats'), (6544,1219,'original_post_id','1195'), (6545,1219,'_wp_old_slug','1195'), (6546,1219,'pre_import_post_parent','0'), (6547,1219,'pre_import_post_id','1219'), (6551,1336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:28:\"2012/12/wpios-3-3-sounds.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"wpios-3-3-sounds-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"wpios-3-3-sounds-139x300.jpg\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"wpios-3-3-sounds-475x1024.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"wpios-3-3-sounds-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:28:\"wpios-3-3-sounds-804x576.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (6552,1336,'original_post_id','1311'), (6553,1336,'_wp_old_slug','1311'), (6554,1336,'pre_import_post_parent','1311'), (6555,1336,'pre_import_post_id','1336'), (6563,1336,'original_post_id','1311'), (6564,1336,'_wp_old_slug','1311'), (6567,1336,'original_post_id','118'), (6568,1336,'_wp_old_slug','118'), (6571,1219,'original_post_id','1195'), (6572,1219,'_wp_old_slug','1195'), (6575,1219,'original_post_id','118'), (6576,1219,'_wp_old_slug','118'), (6577,1220,'_wp_old_slug','1195'), (6578,1220,'original_post_id','1195'), (6581,1220,'pre_import_post_parent','0'), (6582,1220,'pre_import_post_id','1220'), (6587,1220,'original_post_id','1195'), (6588,1220,'_wp_old_slug','1195'), (6591,1220,'original_post_id','118'), (6592,1220,'_wp_old_slug','118'), (6593,1221,'pre_import_post_parent','0'), (6594,1221,'pre_import_post_id','1221'), (6599,1221,'original_post_id','1195'), (6600,1221,'_wp_old_slug','1195'), (6601,1221,'_wp_old_slug','1195'), (6602,1221,'original_post_id','1195'), (6607,1221,'original_post_id','118'), (6608,1221,'_wp_old_slug','118'), (6609,1222,'pre_import_post_parent','0'), (6610,1222,'pre_import_post_id','1222'), (6613,1222,'original_post_id','1195'), (6614,1222,'_wp_old_slug','1195'), (6618,1222,'original_post_id','1195'), (6619,1222,'_wp_old_slug','1195'), (6623,1222,'original_post_id','118'), (6624,1222,'_wp_old_slug','118'), (6625,1223,'_wp_old_slug','1195'), (6626,1223,'original_post_id','1195'), (6627,1223,'pre_import_post_parent','0'), (6628,1223,'pre_import_post_id','1223'), (6635,1223,'original_post_id','1195'), (6636,1223,'_wp_old_slug','1195'), (6639,1223,'original_post_id','118'), (6640,1223,'_wp_old_slug','118'), (6641,1224,'_wp_old_slug','1195'), (6642,1224,'original_post_id','1195'), (6645,1224,'pre_import_post_parent','0'), (6646,1224,'pre_import_post_id','1224'), (6651,1224,'original_post_id','1195'), (6652,1224,'_wp_old_slug','1195'), (6655,1224,'original_post_id','118'), (6656,1224,'_wp_old_slug','118'), (6659,1225,'pre_import_post_parent','0'), (6660,1225,'pre_import_post_id','1225'), (6665,1225,'original_post_id','1195'), (6666,1225,'_wp_old_slug','1195'), (6667,1225,'original_post_id','1195'), (6668,1225,'_wp_old_slug','1195'), (6671,1225,'original_post_id','118'), (6672,1225,'_wp_old_slug','118'), (6675,1226,'original_post_id','1199'), (6676,1226,'_wp_old_slug','1199'), (6677,1226,'pre_import_post_parent','1199'), (6678,1226,'pre_import_post_id','1226'), (6683,1226,'original_post_id','1199'), (6684,1226,'_wp_old_slug','1199'), (6687,1226,'original_post_id','118'), (6688,1226,'_wp_old_slug','118'), (6689,1227,'_wp_old_slug','1199'), (6690,1227,'original_post_id','1199'), (6693,1227,'pre_import_post_parent','1199'), (6694,1227,'pre_import_post_id','1227'), (6699,1227,'original_post_id','1199'), (6700,1227,'_wp_old_slug','1199'), (6703,1227,'original_post_id','118'), (6704,1227,'_wp_old_slug','118'), (6706,1228,'pre_import_post_parent','1199'), (6707,1228,'pre_import_post_id','1228'), (6712,1228,'original_post_id','1199'), (6713,1228,'_wp_old_slug','1199'), (6714,1228,'original_post_id','1199'), (6715,1228,'_wp_old_slug','1199'), (6719,1228,'original_post_id','118'), (6720,1228,'_wp_old_slug','118'), (6721,1233,'pre_import_post_parent','1199'), (6722,1233,'pre_import_post_id','1233'), (6723,1233,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Updated Interface'), (6726,1233,'original_post_id','1199'), (6727,1233,'_wp_old_slug','1199'), (6728,1233,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Updated Interface'), (6731,1233,'original_post_id','1199'), (6732,1233,'_wp_old_slug','1199'), (6734,1233,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Updated Interface'), (6736,1233,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Updated Interface'), (6739,1233,'original_post_id','118'), (6740,1233,'_wp_old_slug','118'), (6741,1236,'pre_import_post_parent','1199'), (6742,1236,'pre_import_post_id','1236'), (6743,1236,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Panels & Sidebar'), (6746,1236,'_wp_old_slug','1199'), (6747,1236,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Panels & Sidebar'), (6750,1236,'original_post_id','1199'), (6751,1236,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Panels & Sidebar'), (6754,1236,'original_post_id','1199'), (6755,1236,'_wp_old_slug','1199'), (6756,1236,'_wp_attachment_image_alt','Version 3.1 of WordPress for iOS: Panels & Sidebar'), (6759,1236,'original_post_id','118'), (6760,1236,'_wp_old_slug','118'), (6763,1272,'pre_import_post_parent','1250'), (6764,1272,'pre_import_post_id','1272'), (6769,1272,'original_post_id','1250'), (6770,1272,'_wp_old_slug','1250'), (6771,1272,'original_post_id','1250'), (6772,1272,'_wp_old_slug','1250'), (6775,1272,'original_post_id','118'), (6776,1272,'_wp_old_slug','118'), (6777,1871,'_wp_attached_file','2012/11/wpwindowsphone-1-7-new-post.png'), (6778,1274,'pre_import_post_parent','1250'), (6779,1274,'pre_import_post_id','1274'), (6784,1274,'original_post_id','1250'), (6785,1274,'_wp_old_slug','1250'), (6786,1274,'original_post_id','1250'), (6787,1274,'_wp_old_slug','1250'), (6792,1274,'original_post_id','118'), (6793,1274,'_wp_old_slug','118'), (6794,1705,'pre_import_post_parent','700'), (6795,1705,'pre_import_post_id','701'), (6798,1706,'pre_import_post_parent','700'), (6799,1706,'pre_import_post_id','702'), (6802,1869,'pre_import_post_parent','531'), (6803,1869,'pre_import_post_id','606'), (6804,1869,'_wp_attachment_image_alt','WordPress.com Read icon in version 1.6 of WordPress for BlackBerry'), (6807,1870,'pre_import_post_parent','531'), (6808,1870,'pre_import_post_id','611'), (6809,1870,'_wp_attachment_image_alt','Infinite Scroll in version 1.6 of WordPress for BlackBerry'), (6812,286,'pre_import_post_parent','269'), (6813,286,'pre_import_post_id','286'), (6816,287,'pre_import_post_parent','269'), (6817,287,'pre_import_post_id','287'), (6820,289,'pre_import_post_parent','269'), (6821,289,'pre_import_post_id','289'), (6824,316,'pre_import_post_parent','1782'), (6825,316,'pre_import_post_id','316'), (6828,317,'pre_import_post_parent','1782'), (6829,317,'pre_import_post_id','317'), (6832,1277,'pre_import_post_parent','1250'), (6833,1277,'pre_import_post_id','1277'), (6834,1277,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (6837,1277,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (6840,1277,'original_post_id','1250'), (6841,1277,'_wp_old_slug','1250'), (6842,1277,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (6845,1277,'original_post_id','1250'), (6846,1277,'_wp_old_slug','1250'), (6847,1277,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (6850,1277,'original_post_id','118'), (6851,1277,'_wp_old_slug','118'), (6852,1280,'pre_import_post_parent','1250'), (6853,1280,'pre_import_post_id','1280'), (6856,1280,'_wp_old_slug','1250'), (6857,1280,'original_post_id','1250'), (6862,1280,'original_post_id','1250'), (6863,1280,'_wp_old_slug','1250'), (6866,1280,'original_post_id','118'), (6867,1280,'_wp_old_slug','118'), (6868,1286,'original_post_id','1250'), (6869,1286,'_wp_old_slug','1250'), (6871,1286,'pre_import_post_parent','1250'), (6872,1286,'pre_import_post_id','1286'), (6873,1286,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (6876,1286,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (6878,1286,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (6881,1286,'original_post_id','1250'), (6882,1286,'_wp_old_slug','1250'), (6883,1286,'_wp_attachment_image_alt','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications'), (6886,1286,'original_post_id','118'), (6887,1286,'_wp_old_slug','118'), (6888,1302,'original_post_id','1250'), (6889,1302,'_wp_old_slug','1250'), (6891,1302,'pre_import_post_parent','0'), (6892,1302,'pre_import_post_id','1302'), (6895,1302,'original_post_id','1250'), (6896,1302,'_wp_old_slug','1250'), (6898,1302,'original_post_id','118'), (6899,1302,'_wp_old_slug','118'), (6901,1303,'pre_import_post_parent','0'), (6902,1303,'pre_import_post_id','1303'), (6905,1303,'original_post_id','1250'), (6906,1303,'_wp_old_slug','1250'), (6907,1303,'_wp_old_slug','1250'), (6908,1303,'original_post_id','1250'), (6910,1303,'original_post_id','118'), (6911,1303,'_wp_old_slug','118'), (6912,1304,'_wp_old_slug','1250'), (6913,1304,'original_post_id','1250'), (6914,1304,'pre_import_post_parent','0'), (6915,1304,'pre_import_post_id','1304'), (6918,1304,'original_post_id','1250'), (6919,1304,'_wp_old_slug','1250'), (6922,1304,'original_post_id','118'), (6923,1304,'_wp_old_slug','118'), (6924,1305,'original_post_id','1250'), (6925,1305,'_wp_old_slug','1250'), (6927,1305,'pre_import_post_parent','0'), (6928,1305,'pre_import_post_id','1305'), (6931,1305,'original_post_id','1250'), (6932,1305,'_wp_old_slug','1250'), (6934,1305,'original_post_id','118'), (6935,1305,'_wp_old_slug','118'), (6937,1306,'pre_import_post_parent','0'), (6938,1306,'pre_import_post_id','1306'), (6941,1306,'original_post_id','1250'), (6942,1306,'_wp_old_slug','1250'), (6943,1306,'original_post_id','1250'), (6944,1306,'_wp_old_slug','1250'), (6946,1306,'original_post_id','118'), (6947,1306,'_wp_old_slug','118'), (6948,1307,'pre_import_post_parent','0'), (6949,1307,'pre_import_post_id','1307'), (6952,1307,'original_post_id','1250'), (6953,1307,'_wp_old_slug','1250'), (6954,1307,'original_post_id','1250'), (6955,1307,'_wp_old_slug','1250'), (6958,1307,'original_post_id','118'), (6959,1307,'_wp_old_slug','118'), (6960,1308,'pre_import_post_parent','0'), (6961,1308,'pre_import_post_id','1308'), (6963,1308,'original_post_id','1250'), (6964,1308,'_wp_old_slug','1250'), (6966,1308,'original_post_id','1250'), (6967,1308,'_wp_old_slug','1250'), (6970,1308,'original_post_id','118'), (6971,1308,'_wp_old_slug','118'), (6972,1309,'pre_import_post_parent','0'), (6973,1309,'pre_import_post_id','1309'), (6976,1309,'original_post_id','1250'), (6977,1309,'_wp_old_slug','1250'), (6979,1309,'original_post_id','1250'), (6980,1309,'_wp_old_slug','1250'), (6982,1309,'original_post_id','118'), (6983,1309,'_wp_old_slug','118'), (6984,1310,'pre_import_post_parent','0'), (6985,1310,'pre_import_post_id','1310'), (6987,1310,'original_post_id','1250'), (6988,1310,'_wp_old_slug','1250'), (6991,1310,'original_post_id','1250'), (6992,1310,'_wp_old_slug','1250'), (6994,1310,'original_post_id','118'), (6995,1310,'_wp_old_slug','118'), (6998,1317,'pre_import_post_parent','1311'), (6999,1317,'pre_import_post_id','1317'), (7002,1317,'original_post_id','1311'), (7003,1317,'_wp_old_slug','1311'), (7006,1317,'original_post_id','1311'), (7007,1317,'_wp_old_slug','1311'), (7010,1317,'original_post_id','118'), (7011,1317,'_wp_old_slug','118'), (7012,1336,'original_post_id','1311'), (7013,1336,'_wp_old_slug','1311'), (7014,1336,'pre_import_post_parent','1311'), (7015,1336,'pre_import_post_id','1336'), (7022,1336,'original_post_id','1311'), (7023,1336,'_wp_old_slug','1311'), (7026,1336,'original_post_id','118'), (7027,1336,'_wp_old_slug','118'), (7028,1871,'pre_import_post_parent','269'), (7029,1871,'pre_import_post_id','307'), (7030,1871,'_wp_attachment_image_alt','Version 1.7 of WordPress for Windows Phone - New Post device screenshot'), (7033,1871,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1120;s:4:\"file\";s:39:\"2012/11/wpwindowsphone-1-7-new-post.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"wpwindowsphone-1-7-new-post-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"wpwindowsphone-1-7-new-post-160x300.png\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"wpwindowsphone-1-7-new-post-548x1024.png\";s:5:\"width\";i:548;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"wpwindowsphone-1-7-new-post-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:39:\"wpwindowsphone-1-7-new-post-600x576.png\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7034,1871,'pre_import_post_parent','269'), (7035,1871,'pre_import_post_id','307'), (7036,1871,'_wp_attachment_image_alt','Version 1.7 of WordPress for Windows Phone - New Post device screenshot'), (7039,386,'_wp_attached_file','2013/02/03.jpeg'), (7040,386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:15:\"2013/02/03.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"03-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"03-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"03-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:16:\"03-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1347465408;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (7041,386,'pre_import_post_parent','1786'), (7042,386,'pre_import_post_id','386'), (7045,1872,'_wp_attached_file','2013/02/031.jpeg'), (7046,1872,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:16:\"2013/02/031.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"031-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"031-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"031-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"031-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1347465408;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (7047,1872,'pre_import_post_parent','1786'), (7048,1872,'pre_import_post_id','386'), (7051,677,'_wp_attached_file','2013/01/img_000000101.png'), (7052,1873,'_wp_attached_file','2013/01/img_00000010.png'), (7053,677,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:25:\"2013/01/img_000000101.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"img_000000101-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"img_000000101-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"img_000000101-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"img_000000101-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"img_000000101-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'); INSERT INTO `wporg_36_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (7054,677,'pre_import_post_parent','0'), (7055,677,'pre_import_post_id','677'), (7058,1873,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:24:\"2013/01/img_00000010.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"img_00000010-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"img_00000010-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"img_00000010-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"img_00000010-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"img_00000010-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7059,1873,'pre_import_post_parent','0'), (7060,1873,'pre_import_post_id','677'), (7063,678,'_wp_attached_file','2013/01/img_00000012.png'), (7064,1874,'_wp_attached_file','2013/01/img_000000121.png'), (7065,678,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:24:\"2013/01/img_00000012.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"img_00000012-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"img_00000012-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"img_00000012-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"img_00000012-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"img_00000012-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7066,678,'pre_import_post_parent','0'), (7067,678,'pre_import_post_id','678'), (7070,1874,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:25:\"2013/01/img_000000121.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"img_000000121-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"img_000000121-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"img_000000121-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"img_000000121-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"img_000000121-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7071,1874,'pre_import_post_parent','0'), (7072,1874,'pre_import_post_id','678'), (7075,685,'_wp_attached_file','2013/02/wpblackberry-for-blackberry-os10.jpg'), (7076,685,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1103;s:6:\"height\";i:2300;s:4:\"file\";s:44:\"2013/02/wpblackberry-for-blackberry-os10.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"wpblackberry-for-blackberry-os10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"wpblackberry-for-blackberry-os10-143x300.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"wpblackberry-for-blackberry-os10-491x1024.jpg\";s:5:\"width\";i:491;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:44:\"wpblackberry-for-blackberry-os10-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:45:\"wpblackberry-for-blackberry-os10-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (7077,685,'pre_import_post_parent','667'), (7078,685,'pre_import_post_id','685'), (7079,685,'_wp_attachment_image_alt','WordPress for BlackBerry OS 10'), (7082,1875,'_wp_attached_file','2013/02/wpblackberry-for-blackberry-os101.jpg'), (7083,1875,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1103;s:6:\"height\";i:2300;s:4:\"file\";s:45:\"2013/02/wpblackberry-for-blackberry-os101.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"wpblackberry-for-blackberry-os101-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"wpblackberry-for-blackberry-os101-143x300.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"wpblackberry-for-blackberry-os101-491x1024.jpg\";s:5:\"width\";i:491;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"wpblackberry-for-blackberry-os101-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"wpblackberry-for-blackberry-os101-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (7084,1875,'pre_import_post_parent','667'), (7085,1875,'pre_import_post_id','685'), (7086,1875,'_wp_attachment_image_alt','WordPress for BlackBerry OS 10'), (7089,748,'_wp_attached_file','2013/01/2-2-6.png'), (7090,748,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:17:\"2013/01/2-2-6.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"2-2-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"2-2-6-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"2-2-6-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"2-2-6-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"2-2-6-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7091,748,'pre_import_post_parent','0'), (7092,748,'pre_import_post_id','748'), (7095,1876,'_wp_attached_file','2013/01/2-2-61.png'), (7096,1876,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:18:\"2013/01/2-2-61.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"2-2-61-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"2-2-61-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"2-2-61-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"2-2-61-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"2-2-61-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7097,1876,'pre_import_post_parent','0'), (7098,1876,'pre_import_post_id','748'), (7101,1353,'_wp_attached_file','2013/02/wpios-3-4-notifications.jpg'), (7102,1353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:35:\"2013/02/wpios-3-4-notifications.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"wpios-3-4-notifications-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"wpios-3-4-notifications-139x300.jpg\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"wpios-3-4-notifications-475x1024.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"wpios-3-4-notifications-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"wpios-3-4-notifications-804x576.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7103,1353,'original_post_id','1345'), (7105,1353,'pre_import_post_parent','1345'), (7106,1353,'pre_import_post_id','1353'), (7109,1353,'_wp_old_slug','1345'), (7113,1353,'original_post_id','1345'), (7114,1353,'_wp_old_slug','1345'), (7117,1353,'original_post_id','118'), (7118,1353,'_wp_old_slug','118'), (7119,1385,'_wp_attached_file','2013/02/wpios-3-5-better-previews.jpg'), (7120,1877,'_wp_attached_file','2013/02/wpios-3-4-notifications1.jpg'), (7121,1385,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:37:\"2013/02/wpios-3-5-better-previews.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"wpios-3-5-better-previews-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"wpios-3-5-better-previews-139x300.jpg\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"wpios-3-5-better-previews-475x1024.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"wpios-3-5-better-previews-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"wpios-3-5-better-previews-804x576.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7122,1385,'pre_import_post_parent','1376'), (7123,1385,'pre_import_post_id','1385'), (7124,1385,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Better Previews & Autosave'), (7129,1385,'original_post_id','1376'), (7130,1385,'_wp_old_slug','1376'), (7131,1385,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Better Previews & Autosave'), (7132,1385,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Better Previews & Autosave'), (7135,1385,'original_post_id','1376'), (7136,1385,'_wp_old_slug','1376'), (7137,1385,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Better Previews & Autosave'), (7140,1385,'original_post_id','118'), (7141,1385,'_wp_old_slug','118'), (7142,1877,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:36:\"2013/02/wpios-3-4-notifications1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"wpios-3-4-notifications1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"wpios-3-4-notifications1-139x300.jpg\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"wpios-3-4-notifications1-475x1024.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"wpios-3-4-notifications1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"wpios-3-4-notifications1-804x576.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7143,1877,'original_post_id','1345'), (7145,1877,'pre_import_post_parent','1345'), (7146,1877,'pre_import_post_id','1353'), (7149,1877,'_wp_old_slug','1345'), (7153,1877,'original_post_id','1345'), (7154,1877,'_wp_old_slug','1345'), (7157,1877,'original_post_id','118'), (7158,1877,'_wp_old_slug','118'), (7159,1385,'pre_import_post_parent','1376'), (7160,1385,'pre_import_post_id','1385'), (7161,1385,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Better Previews & Autosave'), (7166,1385,'original_post_id','1376'), (7167,1385,'_wp_old_slug','1376'), (7168,1385,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Better Previews & Autosave'), (7169,1385,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Better Previews & Autosave'), (7172,1385,'original_post_id','1376'), (7173,1385,'_wp_old_slug','1376'), (7174,1385,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Better Previews & Autosave'), (7177,1385,'original_post_id','118'), (7178,1385,'_wp_old_slug','118'), (7179,1395,'_wp_attached_file','2013/02/wpios-3-5-autosave1.jpg'), (7180,1878,'_wp_attached_file','2013/02/wpios-3-5-autosave11.jpg'), (7181,1395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:286;s:4:\"file\";s:31:\"2013/02/wpios-3-5-autosave1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"wpios-3-5-autosave1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"wpios-3-5-autosave1-300x134.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7182,1395,'original_post_id','1376'), (7183,1395,'_wp_old_slug','1376'), (7184,1395,'pre_import_post_parent','1376'), (7185,1395,'pre_import_post_id','1395'), (7186,1395,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Autosave'), (7189,1395,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Autosave'), (7192,1395,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Autosave'), (7195,1395,'original_post_id','1376'), (7196,1395,'_wp_old_slug','1376'), (7197,1395,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Autosave'), (7200,1395,'original_post_id','118'), (7201,1395,'_wp_old_slug','118'), (7202,1878,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:286;s:4:\"file\";s:32:\"2013/02/wpios-3-5-autosave11.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"wpios-3-5-autosave11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"wpios-3-5-autosave11-300x134.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7203,1878,'original_post_id','1376'), (7204,1878,'_wp_old_slug','1376'), (7205,1878,'pre_import_post_parent','1376'), (7206,1878,'pre_import_post_id','1395'), (7207,1878,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Autosave'), (7210,1878,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Autosave'), (7213,1878,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Autosave'), (7216,1878,'original_post_id','1376'), (7217,1878,'_wp_old_slug','1376'), (7218,1878,'_wp_attachment_image_alt','Version 3.5 of WordPress for iOS: Autosave'), (7221,1878,'original_post_id','118'), (7222,1878,'_wp_old_slug','118'), (7223,1400,'_wp_attached_file','2013/02/wpios-3-5-draft-previews-plus-autosave.jpg'), (7224,1400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:50:\"2013/02/wpios-3-5-draft-previews-plus-autosave.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"wpios-3-5-draft-previews-plus-autosave-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"wpios-3-5-draft-previews-plus-autosave-139x300.jpg\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"wpios-3-5-draft-previews-plus-autosave-475x1024.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"wpios-3-5-draft-previews-plus-autosave-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:50:\"wpios-3-5-draft-previews-plus-autosave-804x576.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7225,1400,'original_post_id','1376'), (7226,1400,'_wp_old_slug','1376'), (7229,1400,'pre_import_post_parent','1376'), (7230,1400,'pre_import_post_id','1400'), (7235,1400,'original_post_id','1376'), (7236,1400,'_wp_old_slug','1376'), (7239,1400,'original_post_id','118'), (7240,1400,'_wp_old_slug','118'), (7241,1879,'_wp_attached_file','2013/02/wpios-3-5-draft-previews-plus-autosave1.jpg'), (7242,1879,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:51:\"2013/02/wpios-3-5-draft-previews-plus-autosave1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"wpios-3-5-draft-previews-plus-autosave1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"wpios-3-5-draft-previews-plus-autosave1-139x300.jpg\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"wpios-3-5-draft-previews-plus-autosave1-475x1024.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"wpios-3-5-draft-previews-plus-autosave1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:51:\"wpios-3-5-draft-previews-plus-autosave1-804x576.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7243,1879,'original_post_id','1376'), (7244,1879,'_wp_old_slug','1376'), (7247,1879,'pre_import_post_parent','1376'), (7248,1879,'pre_import_post_id','1400'), (7253,1879,'original_post_id','1376'), (7254,1879,'_wp_old_slug','1376'), (7257,1879,'original_post_id','118'), (7258,1879,'_wp_old_slug','118'), (7259,1402,'_wp_attached_file','2013/02/wpios-3-5-draft-previews-plus-autosave1.png'), (7260,1880,'_wp_attached_file','2013/02/wpios-3-5-draft-previews-plus-autosave.png'), (7261,1880,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:50:\"2013/02/wpios-3-5-draft-previews-plus-autosave.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"wpios-3-5-draft-previews-plus-autosave-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"wpios-3-5-draft-previews-plus-autosave-139x300.png\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"wpios-3-5-draft-previews-plus-autosave-475x1024.png\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"wpios-3-5-draft-previews-plus-autosave-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:50:\"wpios-3-5-draft-previews-plus-autosave-804x576.png\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7262,1880,'_wp_old_slug','1376'), (7263,1880,'original_post_id','1376'), (7266,1880,'pre_import_post_parent','1376'), (7267,1880,'pre_import_post_id','1402'), (7272,1880,'original_post_id','1376'), (7273,1880,'_wp_old_slug','1376'), (7276,1880,'original_post_id','118'), (7277,1880,'_wp_old_slug','118'), (7278,1402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:51:\"2013/02/wpios-3-5-draft-previews-plus-autosave1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"wpios-3-5-draft-previews-plus-autosave1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"wpios-3-5-draft-previews-plus-autosave1-139x300.png\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"wpios-3-5-draft-previews-plus-autosave1-475x1024.png\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"wpios-3-5-draft-previews-plus-autosave1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:51:\"wpios-3-5-draft-previews-plus-autosave1-804x576.png\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7279,1402,'_wp_old_slug','1376'), (7280,1402,'original_post_id','1376'), (7283,1402,'pre_import_post_parent','1376'), (7284,1402,'pre_import_post_id','1402'), (7289,1402,'original_post_id','1376'), (7290,1402,'_wp_old_slug','1376'), (7293,1402,'original_post_id','118'), (7294,1402,'_wp_old_slug','118'), (7295,1881,'_wp_attached_file','2013/01/img_00000007.png'), (7296,1882,'_wp_attached_file','2013/01/img_000000071.png'), (7297,1881,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:24:\"2013/01/img_00000007.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"img_00000007-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"img_00000007-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"img_00000007-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"img_00000007-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"img_00000007-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7298,1881,'pre_import_post_parent','0'), (7299,1881,'pre_import_post_id','674'), (7302,1882,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:25:\"2013/01/img_000000071.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"img_000000071-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"img_000000071-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"img_000000071-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"img_000000071-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"img_000000071-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7303,1882,'pre_import_post_parent','0'), (7304,1882,'pre_import_post_id','674'), (7307,1883,'_wp_attached_file','2013/01/img_00000008.png'), (7308,1884,'_wp_attached_file','2013/01/img_000000081.png'), (7309,1883,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:24:\"2013/01/img_00000008.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"img_00000008-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"img_00000008-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"img_00000008-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"img_00000008-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"img_00000008-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7310,1883,'pre_import_post_parent','0'), (7311,1883,'pre_import_post_id','675'), (7314,1884,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:25:\"2013/01/img_000000081.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"img_000000081-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"img_000000081-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"img_000000081-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"img_000000081-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"img_000000081-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7315,1884,'pre_import_post_parent','0'), (7316,1884,'pre_import_post_id','675'), (7319,1885,'_wp_attached_file','2013/01/img_00000005.png'), (7320,1885,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:24:\"2013/01/img_00000005.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"img_00000005-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"img_00000005-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"img_00000005-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"img_00000005-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"img_00000005-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7321,1885,'pre_import_post_parent','0'), (7322,1885,'pre_import_post_id','673'), (7325,1886,'_wp_attached_file','2013/01/img_000000051.png'), (7326,1886,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:25:\"2013/01/img_000000051.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"img_000000051-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"img_000000051-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"img_000000051-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"img_000000051-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"img_000000051-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7327,1886,'pre_import_post_parent','0'), (7328,1886,'pre_import_post_id','673'), (7331,1887,'_wp_attached_file','2013/01/img_00000009.png'), (7332,1887,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:24:\"2013/01/img_00000009.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"img_00000009-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"img_00000009-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"img_00000009-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"img_00000009-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"img_00000009-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7333,1887,'pre_import_post_parent','0'), (7334,1887,'pre_import_post_id','676'), (7337,1888,'_wp_attached_file','2013/01/img_000000091.png'), (7338,1888,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:25:\"2013/01/img_000000091.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"img_000000091-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"img_000000091-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"img_000000091-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"img_000000091-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"img_000000091-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7339,1888,'pre_import_post_parent','0'), (7340,1888,'pre_import_post_id','676'), (7343,1889,'_wp_attached_file','2013/02/wpblackberry-now-for-blackberry-os10.jpg'), (7344,1889,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1103;s:6:\"height\";i:2300;s:4:\"file\";s:48:\"2013/02/wpblackberry-now-for-blackberry-os10.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"wpblackberry-now-for-blackberry-os10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"wpblackberry-now-for-blackberry-os10-143x300.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"wpblackberry-now-for-blackberry-os10-491x1024.jpg\";s:5:\"width\";i:491;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"wpblackberry-now-for-blackberry-os10-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:49:\"wpblackberry-now-for-blackberry-os10-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (7345,1889,'pre_import_post_parent','0'), (7346,1889,'pre_import_post_id','684'), (7349,1890,'_wp_attached_file','2013/02/wpblackberry-now-for-blackberry-os101.jpg'), (7350,1890,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1103;s:6:\"height\";i:2300;s:4:\"file\";s:49:\"2013/02/wpblackberry-now-for-blackberry-os101.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"wpblackberry-now-for-blackberry-os101-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"wpblackberry-now-for-blackberry-os101-143x300.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"wpblackberry-now-for-blackberry-os101-491x1024.jpg\";s:5:\"width\";i:491;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"wpblackberry-now-for-blackberry-os101-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:50:\"wpblackberry-now-for-blackberry-os101-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (7351,1890,'pre_import_post_parent','0'), (7352,1890,'pre_import_post_id','684'), (7355,1891,'_wp_attached_file','2012/12/screen-capture.jpg'), (7356,1891,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2012/12/screen-capture.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"screen-capture-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"screen-capture-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"screen-capture-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:26:\"screen-capture-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7357,1891,'pre_import_post_parent','1782'), (7358,1891,'pre_import_post_id','318'), (7361,1892,'_wp_attached_file','2012/12/screen-capture1.jpg'), (7362,1892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2012/12/screen-capture1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"screen-capture1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"screen-capture1-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"screen-capture1-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:27:\"screen-capture1-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7363,1892,'pre_import_post_parent','1782'), (7364,1892,'pre_import_post_id','318'), (7367,1893,'_wp_attached_file','2012/12/wpwindowsphone-1-8-comment-moderation.png'), (7368,1893,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1120;s:4:\"file\";s:49:\"2012/12/wpwindowsphone-1-8-comment-moderation.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"wpwindowsphone-1-8-comment-moderation-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"wpwindowsphone-1-8-comment-moderation-160x300.png\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"wpwindowsphone-1-8-comment-moderation-548x1024.png\";s:5:\"width\";i:548;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"wpwindowsphone-1-8-comment-moderation-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:49:\"wpwindowsphone-1-8-comment-moderation-600x576.png\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7369,1893,'pre_import_post_parent','1782'), (7370,1893,'pre_import_post_id','347'), (7373,1894,'_wp_attached_file','2013/02/02.jpeg'), (7374,1895,'_wp_attached_file','2012/12/wpwindowsphone-1-8-comment-moderation1.png'), (7375,1894,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:555;s:4:\"file\";s:15:\"2013/02/02.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"02-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"02-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"02-370x372.jpeg\";s:5:\"width\";i:370;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7376,1894,'pre_import_post_parent','1786'), (7377,1894,'pre_import_post_id','385'), (7380,1895,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1120;s:4:\"file\";s:50:\"2012/12/wpwindowsphone-1-8-comment-moderation1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"wpwindowsphone-1-8-comment-moderation1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"wpwindowsphone-1-8-comment-moderation1-160x300.png\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"wpwindowsphone-1-8-comment-moderation1-548x1024.png\";s:5:\"width\";i:548;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"wpwindowsphone-1-8-comment-moderation1-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:50:\"wpwindowsphone-1-8-comment-moderation1-600x576.png\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7381,1895,'pre_import_post_parent','1782'), (7382,1895,'pre_import_post_id','347'), (7385,1894,'pre_import_post_parent','1786'), (7386,1894,'pre_import_post_id','385'), (7389,2249,'_wp_attached_file','2013/01/featured.jpg'), (7390,2249,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2013/01/featured.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"featured-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"featured-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"featured-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"featured-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7391,2249,'pre_import_post_parent','358'), (7392,2249,'pre_import_post_id','365'), (7395,2250,'_wp_attached_file','2013/01/featured1.jpg'), (7396,2250,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2013/01/featured1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"featured1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"featured1-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"featured1-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"featured1-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7397,2250,'pre_import_post_parent','358'), (7398,2250,'pre_import_post_id','365'), (7401,2251,'_wp_attached_file','2013/01/wpwindowsphone-1-8-featured-images-editor-reliability1.png'), (7402,2252,'_wp_attached_file','2013/01/wpwindowsphone-1-8-featured-images-editor-reliability.png'), (7403,2252,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1120;s:4:\"file\";s:65:\"2013/01/wpwindowsphone-1-8-featured-images-editor-reliability.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"wpwindowsphone-1-8-featured-images-editor-reliability-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"wpwindowsphone-1-8-featured-images-editor-reliability-160x300.png\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"wpwindowsphone-1-8-featured-images-editor-reliability-548x1024.png\";s:5:\"width\";i:548;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:65:\"wpwindowsphone-1-8-featured-images-editor-reliability-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:65:\"wpwindowsphone-1-8-featured-images-editor-reliability-600x576.png\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7404,2252,'pre_import_post_parent','358'), (7405,2252,'pre_import_post_id','376'), (7408,2251,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1120;s:4:\"file\";s:66:\"2013/01/wpwindowsphone-1-8-featured-images-editor-reliability1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"wpwindowsphone-1-8-featured-images-editor-reliability1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"wpwindowsphone-1-8-featured-images-editor-reliability1-160x300.png\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:67:\"wpwindowsphone-1-8-featured-images-editor-reliability1-548x1024.png\";s:5:\"width\";i:548;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:66:\"wpwindowsphone-1-8-featured-images-editor-reliability1-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:66:\"wpwindowsphone-1-8-featured-images-editor-reliability1-600x576.png\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7409,2251,'pre_import_post_parent','358'), (7410,2251,'pre_import_post_id','376'), (7413,387,'_wp_attached_file','2013/02/04.jpeg'), (7414,2253,'_wp_attached_file','2013/02/041.jpeg'), (7415,387,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:15:\"2013/02/04.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"04-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"04-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"04-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:16:\"04-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:4;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 40D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1347619844;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7416,387,'pre_import_post_parent','1786'), (7417,387,'pre_import_post_id','387'), (7420,2253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:16:\"2013/02/041.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"041-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"041-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"041-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"041-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:4;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 40D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1347619844;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7421,2253,'pre_import_post_parent','1786'), (7422,2253,'pre_import_post_id','387'), (7425,389,'_wp_attached_file','2013/02/061.jpeg'), (7426,389,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:709;s:4:\"file\";s:16:\"2013/02/061.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"061-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"061-300x212.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"061-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"061-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7427,389,'pre_import_post_parent','1786'), (7428,389,'pre_import_post_id','389'), (7431,2254,'_wp_attached_file','2013/02/06.jpeg'), (7432,2254,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:709;s:4:\"file\";s:15:\"2013/02/06.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"06-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"06-300x212.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"06-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:16:\"06-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7433,2254,'pre_import_post_parent','1786'), (7434,2254,'pre_import_post_id','389'), (7437,391,'_wp_attached_file','2013/02/08.jpeg'), (7438,391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:15:\"2013/02/08.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"08-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"08-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"08-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:16:\"08-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 40D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1347611275;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"179\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:9:\"0.0003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7439,391,'pre_import_post_parent','1786'), (7440,391,'pre_import_post_id','391'), (7443,2255,'_wp_attached_file','2013/02/081.jpeg'), (7444,2255,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:16:\"2013/02/081.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"081-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"081-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"081-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"081-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 40D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1347611275;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"179\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:9:\"0.0003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7445,2255,'pre_import_post_parent','1786'), (7446,2255,'pre_import_post_id','391'), (7449,392,'_wp_attached_file','2013/02/09.jpeg'), (7450,2256,'_wp_attached_file','2013/02/091.jpeg'), (7451,392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:15:\"2013/02/09.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"09-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"09-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"09-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:16:\"09-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7452,392,'pre_import_post_parent','1786'), (7453,392,'pre_import_post_id','392'), (7456,2256,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:16:\"2013/02/091.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"091-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"091-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"091-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"091-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7457,2256,'pre_import_post_parent','1786'), (7458,2256,'pre_import_post_id','392'), (7461,2257,'_wp_attached_file','2013/02/01-dashboard.png'), (7462,400,'_wp_attached_file','2013/02/01-dashboard.png'), (7463,400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2013/02/01-dashboard.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"01-dashboard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"01-dashboard-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"01-dashboard-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"01-dashboard-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7464,400,'pre_import_post_parent','1786'), (7465,400,'pre_import_post_id','400'), (7468,2257,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2013/02/01-dashboard.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"01-dashboard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"01-dashboard-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"01-dashboard-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"01-dashboard-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7469,2257,'pre_import_post_parent','1786'), (7470,2257,'pre_import_post_id','400'), (7473,403,'_wp_attached_file','2013/02/04-gellery-settings.jpg'), (7474,403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2013/02/04-gellery-settings.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"04-gellery-settings-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"04-gellery-settings-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"04-gellery-settings-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"04-gellery-settings-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7475,403,'pre_import_post_parent','1786'), (7476,403,'pre_import_post_id','403'), (7479,2258,'_wp_attached_file','2013/02/04-gellery-settings1.jpg'), (7480,2258,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:32:\"2013/02/04-gellery-settings1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"04-gellery-settings1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"04-gellery-settings1-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"04-gellery-settings1-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:32:\"04-gellery-settings1-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7481,2258,'pre_import_post_parent','1786'), (7482,2258,'pre_import_post_id','403'), (7485,422,'_wp_attached_file','2013/02/wpwindowsphone-2-0-dashboard-and-website-access.png'), (7486,2259,'_wp_attached_file','2013/02/wpwindowsphone-2-0-dashboard-and-website-access1.png'), (7487,422,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1120;s:4:\"file\";s:59:\"2013/02/wpwindowsphone-2-0-dashboard-and-website-access.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"wpwindowsphone-2-0-dashboard-and-website-access-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"wpwindowsphone-2-0-dashboard-and-website-access-160x300.png\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"wpwindowsphone-2-0-dashboard-and-website-access-548x1024.png\";s:5:\"width\";i:548;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:59:\"wpwindowsphone-2-0-dashboard-and-website-access-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:59:\"wpwindowsphone-2-0-dashboard-and-website-access-600x576.png\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7488,422,'pre_import_post_parent','1786'), (7489,422,'pre_import_post_id','422'), (7490,422,'_wp_attachment_image_alt','Version 2.0 of WordPress for Windows Phone: Dashboard and Website Access'), (7493,2259,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1120;s:4:\"file\";s:60:\"2013/02/wpwindowsphone-2-0-dashboard-and-website-access1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"wpwindowsphone-2-0-dashboard-and-website-access1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"wpwindowsphone-2-0-dashboard-and-website-access1-160x300.png\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"wpwindowsphone-2-0-dashboard-and-website-access1-548x1024.png\";s:5:\"width\";i:548;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:60:\"wpwindowsphone-2-0-dashboard-and-website-access1-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:60:\"wpwindowsphone-2-0-dashboard-and-website-access1-600x576.png\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7494,2259,'pre_import_post_parent','1786'), (7495,2259,'pre_import_post_id','422'), (7496,2259,'_wp_attachment_image_alt','Version 2.0 of WordPress for Windows Phone: Dashboard and Website Access'), (7499,435,'_wp_attached_file','2013/04/ve-01.jpg'), (7500,2260,'_wp_attached_file','2013/04/ve-011.jpg'), (7501,435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:17:\"2013/04/ve-01.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"ve-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"ve-01-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"ve-01-614x1024.jpg\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"ve-01-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"ve-01-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7502,435,'pre_import_post_parent','429'), (7503,435,'pre_import_post_id','435'), (7506,2260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:18:\"2013/04/ve-011.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ve-011-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"ve-011-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"ve-011-614x1024.jpg\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"ve-011-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"ve-011-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7507,2260,'pre_import_post_parent','429'), (7508,2260,'pre_import_post_id','435'), (7511,436,'_wp_attached_file','2013/04/ve-02.jpg'), (7512,2261,'_wp_attached_file','2013/04/ve-021.jpg'), (7513,436,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:17:\"2013/04/ve-02.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"ve-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"ve-02-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"ve-02-614x1024.jpg\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"ve-02-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"ve-02-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7514,436,'pre_import_post_parent','429'), (7515,436,'pre_import_post_id','436'), (7518,2261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:18:\"2013/04/ve-021.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ve-021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"ve-021-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"ve-021-614x1024.jpg\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"ve-021-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"ve-021-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7519,2261,'pre_import_post_parent','429'), (7520,2261,'pre_import_post_id','436'), (7523,438,'_wp_attached_file','2013/04/ve-04.png'), (7524,438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:17:\"2013/04/ve-04.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"ve-04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"ve-04-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"ve-04-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"ve-04-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"ve-04-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7525,438,'pre_import_post_parent','429'), (7526,438,'pre_import_post_id','438'), (7529,2262,'_wp_attached_file','2013/04/ve-041.png'), (7530,2262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:18:\"2013/04/ve-041.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ve-041-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"ve-041-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"ve-041-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"ve-041-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"ve-041-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7531,2262,'pre_import_post_parent','429'), (7532,2262,'pre_import_post_id','438'), (7535,442,'_wp_attached_file','2013/04/ve-70.png'), (7536,442,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:17:\"2013/04/ve-70.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"ve-70-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"ve-70-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"ve-70-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"ve-70-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"ve-70-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7537,442,'pre_import_post_parent','429'), (7538,442,'pre_import_post_id','442'), (7541,761,'_wp_attached_file','2013/04/action-bar.jpg'), (7542,2263,'_wp_attached_file','2013/04/ve-701.png'), (7543,761,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:146;s:4:\"file\";s:22:\"2013/04/action-bar.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"action-bar-150x146.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"action-bar-300x60.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"action-bar-672x146.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7544,761,'pre_import_post_parent','759'), (7545,761,'pre_import_post_id','761'), (7548,2263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:18:\"2013/04/ve-701.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ve-701-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"ve-701-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"ve-701-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"ve-701-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"ve-701-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7549,2263,'pre_import_post_parent','429'), (7550,2263,'pre_import_post_id','442'), (7553,761,'pre_import_post_parent','759'), (7554,761,'pre_import_post_id','761'), (7557,2264,'_wp_attached_file','2013/02/05.jpeg'), (7558,2264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:15:\"2013/02/05.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"05-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"05-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"05-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:16:\"05-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7559,2264,'pre_import_post_parent','1786'), (7560,2264,'pre_import_post_id','388'), (7563,2265,'_wp_attached_file','2013/02/051.jpeg'), (7564,2265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:16:\"2013/02/051.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"051-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"051-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"051-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"051-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7565,2265,'pre_import_post_parent','1786'), (7566,2265,'pre_import_post_id','388'), (7569,2266,'_wp_attached_file','2013/04/ve-00.png'), (7570,2266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1120;s:4:\"file\";s:17:\"2013/04/ve-00.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"ve-00-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"ve-00-160x300.png\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"ve-00-548x1024.png\";s:5:\"width\";i:548;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"ve-00-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"ve-00-600x576.png\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7571,2266,'pre_import_post_parent','429'), (7572,2266,'pre_import_post_id','433'), (7575,2267,'_wp_attached_file','2013/02/02-write-screen.jpg'), (7576,2267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2013/02/02-write-screen.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"02-write-screen-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"02-write-screen-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"02-write-screen-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:27:\"02-write-screen-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7577,2267,'pre_import_post_parent','1786'), (7578,2267,'pre_import_post_id','401'), (7581,2268,'_wp_attached_file','2013/04/ve-001.png'), (7582,2269,'_wp_attached_file','2013/02/03-gallery-settings.jpg'), (7583,2268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1120;s:4:\"file\";s:18:\"2013/04/ve-001.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ve-001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"ve-001-160x300.png\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"ve-001-548x1024.png\";s:5:\"width\";i:548;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"ve-001-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"ve-001-600x576.png\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7584,2268,'pre_import_post_parent','429'), (7585,2268,'pre_import_post_id','433'), (7588,2267,'pre_import_post_parent','1786'), (7589,2267,'pre_import_post_id','401'), (7592,2269,'pre_import_post_parent','1786'), (7593,2269,'pre_import_post_id','402'), (7596,2269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2013/02/03-gallery-settings.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"03-gallery-settings-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"03-gallery-settings-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"03-gallery-settings-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"03-gallery-settings-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7597,2269,'pre_import_post_parent','1786'), (7598,2269,'pre_import_post_id','402'), (7601,2270,'_wp_attached_file','2013/02/07.jpeg'), (7602,2270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:15:\"2013/02/07.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"07-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"07-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"07-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:16:\"07-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7603,2270,'pre_import_post_parent','1786'), (7604,2270,'pre_import_post_id','390'), (7607,2271,'_wp_attached_file','2013/02/071.jpeg'), (7608,2271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:16:\"2013/02/071.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"071-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"071-300x199.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"071-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"071-1000x576.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7609,2271,'pre_import_post_parent','1786'), (7610,2271,'pre_import_post_id','390'), (7613,2272,'_wp_attached_file','2013/04/pns-01.jpg'), (7614,2272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2013/04/pns-01.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"pns-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"pns-01-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"pns-01-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"pns-01-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7615,2272,'pre_import_post_parent','429'), (7616,2272,'pre_import_post_id','439'), (7619,2273,'_wp_attached_file','2013/04/pns-011.jpg'), (7620,2273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2013/04/pns-011.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"pns-011-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"pns-011-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"pns-011-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:19:\"pns-011-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7621,2273,'pre_import_post_parent','429'), (7622,2273,'pre_import_post_id','439'), (7625,2274,'_wp_attached_file','2013/04/pns-02.jpg'), (7626,2274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2013/04/pns-02.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"pns-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"pns-02-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"pns-02-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"pns-02-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7627,2274,'pre_import_post_parent','429'), (7628,2274,'pre_import_post_id','440'), (7631,2275,'_wp_attached_file','2013/04/pns-021.jpg'), (7632,2275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2013/04/pns-021.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"pns-021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"pns-021-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"pns-021-480x372.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:19:\"pns-021-480x576.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7633,2275,'pre_import_post_parent','429'), (7634,2275,'pre_import_post_id','440'), (7637,2276,'_wp_attached_file','2013/02/wpwindowsphone-2-0-gallery-support.png'), (7638,2276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1120;s:4:\"file\";s:46:\"2013/02/wpwindowsphone-2-0-gallery-support.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"wpwindowsphone-2-0-gallery-support-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"wpwindowsphone-2-0-gallery-support-160x300.png\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"wpwindowsphone-2-0-gallery-support-548x1024.png\";s:5:\"width\";i:548;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"wpwindowsphone-2-0-gallery-support-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"wpwindowsphone-2-0-gallery-support-600x576.png\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7639,2276,'pre_import_post_parent','1786'), (7640,2276,'pre_import_post_id','412'), (7643,2277,'_wp_attached_file','2013/02/wpwindowsphone-2-0-gallery-support1.png'), (7644,2277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1120;s:4:\"file\";s:47:\"2013/02/wpwindowsphone-2-0-gallery-support1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"wpwindowsphone-2-0-gallery-support1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"wpwindowsphone-2-0-gallery-support1-160x300.png\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"wpwindowsphone-2-0-gallery-support1-548x1024.png\";s:5:\"width\";i:548;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:47:\"wpwindowsphone-2-0-gallery-support1-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:47:\"wpwindowsphone-2-0-gallery-support1-600x576.png\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7645,2277,'pre_import_post_parent','1786'), (7646,2277,'pre_import_post_id','412'), (7649,763,'_wp_attached_file','2013/04/galaxys3-reader-port.png'), (7650,763,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:1280;s:4:\"file\";s:32:\"2013/04/galaxys3-reader-port.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"galaxys3-reader-port-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"galaxys3-reader-port-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"galaxys3-reader-port-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"galaxys3-reader-port-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:32:\"galaxys3-reader-port-720x576.png\";s:5:\"width\";i:720;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7651,763,'pre_import_post_parent','759'), (7652,763,'pre_import_post_id','763'), (7655,2278,'_wp_attached_file','2013/04/galaxys3-reader-port1.png'), (7656,2278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:1280;s:4:\"file\";s:33:\"2013/04/galaxys3-reader-port1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"galaxys3-reader-port1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"galaxys3-reader-port1-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"galaxys3-reader-port1-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"galaxys3-reader-port1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:33:\"galaxys3-reader-port1-720x576.png\";s:5:\"width\";i:720;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7657,2278,'pre_import_post_parent','759'), (7658,2278,'pre_import_post_id','763'), (7661,764,'_wp_attached_file','2013/04/galaxys3-posts-port-open.png'), (7662,764,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:1280;s:4:\"file\";s:36:\"2013/04/galaxys3-posts-port-open.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"galaxys3-posts-port-open-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"galaxys3-posts-port-open-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"galaxys3-posts-port-open-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"galaxys3-posts-port-open-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"galaxys3-posts-port-open-720x576.png\";s:5:\"width\";i:720;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7663,764,'pre_import_post_parent','759'), (7664,764,'pre_import_post_id','764'), (7667,2279,'_wp_attached_file','2013/04/galaxys3-posts-port-open1.png'), (7668,2279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:1280;s:4:\"file\";s:37:\"2013/04/galaxys3-posts-port-open1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"galaxys3-posts-port-open1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"galaxys3-posts-port-open1-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"galaxys3-posts-port-open1-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"galaxys3-posts-port-open1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"galaxys3-posts-port-open1-720x576.png\";s:5:\"width\";i:720;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7669,2279,'pre_import_post_parent','759'), (7670,2279,'pre_import_post_id','764'), (7673,776,'_wp_attached_file','2013/04/nexus10-posts1.png'), (7674,776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1600;s:4:\"file\";s:26:\"2013/04/nexus10-posts1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"nexus10-posts1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"nexus10-posts1-300x187.png\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"nexus10-posts1-1024x640.png\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"nexus10-posts1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:27:\"nexus10-posts1-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7675,776,'pre_import_post_parent','759'), (7676,776,'pre_import_post_id','776'), (7679,811,'_wp_attached_file','2013/04/featured-graphic.jpg'), (7680,811,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:1231;s:4:\"file\";s:28:\"2013/04/featured-graphic.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"featured-graphic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"featured-graphic-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"featured-graphic-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"featured-graphic-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"featured-graphic-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7681,811,'pre_import_post_parent','1689'), (7682,811,'pre_import_post_id','811'), (7683,811,'_wp_attachment_image_alt','WordPress for Android on a Galaxy S3, a Nexus 7, and a Nexus 10'), (7686,2280,'_wp_attached_file','2013/04/featured-graphic1.jpg'), (7687,2280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:1231;s:4:\"file\";s:29:\"2013/04/featured-graphic1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"featured-graphic1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"featured-graphic1-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"featured-graphic1-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"featured-graphic1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"featured-graphic1-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7688,2280,'pre_import_post_parent','1689'), (7689,2280,'pre_import_post_id','811'), (7690,2280,'_wp_attachment_image_alt','WordPress for Android on a Galaxy S3, a Nexus 7, and a Nexus 10'), (7693,814,'_wp_attached_file','2013/04/featured-graphic-holo-update.jpg'), (7694,814,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:1231;s:4:\"file\";s:40:\"2013/04/featured-graphic-holo-update.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"featured-graphic-holo-update-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"featured-graphic-holo-update-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"featured-graphic-holo-update-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"featured-graphic-holo-update-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:41:\"featured-graphic-holo-update-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7695,814,'pre_import_post_parent','1689'), (7696,814,'pre_import_post_id','814'), (7697,814,'_wp_attachment_image_alt','WordPress for Android on a Galaxy S3, a Nexus 7, and a Nexus 10'), (7700,2281,'_wp_attached_file','2013/04/featured-graphic-holo-update1.jpg'), (7701,2281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:1231;s:4:\"file\";s:41:\"2013/04/featured-graphic-holo-update1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"featured-graphic-holo-update1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"featured-graphic-holo-update1-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"featured-graphic-holo-update1-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"featured-graphic-holo-update1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:42:\"featured-graphic-holo-update1-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7702,2281,'pre_import_post_parent','1689'), (7703,2281,'pre_import_post_id','814'), (7704,2281,'_wp_attachment_image_alt','WordPress for Android on a Galaxy S3, a Nexus 7, and a Nexus 10'), (7707,816,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-devices.jpg'), (7708,816,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:1231;s:4:\"file\";s:53:\"2013/04/wordpress-for-android-version-2-3-devices.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"wordpress-for-android-version-2-3-devices-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"wordpress-for-android-version-2-3-devices-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"wordpress-for-android-version-2-3-devices-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:53:\"wordpress-for-android-version-2-3-devices-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:54:\"wordpress-for-android-version-2-3-devices-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7709,816,'pre_import_post_parent','759'), (7710,816,'pre_import_post_id','816'), (7711,816,'_wp_attachment_image_alt','Version 2.3 of WordPress for Android: menu drawer and action bar'), (7714,2282,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-devices1.jpg'), (7715,2282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:1231;s:4:\"file\";s:54:\"2013/04/wordpress-for-android-version-2-3-devices1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"wordpress-for-android-version-2-3-devices1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"wordpress-for-android-version-2-3-devices1-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"wordpress-for-android-version-2-3-devices1-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:54:\"wordpress-for-android-version-2-3-devices1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:55:\"wordpress-for-android-version-2-3-devices1-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7716,2282,'pre_import_post_parent','759'), (7717,2282,'pre_import_post_id','816'), (7718,2282,'_wp_attachment_image_alt','Version 2.3 of WordPress for Android: menu drawer and action bar'), (7721,819,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-action-bar-on-nexus-7.jpg'), (7722,819,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1010;s:6:\"height\";i:480;s:4:\"file\";s:67:\"2013/04/wordpress-for-android-version-2-3-action-bar-on-nexus-7.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"wordpress-for-android-version-2-3-action-bar-on-nexus-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"wordpress-for-android-version-2-3-action-bar-on-nexus-7-300x142.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:67:\"wordpress-for-android-version-2-3-action-bar-on-nexus-7-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7723,819,'pre_import_post_parent','759'), (7724,819,'pre_import_post_id','819'), (7725,819,'_wp_attachment_image_alt','Version 2.3 of WordPress for Android: action bar on a Nexus 7'), (7728,2283,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-action-bar-on-nexus-71.jpg'), (7729,2283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1010;s:6:\"height\";i:480;s:4:\"file\";s:68:\"2013/04/wordpress-for-android-version-2-3-action-bar-on-nexus-71.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"wordpress-for-android-version-2-3-action-bar-on-nexus-71-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"wordpress-for-android-version-2-3-action-bar-on-nexus-71-300x142.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:68:\"wordpress-for-android-version-2-3-action-bar-on-nexus-71-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7730,2283,'pre_import_post_parent','759'), (7731,2283,'pre_import_post_id','819'), (7732,2283,'_wp_attachment_image_alt','Version 2.3 of WordPress for Android: action bar on a Nexus 7'), (7735,822,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3.jpg'), (7736,822,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:906;s:6:\"height\";i:1838;s:4:\"file\";s:78:\"2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:78:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:78:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-147x300.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:79:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-504x1024.jpg\";s:5:\"width\";i:504;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:78:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:78:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-906x576.jpg\";s:5:\"width\";i:906;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7737,822,'pre_import_post_parent','759'), (7738,822,'pre_import_post_id','822'), (7739,822,'_wp_attachment_image_alt','Version 2.3 of WordPress for Android: menu drawer on Samsung Galaxy S3'), (7742,828,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-featured-menu-drawer.jpg'), (7743,828,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:388;s:4:\"file\";s:66:\"2013/04/wordpress-for-android-version-2-3-featured-menu-drawer.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-3-featured-menu-drawer-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-3-featured-menu-drawer-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-3-featured-menu-drawer-648x372.jpg\";s:5:\"width\";i:648;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7744,828,'pre_import_post_parent','0'), (7745,828,'pre_import_post_id','828'), (7747,2284,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s31.jpg'), (7748,2284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:906;s:6:\"height\";i:1838;s:4:\"file\";s:79:\"2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s31.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:79:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s31-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:79:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s31-147x300.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:80:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s31-504x1024.jpg\";s:5:\"width\";i:504;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:79:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s31-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:79:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s31-906x576.jpg\";s:5:\"width\";i:906;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7749,2284,'pre_import_post_parent','759'), (7750,2284,'pre_import_post_id','822'), (7751,2284,'_wp_attachment_image_alt','Version 2.3 of WordPress for Android: menu drawer on Samsung Galaxy S3'), (7754,828,'pre_import_post_parent','0'), (7755,828,'pre_import_post_id','828'), (7757,829,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-featured-action-bar.jpg'), (7758,829,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:388;s:4:\"file\";s:65:\"2013/04/wordpress-for-android-version-2-3-featured-action-bar.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"wordpress-for-android-version-2-3-featured-action-bar-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"wordpress-for-android-version-2-3-featured-action-bar-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:65:\"wordpress-for-android-version-2-3-featured-action-bar-648x372.jpg\";s:5:\"width\";i:648;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7759,829,'pre_import_post_parent','0'), (7760,829,'pre_import_post_id','829'), (7762,2285,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-featured-action-bar1.jpg'), (7763,830,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-featured-action-bar11.jpg'), (7764,2285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:388;s:4:\"file\";s:66:\"2013/04/wordpress-for-android-version-2-3-featured-action-bar1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-3-featured-action-bar1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-3-featured-action-bar1-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-3-featured-action-bar1-648x372.jpg\";s:5:\"width\";i:648;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7765,2285,'pre_import_post_parent','0'), (7766,2285,'pre_import_post_id','829'), (7768,830,'pre_import_post_parent','0'), (7769,830,'pre_import_post_id','830'), (7771,830,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:388;s:4:\"file\";s:67:\"2013/04/wordpress-for-android-version-2-3-featured-action-bar11.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"wordpress-for-android-version-2-3-featured-action-bar11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"wordpress-for-android-version-2-3-featured-action-bar11-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:67:\"wordpress-for-android-version-2-3-featured-action-bar11-648x372.jpg\";s:5:\"width\";i:648;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7772,830,'pre_import_post_parent','0'), (7773,830,'pre_import_post_id','830'), (7775,831,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-featured-menu-drawer.png'), (7776,2286,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-featured-menu-drawer1.png'), (7777,2286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:388;s:4:\"file\";s:67:\"2013/04/wordpress-for-android-version-2-3-featured-menu-drawer1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"wordpress-for-android-version-2-3-featured-menu-drawer1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"wordpress-for-android-version-2-3-featured-menu-drawer1-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:67:\"wordpress-for-android-version-2-3-featured-menu-drawer1-648x372.png\";s:5:\"width\";i:648;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7778,2286,'pre_import_post_parent','0'), (7779,2286,'pre_import_post_id','831'), (7780,2286,'_wp_attachment_image_alt','Posts in the Menu Drawer'), (7782,831,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:388;s:4:\"file\";s:66:\"2013/04/wordpress-for-android-version-2-3-featured-menu-drawer.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-3-featured-menu-drawer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-3-featured-menu-drawer-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-3-featured-menu-drawer-648x372.png\";s:5:\"width\";i:648;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7783,831,'pre_import_post_parent','0'), (7784,831,'pre_import_post_id','831'), (7785,831,'_wp_attachment_image_alt','Posts in the Menu Drawer'), (7787,832,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-featured-action-bar.png'), (7788,2287,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-featured-action-bar1.png'), (7789,832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:388;s:4:\"file\";s:65:\"2013/04/wordpress-for-android-version-2-3-featured-action-bar.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"wordpress-for-android-version-2-3-featured-action-bar-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"wordpress-for-android-version-2-3-featured-action-bar-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:65:\"wordpress-for-android-version-2-3-featured-action-bar-648x372.png\";s:5:\"width\";i:648;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7790,832,'pre_import_post_parent','1689'), (7791,832,'pre_import_post_id','832'), (7792,832,'_wp_attachment_image_alt','The App Bar on the Posts screen'), (7795,2287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:388;s:4:\"file\";s:66:\"2013/04/wordpress-for-android-version-2-3-featured-action-bar1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-3-featured-action-bar1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-3-featured-action-bar1-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-version-2-3-featured-action-bar1-648x372.png\";s:5:\"width\";i:648;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7796,2287,'pre_import_post_parent','1689'), (7797,2287,'pre_import_post_id','832'), (7798,2287,'_wp_attachment_image_alt','The App Bar on the Posts screen'), (7801,835,'_wp_attached_file','2013/04/featured-graphic-holo-update21.jpg'), (7802,2288,'_wp_attached_file','2013/04/featured-graphic-holo-update2.jpg'), (7803,835,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:1231;s:4:\"file\";s:42:\"2013/04/featured-graphic-holo-update21.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"featured-graphic-holo-update21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"featured-graphic-holo-update21-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"featured-graphic-holo-update21-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"featured-graphic-holo-update21-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:43:\"featured-graphic-holo-update21-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7804,835,'pre_import_post_parent','1689'), (7805,835,'pre_import_post_id','835'), (7808,2288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:1231;s:4:\"file\";s:41:\"2013/04/featured-graphic-holo-update2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"featured-graphic-holo-update2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"featured-graphic-holo-update2-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"featured-graphic-holo-update2-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"featured-graphic-holo-update2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:42:\"featured-graphic-holo-update2-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7809,2288,'pre_import_post_parent','1689'), (7810,2288,'pre_import_post_id','835'), (7813,2289,'_wp_attached_file','2013/04/featured-graphic-holo-update3.jpg'), (7814,842,'_wp_attached_file','2013/04/featured-graphic-holo-update31.jpg'), (7815,842,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:1231;s:4:\"file\";s:42:\"2013/04/featured-graphic-holo-update31.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"featured-graphic-holo-update31-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"featured-graphic-holo-update31-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"featured-graphic-holo-update31-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:42:\"featured-graphic-holo-update31-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:43:\"featured-graphic-holo-update31-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7816,842,'pre_import_post_parent','0'), (7817,842,'pre_import_post_id','842'), (7819,2289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:1231;s:4:\"file\";s:41:\"2013/04/featured-graphic-holo-update3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"featured-graphic-holo-update3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"featured-graphic-holo-update3-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"featured-graphic-holo-update3-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"featured-graphic-holo-update3-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:42:\"featured-graphic-holo-update3-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7820,2289,'pre_import_post_parent','0'), (7821,2289,'pre_import_post_id','842'), (7823,844,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-devices2.jpg'), (7824,2290,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-devices21.jpg'), (7825,844,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:1231;s:4:\"file\";s:54:\"2013/04/wordpress-for-android-version-2-3-devices2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"wordpress-for-android-version-2-3-devices2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"wordpress-for-android-version-2-3-devices2-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"wordpress-for-android-version-2-3-devices2-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:54:\"wordpress-for-android-version-2-3-devices2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:55:\"wordpress-for-android-version-2-3-devices2-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7826,844,'pre_import_post_parent','0'), (7827,844,'pre_import_post_id','844'), (7829,2290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:1231;s:4:\"file\";s:55:\"2013/04/wordpress-for-android-version-2-3-devices21.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"wordpress-for-android-version-2-3-devices21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"wordpress-for-android-version-2-3-devices21-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"wordpress-for-android-version-2-3-devices21-1024x750.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"wordpress-for-android-version-2-3-devices21-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:56:\"wordpress-for-android-version-2-3-devices21-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7830,2290,'pre_import_post_parent','0'), (7831,2290,'pre_import_post_id','844'), (7833,845,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update.jpg'), (7834,845,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:906;s:6:\"height\";i:1838;s:4:\"file\";s:85:\"2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:85:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:85:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update-147x300.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:86:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update-504x1024.jpg\";s:5:\"width\";i:504;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:85:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:85:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update-906x576.jpg\";s:5:\"width\";i:906;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7835,845,'pre_import_post_parent','0'), (7836,845,'pre_import_post_id','845'), (7838,2291,'_wp_attached_file','2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update1.jpg'), (7839,2291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:906;s:6:\"height\";i:1838;s:4:\"file\";s:86:\"2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:86:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:86:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update1-147x300.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:87:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update1-504x1024.jpg\";s:5:\"width\";i:504;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:86:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:86:\"wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update1-906x576.jpg\";s:5:\"width\";i:906;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7840,2291,'pre_import_post_parent','0'), (7841,2291,'pre_import_post_id','845'), (7843,861,'_wp_attached_file','2013/05/wordpress-for-android-2-4-wordpress-com-notifications1.jpg'), (7844,861,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:906;s:6:\"height\";i:1838;s:4:\"file\";s:66:\"2013/05/wordpress-for-android-2-4-wordpress-com-notifications1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-2-4-wordpress-com-notifications1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-2-4-wordpress-com-notifications1-147x300.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:67:\"wordpress-for-android-2-4-wordpress-com-notifications1-504x1024.jpg\";s:5:\"width\";i:504;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-2-4-wordpress-com-notifications1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:66:\"wordpress-for-android-2-4-wordpress-com-notifications1-906x576.jpg\";s:5:\"width\";i:906;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7845,861,'pre_import_post_parent','847'), (7846,861,'pre_import_post_id','861'), (7847,861,'_wp_attachment_image_alt','Version 2.4 of WordPress for Android: Notifications panel on a Samsung Galaxy S3'), (7850,1709,'_wp_attached_file','2013/05/notifications1.jpg'), (7851,2292,'_wp_attached_file','2013/05/notifications.jpg'), (7852,2292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:1280;s:4:\"file\";s:25:\"2013/05/notifications.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"notifications-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"notifications-168x300.jpg\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"notifications-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"notifications-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"notifications-720x576.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7853,2292,'pre_import_post_parent','847'), (7854,2292,'pre_import_post_id','848'), (7857,1709,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:1280;s:4:\"file\";s:26:\"2013/05/notifications1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"notifications1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"notifications1-168x300.jpg\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"notifications1-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"notifications1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:26:\"notifications1-720x576.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7858,1709,'pre_import_post_parent','847'), (7859,1709,'pre_import_post_id','848'), (7862,2293,'_wp_attached_file','2013/04/wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor.png'), (7863,2294,'_wp_attached_file','2013/04/wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor1.png'), (7864,2293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1120;s:4:\"file\";s:78:\"2013/04/wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:78:\"wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:78:\"wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor-160x300.png\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:79:\"wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor-548x1024.png\";s:5:\"width\";i:548;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:78:\"wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:78:\"wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor-600x576.png\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7865,2293,'pre_import_post_parent','429'), (7866,2293,'pre_import_post_id','453'), (7867,2293,'_wp_attachment_image_alt','Screenshot of Version 2.1 of WordPress for Windows Phone: Rich Text Editor and Comment Push Notifications'), (7870,2294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:1120;s:4:\"file\";s:79:\"2013/04/wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:79:\"wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:79:\"wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor1-160x300.png\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:80:\"wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor1-548x1024.png\";s:5:\"width\";i:548;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:79:\"wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor1-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:79:\"wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor1-600x576.png\";s:5:\"width\";i:600;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7871,2294,'pre_import_post_parent','429'), (7872,2294,'pre_import_post_id','453'), (7873,2294,'_wp_attachment_image_alt','Screenshot of Version 2.1 of WordPress for Windows Phone: Rich Text Editor and Comment Push Notifications'), (7876,867,'_wp_attached_file','2013/05/wordpress-for-android-notification-center-pending.png'), (7877,2295,'_wp_attached_file','2013/05/wordpress-for-android-notification-center-pending1.png'), (7878,867,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:533;s:6:\"height\";i:139;s:4:\"file\";s:61:\"2013/05/wordpress-for-android-notification-center-pending.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"wordpress-for-android-notification-center-pending-150x139.png\";s:5:\"width\";i:150;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"wordpress-for-android-notification-center-pending-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7879,867,'pre_import_post_parent','847'), (7880,867,'pre_import_post_id','867'), (7881,867,'_wp_attachment_image_alt','Pending notifications in the notification center'), (7884,2295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:533;s:6:\"height\";i:139;s:4:\"file\";s:62:\"2013/05/wordpress-for-android-notification-center-pending1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"wordpress-for-android-notification-center-pending1-150x139.png\";s:5:\"width\";i:150;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"wordpress-for-android-notification-center-pending1-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7885,2295,'pre_import_post_parent','847'), (7886,2295,'pre_import_post_id','867'), (7887,2295,'_wp_attachment_image_alt','Pending notifications in the notification center'), (7890,868,'_wp_attached_file','2013/05/wordpress-for-android-reply-to-comment-from-notification-center.png'), (7891,2296,'_wp_attached_file','2013/05/wordpress-for-android-reply-to-comment-from-notification-center1.png'), (7892,868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:561;s:6:\"height\";i:248;s:4:\"file\";s:75:\"2013/05/wordpress-for-android-reply-to-comment-from-notification-center.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:75:\"wordpress-for-android-reply-to-comment-from-notification-center-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:75:\"wordpress-for-android-reply-to-comment-from-notification-center-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7893,868,'pre_import_post_parent','847'), (7894,868,'pre_import_post_id','868'), (7895,868,'_wp_attachment_image_alt','Replying to comments from the notification center'), (7898,2296,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:561;s:6:\"height\";i:248;s:4:\"file\";s:76:\"2013/05/wordpress-for-android-reply-to-comment-from-notification-center1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:76:\"wordpress-for-android-reply-to-comment-from-notification-center1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:76:\"wordpress-for-android-reply-to-comment-from-notification-center1-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7899,2296,'pre_import_post_parent','847'), (7900,2296,'pre_import_post_id','868'), (7901,2296,'_wp_attachment_image_alt','Replying to comments from the notification center'), (7904,880,'_wp_attached_file','2013/08/categories-select1.png'), (7905,880,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:30:\"2013/08/categories-select1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"categories-select1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"categories-select1-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"categories-select1-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"categories-select1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"categories-select1-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7906,880,'pre_import_post_parent','876'), (7907,880,'pre_import_post_id','880'), (7910,2297,'_wp_attached_file','2013/08/categories-select.png'), (7911,2297,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:29:\"2013/08/categories-select.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"categories-select-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"categories-select-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"categories-select-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"categories-select-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"categories-select-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7912,2297,'pre_import_post_parent','876'), (7913,2297,'pre_import_post_id','880'), (7916,908,'_wp_attached_file','2013/10/device-2013-10-16-154614.png'), (7917,2298,'_wp_attached_file','2013/10/device-2013-10-16-1546141.png'), (7918,908,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:36:\"2013/10/device-2013-10-16-154614.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-154614-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-154614-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-154614-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-154614-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-154614-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7919,908,'pre_import_post_parent','0'), (7920,908,'pre_import_post_id','908'), (7923,2298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:37:\"2013/10/device-2013-10-16-1546141.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1546141-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1546141-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"device-2013-10-16-1546141-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1546141-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1546141-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7924,2298,'pre_import_post_parent','0'), (7925,2298,'pre_import_post_id','908'), (7928,909,'_wp_attached_file','2013/10/device-2013-10-16-151357.png'), (7929,909,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:36:\"2013/10/device-2013-10-16-151357.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-151357-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-151357-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-151357-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-151357-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-151357-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7930,909,'pre_import_post_parent','0'), (7931,909,'pre_import_post_id','909'), (7934,2299,'_wp_attached_file','2013/10/device-2013-10-16-1513571.png'), (7935,2299,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:37:\"2013/10/device-2013-10-16-1513571.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1513571-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1513571-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"device-2013-10-16-1513571-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1513571-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1513571-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7936,2299,'pre_import_post_parent','0'), (7937,2299,'pre_import_post_id','909'), (7940,910,'_wp_attached_file','2013/10/device-2013-10-16-151831.png'), (7941,910,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:36:\"2013/10/device-2013-10-16-151831.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-151831-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-151831-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-151831-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-151831-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-151831-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7942,910,'pre_import_post_parent','0'), (7943,910,'pre_import_post_id','910'), (7946,2300,'_wp_attached_file','2013/10/device-2013-10-16-1518311.png'), (7947,2300,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:37:\"2013/10/device-2013-10-16-1518311.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1518311-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1518311-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"device-2013-10-16-1518311-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1518311-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1518311-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7948,2300,'pre_import_post_parent','0'), (7949,2300,'pre_import_post_id','910'), (7952,911,'_wp_attached_file','2013/10/device-2013-10-16-151933.png'), (7953,911,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:36:\"2013/10/device-2013-10-16-151933.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-151933-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-151933-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-151933-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-151933-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-151933-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7954,911,'pre_import_post_parent','0'), (7955,911,'pre_import_post_id','911'), (7958,912,'_wp_attached_file','2013/10/device-2013-10-16-152222.png'), (7959,912,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:36:\"2013/10/device-2013-10-16-152222.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152222-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152222-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-152222-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152222-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152222-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7960,912,'pre_import_post_parent','0'), (7961,912,'pre_import_post_id','912'), (7964,2301,'_wp_attached_file','2013/10/device-2013-10-16-1519331.png'), (7965,2301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:37:\"2013/10/device-2013-10-16-1519331.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1519331-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1519331-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"device-2013-10-16-1519331-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1519331-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1519331-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7966,2301,'pre_import_post_parent','0'), (7967,2301,'pre_import_post_id','911'), (7970,912,'pre_import_post_parent','0'), (7971,912,'pre_import_post_id','912'), (7974,1420,'_wp_attached_file','2013/06/nux-screenshot-iphone5.png'), (7975,1420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:1136;s:4:\"file\";s:34:\"2013/06/nux-screenshot-iphone5.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"nux-screenshot-iphone5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"nux-screenshot-iphone5-169x300.png\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"nux-screenshot-iphone5-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"nux-screenshot-iphone5-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"nux-screenshot-iphone5-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7976,1420,'pre_import_post_parent','1406'), (7977,1420,'pre_import_post_id','1420'), (7982,1420,'original_post_id','1406'), (7983,1420,'_wp_old_slug','1406'), (7984,1420,'original_post_id','1406'), (7985,1420,'_wp_old_slug','1406'), (7990,1420,'original_post_id','118'), (7991,1420,'_wp_old_slug','118'), (7992,2302,'_wp_attached_file','2013/06/nux-screenshot-iphone51.png'), (7993,2302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:1136;s:4:\"file\";s:35:\"2013/06/nux-screenshot-iphone51.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"nux-screenshot-iphone51-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"nux-screenshot-iphone51-169x300.png\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"nux-screenshot-iphone51-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"nux-screenshot-iphone51-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"nux-screenshot-iphone51-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (7994,2302,'pre_import_post_parent','1406'), (7995,2302,'pre_import_post_id','1420'), (8000,2302,'original_post_id','1406'), (8001,2302,'_wp_old_slug','1406'), (8002,2302,'original_post_id','1406'), (8003,2302,'_wp_old_slug','1406'), (8006,1424,'_wp_attached_file','2013/06/wpios-3-6-nux.jpg'), (8009,2302,'original_post_id','118'), (8010,2302,'_wp_old_slug','118'), (8011,1424,'pre_import_post_parent','1406'), (8012,1424,'pre_import_post_id','1424'), (8017,1424,'original_post_id','1406'), (8018,1424,'_wp_old_slug','1406'), (8019,1424,'_wp_old_slug','1406'), (8022,1424,'original_post_id','1406'), (8025,1424,'original_post_id','118'), (8026,1424,'_wp_old_slug','118'), (8027,1424,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:25:\"2013/06/wpios-3-6-nux.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"wpios-3-6-nux-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"wpios-3-6-nux-139x300.jpg\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"wpios-3-6-nux-475x1024.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"wpios-3-6-nux-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"wpios-3-6-nux-804x576.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (8028,1424,'pre_import_post_parent','1406'), (8029,1424,'pre_import_post_id','1424'), (8034,1424,'original_post_id','1406'), (8035,1424,'_wp_old_slug','1406'), (8036,1424,'_wp_old_slug','1406'), (8039,1424,'original_post_id','1406'), (8042,1424,'original_post_id','118'), (8043,1424,'_wp_old_slug','118'), (8044,1429,'_wp_attached_file','2013/06/wpios-3-6-nux-ribbon1.jpg'), (8045,2303,'_wp_attached_file','2013/06/wpios-3-6-nux-ribbon11.jpg'), (8046,1429,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:33:\"2013/06/wpios-3-6-nux-ribbon1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"wpios-3-6-nux-ribbon1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"wpios-3-6-nux-ribbon1-139x300.jpg\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"wpios-3-6-nux-ribbon1-475x1024.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"wpios-3-6-nux-ribbon1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:33:\"wpios-3-6-nux-ribbon1-804x576.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (8047,1429,'pre_import_post_parent','1406'), (8048,1429,'pre_import_post_id','1429'), (8053,1429,'original_post_id','1406'), (8054,1429,'_wp_old_slug','1406'), (8057,1429,'original_post_id','1406'), (8058,1429,'_wp_old_slug','1406'), (8061,1429,'original_post_id','118'), (8062,1429,'_wp_old_slug','118'), (8063,2303,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1732;s:4:\"file\";s:34:\"2013/06/wpios-3-6-nux-ribbon11.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"wpios-3-6-nux-ribbon11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"wpios-3-6-nux-ribbon11-139x300.jpg\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"wpios-3-6-nux-ribbon11-475x1024.jpg\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"wpios-3-6-nux-ribbon11-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"wpios-3-6-nux-ribbon11-804x576.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (8064,2303,'pre_import_post_parent','1406'), (8065,2303,'pre_import_post_id','1429'), (8070,2303,'original_post_id','1406'), (8071,2303,'_wp_old_slug','1406'), (8074,2303,'original_post_id','1406'), (8075,2303,'_wp_old_slug','1406'), (8078,2303,'original_post_id','118'), (8079,2303,'_wp_old_slug','118'), (8080,1458,'_wp_attached_file','2013/08/wpios-3-71.png'), (8081,2304,'_wp_attached_file','2013/08/wpios-3-7.png'), (8082,2304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:1136;s:4:\"file\";s:21:\"2013/08/wpios-3-7.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"wpios-3-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"wpios-3-7-169x300.png\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"wpios-3-7-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"wpios-3-7-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"wpios-3-7-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8083,2304,'pre_import_post_parent','1447'), (8084,2304,'pre_import_post_id','1458'), (8089,2304,'original_post_id','1447'), (8090,2304,'_wp_old_slug','1447'), (8093,2304,'original_post_id','1447'), (8094,2304,'_wp_old_slug','1447'), (8097,2304,'original_post_id','118'), (8098,2304,'_wp_old_slug','118'), (8099,1458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:1136;s:4:\"file\";s:22:\"2013/08/wpios-3-71.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"wpios-3-71-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"wpios-3-71-169x300.png\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"wpios-3-71-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"wpios-3-71-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:22:\"wpios-3-71-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8100,1458,'pre_import_post_parent','1447'), (8101,1458,'pre_import_post_id','1458'), (8106,1458,'original_post_id','1447'), (8107,1458,'_wp_old_slug','1447'), (8110,1458,'original_post_id','1447'), (8111,1458,'_wp_old_slug','1447'), (8114,1458,'original_post_id','118'), (8115,1458,'_wp_old_slug','118'), (8116,1461,'_wp_attached_file','2013/08/wpios-3-7-reader1.jpg'), (8117,2305,'_wp_attached_file','2013/08/wpios-3-7-reader.jpg'), (8118,1461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1840;s:4:\"file\";s:29:\"2013/08/wpios-3-7-reader1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"wpios-3-7-reader1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"wpios-3-7-reader1-163x300.jpg\";s:5:\"width\";i:163;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"wpios-3-7-reader1-556x1024.jpg\";s:5:\"width\";i:556;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"wpios-3-7-reader1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"wpios-3-7-reader1-1000x576.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (8119,1461,'pre_import_post_parent','1447'), (8120,1461,'pre_import_post_id','1461'), (8125,1461,'original_post_id','1447'), (8126,1461,'_wp_old_slug','1447'), (8129,1461,'original_post_id','1447'), (8130,1461,'_wp_old_slug','1447'), (8133,1461,'original_post_id','118'), (8134,1461,'_wp_old_slug','118'), (8135,2305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1840;s:4:\"file\";s:28:\"2013/08/wpios-3-7-reader.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"wpios-3-7-reader-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"wpios-3-7-reader-163x300.jpg\";s:5:\"width\";i:163;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"wpios-3-7-reader-556x1024.jpg\";s:5:\"width\";i:556;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"wpios-3-7-reader-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"wpios-3-7-reader-1000x576.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (8136,2305,'pre_import_post_parent','1447'), (8137,2305,'pre_import_post_id','1461'), (8142,2305,'original_post_id','1447'), (8143,2305,'_wp_old_slug','1447'), (8146,2305,'original_post_id','1447'), (8147,2305,'_wp_old_slug','1447'), (8150,2305,'original_post_id','118'), (8151,2305,'_wp_old_slug','118'), (8152,1468,'_wp_attached_file','2013/09/announcement-ios7-02.png'), (8153,1468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:1300;s:4:\"file\";s:32:\"2013/09/announcement-ios7-02.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"announcement-ios7-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"announcement-ios7-02-300x278.png\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-02-1024x950.png\";s:5:\"width\";i:1024;s:6:\"height\";i:950;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"announcement-ios7-02-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-02-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8154,1468,'pre_import_post_parent','0'), (8155,1468,'pre_import_post_id','1468'), (8160,1468,'original_post_id','1447'), (8161,1468,'_wp_old_slug','1447'), (8164,1468,'original_post_id','1447'), (8165,1468,'_wp_old_slug','1447'), (8168,1468,'original_post_id','118'), (8169,1468,'_wp_old_slug','118'), (8170,2306,'_wp_attached_file','2013/09/announcement-ios7-021.png'), (8171,2306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:1300;s:4:\"file\";s:33:\"2013/09/announcement-ios7-021.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-021-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-021-300x278.png\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"announcement-ios7-021-1024x950.png\";s:5:\"width\";i:1024;s:6:\"height\";i:950;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-021-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"announcement-ios7-021-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8172,2306,'pre_import_post_parent','0'), (8173,2306,'pre_import_post_id','1468'), (8178,2306,'original_post_id','1447'), (8179,2306,'_wp_old_slug','1447'), (8182,2306,'original_post_id','1447'), (8183,2306,'_wp_old_slug','1447'), (8186,2306,'original_post_id','118'), (8187,2306,'_wp_old_slug','118'), (8188,1476,'_wp_attached_file','2013/09/announcement-ios7-01.png'), (8189,1476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:600;s:4:\"file\";s:32:\"2013/09/announcement-ios7-01.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"announcement-ios7-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"announcement-ios7-01-300x128.png\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-01-1024x438.png\";s:5:\"width\";i:1024;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"announcement-ios7-01-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-01-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8190,1476,'pre_import_post_parent','0'), (8191,1476,'pre_import_post_id','1476'), (8192,1476,'_wp_attachment_image_alt','WordPress for iOS App Icon Fall 2013'), (8195,1476,'_wp_attachment_image_alt','WordPress for iOS App Icon Fall 2013'), (8198,1476,'original_post_id','1447'), (8199,1476,'_wp_old_slug','1447'), (8200,1476,'_wp_attachment_image_alt','WordPress for iOS App Icon Fall 2013'), (8203,1476,'original_post_id','1447'), (8204,1476,'_wp_old_slug','1447'), (8205,1476,'_wp_attachment_image_alt','WordPress for iOS App Icon Fall 2013'), (8208,1476,'original_post_id','118'), (8209,1476,'_wp_old_slug','118'), (8210,2307,'_wp_attached_file','2013/09/announcement-ios7-011.png'), (8211,2307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:600;s:4:\"file\";s:33:\"2013/09/announcement-ios7-011.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-011-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-011-300x128.png\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"announcement-ios7-011-1024x438.png\";s:5:\"width\";i:1024;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-011-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"announcement-ios7-011-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8212,2307,'pre_import_post_parent','0'), (8213,2307,'pre_import_post_id','1476'), (8214,2307,'_wp_attachment_image_alt','WordPress for iOS App Icon Fall 2013'), (8217,2307,'_wp_attachment_image_alt','WordPress for iOS App Icon Fall 2013'), (8220,2307,'original_post_id','1447'), (8221,2307,'_wp_old_slug','1447'), (8222,2307,'_wp_attachment_image_alt','WordPress for iOS App Icon Fall 2013'), (8225,2307,'original_post_id','1447'), (8226,2307,'_wp_old_slug','1447'), (8227,2307,'_wp_attachment_image_alt','WordPress for iOS App Icon Fall 2013'), (8230,2307,'original_post_id','118'), (8231,2307,'_wp_old_slug','118'), (8232,1488,'_wp_attached_file','2013/09/wordpress-ios-social-networking-featured-screenshot-large.png'), (8233,1488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:69:\"2013/09/wordpress-ios-social-networking-featured-screenshot-large.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"wordpress-ios-social-networking-featured-screenshot-large-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"wordpress-ios-social-networking-featured-screenshot-large-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:69:\"wordpress-ios-social-networking-featured-screenshot-large-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:70:\"wordpress-ios-social-networking-featured-screenshot-large-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8234,1488,'pre_import_post_parent','1487'), (8235,1488,'pre_import_post_id','1488'), (8236,1488,'_wp_attachment_image_alt','WordPress for iOS featured in the US App Store on September 20, 2013'), (8239,1488,'_wp_attachment_image_alt','WordPress for iOS featured in the US App Store on September 20, 2013'), (8242,1488,'original_post_id','1487'), (8243,1488,'_wp_old_slug','1487'), (8244,1488,'_wp_attachment_image_alt','WordPress for iOS featured in the US App Store on September 20, 2013'), (8247,1488,'original_post_id','1487'), (8248,1488,'_wp_old_slug','1487'), (8249,1488,'_wp_attachment_image_alt','WordPress for iOS featured in the US App Store on September 20, 2013'), (8252,1488,'original_post_id','118'), (8253,1488,'_wp_old_slug','118'), (8254,2308,'_wp_attached_file','2013/09/wordpress-ios-social-networking-featured-screenshot-large1.png'), (8255,2308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:70:\"2013/09/wordpress-ios-social-networking-featured-screenshot-large1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"wordpress-ios-social-networking-featured-screenshot-large1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:70:\"wordpress-ios-social-networking-featured-screenshot-large1-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:70:\"wordpress-ios-social-networking-featured-screenshot-large1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:71:\"wordpress-ios-social-networking-featured-screenshot-large1-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8256,2308,'pre_import_post_parent','1487'), (8257,2308,'pre_import_post_id','1488'), (8258,2308,'_wp_attachment_image_alt','WordPress for iOS featured in the US App Store on September 20, 2013'), (8261,2308,'_wp_attachment_image_alt','WordPress for iOS featured in the US App Store on September 20, 2013'), (8264,2308,'original_post_id','1487'), (8265,2308,'_wp_old_slug','1487'), (8266,2308,'_wp_attachment_image_alt','WordPress for iOS featured in the US App Store on September 20, 2013'), (8269,2308,'original_post_id','1487'), (8270,2308,'_wp_old_slug','1487'), (8271,2308,'_wp_attachment_image_alt','WordPress for iOS featured in the US App Store on September 20, 2013'), (8274,2308,'original_post_id','118'), (8275,2308,'_wp_old_slug','118'), (8276,1494,'pre_import_post_parent','1487'), (8277,1494,'pre_import_post_id','1494'), (8280,1494,'_wp_attached_file','2013/09/wordpress-ios-social-networking-featured-screenshot-take3.png'), (8283,1494,'original_post_id','1487'), (8284,1494,'_wp_old_slug','1487'), (8287,1494,'original_post_id','1487'), (8288,1494,'_wp_old_slug','1487'), (8291,1494,'original_post_id','118'), (8292,1494,'_wp_old_slug','118'), (8293,1708,'_wp_attached_file','2013/06/app-store-icon-114px.png'), (8294,1708,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:114;s:6:\"height\";i:114;s:4:\"file\";s:32:\"2013/06/app-store-icon-114px.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8295,1708,'pre_import_post_parent','0'), (8296,1708,'pre_import_post_id','872'), (8298,1494,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:556;s:4:\"file\";s:69:\"2013/09/wordpress-ios-social-networking-featured-screenshot-take3.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"wordpress-ios-social-networking-featured-screenshot-take3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"wordpress-ios-social-networking-featured-screenshot-take3-300x162.png\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:69:\"wordpress-ios-social-networking-featured-screenshot-take3-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8299,1494,'pre_import_post_parent','1487'), (8300,1494,'pre_import_post_id','1494'), (8305,1494,'original_post_id','1487'), (8306,1494,'_wp_old_slug','1487'), (8309,1494,'original_post_id','1487'), (8310,1494,'_wp_old_slug','1487'), (8313,1494,'original_post_id','118'), (8314,1494,'_wp_old_slug','118'), (8315,1708,'pre_import_post_parent','0'), (8316,1708,'pre_import_post_id','872'), (8318,1710,'_wp_attached_file','2013/08/categories-edit-post1.png'), (8319,2309,'_wp_attached_file','2013/08/categories-edit-post.png'), (8320,1710,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:33:\"2013/08/categories-edit-post1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"categories-edit-post1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"categories-edit-post1-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"categories-edit-post1-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"categories-edit-post1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:33:\"categories-edit-post1-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8321,1710,'pre_import_post_parent','876'), (8322,1710,'pre_import_post_id','881'), (8325,2309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1280;s:4:\"file\";s:32:\"2013/08/categories-edit-post.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"categories-edit-post-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"categories-edit-post-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"categories-edit-post-614x1024.png\";s:5:\"width\";i:614;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"categories-edit-post-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:32:\"categories-edit-post-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8326,2309,'pre_import_post_parent','876'), (8327,2309,'pre_import_post_id','881'), (8330,1711,'_wp_attached_file','2013/08/post-excerpt1.png'), (8331,2310,'_wp_attached_file','2013/08/post-excerpt.png'), (8332,1711,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:874;s:6:\"height\";i:1541;s:4:\"file\";s:25:\"2013/08/post-excerpt1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"post-excerpt1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"post-excerpt1-170x300.png\";s:5:\"width\";i:170;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"post-excerpt1-580x1024.png\";s:5:\"width\";i:580;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"post-excerpt1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"post-excerpt1-874x576.png\";s:5:\"width\";i:874;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8333,1711,'pre_import_post_parent','890'), (8334,1711,'pre_import_post_id','893'), (8337,2310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:874;s:6:\"height\";i:1541;s:4:\"file\";s:24:\"2013/08/post-excerpt.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"post-excerpt-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"post-excerpt-170x300.png\";s:5:\"width\";i:170;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"post-excerpt-580x1024.png\";s:5:\"width\";i:580;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"post-excerpt-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"post-excerpt-874x576.png\";s:5:\"width\";i:874;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8338,2310,'pre_import_post_parent','890'), (8339,2310,'pre_import_post_id','893'), (8342,29,'_wp_attached_file','2014/01/dsc_0202.jpg'), (8343,2311,'_wp_attached_file','2014/01/dsc_0202.jpg'), (8344,2311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1667;s:4:\"file\";s:20:\"2014/01/dsc_0202.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"dsc_0202-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"dsc_0202-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"dsc_0202-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"dsc_0202-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"dsc_0202-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8345,29,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1667;s:4:\"file\";s:20:\"2014/01/dsc_0202.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"dsc_0202-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"dsc_0202-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"dsc_0202-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"dsc_0202-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"dsc_0202-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8346,33,'_wp_attached_file','2014/01/logo.png'), (8347,2312,'_wp_attached_file','2014/01/logo1.png'), (8348,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:216;s:4:\"file\";s:16:\"2014/01/logo.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"logo-300x58.png\";s:5:\"width\";i:300;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"logo-1024x201.png\";s:5:\"width\";i:1024;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-672x216.png\";s:5:\"width\";i:672;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:17:\"logo-1038x216.png\";s:5:\"width\";i:1038;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8349,2312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:216;s:4:\"file\";s:17:\"2014/01/logo1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"logo1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"logo1-300x58.png\";s:5:\"width\";i:300;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"logo1-1024x201.png\";s:5:\"width\";i:1024;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"logo1-672x216.png\";s:5:\"width\";i:672;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"logo1-1038x216.png\";s:5:\"width\";i:1038;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8350,36,'_wp_attached_file','2014/01/logo11.png'), (8351,2313,'_wp_attached_file','2014/01/logo12.png'), (8352,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:981;s:6:\"height\";i:139;s:4:\"file\";s:18:\"2014/01/logo11.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo11-150x139.png\";s:5:\"width\";i:150;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"logo11-300x42.png\";s:5:\"width\";i:300;s:6:\"height\";i:42;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"logo11-672x139.png\";s:5:\"width\";i:672;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8353,2313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:981;s:6:\"height\";i:139;s:4:\"file\";s:18:\"2014/01/logo12.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo12-150x139.png\";s:5:\"width\";i:150;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"logo12-300x42.png\";s:5:\"width\";i:300;s:6:\"height\";i:42;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"logo12-672x139.png\";s:5:\"width\";i:672;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8354,65,'_wp_attached_file','2014/01/dsc_0199.jpg'), (8355,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4608;s:6:\"height\";i:3072;s:4:\"file\";s:20:\"2014/01/dsc_0199.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"dsc_0199-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"dsc_0199-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"dsc_0199-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"dsc_0199-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"dsc_0199-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON 1 J3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1389575754;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (8356,2314,'_wp_attached_file','2014/01/dsc_01991.jpg'), (8357,2314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4608;s:6:\"height\";i:3072;s:4:\"file\";s:21:\"2014/01/dsc_01991.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"dsc_01991-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"dsc_01991-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"dsc_01991-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"dsc_01991-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:22:\"dsc_01991-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON 1 J3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1389575754;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'), (8358,67,'_wp_attached_file','2014/01/dsc_0199b.jpg'), (8359,67,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4608;s:6:\"height\";i:3072;s:4:\"file\";s:21:\"2014/01/dsc_0199b.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"dsc_0199b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"dsc_0199b-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"dsc_0199b-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"dsc_0199b-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:22:\"dsc_0199b-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8360,2315,'_wp_attached_file','2014/01/dsc_0199b1.jpg'), (8361,2315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4608;s:6:\"height\";i:3072;s:4:\"file\";s:22:\"2014/01/dsc_0199b1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"dsc_0199b1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"dsc_0199b1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"dsc_0199b1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"dsc_0199b1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"dsc_0199b1-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8362,83,'_wp_attached_file','2014/01/colors.jpg'), (8363,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:934;s:6:\"height\";i:508;s:4:\"file\";s:18:\"2014/01/colors.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"colors-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"colors-300x163.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"colors-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8364,2316,'_wp_attached_file','2014/01/colors1.jpg'), (8365,2316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:934;s:6:\"height\";i:508;s:4:\"file\";s:19:\"2014/01/colors1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"colors1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"colors1-300x163.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"colors1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8366,85,'_wp_attached_file','2014/01/dsc013901.jpg'), (8367,85,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:21:\"2014/01/dsc013901.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"dsc013901-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"dsc013901-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"dsc013901-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"dsc013901-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:22:\"dsc013901-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8368,86,'_wp_attached_file','2014/01/announcement-ios7-02.png'), (8369,86,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:1300;s:4:\"file\";s:32:\"2014/01/announcement-ios7-02.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"announcement-ios7-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"announcement-ios7-02-300x278.png\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-02-1024x950.png\";s:5:\"width\";i:1024;s:6:\"height\";i:950;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"announcement-ios7-02-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-02-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8370,2317,'_wp_attached_file','2014/01/announcement-ios7-021.png'), (8371,2317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:1300;s:4:\"file\";s:33:\"2014/01/announcement-ios7-021.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-021-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-021-300x278.png\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"announcement-ios7-021-1024x950.png\";s:5:\"width\";i:1024;s:6:\"height\";i:950;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"announcement-ios7-021-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"announcement-ios7-021-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8372,89,'_wp_attached_file','2014/01/dsc0139011.jpg'), (8373,89,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:22:\"2014/01/dsc0139011.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"dsc0139011-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"dsc0139011-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"dsc0139011-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"dsc0139011-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"dsc0139011-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8374,2318,'_wp_attached_file','2014/01/dsc0139012.jpg'), (8375,2318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:22:\"2014/01/dsc0139012.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"dsc0139012-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"dsc0139012-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"dsc0139012-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"dsc0139012-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"dsc0139012-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8376,94,'_wp_attached_file','2014/01/dsc013902.jpg'), (8377,94,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1715;s:6:\"height\";i:1365;s:4:\"file\";s:21:\"2014/01/dsc013902.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"dsc013902-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"dsc013902-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"dsc013902-1024x815.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:815;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"dsc013902-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:22:\"dsc013902-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8378,2319,'_wp_attached_file','2014/01/dsc0139021.jpg'), (8379,2319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1715;s:6:\"height\";i:1365;s:4:\"file\";s:22:\"2014/01/dsc0139021.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"dsc0139021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"dsc0139021-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"dsc0139021-1024x815.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:815;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"dsc0139021-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"dsc0139021-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8380,913,'_wp_attached_file','2013/10/device-2013-10-16-1523251.png'), (8381,913,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:37:\"2013/10/device-2013-10-16-1523251.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1523251-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1523251-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"device-2013-10-16-1523251-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1523251-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1523251-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8382,913,'pre_import_post_parent','0'), (8383,913,'pre_import_post_id','913'), (8386,2320,'_wp_attached_file','2013/10/device-2013-10-16-152325.png'), (8387,2320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:36:\"2013/10/device-2013-10-16-152325.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152325-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152325-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-152325-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152325-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152325-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8388,2320,'pre_import_post_parent','0'), (8389,2320,'pre_import_post_id','913'), (8392,914,'_wp_attached_file','2013/10/device-2013-10-16-152459.png'), (8393,914,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:36:\"2013/10/device-2013-10-16-152459.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152459-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152459-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-152459-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152459-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152459-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8394,914,'pre_import_post_parent','0'), (8395,914,'pre_import_post_id','914'), (8398,2321,'_wp_attached_file','2013/10/device-2013-10-16-1524591.png'), (8399,2321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:37:\"2013/10/device-2013-10-16-1524591.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1524591-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1524591-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"device-2013-10-16-1524591-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1524591-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1524591-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8400,2321,'pre_import_post_parent','0'), (8401,2321,'pre_import_post_id','914'), (8404,915,'_wp_attached_file','2013/10/device-2013-10-16-152614.png'), (8405,915,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:36:\"2013/10/device-2013-10-16-152614.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152614-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152614-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-152614-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152614-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"device-2013-10-16-152614-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8406,915,'pre_import_post_parent','0'), (8407,915,'pre_import_post_id','915'), (8410,2322,'_wp_attached_file','2013/10/device-2013-10-16-1526141.png'), (8411,2322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:993;s:6:\"height\";i:1490;s:4:\"file\";s:37:\"2013/10/device-2013-10-16-1526141.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1526141-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1526141-199x300.png\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"device-2013-10-16-1526141-682x1024.png\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1526141-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"device-2013-10-16-1526141-993x576.png\";s:5:\"width\";i:993;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8412,2322,'pre_import_post_parent','0'), (8413,2322,'pre_import_post_id','915'), (8416,929,'_wp_attached_file','2013/10/android-2-5-promo.png'), (8417,929,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2013/10/android-2-5-promo.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"android-2-5-promo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"android-2-5-promo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"android-2-5-promo-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"android-2-5-promo-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"android-2-5-promo-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8418,929,'pre_import_post_parent','1707'), (8419,929,'pre_import_post_id','929'), (8420,929,'_wp_attachment_image_alt','WordPress for Android: Native Stats, Theme Browser for WordPress.com, Media Library Support'), (8423,2323,'_wp_attached_file','2013/10/android-2-5-promo1.png'), (8424,2323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2013/10/android-2-5-promo1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"android-2-5-promo1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"android-2-5-promo1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"android-2-5-promo1-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"android-2-5-promo1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"android-2-5-promo1-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8425,2323,'pre_import_post_parent','1707'), (8426,2323,'pre_import_post_id','929'), (8427,2323,'_wp_attachment_image_alt','WordPress for Android: Native Stats, Theme Browser for WordPress.com, Media Library Support'), (8430,940,'_wp_attached_file','2013/11/wordpress-for-android-samsung-galaxy-s3.jpg'), (8431,940,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:906;s:6:\"height\";i:1838;s:4:\"file\";s:51:\"2013/11/wordpress-for-android-samsung-galaxy-s3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"wordpress-for-android-samsung-galaxy-s3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"wordpress-for-android-samsung-galaxy-s3-147x300.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"wordpress-for-android-samsung-galaxy-s3-504x1024.jpg\";s:5:\"width\";i:504;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"wordpress-for-android-samsung-galaxy-s3-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:51:\"wordpress-for-android-samsung-galaxy-s3-906x576.jpg\";s:5:\"width\";i:906;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8432,940,'pre_import_post_parent','1689'), (8433,940,'pre_import_post_id','940'), (8436,2324,'_wp_attached_file','2013/11/wordpress-for-android-samsung-galaxy-s31.jpg'), (8437,2324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:906;s:6:\"height\";i:1838;s:4:\"file\";s:52:\"2013/11/wordpress-for-android-samsung-galaxy-s31.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"wordpress-for-android-samsung-galaxy-s31-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"wordpress-for-android-samsung-galaxy-s31-147x300.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"wordpress-for-android-samsung-galaxy-s31-504x1024.jpg\";s:5:\"width\";i:504;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:52:\"wordpress-for-android-samsung-galaxy-s31-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:52:\"wordpress-for-android-samsung-galaxy-s31-906x576.jpg\";s:5:\"width\";i:906;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8438,2324,'pre_import_post_parent','1689'), (8439,2324,'pre_import_post_id','940'), (8442,966,'_wp_attached_file','2014/01/android26.png'), (8443,966,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2014/01/android26.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"android26-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"android26-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"android26-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"android26-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:22:\"android26-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8446,966,'pre_import_post_id','966'), (8447,966,'pre_import_post_parent','965'), (8448,1712,'_wp_attached_file','2013/10/2-5-feature.jpg'), (8449,2325,'_wp_attached_file','2014/01/android261.png'), (8450,1712,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2979;s:6:\"height\";i:978;s:4:\"file\";s:23:\"2013/10/2-5-feature.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"2-5-feature-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"2-5-feature-300x98.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"2-5-feature-1024x336.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"2-5-feature-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"2-5-feature-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8451,1712,'pre_import_post_parent','0'), (8452,1712,'pre_import_post_id','917'), (8455,2326,'_wp_attached_file','2014/01/chart.png'), (8456,2326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:17:\"2014/01/chart.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8457,2325,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2014/01/android261.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"android261-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"android261-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"android261-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"android261-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"android261-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8460,2325,'pre_import_post_id','966'), (8461,2325,'pre_import_post_parent','965'), (8462,1712,'pre_import_post_parent','0'), (8463,1712,'pre_import_post_id','917'), (8466,2327,'_wp_attached_file','2014/01/paint.png'), (8467,2327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:17:\"2014/01/paint.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8468,2328,'_wp_attached_file','2014/01/paint1.png'), (8469,2328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:18:\"2014/01/paint1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8470,2329,'_wp_attached_file','2014/01/bubble.png'), (8471,2330,'_wp_attached_file','2014/01/bubble1.png'), (8472,2329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:18:\"2014/01/bubble.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8473,2330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:19:\"2014/01/bubble1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8474,991,'_wp_attached_file','2014/03/pull-to-refresh1.gif'), (8475,2331,'_wp_attached_file','2014/03/pull-to-refresh.gif'), (8476,991,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:259;s:4:\"file\";s:28:\"2014/03/pull-to-refresh1.gif\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"pull-to-refresh1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"pull-to-refresh1-300x161.gif\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8479,991,'pre_import_post_id','991'), (8480,991,'pre_import_post_parent','990'), (8481,2331,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:259;s:4:\"file\";s:27:\"2014/03/pull-to-refresh.gif\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"pull-to-refresh-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"pull-to-refresh-300x161.gif\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8484,2331,'pre_import_post_id','991'), (8485,2331,'pre_import_post_parent','990'), (8486,1019,'_wp_attached_file','2014/04/screencap-2014-04-18t15-04-390800.png'); INSERT INTO `wporg_36_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (8487,1019,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1920;s:4:\"file\";s:45:\"2014/04/screencap-2014-04-18t15-04-390800.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-04-18t15-04-390800-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"screencap-2014-04-18t15-04-390800-187x300.png\";s:5:\"width\";i:187;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-18t15-04-390800-640x1024.png\";s:5:\"width\";i:640;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-04-18t15-04-390800-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-18t15-04-390800-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8488,1019,'pre_import_post_parent','1017'), (8491,1019,'pre_import_post_id','1019'), (8492,2332,'_wp_attached_file','2014/04/screencap-2014-04-18t15-04-3908001.png'), (8493,2332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1920;s:4:\"file\";s:46:\"2014/04/screencap-2014-04-18t15-04-3908001.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-18t15-04-3908001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-18t15-04-3908001-187x300.png\";s:5:\"width\";i:187;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"screencap-2014-04-18t15-04-3908001-640x1024.png\";s:5:\"width\";i:640;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-18t15-04-3908001-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:47:\"screencap-2014-04-18t15-04-3908001-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8494,2332,'pre_import_post_parent','1017'), (8497,2332,'pre_import_post_id','1019'), (8498,1020,'_wp_attached_file','2014/04/screencap-2014-04-25t14-26-120800.png'), (8499,2333,'_wp_attached_file','2014/04/screencap-2014-04-25t14-26-1208001.png'), (8500,1020,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:45:\"2014/04/screencap-2014-04-25t14-26-120800.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-04-25t14-26-120800-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"screencap-2014-04-25t14-26-120800-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-25t14-26-120800-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-04-25t14-26-120800-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-25t14-26-120800-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8503,1020,'pre_import_post_parent','1017'), (8504,1020,'pre_import_post_id','1020'), (8505,2333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:46:\"2014/04/screencap-2014-04-25t14-26-1208001.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-25t14-26-1208001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-25t14-26-1208001-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"screencap-2014-04-25t14-26-1208001-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-25t14-26-1208001-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:47:\"screencap-2014-04-25t14-26-1208001-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8508,2333,'pre_import_post_parent','1017'), (8509,2333,'pre_import_post_id','1020'), (8510,1022,'_wp_attached_file','2014/04/screencap-2014-04-25t14-32-0708001.png'), (8511,1022,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:46:\"2014/04/screencap-2014-04-25t14-32-0708001.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-25t14-32-0708001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-25t14-32-0708001-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"screencap-2014-04-25t14-32-0708001-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-25t14-32-0708001-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:47:\"screencap-2014-04-25t14-32-0708001-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8512,1022,'pre_import_post_parent','1017'), (8514,1022,'pre_import_post_id','1022'), (8516,2334,'_wp_attached_file','2014/04/screencap-2014-04-25t14-32-070800.png'), (8517,2334,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:45:\"2014/04/screencap-2014-04-25t14-32-070800.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-04-25t14-32-070800-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"screencap-2014-04-25t14-32-070800-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-25t14-32-070800-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-04-25t14-32-070800-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"screencap-2014-04-25t14-32-070800-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8518,2334,'pre_import_post_parent','1017'), (8520,2334,'pre_import_post_id','1022'), (8522,1055,'_wp_attached_file','2014/05/gingerbread-man1.png'), (8523,1055,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:565;s:6:\"height\";i:565;s:4:\"file\";s:28:\"2014/05/gingerbread-man1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"gingerbread-man1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"gingerbread-man1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"gingerbread-man1-565x372.png\";s:5:\"width\";i:565;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8526,1055,'pre_import_post_id','1055'), (8527,1055,'pre_import_post_parent','1037'), (8528,2335,'_wp_attached_file','2014/05/gingerbread-man11.png'), (8529,2335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:565;s:6:\"height\";i:565;s:4:\"file\";s:29:\"2014/05/gingerbread-man11.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"gingerbread-man11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"gingerbread-man11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"gingerbread-man11-565x372.png\";s:5:\"width\";i:565;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8532,2335,'pre_import_post_id','1055'), (8533,2335,'pre_import_post_parent','1037'), (8534,1059,'_wp_attached_file','2014/06/blog-discovery-feature.gif'), (8535,1059,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:847;s:4:\"file\";s:34:\"2014/06/blog-discovery-feature.gif\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"blog-discovery-feature-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"blog-discovery-feature-191x300.gif\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"blog-discovery-feature-540x372.gif\";s:5:\"width\";i:540;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/gif\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"blog-discovery-feature-540x576.gif\";s:5:\"width\";i:540;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8538,1059,'pre_import_post_id','1059'), (8539,1059,'pre_import_post_parent','0'), (8540,1087,'_wp_attached_file','2014/06/blog-discovery-feature11.gif'), (8541,1087,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:847;s:4:\"file\";s:36:\"2014/06/blog-discovery-feature11.gif\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"blog-discovery-feature11-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"blog-discovery-feature11-191x300.gif\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"blog-discovery-feature11-540x372.gif\";s:5:\"width\";i:540;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/gif\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"blog-discovery-feature11-540x576.gif\";s:5:\"width\";i:540;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8544,1087,'pre_import_post_parent','1065'), (8545,1087,'pre_import_post_id','1087'), (8546,1531,'_wp_attached_file','2014/01/ios-39.jpg'), (8547,1531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:18:\"2014/01/ios-39.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ios-39-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"ios-39-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"ios-39-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"ios-39-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:19:\"ios-39-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8548,1531,'pre_import_post_parent','1528'), (8549,1531,'pre_import_post_id','1531'), (8552,2336,'_wp_attached_file','2014/06/blog-discovery-feature1.gif'), (8553,2336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:847;s:4:\"file\";s:35:\"2014/06/blog-discovery-feature1.gif\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blog-discovery-feature1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blog-discovery-feature1-191x300.gif\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"blog-discovery-feature1-540x372.gif\";s:5:\"width\";i:540;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/gif\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"blog-discovery-feature1-540x576.gif\";s:5:\"width\";i:540;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8556,2336,'pre_import_post_parent','1065'), (8557,2336,'pre_import_post_id','1087'), (8558,1531,'pre_import_post_parent','1528'), (8559,1531,'pre_import_post_id','1531'), (8563,1550,'_wp_attached_file','2014/03/stats-2.png'), (8565,1550,'pre_import_post_id','1550'), (8566,1550,'pre_import_post_parent','1542'), (8567,2337,'_wp_attached_file','2014/04/landscape1.png'), (8568,2337,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:439;s:4:\"file\";s:22:\"2014/04/landscape1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"landscape1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"landscape1-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"landscape1-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8569,1550,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2014/03/stats-2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"stats-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"stats-2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"stats-2-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"stats-2-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:20:\"stats-2-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8572,1550,'pre_import_post_id','1550'), (8573,1550,'pre_import_post_parent','1542'), (8574,2338,'_wp_attached_file','2014/04/reader.png'), (8575,2338,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:670;s:6:\"height\";i:1160;s:4:\"file\";s:18:\"2014/04/reader.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"reader-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"reader-173x300.png\";s:5:\"width\";i:173;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"reader-591x1024.png\";s:5:\"width\";i:591;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"reader-670x372.png\";s:5:\"width\";i:670;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:18:\"reader-670x576.png\";s:5:\"width\";i:670;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8576,2339,'_wp_attached_file','2014/04/reader1.png'), (8577,2339,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:670;s:6:\"height\";i:1160;s:4:\"file\";s:19:\"2014/04/reader1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"reader1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"reader1-173x300.png\";s:5:\"width\";i:173;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"reader1-591x1024.png\";s:5:\"width\";i:591;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"reader1-670x372.png\";s:5:\"width\";i:670;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:19:\"reader1-670x576.png\";s:5:\"width\";i:670;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8578,2019,'_wp_attached_file','2014/06/reader-2x1.png'), (8579,2044,'_wp_attached_file','2014/06/landscape.png'), (8580,2019,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:660;s:6:\"height\";i:1142;s:4:\"file\";s:22:\"2014/06/reader-2x1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"reader-2x1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"reader-2x1-173x300.png\";s:5:\"width\";i:173;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"reader-2x1-591x1024.png\";s:5:\"width\";i:591;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"reader-2x1-660x372.png\";s:5:\"width\";i:660;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:22:\"reader-2x1-660x576.png\";s:5:\"width\";i:660;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8581,2044,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:409;s:4:\"file\";s:21:\"2014/06/landscape.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"landscape-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"landscape-300x204.png\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"landscape-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8582,2053,'_wp_attached_file','2014/07/stats-2x3.png'), (8583,2340,'_wp_attached_file','2014/07/stats-2x31.png'), (8584,2053,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:660;s:6:\"height\";i:634;s:4:\"file\";s:21:\"2014/07/stats-2x3.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"stats-2x3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"stats-2x3-300x288.png\";s:5:\"width\";i:300;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"stats-2x3-660x372.png\";s:5:\"width\";i:660;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"stats-2x3-660x576.png\";s:5:\"width\";i:660;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8585,2340,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:660;s:6:\"height\";i:634;s:4:\"file\";s:22:\"2014/07/stats-2x31.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"stats-2x31-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"stats-2x31-300x288.png\";s:5:\"width\";i:300;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"stats-2x31-660x372.png\";s:5:\"width\";i:660;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:22:\"stats-2x31-660x576.png\";s:5:\"width\";i:660;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8586,2063,'_wp_attached_file','2014/07/3-9-image.jpg'), (8587,2341,'_wp_attached_file','2014/07/3-9-image1.jpg'), (8588,2063,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2014/07/3-9-image.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"3-9-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"3-9-image-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"3-9-image-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"3-9-image-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:22:\"3-9-image-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8589,2341,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2014/07/3-9-image1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"3-9-image1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"3-9-image1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"3-9-image1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"3-9-image1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"3-9-image1-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8590,2066,'_wp_attached_file','2014/07/stats-21.png'), (8591,2342,'_wp_attached_file','2014/07/stats-211.png'), (8592,2066,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2014/07/stats-21.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"stats-21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"stats-21-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"stats-21-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"stats-21-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:21:\"stats-21-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8593,2342,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2014/07/stats-211.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"stats-211-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"stats-211-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"stats-211-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"stats-211-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:22:\"stats-211-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8594,2070,'_wp_attached_file','2014/07/blog-discovery-feature21.gif'), (8595,2070,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:847;s:4:\"file\";s:36:\"2014/07/blog-discovery-feature21.gif\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"blog-discovery-feature21-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"blog-discovery-feature21-191x300.gif\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"blog-discovery-feature21-540x372.gif\";s:5:\"width\";i:540;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/gif\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"blog-discovery-feature21-540x576.gif\";s:5:\"width\";i:540;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8596,2343,'_wp_attached_file','2014/07/blog-discovery-feature2.gif'), (8597,2343,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:847;s:4:\"file\";s:35:\"2014/07/blog-discovery-feature2.gif\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blog-discovery-feature2-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blog-discovery-feature2-191x300.gif\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"blog-discovery-feature2-540x372.gif\";s:5:\"width\";i:540;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/gif\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"blog-discovery-feature2-540x576.gif\";s:5:\"width\";i:540;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8598,2073,'_wp_attached_file','2014/07/gingerbread-man11.png'), (8599,2073,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:29:\"2014/07/gingerbread-man11.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"gingerbread-man11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8600,2344,'_wp_attached_file','2014/07/gingerbread-man111.png'), (8601,2344,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:30:\"2014/07/gingerbread-man111.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"gingerbread-man111-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8602,2076,'_wp_attached_file','2014/07/pull-to-refresh.gif'), (8603,2076,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:259;s:4:\"file\";s:27:\"2014/07/pull-to-refresh.gif\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"pull-to-refresh-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"pull-to-refresh-300x161.gif\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8604,2345,'_wp_attached_file','2014/07/pull-to-refresh1.gif'), (8605,2345,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:259;s:4:\"file\";s:28:\"2014/07/pull-to-refresh1.gif\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"pull-to-refresh1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"pull-to-refresh1-300x161.gif\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8606,2079,'_wp_attached_file','2014/07/android261.png'), (8607,2079,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2014/07/android261.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"android261-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"android261-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"android261-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"android261-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"android261-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8608,2346,'_wp_attached_file','2014/07/android2611.png'), (8609,2346,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2014/07/android2611.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"android2611-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"android2611-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"android2611-1024x682.png\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"android2611-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"android2611-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8610,2114,'_wp_attached_file','2014/07/screencap-2014-07-28t14-20-050200.png'), (8611,2114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:45:\"2014/07/screencap-2014-07-28t14-20-050200.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-07-28t14-20-050200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"screencap-2014-07-28t14-20-050200-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-07-28t14-20-050200-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:45:\"screencap-2014-07-28t14-20-050200-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8612,2347,'_wp_attached_file','2014/07/screencap-2014-07-28t14-20-0502001.png'), (8613,2347,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:46:\"2014/07/screencap-2014-07-28t14-20-0502001.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-07-28t14-20-0502001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"screencap-2014-07-28t14-20-0502001-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-07-28t14-20-0502001-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"screencap-2014-07-28t14-20-0502001-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8614,2115,'_wp_attached_file','2014/07/screencap-2014-07-28t14-18-290200.png'), (8615,2115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:45:\"2014/07/screencap-2014-07-28t14-18-290200.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-07-28t14-18-290200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"screencap-2014-07-28t14-18-290200-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-07-28t14-18-290200-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:45:\"screencap-2014-07-28t14-18-290200-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8616,2348,'_wp_attached_file','2014/07/screencap-2014-07-28t14-18-2902001.png'), (8617,2348,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:46:\"2014/07/screencap-2014-07-28t14-18-2902001.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-07-28t14-18-2902001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"screencap-2014-07-28t14-18-2902001-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-07-28t14-18-2902001-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"screencap-2014-07-28t14-18-2902001-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8618,2116,'_wp_attached_file','2014/07/screencap-2014-07-28t14-22-280200.png'), (8619,2116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:45:\"2014/07/screencap-2014-07-28t14-22-280200.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-07-28t14-22-280200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"screencap-2014-07-28t14-22-280200-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-07-28t14-22-280200-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:45:\"screencap-2014-07-28t14-22-280200-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8620,2349,'_wp_attached_file','2014/07/screencap-2014-07-28t14-22-2802001.png'), (8621,2349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:800;s:4:\"file\";s:46:\"2014/07/screencap-2014-07-28t14-22-2802001.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-07-28t14-22-2802001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"screencap-2014-07-28t14-22-2802001-180x300.png\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-07-28t14-22-2802001-480x372.png\";s:5:\"width\";i:480;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"screencap-2014-07-28t14-22-2802001-480x576.png\";s:5:\"width\";i:480;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8622,2190,'_wp_attached_file','2014/08/screencap-2014-08-25t13-26-100200.png'), (8623,2190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:45:\"2014/08/screencap-2014-08-25t13-26-100200.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-08-25t13-26-100200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"screencap-2014-08-25t13-26-100200-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-26-100200-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-08-25t13-26-100200-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-26-100200-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8624,2350,'_wp_attached_file','2014/08/screencap-2014-08-25t13-26-1002001.png'), (8625,2350,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:46:\"2014/08/screencap-2014-08-25t13-26-1002001.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-26-1002001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-26-1002001-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"screencap-2014-08-25t13-26-1002001-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-26-1002001-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:47:\"screencap-2014-08-25t13-26-1002001-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8626,2191,'_wp_attached_file','2014/08/screencap-2014-08-25t13-26-040200.png'), (8627,2191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:45:\"2014/08/screencap-2014-08-25t13-26-040200.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-08-25t13-26-040200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"screencap-2014-08-25t13-26-040200-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-26-040200-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-08-25t13-26-040200-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-26-040200-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8628,2351,'_wp_attached_file','2014/08/screencap-2014-08-25t13-26-0402001.png'), (8629,2351,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:46:\"2014/08/screencap-2014-08-25t13-26-0402001.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-26-0402001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-26-0402001-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"screencap-2014-08-25t13-26-0402001-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-26-0402001-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:47:\"screencap-2014-08-25t13-26-0402001-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8630,2192,'_wp_attached_file','2014/08/screencap-2014-08-25t13-25-440200.png'), (8631,2192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:45:\"2014/08/screencap-2014-08-25t13-25-440200.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-08-25t13-25-440200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"screencap-2014-08-25t13-25-440200-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-25-440200-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"screencap-2014-08-25t13-25-440200-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-25-440200-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8632,2352,'_wp_attached_file','2014/08/screencap-2014-08-25t13-25-4402001.png'), (8633,2352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:46:\"2014/08/screencap-2014-08-25t13-25-4402001.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-25-4402001-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-25-4402001-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"screencap-2014-08-25t13-25-4402001-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"screencap-2014-08-25t13-25-4402001-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:47:\"screencap-2014-08-25t13-25-4402001-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8634,2203,'_wp_attached_file','2014/08/new-blog-preview.png'), (8635,2353,'_wp_attached_file','2014/08/new-blog-preview1.png'), (8636,2203,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:813;s:4:\"file\";s:28:\"2014/08/new-blog-preview.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"new-blog-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"new-blog-preview-300x203.png\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"new-blog-preview-1024x693.png\";s:5:\"width\";i:1024;s:6:\"height\";i:693;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"new-blog-preview-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"new-blog-preview-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8637,2353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:813;s:4:\"file\";s:29:\"2014/08/new-blog-preview1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"new-blog-preview1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"new-blog-preview1-300x203.png\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"new-blog-preview1-1024x693.png\";s:5:\"width\";i:1024;s:6:\"height\";i:693;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"new-blog-preview1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"new-blog-preview1-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8638,2205,'_wp_attached_file','2014/08/new-blog-preview21.png'), (8639,2205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:587;s:4:\"file\";s:30:\"2014/08/new-blog-preview21.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"new-blog-preview21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"new-blog-preview21-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"new-blog-preview21-1024x500.png\";s:5:\"width\";i:1024;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"new-blog-preview21-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"new-blog-preview21-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8640,2354,'_wp_attached_file','2014/08/new-blog-preview2.png'), (8641,2354,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:587;s:4:\"file\";s:29:\"2014/08/new-blog-preview2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"new-blog-preview2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"new-blog-preview2-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"new-blog-preview2-1024x500.png\";s:5:\"width\";i:1024;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"new-blog-preview2-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"new-blog-preview2-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8642,2214,'_wp_attached_file','2014/08/photo-aug-26-9-49-28-am.png'), (8643,2214,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:633;s:6:\"height\";i:234;s:4:\"file\";s:35:\"2014/08/photo-aug-26-9-49-28-am.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-49-28-am-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-49-28-am-300x110.png\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8644,2355,'_menu_item_type','custom'), (8645,2355,'_menu_item_menu_item_parent','2356'), (8646,2355,'_menu_item_object_id','2355'), (8647,2355,'_menu_item_object','custom'), (8648,2355,'_menu_item_target',''), (8649,2355,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (8650,2355,'_menu_item_xfn',''), (8651,2355,'_menu_item_url','http://itunes.apple.com/us/app/wordpress/id335703880?mt=8'), (8652,2356,'_menu_item_type','custom'), (8653,2356,'_menu_item_menu_item_parent','0'), (8654,2356,'_menu_item_object_id','2356'), (8655,2356,'_menu_item_object','custom'), (8656,2356,'_menu_item_target',''), (8657,2356,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (8658,2356,'_menu_item_xfn',''), (8659,2356,'_menu_item_url','#'), (8660,2357,'_wp_attached_file','2014/08/photo-aug-26-9-49-28-am1.png'), (8661,2357,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:633;s:6:\"height\";i:234;s:4:\"file\";s:36:\"2014/08/photo-aug-26-9-49-28-am1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"photo-aug-26-9-49-28-am1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"photo-aug-26-9-49-28-am1-300x110.png\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8678,2228,'_wp_attached_file','2014/09/native-stats-day.png'), (8679,2228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:28:\"2014/09/native-stats-day.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"native-stats-day-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"native-stats-day-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"native-stats-day-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"native-stats-day-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"native-stats-day-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8680,2360,'_wp_attached_file','2014/09/native-stats-day1.png'), (8681,2360,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2014/09/native-stats-day1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"native-stats-day1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"native-stats-day1-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"native-stats-day1-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"native-stats-day1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"native-stats-day1-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8682,2229,'_wp_attached_file','2014/09/native-stats-week.png'), (8683,2229,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2014/09/native-stats-week.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"native-stats-week-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"native-stats-week-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"native-stats-week-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"native-stats-week-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"native-stats-week-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8684,2361,'_wp_attached_file','2014/09/native-stats-week1.png'), (8685,2361,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:30:\"2014/09/native-stats-week1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"native-stats-week1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"native-stats-week1-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"native-stats-week1-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"native-stats-week1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"native-stats-week1-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8686,2230,'_wp_attached_file','2014/09/native-stats-month.png'), (8687,2230,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:30:\"2014/09/native-stats-month.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"native-stats-month-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"native-stats-month-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"native-stats-month-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"native-stats-month-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"native-stats-month-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8688,2362,'_wp_attached_file','2014/09/native-stats-month1.png'), (8689,2362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1920;s:4:\"file\";s:31:\"2014/09/native-stats-month1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"native-stats-month1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"native-stats-month1-168x300.png\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"native-stats-month1-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"native-stats-month1-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:32:\"native-stats-month1-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8690,2363,'_wp_attached_file','2014/08/photo-aug-26-9-37-51-am.png'), (8691,2363,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:1136;s:4:\"file\";s:35:\"2014/08/photo-aug-26-9-37-51-am.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-37-51-am-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-37-51-am-169x300.png\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"photo-aug-26-9-37-51-am-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-37-51-am-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-37-51-am-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8692,2364,'_wp_attached_file','2014/08/photo-aug-26-9-37-51-am1.png'), (8693,2364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:1136;s:4:\"file\";s:36:\"2014/08/photo-aug-26-9-37-51-am1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"photo-aug-26-9-37-51-am1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"photo-aug-26-9-37-51-am1-169x300.png\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"photo-aug-26-9-37-51-am1-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"photo-aug-26-9-37-51-am1-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"photo-aug-26-9-37-51-am1-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8694,2365,'_wp_attached_file','2014/08/photo-aug-26-9-38-57-am.png'), (8695,2365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:1136;s:4:\"file\";s:35:\"2014/08/photo-aug-26-9-38-57-am.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-38-57-am-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-38-57-am-169x300.png\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"photo-aug-26-9-38-57-am-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-38-57-am-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-38-57-am-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8696,2366,'_wp_attached_file','2014/08/photo-aug-26-9-38-57-am1.png'), (8697,2367,'_wp_attached_file','2014/08/photo-aug-26-9-39-06-am.png'), (8698,2366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:1136;s:4:\"file\";s:36:\"2014/08/photo-aug-26-9-38-57-am1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"photo-aug-26-9-38-57-am1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"photo-aug-26-9-38-57-am1-169x300.png\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"photo-aug-26-9-38-57-am1-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"photo-aug-26-9-38-57-am1-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"photo-aug-26-9-38-57-am1-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8699,2367,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:1136;s:4:\"file\";s:35:\"2014/08/photo-aug-26-9-39-06-am.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-39-06-am-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-39-06-am-169x300.png\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"photo-aug-26-9-39-06-am-576x1024.png\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-39-06-am-640x372.png\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"photo-aug-26-9-39-06-am-640x576.png\";s:5:\"width\";i:640;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'), (8700,9,'_wp_page_template','default'), (8701,9,'_wp_page_template','default'), (8702,9,'_publicize_pending','1'), (8703,9,'geo_public','0'), (8704,9,'sharing_disabled','1'), (8705,9,'post_subtitle','App resources for iOS and Android users'), (8706,9,'features_animation',''), (8707,9,'_wp_page_template','default'), (8708,9,'_publicize_pending','1'), (8709,9,'geo_public','0'), (8710,9,'sharing_disabled','1'), (8711,9,'post_subtitle','App resources for iOS and Android users'), (8712,9,'features_animation',''), (8713,9,'_wp_page_template','default'), (8714,9,'_publicize_pending','1'), (8715,9,'geo_public','0'), (8716,9,'sharing_disabled','1'), (8717,9,'post_subtitle','App resources for iOS and Android users'), (8718,9,'features_animation',''), (8719,9,'_wp_page_template','default'), (8720,9,'_publicize_pending','1'), (8721,9,'geo_public','0'), (8722,9,'sharing_disabled','1'), (8723,9,'post_subtitle','App resources for iOS and Android users'), (8724,9,'features_animation',''), (8725,9,'_edit_last','1'), (8726,9,'_publicize_pending','1'), (8727,9,'geo_public','0'), (8728,9,'sharing_disabled','1'), (8729,9,'post_subtitle','App resources for iOS and Android users'), (8730,9,'features_animation',''), (8731,9,'_wp_page_template','default'), (8732,9,'_publicize_pending','1'), (8733,9,'geo_public','0'), (8734,11,'_wp_page_template','default'), (8735,9,'sharing_disabled','1'), (8736,9,'post_subtitle','App resources for iOS and Android users'), (8737,11,'_publicize_pending','1'), (8738,9,'features_animation',''), (8739,9,'_wp_page_template','default'), (8740,11,'post_subtitle',''), (8741,11,'features_animation',''), (8742,11,'_wp_page_template','default'), (8743,11,'_publicize_pending','1'), (8744,11,'post_subtitle',''), (8745,11,'features_animation',''), (8746,11,'_wp_page_template','default'), (8747,11,'_publicize_pending','1'), (8748,11,'post_subtitle',''), (8749,9,'_publicize_pending','1'), (8750,9,'geo_public','0'), (8751,9,'sharing_disabled','1'), (8752,11,'features_animation',''), (8753,9,'post_subtitle','App resources for iOS and Android users'), (8754,11,'_wp_page_template','default'), (8755,9,'features_animation',''), (8756,9,'_wp_page_template','default'), (8757,11,'_publicize_pending','1'), (8758,9,'_publicize_pending','1'), (8759,11,'post_subtitle',''), (8760,9,'geo_public','0'), (8761,11,'features_animation',''), (8762,9,'sharing_disabled','1'), (8763,9,'post_subtitle','App resources for iOS and Android users'), (8764,9,'features_animation',''), (8765,9,'_edit_last','7'), (8766,11,'_wp_page_template','default'), (8767,11,'_publicize_pending','1'), (8768,11,'post_subtitle',''), (8769,11,'features_animation',''), (8770,11,'_wp_page_template','default'), (8771,11,'_publicize_pending','1'), (8772,11,'post_subtitle',''), (8773,11,'features_animation',''), (8774,11,'_wp_page_template','default'), (8775,11,'_publicize_pending','1'), (8776,11,'post_subtitle',''), (8777,11,'features_animation',''), (8778,11,'_wp_page_template','default'), (8779,11,'_publicize_pending','1'), (8780,11,'post_subtitle',''), (8781,11,'features_animation',''), (8836,2369,'_publicize_pending','1'), (8837,2369,'_wp_page_template','grid-page.php'), (8838,2369,'features_animation',''), (8839,2369,'original_post_id','1792'), (8840,2369,'_wp_old_slug','1792'), (8841,2369,'post_subtitle',''), (8842,2369,'sharing_disabled','1'), (8843,2369,'geo_public','0'), (8844,2369,'_publicize_pending','1'), (8845,2369,'_wp_page_template','grid-page.php'), (8846,2369,'features_animation',''), (8847,2369,'original_post_id','1792'), (8848,2369,'_wp_old_slug','1792'), (8849,2369,'post_subtitle',''), (8850,2369,'sharing_disabled','1'), (8852,2369,'geo_public','0'), (8853,2369,'_publicize_pending','1'), (8854,2369,'_wp_page_template','grid-page.php'), (8856,2369,'features_animation',''), (8857,2369,'original_post_id','1792'), (8858,2369,'_wp_old_slug','1792'), (8860,2369,'post_subtitle',''), (8861,2369,'sharing_disabled','1'), (8862,2369,'geo_public','0'), (8864,2369,'_publicize_pending','1'), (8865,2369,'_wp_page_template','grid-page.php'), (8867,2369,'features_animation',''), (8869,2369,'original_post_id','1792'), (8870,2369,'_wp_old_slug','1792'), (8871,2369,'post_subtitle',''), (8873,2369,'sharing_disabled','1'), (8875,2369,'geo_public','0'), (8883,2370,'geo_public','0'), (8884,2370,'_wp_old_slug','1794'), (8885,2370,'original_post_id','1794'), (8886,2370,'_publicize_pending','1'), (8888,2370,'_wp_page_template','default'), (8889,2370,'features_animation','
\n

Dear WordPress,

\n

Has it really been 10 years? I see you all over the world now, glowing from screens, bringing people together at meetups and WordCamps — you’re at your best when you do that. You become a part of their life and they become a part of yours. I hope we grow old together.

\n\n
'), (8890,2370,'sharing_disabled','1'), (8891,2370,'post_subtitle',''), (8892,2370,'geo_public','0'), (8893,2370,'_wp_old_slug','1794'), (8894,2370,'original_post_id','1794'), (8895,2370,'_publicize_pending','1'), (8897,2370,'_wp_page_template','default'), (8898,2370,'features_animation','
\n

Dear WordPress,

\n

Has it really been 10 years? I see you all over the world now, glowing from screens, bringing people together at meetups and WordCamps — you’re at your best when you do that. You become a part of their life and they become a part of yours. I hope we grow old together.

\n\n
'), (8899,2370,'sharing_disabled','1'), (8900,2370,'post_subtitle',''), (8901,2370,'geo_public','0'), (8902,2370,'_wp_old_slug','1794'), (8903,2370,'original_post_id','1794'), (8904,2370,'_publicize_pending','1'), (8906,2370,'_wp_page_template','default'), (8907,2370,'features_animation','
\n

Dear WordPress,

\n

Has it really been 10 years? I see you all over the world now, glowing from screens, bringing people together at meetups and WordCamps — you’re at your best when you do that. You become a part of their life and they become a part of yours. I hope we grow old together.

\n\n
'), (8908,2370,'sharing_disabled','1'), (8909,2370,'post_subtitle',''), (8910,2370,'geo_public','0'), (8911,2370,'_wp_old_slug','1794'), (8912,2370,'original_post_id','1794'), (8913,2370,'_publicize_pending','1'), (8915,2370,'_wp_page_template','default'), (8916,2370,'features_animation','
\n

Dear WordPress,

\n

Has it really been 10 years? I see you all over the world now, glowing from screens, bringing people together at meetups and WordCamps — you’re at your best when you do that. You become a part of their life and they become a part of yours. I hope we grow old together.

\n\n
'), (8917,2370,'sharing_disabled','1'), (8918,2370,'post_subtitle',''), (8919,2371,'geo_public','0'), (8920,2371,'_publicize_pending','1'), (8921,2371,'_wp_old_slug','1796'), (8922,2371,'original_post_id','1796'), (8923,2371,'sharing_disabled','1'), (8924,2371,'features_animation','
\n
\n\n'), (8926,2371,'_wp_page_template','default'), (8927,2371,'post_subtitle',''), (8928,2371,'geo_public','0'), (8929,2371,'_publicize_pending','1'), (8930,2371,'_wp_old_slug','1796'), (8931,2371,'original_post_id','1796'), (8932,2371,'sharing_disabled','1'), (8933,2371,'features_animation','
\n
\n\n'), (8935,2371,'_wp_page_template','default'), (8936,2371,'post_subtitle',''), (8937,2371,'geo_public','0'), (8938,2371,'_publicize_pending','1'), (8939,2371,'_wp_old_slug','1796'), (8940,2371,'original_post_id','1796'), (8941,2371,'sharing_disabled','1'), (8942,2371,'features_animation','
\n
\n\n'), (8944,2371,'_wp_page_template','default'), (8945,2371,'post_subtitle',''), (8946,2371,'geo_public','0'), (8947,2371,'_publicize_pending','1'), (8948,2371,'_wp_old_slug','1796'), (8949,2371,'original_post_id','1796'), (8950,2371,'sharing_disabled','1'), (8951,2371,'features_animation','
\n
\n\n'), (8953,2371,'_wp_page_template','default'), (8954,2371,'post_subtitle',''), (8955,2372,'_wp_old_slug','1798'), (8956,2372,'original_post_id','1798'), (8957,2372,'_wp_page_template','default'), (8959,2372,'_publicize_pending','1'), (8960,2372,'sharing_disabled','1'), (8961,2372,'features_animation','
'), (8962,2372,'post_subtitle',''), (8963,2372,'geo_public','0'), (8964,2372,'_wp_old_slug','1798'), (8965,2372,'original_post_id','1798'), (8966,2372,'_wp_page_template','default'), (8968,2372,'_publicize_pending','1'), (8969,2372,'sharing_disabled','1'), (8970,2372,'features_animation','
'), (8971,2372,'post_subtitle',''), (8972,2372,'geo_public','0'), (8973,2372,'_wp_old_slug','1798'), (8974,2372,'original_post_id','1798'), (8975,2372,'_wp_page_template','default'), (8977,2372,'_publicize_pending','1'), (8978,2372,'sharing_disabled','1'), (8979,2372,'features_animation','
'), (8980,2372,'post_subtitle',''), (8981,2372,'geo_public','0'), (8982,2372,'_wp_old_slug','1798'), (8983,2372,'original_post_id','1798'), (8984,2372,'_wp_page_template','default'), (8986,2372,'_publicize_pending','1'), (8987,2372,'sharing_disabled','1'), (8988,2372,'features_animation','
'), (8989,2372,'post_subtitle',''), (8990,2372,'geo_public','0'), (8991,2373,'geo_public','0'), (8993,2373,'_publicize_pending','1'), (8994,2373,'_wp_page_template','default'), (8995,2373,'features_animation','

WordPress

Mel Choyce replied to your comment on “SXSW Shirt Ideas”

'), (8996,2373,'_wp_old_slug','1800'), (8997,2373,'original_post_id','1800'), (8998,2373,'sharing_disabled','1'), (8999,2373,'post_subtitle',''), (9000,2373,'geo_public','0'), (9002,2373,'_publicize_pending','1'), (9003,2373,'_wp_page_template','default'), (9004,2373,'features_animation','

WordPress

Mel Choyce replied to your comment on “SXSW Shirt Ideas”

'), (9005,2373,'_wp_old_slug','1800'), (9006,2373,'original_post_id','1800'), (9007,2373,'sharing_disabled','1'), (9008,2373,'post_subtitle',''), (9009,2373,'geo_public','0'), (9011,2373,'_publicize_pending','1'), (9012,2373,'_wp_page_template','default'), (9013,2373,'features_animation','

WordPress

Mel Choyce replied to your comment on “SXSW Shirt Ideas”

'), (9014,2373,'_wp_old_slug','1800'), (9015,2373,'original_post_id','1800'), (9016,2373,'sharing_disabled','1'), (9017,2373,'post_subtitle',''), (9018,2373,'geo_public','0'), (9020,2373,'_publicize_pending','1'), (9021,2373,'_wp_page_template','default'), (9022,2373,'features_animation','

WordPress

Mel Choyce replied to your comment on “SXSW Shirt Ideas”

'), (9023,2373,'_wp_old_slug','1800'), (9024,2373,'original_post_id','1800'), (9025,2373,'sharing_disabled','1'), (9026,2373,'post_subtitle',''), (9028,2374,'geo_public','0'), (9029,2374,'_publicize_pending','1'), (9030,2374,'sharing_disabled','1'), (9031,2374,'_wp_page_template','default'), (9034,2374,'original_post_id','1802'), (9035,2374,'_wp_old_slug','1802'), (9037,2374,'post_subtitle',''), (9038,2374,'features_animation','
'), (9039,2374,'geo_public','0'), (9040,2374,'_publicize_pending','1'), (9041,2374,'sharing_disabled','1'), (9043,2374,'_wp_page_template','default'), (9045,2374,'original_post_id','1802'), (9047,2374,'_wp_old_slug','1802'), (9048,2374,'post_subtitle',''), (9049,2374,'features_animation','
'), (9051,2374,'geo_public','0'), (9052,2374,'_publicize_pending','1'), (9053,2374,'sharing_disabled','1'), (9055,2374,'_wp_page_template','default'), (9057,2374,'original_post_id','1802'), (9059,2374,'_wp_old_slug','1802'), (9060,2374,'post_subtitle',''), (9061,2374,'features_animation','
'), (9063,2374,'geo_public','0'), (9066,2374,'_publicize_pending','1'), (9068,2374,'sharing_disabled','1'), (9070,2374,'_wp_page_template','default'), (9074,2374,'original_post_id','1802'), (9075,2374,'_wp_old_slug','1802'), (9076,2374,'post_subtitle',''), (9077,2374,'features_animation','
'), (9078,2375,'sharing_disabled','1'), (9079,2375,'geo_public','0'), (9080,2375,'post_subtitle','Let\'s build the future of mobile'), (9082,2375,'Post-Title','Nam condimentum tempus diam'), (9083,2375,'original_post_id','1824'), (9084,2375,'_wp_old_slug','1824'), (9086,2375,'_wp_page_template','default'), (9088,2375,'_publicize_pending','1'), (9090,2375,'features_animation',''), (9091,2375,'sharing_disabled','1'), (9092,2375,'geo_public','0'), (9094,2375,'post_subtitle','Let\'s build the future of mobile'), (9095,2375,'Post-Title','Nam condimentum tempus diam'), (9096,2375,'original_post_id','1824'), (9098,2375,'_wp_old_slug','1824'), (9099,2375,'_wp_page_template','default'), (9101,2375,'_publicize_pending','1'), (9103,2375,'features_animation',''), (9104,2375,'sharing_disabled','1'), (9105,2369,'_publicize_pending','1'), (9106,2375,'geo_public','0'), (9107,2375,'post_subtitle','Let\'s build the future of mobile'), (9108,2375,'Post-Title','Nam condimentum tempus diam'), (9109,2369,'_wp_page_template','grid-page.php'), (9110,2375,'original_post_id','1824'), (9111,2375,'_wp_old_slug','1824'), (9112,2375,'_wp_page_template','default'), (9113,2369,'features_animation',''), (9114,2375,'_publicize_pending','1'), (9115,2369,'original_post_id','1792'), (9116,2375,'features_animation',''), (9117,2369,'_wp_old_slug','1792'), (9118,2375,'sharing_disabled','1'), (9119,2375,'geo_public','0'), (9120,2369,'post_subtitle',''), (9121,2375,'post_subtitle','Let\'s build the future of mobile'), (9122,2369,'sharing_disabled','1'), (9123,2369,'geo_public','0'), (9124,2375,'Post-Title','Nam condimentum tempus diam'), (9125,2369,'_publicize_pending','1'), (9126,2375,'original_post_id','1824'), (9127,2369,'_wp_page_template','grid-page.php'), (9128,2375,'_wp_old_slug','1824'), (9129,2369,'features_animation',''), (9130,2375,'_wp_page_template','default'), (9131,2369,'original_post_id','1792'), (9132,2375,'_publicize_pending','1'), (9133,2369,'_wp_old_slug','1792'), (9134,2375,'features_animation',''), (9135,2369,'post_subtitle',''), (9136,2369,'sharing_disabled','1'), (9137,2369,'geo_public','0'), (9138,2369,'_publicize_pending','1'), (9139,2369,'_wp_page_template','grid-page.php'), (9140,2369,'features_animation',''), (9141,2369,'original_post_id','1792'), (9142,2369,'_wp_old_slug','1792'), (9143,2369,'post_subtitle',''), (9144,2369,'sharing_disabled','1'), (9145,2369,'geo_public','0'), (9146,2369,'_publicize_pending','1'), (9147,2369,'_wp_page_template','grid-page.php'), (9148,2369,'features_animation',''), (9149,2369,'original_post_id','1792'), (9150,2369,'_wp_old_slug','1792'), (9151,2376,'_menu_item_type','custom'), (9152,2369,'post_subtitle',''), (9153,2369,'sharing_disabled','1'), (9154,2376,'_menu_item_menu_item_parent','2356'), (9155,2369,'geo_public','0'), (9156,2376,'_menu_item_object_id','2376'), (9157,2370,'geo_public','0'), (9158,2376,'_menu_item_object','custom'), (9159,2376,'_menu_item_target',''), (9160,2370,'_wp_old_slug','1794'), (9161,2376,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (9162,2370,'original_post_id','1794'), (9163,2370,'_publicize_pending','1'), (9164,2376,'_menu_item_xfn',''), (9166,2376,'_menu_item_url','http://play.google.com/store/apps/details?id=org.wordpress.android'), (9167,2370,'_wp_page_template','default'), (9168,2370,'features_animation','
\n

Dear WordPress,

\n

Has it really been 10 years? I see you all over the world now, glowing from screens, bringing people together at meetups and WordCamps — you’re at your best when you do that. You become a part of their life and they become a part of yours. I hope we grow old together.

\n\n
'), (9169,2370,'sharing_disabled','1'), (9170,2370,'post_subtitle',''), (9171,2370,'geo_public','0'), (9172,2370,'_wp_old_slug','1794'), (9173,2370,'original_post_id','1794'), (9174,2370,'_publicize_pending','1'), (9176,2370,'_wp_page_template','default'), (9177,2370,'features_animation','
\n

Dear WordPress,

\n

Has it really been 10 years? I see you all over the world now, glowing from screens, bringing people together at meetups and WordCamps — you’re at your best when you do that. You become a part of their life and they become a part of yours. I hope we grow old together.

\n\n
'), (9178,2370,'sharing_disabled','1'), (9179,2370,'post_subtitle',''), (9180,2370,'geo_public','0'), (9181,2370,'_wp_old_slug','1794'), (9182,2370,'original_post_id','1794'), (9183,2370,'_publicize_pending','1'), (9185,2370,'_wp_page_template','default'), (9186,2370,'features_animation','
\n

Dear WordPress,

\n

Has it really been 10 years? I see you all over the world now, glowing from screens, bringing people together at meetups and WordCamps — you’re at your best when you do that. You become a part of their life and they become a part of yours. I hope we grow old together.

\n\n
'), (9187,2370,'sharing_disabled','1'), (9189,2370,'post_subtitle',''), (9190,2370,'geo_public','0'), (9192,2370,'_wp_old_slug','1794'), (9193,2370,'original_post_id','1794'), (9194,2370,'_publicize_pending','1'), (9197,2370,'_wp_page_template','default'), (9198,2370,'features_animation','
\n

Dear WordPress,

\n

Has it really been 10 years? I see you all over the world now, glowing from screens, bringing people together at meetups and WordCamps — you’re at your best when you do that. You become a part of their life and they become a part of yours. I hope we grow old together.

\n\n
'), (9200,2370,'sharing_disabled','1'), (9202,2370,'post_subtitle',''), (9204,2371,'geo_public','0'), (9206,2371,'_publicize_pending','1'), (9207,2371,'_wp_old_slug','1796'), (9209,2371,'original_post_id','1796'), (9210,2371,'sharing_disabled','1'), (9211,2371,'features_animation','
\n
\n\n'), (9213,2371,'_wp_page_template','default'), (9214,2371,'post_subtitle',''), (9215,2371,'geo_public','0'), (9216,2371,'_publicize_pending','1'), (9217,2371,'_wp_old_slug','1796'), (9218,2371,'original_post_id','1796'), (9219,2371,'sharing_disabled','1'), (9220,2371,'features_animation','
\n
\n\n'), (9222,2371,'_wp_page_template','default'), (9223,2371,'post_subtitle',''), (9224,2378,'_menu_item_type','post_type'), (9225,2371,'geo_public','0'), (9226,2371,'_publicize_pending','1'), (9227,2378,'_menu_item_menu_item_parent','0'), (9228,2371,'_wp_old_slug','1796'), (9229,2371,'original_post_id','1796'), (9230,2371,'sharing_disabled','1'), (9231,2378,'_menu_item_object_id','2375'), (9232,2371,'features_animation','
\n
\n\n'), (9234,2378,'_menu_item_object','page'), (9235,2371,'_wp_page_template','default'), (9236,2371,'post_subtitle',''), (9237,2378,'_menu_item_target',''), (9238,2371,'geo_public','0'), (9239,2371,'_publicize_pending','1'), (9240,2371,'_wp_old_slug','1796'), (9241,2371,'original_post_id','1796'), (9242,2371,'sharing_disabled','1'), (9243,2371,'features_animation','
\n
\n\n'), (9244,2378,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (9246,2371,'_wp_page_template','default'), (9247,2371,'post_subtitle',''), (9248,2372,'_wp_old_slug','1798'), (9249,2378,'_menu_item_xfn',''), (9250,2372,'original_post_id','1798'), (9251,2372,'_wp_page_template','default'), (9253,2372,'_publicize_pending','1'), (9254,2378,'_menu_item_url',''), (9255,2372,'sharing_disabled','1'), (9256,2372,'features_animation','
'), (9257,2372,'post_subtitle',''), (9258,2372,'geo_public','0'), (9259,2372,'_wp_old_slug','1798'), (9260,2372,'original_post_id','1798'), (9261,2372,'_wp_page_template','default'), (9263,2372,'_publicize_pending','1'), (9264,2372,'sharing_disabled','1'), (9265,2372,'features_animation','
'), (9266,2372,'post_subtitle',''), (9267,2372,'geo_public','0'), (9268,2372,'_wp_old_slug','1798'), (9269,2372,'original_post_id','1798'), (9270,2372,'_wp_page_template','default'), (9272,2372,'_publicize_pending','1'), (9273,2372,'sharing_disabled','1'), (9274,2372,'features_animation','
'), (9275,2372,'post_subtitle',''), (9276,2372,'geo_public','0'), (9277,2372,'_wp_old_slug','1798'), (9278,2372,'original_post_id','1798'), (9280,2372,'_wp_page_template','default'), (9282,2372,'_publicize_pending','1'), (9284,2372,'sharing_disabled','1'), (9285,2372,'features_animation','
'), (9286,2372,'post_subtitle',''), (9288,2372,'geo_public','0'), (9290,2373,'geo_public','0'), (9293,2373,'_publicize_pending','1'), (9295,2373,'_wp_page_template','default'), (9296,2373,'features_animation','

WordPress

Mel Choyce replied to your comment on “SXSW Shirt Ideas”

'), (9298,2373,'_wp_old_slug','1800'), (9299,2373,'original_post_id','1800'), (9300,2373,'sharing_disabled','1'), (9301,2373,'post_subtitle',''), (9303,2373,'geo_public','0'), (9305,2373,'_publicize_pending','1'), (9306,2373,'_wp_page_template','default'), (9307,2373,'features_animation','

WordPress

Mel Choyce replied to your comment on “SXSW Shirt Ideas”

'), (9308,2373,'_wp_old_slug','1800'), (9309,2373,'original_post_id','1800'), (9310,2373,'sharing_disabled','1'), (9311,2373,'post_subtitle',''), (9312,2373,'geo_public','0'), (9314,2373,'_publicize_pending','1'), (9315,2373,'_wp_page_template','default'), (9316,2373,'features_animation','

WordPress

Mel Choyce replied to your comment on “SXSW Shirt Ideas”

'), (9317,2373,'_wp_old_slug','1800'), (9318,2373,'original_post_id','1800'), (9319,2373,'sharing_disabled','1'), (9320,2373,'post_subtitle',''), (9321,2373,'geo_public','0'), (9323,2373,'_publicize_pending','1'), (9324,2373,'_wp_page_template','default'), (9325,2373,'features_animation','

WordPress

Mel Choyce replied to your comment on “SXSW Shirt Ideas”

'), (9326,2373,'_wp_old_slug','1800'), (9327,2373,'original_post_id','1800'), (9328,2373,'sharing_disabled','1'), (9330,2373,'post_subtitle',''), (9332,2374,'geo_public','0'), (9334,2374,'_publicize_pending','1'), (9335,2374,'sharing_disabled','1'), (9336,2374,'_wp_page_template','default'), (9340,2374,'original_post_id','1802'), (9342,2374,'_wp_old_slug','1802'), (9343,2374,'post_subtitle',''), (9344,2374,'features_animation','
'), (9346,2374,'geo_public','0'), (9347,2374,'_publicize_pending','1'), (9348,2374,'sharing_disabled','1'), (9350,2374,'_wp_page_template','default'), (9352,2374,'original_post_id','1802'), (9353,2374,'_wp_old_slug','1802'), (9354,2374,'post_subtitle',''), (9355,2374,'features_animation','
'), (9356,2374,'geo_public','0'), (9357,2374,'_publicize_pending','1'), (9358,2374,'sharing_disabled','1'), (9359,2374,'_wp_page_template','default'), (9361,2374,'original_post_id','1802'), (9362,2374,'_wp_old_slug','1802'), (9363,2374,'post_subtitle',''), (9364,2374,'features_animation','
'), (9365,2374,'geo_public','0'), (9366,2374,'_publicize_pending','1'), (9368,2374,'sharing_disabled','1'), (9369,2374,'_wp_page_template','default'), (9372,2374,'original_post_id','1802'), (9373,2374,'_wp_old_slug','1802'), (9374,2374,'post_subtitle',''), (9376,2374,'features_animation','
'), (9378,2375,'sharing_disabled','1'), (9381,2375,'geo_public','0'), (9383,2375,'post_subtitle','Let\'s build the future of mobile'), (9384,2375,'Post-Title','Nam condimentum tempus diam'), (9386,2375,'original_post_id','1824'), (9387,2375,'_wp_old_slug','1824'), (9388,2375,'_wp_page_template','default'), (9389,2375,'_publicize_pending','1'), (9390,2375,'features_animation',''), (9391,2375,'sharing_disabled','1'), (9392,2375,'geo_public','0'), (9393,2375,'post_subtitle','Let\'s build the future of mobile'), (9394,2375,'Post-Title','Nam condimentum tempus diam'), (9395,2375,'original_post_id','1824'), (9396,2375,'_wp_old_slug','1824'), (9397,2375,'_wp_page_template','default'), (9398,2375,'_publicize_pending','1'), (9399,2375,'features_animation',''), (9400,2375,'sharing_disabled','1'), (9401,2375,'geo_public','0'), (9402,2375,'post_subtitle','Let\'s build the future of mobile'), (9403,2375,'Post-Title','Nam condimentum tempus diam'), (9404,2375,'original_post_id','1824'), (9405,2375,'_wp_old_slug','1824'), (9406,2375,'_wp_page_template','default'), (9407,2375,'_publicize_pending','1'), (9408,2375,'features_animation',''), (9409,2375,'sharing_disabled','1'), (9410,2375,'geo_public','0'), (9412,2375,'post_subtitle','Let\'s build the future of mobile'), (9413,2375,'Post-Title','Nam condimentum tempus diam'), (9415,2375,'original_post_id','1824'), (9416,2375,'_wp_old_slug','1824'), (9417,2375,'_wp_page_template','default'), (9418,2375,'_publicize_pending','1'), (9419,2375,'features_animation',''), (9434,2384,'_menu_item_type','custom'), (9435,2384,'_menu_item_menu_item_parent','0'), (9436,2384,'_menu_item_object_id','2384'), (9437,2384,'_menu_item_object','custom'), (9438,2384,'_menu_item_target',''), (9439,2384,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (9440,2384,'_menu_item_xfn',''), (9441,2384,'_menu_item_url','https://github.com/wordpress-mobile/WordPress-iOS'), (9450,2386,'_menu_item_type','custom'), (9451,2386,'_menu_item_menu_item_parent','0'), (9452,2386,'_menu_item_object_id','2386'), (9453,2386,'_menu_item_object','custom'), (9454,2386,'_menu_item_target',''), (9455,2386,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (9456,2386,'_menu_item_xfn',''), (9457,2386,'_menu_item_url','https://github.com/wordpress-mobile/WordPress-Android'), (9458,2387,'_menu_item_type','post_type'), (9459,2387,'_menu_item_menu_item_parent','0'), (9460,2387,'_menu_item_object_id','9'), (9461,2387,'_menu_item_object','page'), (9462,2387,'_menu_item_target',''), (9463,2387,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (9464,2387,'_menu_item_xfn',''), (9465,2387,'_menu_item_url',''), (9466,2388,'_menu_item_type','custom'), (9467,2388,'_menu_item_menu_item_parent','0'), (9468,2388,'_menu_item_object_id','2388'), (9469,2388,'_menu_item_object','custom'), (9470,2388,'_menu_item_target',''), (9471,2388,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (9472,2388,'_menu_item_xfn',''), (9473,2388,'_menu_item_url','https://twitter.com/WPAndroid'), (9474,2389,'_menu_item_type','custom'), (9475,2389,'_menu_item_menu_item_parent','0'), (9477,2389,'_menu_item_object_id','2389'), (9481,2389,'_menu_item_object','custom'), (9488,2389,'_menu_item_target',''), (9494,2389,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (9500,2389,'_menu_item_xfn',''), (9506,2389,'_menu_item_url','https://twitter.com/WordPressiOS'), (14156,965,'_wp_old_slug','965'), (14157,965,'_publicize_pending','1'), (14158,965,'_publicize_pending','1'), (14159,965,'geo_public','0'), (14160,965,'geo_accuracy','0'), (14161,965,'geo_longitude','0.000000'), (14162,965,'geo_latitude','0.000000'), (14163,965,'original_post_id','965'), (14164,965,'_wp_old_slug','965'), (14165,965,'_publicize_pending','1'), (14166,965,'_publicize_pending','1'), (14167,965,'geo_public','0'), (14168,965,'geo_accuracy','0'), (14169,965,'geo_longitude','0.000000'), (14170,965,'geo_latitude','0.000000'), (14171,965,'original_post_id','965'), (14172,965,'_wp_old_slug','965'), (14173,965,'_publicize_pending','1'), (14174,965,'_publicize_pending','1'), (14175,965,'geo_public','0'), (14176,965,'geo_accuracy','0'), (14177,965,'geo_longitude','0.000000'), (14178,965,'geo_latitude','0.000000'), (14179,965,'original_post_id','965'), (14180,965,'_wp_old_slug','965'), (14181,965,'_publicize_pending','1'), (14182,965,'_publicize_pending','1'), (14183,965,'geo_public','0'), (14184,965,'geo_accuracy','0'), (14185,965,'geo_longitude','0.000000'), (14186,965,'geo_latitude','0.000000'), (14187,965,'original_post_id','965'), (14188,990,'_publicize_pending','1'), (14189,990,'geo_latitude','0.000000'), (14190,990,'geo_longitude','0.000000'), (14191,990,'geo_accuracy','0'), (14192,990,'geo_public','0'), (14193,990,'geo_address',' '), (14194,990,'_publicize_pending','1'), (14195,990,'original_post_id','990'), (14196,990,'_wp_old_slug','990'), (14197,990,'_publicize_pending','1'), (14198,990,'geo_latitude','0.000000'), (14199,990,'geo_longitude','0.000000'), (14200,990,'geo_accuracy','0'), (14201,990,'geo_public','0'), (14202,990,'geo_address',' '), (14203,990,'_publicize_pending','1'), (14204,990,'original_post_id','990'), (14205,990,'_wp_old_slug','990'), (14206,990,'_publicize_pending','1'), (14207,990,'geo_latitude','0.000000'), (14208,990,'geo_longitude','0.000000'), (14209,990,'geo_accuracy','0'), (14210,990,'geo_public','0'), (14211,990,'geo_address',' '), (14212,990,'_publicize_pending','1'), (14213,990,'original_post_id','990'), (14214,990,'_wp_old_slug','990'), (14215,990,'_publicize_pending','1'), (14216,990,'geo_latitude','0.000000'), (14217,990,'geo_longitude','0.000000'), (14218,990,'geo_accuracy','0'), (14219,990,'geo_public','0'), (14220,990,'geo_address',' '), (14221,990,'_publicize_pending','1'), (14222,990,'original_post_id','990'), (14223,990,'_wp_old_slug','990'), (14224,1017,'original_post_id','1017'), (14225,1017,'_wp_old_slug','1017'), (14226,1017,'_publicize_pending','1'), (14227,1017,'geo_public','0'), (14228,1017,'geo_address',' '), (14229,1017,'geo_accuracy','0'), (14230,1017,'geo_longitude','0.000000'), (14231,1017,'geo_latitude','0.000000'), (14232,1017,'_publicize_pending','1'), (14233,1017,'original_post_id','1017'), (14234,1017,'_wp_old_slug','1017'), (14235,1017,'_publicize_pending','1'), (14236,1017,'geo_public','0'), (14237,1017,'geo_address',' '), (14238,1017,'geo_accuracy','0'), (14239,1017,'geo_longitude','0.000000'), (14240,1017,'geo_latitude','0.000000'), (14241,1017,'_publicize_pending','1'), (14242,1017,'original_post_id','1017'), (14243,1017,'_wp_old_slug','1017'), (14244,1017,'_publicize_pending','1'), (14245,1017,'geo_public','0'), (14246,1017,'geo_address',' '), (14247,1017,'geo_accuracy','0'), (14248,1017,'geo_longitude','0.000000'), (14249,1017,'geo_latitude','0.000000'), (14250,1017,'_publicize_pending','1'), (14251,1017,'original_post_id','1017'), (14252,1017,'_wp_old_slug','1017'), (14253,1017,'_publicize_pending','1'), (14254,1017,'geo_public','0'), (14255,1017,'geo_address',' '), (14256,1017,'geo_accuracy','0'), (14257,1017,'geo_longitude','0.000000'), (14258,1017,'geo_latitude','0.000000'), (14259,1017,'_publicize_pending','1'), (14260,1037,'_publicize_pending','1'), (14261,1037,'original_post_id','1037'), (14262,1037,'_wp_old_slug','1037'), (14263,1037,'geo_public','0'), (14264,1037,'_publicize_pending','1'), (14265,1037,'_publicize_pending','1'), (14266,1037,'original_post_id','1037'), (14267,1037,'_wp_old_slug','1037'), (14268,1037,'geo_public','0'), (14269,1037,'_publicize_pending','1'), (14270,1037,'_publicize_pending','1'), (14271,1037,'original_post_id','1037'), (14272,1037,'_wp_old_slug','1037'), (14273,1037,'geo_public','0'), (14274,1037,'_publicize_pending','1'), (14275,1037,'_publicize_pending','1'), (14276,1037,'original_post_id','1037'), (14277,1037,'_wp_old_slug','1037'), (14278,1037,'geo_public','0'), (14279,1037,'_publicize_pending','1'), (14280,1065,'original_post_id','1065'), (14281,1065,'_wp_old_slug','1065'), (14282,1065,'geo_public','0'), (14284,1065,'_publicize_pending','1'), (14285,1065,'_publicize_pending','1'), (14286,1065,'original_post_id','1065'), (14287,1065,'_wp_old_slug','1065'), (14288,1065,'geo_public','0'), (14290,1065,'_publicize_pending','1'), (14291,1065,'_publicize_pending','1'), (14292,1065,'original_post_id','1065'), (14293,1065,'_wp_old_slug','1065'), (14294,1065,'geo_public','0'), (14296,1065,'_publicize_pending','1'), (14297,1065,'_publicize_pending','1'), (14298,1065,'original_post_id','1065'), (14299,1065,'_wp_old_slug','1065'), (14300,1065,'geo_public','0'), (14302,1065,'_publicize_pending','1'), (14303,1065,'_publicize_pending','1'), (14320,1512,'_publicize_pending','1'), (14321,1512,'_publicize_pending','1'), (14322,1512,'original_post_id','1512'), (14323,1512,'_wp_old_slug','1512'), (14324,1512,'_publicize_pending','1'), (14325,1512,'_publicize_pending','1'), (14326,1512,'original_post_id','1512'), (14327,1512,'_wp_old_slug','1512'), (14328,1512,'_publicize_pending','1'), (14329,1512,'_publicize_pending','1'), (14330,1512,'original_post_id','1512'), (14331,1512,'_wp_old_slug','1512'), (14332,1512,'_publicize_pending','1'), (14333,1512,'_publicize_pending','1'), (14334,1512,'original_post_id','1512'), (14335,1512,'_wp_old_slug','1512'), (14351,1516,'_publicize_pending','1'), (14352,1516,'_publicize_pending','1'), (14353,1516,'original_post_id','1516'), (14354,1516,'_wp_old_slug','1516'), (14355,1516,'geo_public','0'), (14356,1516,'geo_address',' '), (14357,1516,'geo_accuracy','0'), (14358,1516,'geo_longitude','0.000000'), (14359,1516,'geo_latitude','0.000000'), (14360,1516,'_publicize_pending','1'), (14361,1516,'_publicize_pending','1'), (14362,1516,'original_post_id','1516'), (14363,1516,'_wp_old_slug','1516'), (14364,1516,'geo_public','0'), (14365,1516,'geo_address',' '), (14366,1516,'geo_accuracy','0'), (14367,1516,'geo_longitude','0.000000'), (14368,1516,'geo_latitude','0.000000'), (14369,1516,'_publicize_pending','1'), (14370,1516,'_publicize_pending','1'), (14371,1516,'original_post_id','1516'), (14372,1516,'_wp_old_slug','1516'), (14373,1516,'geo_public','0'), (14374,1516,'geo_address',' '), (14375,1516,'geo_accuracy','0'), (14376,1516,'geo_longitude','0.000000'), (14377,1516,'geo_latitude','0.000000'), (14378,1516,'_publicize_pending','1'), (14379,1516,'_publicize_pending','1'), (14380,1516,'original_post_id','1516'), (14381,1516,'_wp_old_slug','1516'), (14382,1516,'geo_public','0'), (14383,1516,'geo_address',' '), (14384,1516,'geo_accuracy','0'), (14385,1516,'geo_longitude','0.000000'), (14386,1516,'geo_latitude','0.000000'), (14387,1528,'_wp_old_slug','1528'), (14388,1528,'original_post_id','1528'), (14389,1528,'geo_accuracy','0'), (14390,1528,'geo_longitude','0.000000'), (14391,1528,'geo_latitude','0.000000'), (14392,1528,'_publicize_pending','1'), (14393,1528,'_oembed_daf11be65c22d6218acce56d6228b830','{{unknown}}'), (14394,1528,'_oembed_9bb5c1499c7a08f0a829e04ff9a6704e','{{unknown}}'), (14395,1528,'_publicize_pending','1'), (14396,1528,'geo_public','1'), (14397,1528,'_oembed_f1750a04526a609a77378ecc562bb317','{{unknown}}'), (14398,1528,'_oembed_962ffe5f155f0d21c64fc087d06549e0','{{unknown}}'), (14399,1528,'_wp_old_slug','1528'), (14400,1528,'original_post_id','1528'), (14401,1528,'geo_accuracy','0'), (14402,1528,'geo_longitude','0.000000'), (14403,1528,'geo_latitude','0.000000'), (14404,1528,'_publicize_pending','1'), (14405,1528,'_oembed_daf11be65c22d6218acce56d6228b830','{{unknown}}'), (14406,1528,'_oembed_9bb5c1499c7a08f0a829e04ff9a6704e','{{unknown}}'), (14407,1528,'_publicize_pending','1'), (14408,1528,'geo_public','1'), (14409,1528,'_oembed_f1750a04526a609a77378ecc562bb317','{{unknown}}'), (14410,1528,'_oembed_962ffe5f155f0d21c64fc087d06549e0','{{unknown}}'), (14411,1528,'_wp_old_slug','1528'), (14412,1528,'original_post_id','1528'), (14413,1528,'geo_accuracy','0'), (14414,1528,'geo_longitude','0.000000'), (14415,1528,'geo_latitude','0.000000'), (14416,1528,'_publicize_pending','1'), (14417,1528,'_oembed_daf11be65c22d6218acce56d6228b830','{{unknown}}'), (14418,1528,'_oembed_9bb5c1499c7a08f0a829e04ff9a6704e','{{unknown}}'), (14419,1528,'_publicize_pending','1'), (14420,1528,'geo_public','1'), (14421,1528,'_oembed_f1750a04526a609a77378ecc562bb317','{{unknown}}'), (14422,1528,'_oembed_962ffe5f155f0d21c64fc087d06549e0','{{unknown}}'), (14423,1528,'_wp_old_slug','1528'), (14424,1528,'original_post_id','1528'), (14425,1528,'geo_accuracy','0'), (14426,1528,'geo_longitude','0.000000'), (14427,1528,'geo_latitude','0.000000'), (14428,1528,'_publicize_pending','1'), (14429,1528,'_oembed_daf11be65c22d6218acce56d6228b830','{{unknown}}'), (14430,1528,'_oembed_9bb5c1499c7a08f0a829e04ff9a6704e','{{unknown}}'), (14431,1528,'_publicize_pending','1'), (14432,1528,'geo_public','1'), (14433,1528,'_oembed_f1750a04526a609a77378ecc562bb317','{{unknown}}'), (14434,1528,'_oembed_962ffe5f155f0d21c64fc087d06549e0','{{unknown}}'), (14435,1535,'_publicize_pending','1'), (14436,1535,'original_post_id','1535'), (14437,1535,'_wp_old_slug','1535'), (14438,1535,'_publicize_pending','1'), (14439,1535,'geo_public','1'), (14440,1535,'geo_longitude','0.000000'), (14441,1535,'geo_accuracy','0'), (14442,1535,'geo_latitude','0.000000'), (14443,1535,'_publicize_pending','1'), (14444,1535,'original_post_id','1535'), (14445,1535,'_wp_old_slug','1535'), (14446,1535,'_publicize_pending','1'), (14447,1535,'geo_public','1'), (14448,1535,'geo_longitude','0.000000'), (14449,1535,'geo_accuracy','0'), (14450,1535,'geo_latitude','0.000000'), (14451,1535,'_publicize_pending','1'), (14452,1535,'original_post_id','1535'), (14453,1535,'_wp_old_slug','1535'), (14454,1535,'_publicize_pending','1'), (14455,1535,'geo_public','1'), (14456,1535,'geo_longitude','0.000000'), (14457,1535,'geo_accuracy','0'), (14458,1535,'geo_latitude','0.000000'), (14459,1535,'_publicize_pending','1'), (14460,1535,'original_post_id','1535'), (14461,1535,'_wp_old_slug','1535'), (14462,1535,'_publicize_pending','1'), (14463,1535,'geo_public','1'), (14464,1535,'geo_longitude','0.000000'), (14465,1535,'geo_accuracy','0'), (14466,1535,'geo_latitude','0.000000'), (14467,1542,'geo_public','0'), (14468,1542,'original_post_id','1542'), (14469,1542,'_wp_old_slug','1542'), (14470,1542,'_publicize_pending','1'), (14471,1542,'_publicize_pending','1'), (14472,1542,'_oembed_fca7f2e1131eeff7e178fedb5d064d6e','{{unknown}}'), (14473,1542,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (14474,1542,'_oembed_fa2bbdfddeb4d5318b58e5ec5462aea2','{{unknown}}'), (14475,1542,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (14476,1542,'_oembed_f094d27ee3dec0461faaf994f119cbbd','{{unknown}}'), (14477,1542,'geo_public','0'), (14478,1542,'original_post_id','1542'), (14479,1542,'_wp_old_slug','1542'), (14480,1542,'_publicize_pending','1'), (14481,1542,'_publicize_pending','1'), (14482,1542,'_oembed_fca7f2e1131eeff7e178fedb5d064d6e','{{unknown}}'), (14483,1542,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (14484,1542,'_oembed_fa2bbdfddeb4d5318b58e5ec5462aea2','{{unknown}}'), (14485,1542,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (14486,1542,'_oembed_f094d27ee3dec0461faaf994f119cbbd','{{unknown}}'), (14487,1542,'geo_public','0'), (14488,1542,'original_post_id','1542'), (14489,1542,'_wp_old_slug','1542'), (14490,1542,'_publicize_pending','1'), (14491,1542,'_publicize_pending','1'), (14492,1542,'_oembed_fca7f2e1131eeff7e178fedb5d064d6e','{{unknown}}'), (14493,1542,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (14494,1542,'_oembed_fa2bbdfddeb4d5318b58e5ec5462aea2','{{unknown}}'), (14495,1542,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (14496,1542,'_oembed_f094d27ee3dec0461faaf994f119cbbd','{{unknown}}'), (14497,1542,'geo_public','0'), (14498,1542,'original_post_id','1542'), (14499,1542,'_wp_old_slug','1542'), (14500,1542,'_publicize_pending','1'), (14501,1542,'_publicize_pending','1'), (14502,1542,'_oembed_fca7f2e1131eeff7e178fedb5d064d6e','{{unknown}}'), (14503,1542,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (14504,1542,'_oembed_fa2bbdfddeb4d5318b58e5ec5462aea2','{{unknown}}'), (14505,1542,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (14506,1542,'_oembed_f094d27ee3dec0461faaf994f119cbbd','{{unknown}}'), (14507,1553,'_wp_old_slug','1553'), (14508,1553,'original_post_id','1553'), (14509,1553,'_publicize_pending','1'), (14510,1553,'geo_address',' '), (14511,1553,'geo_public','0'), (14512,1553,'geo_longitude','0.000000'), (14513,1553,'geo_accuracy','0'), (14514,1553,'_publicize_pending','1'), (14515,1553,'geo_latitude','0.000000'), (14516,1553,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (14517,1553,'_oembed_70d6d23f92093971ec6b29da278a979c','{{unknown}}'), (14518,1553,'_oembed_f71005280683f30817e21c2ab5ce20b2','{{unknown}}'), (14519,1553,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (14520,1553,'_oembed_4d3ace6cbb4c6cd9f38d608c8679e6ce','{{unknown}}'), (14521,1553,'_oembed_56815822ff1f9f682aa7350b1ccb4c06','{{unknown}}'), (14522,1553,'_wp_old_slug','1553'), (14523,1553,'original_post_id','1553'), (14524,1553,'_publicize_pending','1'), (14525,1553,'geo_address',' '), (14526,1553,'geo_public','0'), (14527,1553,'geo_longitude','0.000000'), (14528,1553,'geo_accuracy','0'), (14529,1553,'_publicize_pending','1'), (14530,1553,'geo_latitude','0.000000'), (14531,1553,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (14532,1553,'_oembed_70d6d23f92093971ec6b29da278a979c','{{unknown}}'), (14533,1553,'_oembed_f71005280683f30817e21c2ab5ce20b2','{{unknown}}'), (14534,1553,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (14535,1553,'_oembed_4d3ace6cbb4c6cd9f38d608c8679e6ce','{{unknown}}'), (14536,1553,'_oembed_56815822ff1f9f682aa7350b1ccb4c06','{{unknown}}'), (14537,1553,'_wp_old_slug','1553'), (14538,1553,'original_post_id','1553'), (14539,1553,'_publicize_pending','1'), (14540,1553,'geo_address',' '), (14541,1553,'geo_public','0'), (14542,1553,'geo_longitude','0.000000'), (14543,1553,'geo_accuracy','0'), (14544,1553,'_publicize_pending','1'), (14545,1553,'geo_latitude','0.000000'), (14546,1553,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (14547,1553,'_oembed_70d6d23f92093971ec6b29da278a979c','{{unknown}}'), (14548,1553,'_oembed_f71005280683f30817e21c2ab5ce20b2','{{unknown}}'), (14549,1553,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (14550,1553,'_oembed_4d3ace6cbb4c6cd9f38d608c8679e6ce','{{unknown}}'), (14551,1553,'_oembed_56815822ff1f9f682aa7350b1ccb4c06','{{unknown}}'), (14552,1553,'_wp_old_slug','1553'), (14553,1553,'original_post_id','1553'), (14554,1553,'_publicize_pending','1'), (14555,1553,'geo_address',' '), (14556,1553,'geo_public','0'), (14557,1553,'geo_longitude','0.000000'), (14558,1553,'geo_accuracy','0'), (14559,1553,'_publicize_pending','1'), (14560,1553,'geo_latitude','0.000000'), (14561,1553,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (14562,1553,'_oembed_70d6d23f92093971ec6b29da278a979c','{{unknown}}'), (14563,1553,'_oembed_f71005280683f30817e21c2ab5ce20b2','{{unknown}}'), (14564,1553,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (14565,1553,'_oembed_4d3ace6cbb4c6cd9f38d608c8679e6ce','{{unknown}}'), (14566,1553,'_oembed_56815822ff1f9f682aa7350b1ccb4c06','{{unknown}}'), (14567,1558,'_wp_old_slug','1558'), (14568,1558,'original_post_id','1558'), (14569,1558,'geo_public','0'), (14570,1558,'_publicize_pending','1'), (14571,1558,'_publicize_pending','1'), (14572,1558,'_wp_old_slug','1558'), (14573,1558,'original_post_id','1558'), (14574,1558,'geo_public','0'), (14575,1558,'_publicize_pending','1'), (14576,1558,'_publicize_pending','1'), (14577,1558,'_wp_old_slug','1558'), (14578,1558,'original_post_id','1558'), (14579,1558,'geo_public','0'), (14580,1558,'_publicize_pending','1'), (14581,1558,'_publicize_pending','1'), (14582,1558,'_wp_old_slug','1558'), (14583,1558,'original_post_id','1558'), (14584,1558,'geo_public','0'), (14585,1558,'_publicize_pending','1'), (14586,1558,'_publicize_pending','1'), (14587,2117,'geo_public','0'), (14588,2117,'_publicize_pending','1'), (14589,2117,'geo_public','0'), (14590,2117,'_publicize_pending','1'), (14591,2117,'geo_public','0'), (14592,2117,'_publicize_pending','1'), (14593,2117,'geo_public','0'), (14594,2117,'_publicize_pending','1'), (14595,2193,'_publicize_pending','1'), (14596,2193,'_wpas_mess','undefined'), (14597,2193,'_wpas_skip_path','1'), (14598,2193,'_wpas_skip_tumblr','1'), (14599,2193,'_wpas_skip_linkedin','1'), (14600,2193,'_wpas_skip_twitter','1'), (14601,2193,'_wpas_skip_facebook','1'), (14602,2193,'_wpas_skip_google_plus','1'), (14603,2193,'geo_public','0'), (14604,2193,'_publicize_pending','1'), (14605,2193,'_wpas_mess','undefined'), (14606,2193,'_wpas_skip_path','1'), (14607,2193,'_wpas_skip_tumblr','1'), (14608,2193,'_wpas_skip_linkedin','1'), (14609,2193,'_wpas_skip_twitter','1'), (14610,2193,'_wpas_skip_facebook','1'), (14611,2193,'_wpas_skip_google_plus','1'), (14612,2193,'geo_public','0'), (14613,2193,'_publicize_pending','1'), (14614,2193,'_wpas_mess','undefined'), (14615,2193,'_wpas_skip_path','1'), (14616,2193,'_wpas_skip_tumblr','1'), (14617,2193,'_wpas_skip_linkedin','1'), (14618,2193,'_wpas_skip_twitter','1'), (14619,2193,'_wpas_skip_facebook','1'), (14620,2193,'_wpas_skip_google_plus','1'), (14621,2193,'geo_public','0'), (14622,2193,'_publicize_pending','1'), (14623,2193,'_wpas_mess','undefined'), (14624,2193,'_wpas_skip_path','1'), (14625,2193,'_wpas_skip_tumblr','1'), (14626,2193,'_wpas_skip_linkedin','1'), (14627,2193,'_wpas_skip_twitter','1'), (14628,2193,'_wpas_skip_facebook','1'), (14629,2193,'_wpas_skip_google_plus','1'), (14630,2193,'geo_public','0'), (14631,2207,'_wpas_mess','undefined'), (14632,2207,'_wpas_skip_path','1'), (14633,2207,'_wpas_skip_linkedin','1'), (14634,2207,'_wpas_skip_tumblr','1'), (14635,2207,'_wpas_skip_twitter','1'), (14636,2207,'_wpas_skip_google_plus','1'), (14637,2207,'_wpas_skip_facebook','1'), (14638,2207,'geo_public','0'), (14639,2207,'_publicize_pending','1'), (14640,2207,'_wpas_mess','undefined'), (14641,2207,'_wpas_skip_path','1'), (14642,2207,'_wpas_skip_linkedin','1'), (14643,2207,'_wpas_skip_tumblr','1'), (14644,2207,'_wpas_skip_twitter','1'), (14645,2207,'_wpas_skip_google_plus','1'), (14646,2207,'_wpas_skip_facebook','1'), (14647,2207,'geo_public','0'), (14648,2207,'_publicize_pending','1'), (14649,2207,'_wpas_mess','undefined'), (14650,2207,'_wpas_skip_path','1'), (14651,2207,'_wpas_skip_linkedin','1'), (14652,2207,'_wpas_skip_tumblr','1'), (14653,2207,'_wpas_skip_twitter','1'), (14654,2207,'_wpas_skip_google_plus','1'), (14655,2207,'_wpas_skip_facebook','1'), (14656,2207,'geo_public','0'), (14657,2207,'_publicize_pending','1'), (14658,2207,'_wpas_mess','undefined'), (14659,2207,'_wpas_skip_path','1'), (14660,2207,'_wpas_skip_linkedin','1'), (14661,2207,'_wpas_skip_tumblr','1'), (14662,2207,'_wpas_skip_twitter','1'), (14663,2207,'_wpas_skip_google_plus','1'), (14664,2207,'_wpas_skip_facebook','1'), (14665,2207,'geo_public','0'), (14666,2207,'_publicize_pending','1'), (18442,965,'_wp_old_slug','965'), (18443,965,'_publicize_pending','1'), (18444,965,'_publicize_pending','1'), (18445,965,'geo_public','0'), (18446,965,'geo_accuracy','0'), (18447,965,'geo_longitude','0.000000'), (18448,965,'geo_latitude','0.000000'), (18449,965,'original_post_id','965'), (18450,965,'_wp_old_slug','965'), (18451,965,'_publicize_pending','1'), (18452,965,'_publicize_pending','1'), (18453,965,'geo_public','0'), (18454,965,'geo_accuracy','0'), (18455,965,'geo_longitude','0.000000'), (18456,965,'geo_latitude','0.000000'), (18457,965,'original_post_id','965'), (18458,965,'_wp_old_slug','965'), (18459,965,'_publicize_pending','1'), (18460,965,'_publicize_pending','1'), (18461,965,'geo_public','0'), (18462,965,'geo_accuracy','0'), (18463,965,'geo_longitude','0.000000'), (18464,965,'geo_latitude','0.000000'), (18465,965,'original_post_id','965'), (18466,965,'_wp_old_slug','965'), (18467,965,'_publicize_pending','1'), (18468,965,'_publicize_pending','1'), (18469,965,'geo_public','0'), (18470,965,'geo_accuracy','0'), (18471,965,'geo_longitude','0.000000'), (18472,965,'geo_latitude','0.000000'), (18473,965,'original_post_id','965'), (18474,990,'_publicize_pending','1'), (18475,990,'geo_latitude','0.000000'), (18476,990,'geo_longitude','0.000000'), (18477,990,'geo_accuracy','0'), (18478,990,'geo_public','0'), (18479,990,'geo_address',' '), (18480,990,'_publicize_pending','1'), (18481,990,'original_post_id','990'), (18482,990,'_wp_old_slug','990'), (18483,990,'_publicize_pending','1'), (18484,990,'geo_latitude','0.000000'), (18485,990,'geo_longitude','0.000000'), (18486,990,'geo_accuracy','0'), (18487,990,'geo_public','0'), (18488,990,'geo_address',' '), (18489,990,'_publicize_pending','1'), (18490,990,'original_post_id','990'), (18491,990,'_wp_old_slug','990'), (18492,990,'_publicize_pending','1'), (18493,990,'geo_latitude','0.000000'), (18494,990,'geo_longitude','0.000000'), (18495,990,'geo_accuracy','0'), (18496,990,'geo_public','0'), (18497,990,'geo_address',' '), (18498,990,'_publicize_pending','1'), (18499,990,'original_post_id','990'), (18500,990,'_wp_old_slug','990'), (18501,990,'_publicize_pending','1'), (18502,990,'geo_latitude','0.000000'), (18503,990,'geo_longitude','0.000000'), (18504,990,'geo_accuracy','0'), (18505,990,'geo_public','0'), (18506,990,'geo_address',' '), (18507,990,'_publicize_pending','1'), (18508,990,'original_post_id','990'), (18509,990,'_wp_old_slug','990'), (18510,1017,'original_post_id','1017'), (18511,1017,'_wp_old_slug','1017'), (18512,1017,'_publicize_pending','1'), (18513,1017,'geo_public','0'), (18514,1017,'geo_address',' '), (18515,1017,'geo_accuracy','0'), (18516,1017,'geo_longitude','0.000000'), (18517,1017,'geo_latitude','0.000000'), (18518,1017,'_publicize_pending','1'), (18519,1017,'original_post_id','1017'), (18520,1017,'_wp_old_slug','1017'), (18521,1017,'_publicize_pending','1'), (18522,1017,'geo_public','0'), (18523,1017,'geo_address',' '), (18524,1017,'geo_accuracy','0'), (18525,1017,'geo_longitude','0.000000'), (18526,1017,'geo_latitude','0.000000'), (18527,1017,'_publicize_pending','1'), (18528,1017,'original_post_id','1017'), (18529,1017,'_wp_old_slug','1017'), (18530,1017,'_publicize_pending','1'), (18531,1017,'geo_public','0'), (18532,1017,'geo_address',' '), (18533,1017,'geo_accuracy','0'), (18534,1017,'geo_longitude','0.000000'), (18535,1017,'geo_latitude','0.000000'), (18536,1017,'_publicize_pending','1'), (18537,1017,'original_post_id','1017'), (18538,1017,'_wp_old_slug','1017'), (18539,1017,'_publicize_pending','1'), (18540,1017,'geo_public','0'), (18541,1017,'geo_address',' '), (18542,1017,'geo_accuracy','0'), (18543,1017,'geo_longitude','0.000000'), (18544,1017,'geo_latitude','0.000000'), (18545,1017,'_publicize_pending','1'), (18546,1037,'_publicize_pending','1'), (18547,1037,'original_post_id','1037'), (18548,1037,'_wp_old_slug','1037'), (18549,1037,'geo_public','0'), (18550,1037,'_publicize_pending','1'), (18551,1037,'_publicize_pending','1'), (18552,1037,'original_post_id','1037'), (18553,1037,'_wp_old_slug','1037'), (18554,1037,'geo_public','0'), (18555,1037,'_publicize_pending','1'), (18556,1037,'_publicize_pending','1'), (18557,1037,'original_post_id','1037'), (18558,1037,'_wp_old_slug','1037'), (18559,1037,'geo_public','0'), (18560,1037,'_publicize_pending','1'), (18561,1037,'_publicize_pending','1'), (18562,1037,'original_post_id','1037'), (18563,1037,'_wp_old_slug','1037'), (18564,1037,'geo_public','0'), (18565,1037,'_publicize_pending','1'), (18566,1065,'original_post_id','1065'), (18567,1065,'_wp_old_slug','1065'), (18568,1065,'geo_public','0'), (18570,1065,'_publicize_pending','1'), (18571,1065,'_publicize_pending','1'), (18572,1065,'original_post_id','1065'), (18573,1065,'_wp_old_slug','1065'), (18574,1065,'geo_public','0'), (18576,1065,'_publicize_pending','1'), (18577,1065,'_publicize_pending','1'), (18578,1065,'original_post_id','1065'), (18579,1065,'_wp_old_slug','1065'), (18580,1065,'geo_public','0'), (18582,1065,'_publicize_pending','1'), (18583,1065,'_publicize_pending','1'), (18584,1065,'original_post_id','1065'), (18585,1065,'_wp_old_slug','1065'), (18586,1065,'geo_public','0'), (18588,1065,'_publicize_pending','1'), (18589,1065,'_publicize_pending','1'), (18606,1512,'_publicize_pending','1'), (18607,1512,'_publicize_pending','1'), (18608,1512,'original_post_id','1512'), (18609,1512,'_wp_old_slug','1512'), (18610,1512,'_publicize_pending','1'), (18611,1512,'_publicize_pending','1'), (18612,1512,'original_post_id','1512'), (18613,1512,'_wp_old_slug','1512'), (18614,1512,'_publicize_pending','1'), (18615,1512,'_publicize_pending','1'), (18616,1512,'original_post_id','1512'), (18617,1512,'_wp_old_slug','1512'), (18618,1512,'_publicize_pending','1'), (18619,1512,'_publicize_pending','1'), (18620,1512,'original_post_id','1512'), (18621,1512,'_wp_old_slug','1512'), (18622,1516,'_publicize_pending','1'), (18623,1516,'_publicize_pending','1'), (18624,1516,'original_post_id','1516'), (18625,1516,'_wp_old_slug','1516'), (18626,1516,'geo_public','0'), (18627,1516,'geo_address',' '), (18628,1516,'geo_accuracy','0'), (18629,1516,'geo_longitude','0.000000'), (18630,1516,'geo_latitude','0.000000'), (18631,1516,'_publicize_pending','1'), (18632,1516,'_publicize_pending','1'), (18633,1516,'original_post_id','1516'), (18634,1516,'_wp_old_slug','1516'), (18635,1516,'geo_public','0'), (18636,1516,'geo_address',' '), (18637,1516,'geo_accuracy','0'), (18638,1516,'geo_longitude','0.000000'), (18639,1516,'geo_latitude','0.000000'), (18640,1516,'_publicize_pending','1'), (18641,1516,'_publicize_pending','1'), (18642,1516,'original_post_id','1516'), (18643,1516,'_wp_old_slug','1516'), (18644,1516,'geo_public','0'), (18645,1516,'geo_address',' '), (18646,1516,'geo_accuracy','0'), (18647,1516,'geo_longitude','0.000000'), (18648,1516,'geo_latitude','0.000000'), (18649,1516,'_publicize_pending','1'), (18650,1516,'_publicize_pending','1'), (18651,1516,'original_post_id','1516'), (18652,1516,'_wp_old_slug','1516'), (18653,1516,'geo_public','0'), (18654,1516,'geo_address',' '), (18655,1516,'geo_accuracy','0'), (18656,1516,'geo_longitude','0.000000'), (18657,1516,'geo_latitude','0.000000'), (18658,1528,'_wp_old_slug','1528'), (18659,1528,'original_post_id','1528'), (18660,1528,'geo_accuracy','0'), (18661,1528,'geo_longitude','0.000000'), (18662,1528,'geo_latitude','0.000000'), (18663,1528,'_publicize_pending','1'), (18664,1528,'_oembed_daf11be65c22d6218acce56d6228b830','{{unknown}}'), (18665,1528,'_oembed_9bb5c1499c7a08f0a829e04ff9a6704e','{{unknown}}'), (18666,1528,'_publicize_pending','1'), (18667,1528,'geo_public','1'), (18668,1528,'_oembed_f1750a04526a609a77378ecc562bb317','{{unknown}}'), (18669,1528,'_oembed_962ffe5f155f0d21c64fc087d06549e0','{{unknown}}'), (18670,1528,'_wp_old_slug','1528'), (18671,1528,'original_post_id','1528'), (18672,1528,'geo_accuracy','0'), (18673,1528,'geo_longitude','0.000000'), (18674,1528,'geo_latitude','0.000000'), (18675,1528,'_publicize_pending','1'), (18676,1528,'_oembed_daf11be65c22d6218acce56d6228b830','{{unknown}}'), (18677,1528,'_oembed_9bb5c1499c7a08f0a829e04ff9a6704e','{{unknown}}'), (18678,1528,'_publicize_pending','1'), (18679,1528,'geo_public','1'), (18680,1528,'_oembed_f1750a04526a609a77378ecc562bb317','{{unknown}}'), (18681,1528,'_oembed_962ffe5f155f0d21c64fc087d06549e0','{{unknown}}'), (18682,1528,'_wp_old_slug','1528'), (18683,1528,'original_post_id','1528'), (18684,1528,'geo_accuracy','0'), (18685,1528,'geo_longitude','0.000000'), (18686,1528,'geo_latitude','0.000000'), (18687,1528,'_publicize_pending','1'), (18688,1528,'_oembed_daf11be65c22d6218acce56d6228b830','{{unknown}}'), (18689,1528,'_oembed_9bb5c1499c7a08f0a829e04ff9a6704e','{{unknown}}'), (18690,1528,'_publicize_pending','1'), (18691,1528,'geo_public','1'), (18692,1528,'_oembed_f1750a04526a609a77378ecc562bb317','{{unknown}}'), (18693,1528,'_oembed_962ffe5f155f0d21c64fc087d06549e0','{{unknown}}'), (18694,1528,'_wp_old_slug','1528'), (18695,1528,'original_post_id','1528'), (18696,1528,'geo_accuracy','0'), (18697,1528,'geo_longitude','0.000000'), (18698,1528,'geo_latitude','0.000000'), (18699,1528,'_publicize_pending','1'), (18700,1528,'_oembed_daf11be65c22d6218acce56d6228b830','{{unknown}}'), (18701,1528,'_oembed_9bb5c1499c7a08f0a829e04ff9a6704e','{{unknown}}'), (18702,1528,'_publicize_pending','1'), (18703,1528,'geo_public','1'), (18704,1528,'_oembed_f1750a04526a609a77378ecc562bb317','{{unknown}}'), (18705,1528,'_oembed_962ffe5f155f0d21c64fc087d06549e0','{{unknown}}'), (18706,1535,'_publicize_pending','1'), (18707,1535,'original_post_id','1535'), (18708,1535,'_wp_old_slug','1535'), (18709,1535,'_publicize_pending','1'), (18710,1535,'geo_public','1'), (18711,1535,'geo_longitude','0.000000'), (18712,1535,'geo_accuracy','0'), (18713,1535,'geo_latitude','0.000000'), (18714,1535,'_publicize_pending','1'), (18715,1535,'original_post_id','1535'), (18716,1535,'_wp_old_slug','1535'), (18717,1535,'_publicize_pending','1'), (18718,1535,'geo_public','1'), (18719,1535,'geo_longitude','0.000000'), (18720,1535,'geo_accuracy','0'), (18721,1535,'geo_latitude','0.000000'), (18722,1535,'_publicize_pending','1'), (18723,1535,'original_post_id','1535'), (18724,1535,'_wp_old_slug','1535'), (18725,1535,'_publicize_pending','1'), (18726,1535,'geo_public','1'), (18727,1535,'geo_longitude','0.000000'), (18728,1535,'geo_accuracy','0'), (18729,1535,'geo_latitude','0.000000'), (18730,1535,'_publicize_pending','1'), (18731,1535,'original_post_id','1535'), (18732,1535,'_wp_old_slug','1535'), (18733,1535,'_publicize_pending','1'), (18734,1535,'geo_public','1'), (18735,1535,'geo_longitude','0.000000'), (18736,1535,'geo_accuracy','0'), (18737,1535,'geo_latitude','0.000000'), (18738,1542,'geo_public','0'), (18739,1542,'original_post_id','1542'), (18740,1542,'_wp_old_slug','1542'), (18741,1542,'_publicize_pending','1'), (18742,1542,'_publicize_pending','1'), (18743,1542,'_oembed_fca7f2e1131eeff7e178fedb5d064d6e','{{unknown}}'), (18744,1542,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (18745,1542,'_oembed_fa2bbdfddeb4d5318b58e5ec5462aea2','{{unknown}}'), (18746,1542,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (18747,1542,'_oembed_f094d27ee3dec0461faaf994f119cbbd','{{unknown}}'), (18748,1542,'geo_public','0'), (18749,1542,'original_post_id','1542'), (18750,1542,'_wp_old_slug','1542'), (18751,1542,'_publicize_pending','1'), (18752,1542,'_publicize_pending','1'), (18753,1542,'_oembed_fca7f2e1131eeff7e178fedb5d064d6e','{{unknown}}'), (18754,1542,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (18755,1542,'_oembed_fa2bbdfddeb4d5318b58e5ec5462aea2','{{unknown}}'), (18756,1542,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (18757,1542,'_oembed_f094d27ee3dec0461faaf994f119cbbd','{{unknown}}'), (18758,1542,'geo_public','0'), (18759,1542,'original_post_id','1542'), (18760,1542,'_wp_old_slug','1542'), (18761,1542,'_publicize_pending','1'), (18762,1542,'_publicize_pending','1'), (18763,1542,'_oembed_fca7f2e1131eeff7e178fedb5d064d6e','{{unknown}}'), (18764,1542,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (18765,1542,'_oembed_fa2bbdfddeb4d5318b58e5ec5462aea2','{{unknown}}'), (18766,1542,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (18767,1542,'_oembed_f094d27ee3dec0461faaf994f119cbbd','{{unknown}}'), (18768,1542,'geo_public','0'), (18769,1542,'original_post_id','1542'), (18770,1542,'_wp_old_slug','1542'), (18771,1542,'_publicize_pending','1'), (18772,1542,'_publicize_pending','1'), (18773,1542,'_oembed_fca7f2e1131eeff7e178fedb5d064d6e','{{unknown}}'), (18774,1542,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (18775,1542,'_oembed_fa2bbdfddeb4d5318b58e5ec5462aea2','{{unknown}}'), (18776,1542,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (18777,1542,'_oembed_f094d27ee3dec0461faaf994f119cbbd','{{unknown}}'), (18778,1553,'_wp_old_slug','1553'), (18779,1553,'original_post_id','1553'), (18780,1553,'_publicize_pending','1'), (18781,1553,'geo_address',' '), (18782,1553,'geo_public','0'), (18783,1553,'geo_longitude','0.000000'), (18784,1553,'geo_accuracy','0'), (18785,1553,'_publicize_pending','1'), (18786,1553,'geo_latitude','0.000000'), (18787,1553,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (18788,1553,'_oembed_70d6d23f92093971ec6b29da278a979c','{{unknown}}'), (18789,1553,'_oembed_f71005280683f30817e21c2ab5ce20b2','{{unknown}}'), (18790,1553,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (18791,1553,'_oembed_4d3ace6cbb4c6cd9f38d608c8679e6ce','{{unknown}}'), (18792,1553,'_oembed_56815822ff1f9f682aa7350b1ccb4c06','{{unknown}}'), (18793,1553,'_wp_old_slug','1553'), (18794,1553,'original_post_id','1553'), (18795,1553,'_publicize_pending','1'), (18796,1553,'geo_address',' '), (18797,1553,'geo_public','0'), (18798,1553,'geo_longitude','0.000000'), (18799,1553,'geo_accuracy','0'), (18800,1553,'_publicize_pending','1'), (18801,1553,'geo_latitude','0.000000'), (18802,1553,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (18803,1553,'_oembed_70d6d23f92093971ec6b29da278a979c','{{unknown}}'), (18804,1553,'_oembed_f71005280683f30817e21c2ab5ce20b2','{{unknown}}'), (18805,1553,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (18806,1553,'_oembed_4d3ace6cbb4c6cd9f38d608c8679e6ce','{{unknown}}'), (18807,1553,'_oembed_56815822ff1f9f682aa7350b1ccb4c06','{{unknown}}'), (18808,1553,'_wp_old_slug','1553'), (18809,1553,'original_post_id','1553'), (18810,1553,'_publicize_pending','1'), (18811,1553,'geo_address',' '), (18812,1553,'geo_public','0'), (18813,1553,'geo_longitude','0.000000'), (18814,1553,'geo_accuracy','0'), (18815,1553,'_publicize_pending','1'), (18816,1553,'geo_latitude','0.000000'), (18817,1553,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (18818,1553,'_oembed_70d6d23f92093971ec6b29da278a979c','{{unknown}}'), (18819,1553,'_oembed_f71005280683f30817e21c2ab5ce20b2','{{unknown}}'), (18820,1553,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (18821,1553,'_oembed_4d3ace6cbb4c6cd9f38d608c8679e6ce','{{unknown}}'), (18822,1553,'_oembed_56815822ff1f9f682aa7350b1ccb4c06','{{unknown}}'), (18823,1553,'_wp_old_slug','1553'), (18824,1553,'original_post_id','1553'), (18825,1553,'_publicize_pending','1'), (18826,1553,'geo_address',' '), (18827,1553,'geo_public','0'), (18828,1553,'geo_longitude','0.000000'), (18829,1553,'geo_accuracy','0'), (18830,1553,'_publicize_pending','1'), (18831,1553,'geo_latitude','0.000000'), (18832,1553,'_oembed_7eb247fd7c059af177be15b1f1d32f15','{{unknown}}'), (18833,1553,'_oembed_70d6d23f92093971ec6b29da278a979c','{{unknown}}'), (18834,1553,'_oembed_f71005280683f30817e21c2ab5ce20b2','{{unknown}}'), (18835,1553,'_oembed_ca071b0641b5b5d20c894d0ccd069e3e','{{unknown}}'), (18836,1553,'_oembed_4d3ace6cbb4c6cd9f38d608c8679e6ce','{{unknown}}'), (18837,1553,'_oembed_56815822ff1f9f682aa7350b1ccb4c06','{{unknown}}'), (18838,1558,'_wp_old_slug','1558'), (18839,1558,'original_post_id','1558'), (18840,1558,'geo_public','0'), (18841,1558,'_publicize_pending','1'), (18842,1558,'_publicize_pending','1'), (18843,1558,'_wp_old_slug','1558'), (18844,1558,'original_post_id','1558'), (18845,1558,'geo_public','0'), (18846,1558,'_publicize_pending','1'), (18847,1558,'_publicize_pending','1'), (18848,1558,'_wp_old_slug','1558'), (18849,1558,'original_post_id','1558'), (18850,1558,'geo_public','0'), (18851,1558,'_publicize_pending','1'), (18852,1558,'_publicize_pending','1'), (18853,1558,'_wp_old_slug','1558'), (18854,1558,'original_post_id','1558'), (18855,1558,'geo_public','0'), (18856,1558,'_publicize_pending','1'), (18857,1558,'_publicize_pending','1'), (18858,2117,'geo_public','0'), (18859,2117,'_publicize_pending','1'), (18860,2117,'geo_public','0'), (18861,2117,'_publicize_pending','1'), (18862,2117,'geo_public','0'), (18863,2117,'_publicize_pending','1'), (18864,2117,'geo_public','0'), (18865,2117,'_publicize_pending','1'), (18866,2193,'_publicize_pending','1'), (18867,2193,'_wpas_mess','undefined'), (18868,2193,'_wpas_skip_path','1'), (18869,2193,'_wpas_skip_tumblr','1'), (18870,2193,'_wpas_skip_linkedin','1'), (18871,2193,'_wpas_skip_twitter','1'), (18872,2193,'_wpas_skip_facebook','1'), (18873,2193,'_wpas_skip_google_plus','1'), (18874,2193,'geo_public','0'), (18875,2193,'_publicize_pending','1'), (18876,2193,'_wpas_mess','undefined'), (18877,2193,'_wpas_skip_path','1'), (18878,2193,'_wpas_skip_tumblr','1'), (18879,2193,'_wpas_skip_linkedin','1'), (18880,2193,'_wpas_skip_twitter','1'), (18881,2193,'_wpas_skip_facebook','1'), (18882,2193,'_wpas_skip_google_plus','1'), (18883,2193,'geo_public','0'), (18884,2193,'_publicize_pending','1'), (18885,2193,'_wpas_mess','undefined'), (18886,2193,'_wpas_skip_path','1'), (18887,2193,'_wpas_skip_tumblr','1'), (18888,2193,'_wpas_skip_linkedin','1'), (18889,2193,'_wpas_skip_twitter','1'), (18890,2193,'_wpas_skip_facebook','1'), (18891,2193,'_wpas_skip_google_plus','1'), (18892,2193,'geo_public','0'), (18893,2193,'_publicize_pending','1'), (18894,2193,'_wpas_mess','undefined'), (18895,2193,'_wpas_skip_path','1'), (18896,2193,'_wpas_skip_tumblr','1'), (18897,2193,'_wpas_skip_linkedin','1'), (18898,2193,'_wpas_skip_twitter','1'), (18899,2193,'_wpas_skip_facebook','1'), (18900,2193,'_wpas_skip_google_plus','1'), (18901,2193,'geo_public','0'), (18902,2207,'_wpas_mess','undefined'), (18903,2207,'_wpas_skip_path','1'), (18904,2207,'_wpas_skip_linkedin','1'), (18905,2207,'_wpas_skip_tumblr','1'), (18906,2207,'_wpas_skip_twitter','1'), (18907,2207,'_wpas_skip_google_plus','1'), (18908,2207,'_wpas_skip_facebook','1'), (18909,2207,'geo_public','0'), (18910,2207,'_publicize_pending','1'), (18911,2207,'_wpas_mess','undefined'), (18912,2207,'_wpas_skip_path','1'), (18913,2207,'_wpas_skip_linkedin','1'), (18914,2207,'_wpas_skip_tumblr','1'), (18915,2207,'_wpas_skip_twitter','1'), (18916,2207,'_wpas_skip_google_plus','1'), (18917,2207,'_wpas_skip_facebook','1'), (18918,2207,'geo_public','0'), (18919,2207,'_publicize_pending','1'), (18920,2207,'_wpas_mess','undefined'), (18921,2207,'_wpas_skip_path','1'), (18922,2207,'_wpas_skip_linkedin','1'), (18923,2207,'_wpas_skip_tumblr','1'), (18924,2207,'_wpas_skip_twitter','1'), (18925,2207,'_wpas_skip_google_plus','1'), (18926,2207,'_wpas_skip_facebook','1'), (18927,2207,'geo_public','0'), (18928,2207,'_publicize_pending','1'), (18929,2207,'_wpas_mess','undefined'), (18930,2207,'_wpas_skip_path','1'), (18931,2207,'_wpas_skip_linkedin','1'), (18932,2207,'_wpas_skip_tumblr','1'), (18933,2207,'_wpas_skip_twitter','1'), (18934,2207,'_wpas_skip_google_plus','1'), (18935,2207,'_wpas_skip_facebook','1'), (18936,2207,'geo_public','0'), (18937,2207,'_publicize_pending','1'), (18938,2413,'_menu_item_type','post_type'), (18939,2413,'_menu_item_menu_item_parent','0'), (18940,2413,'_menu_item_object_id','11'), (18941,2413,'_menu_item_object','page'), (18942,2413,'_menu_item_target',''), (18943,2413,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (18944,2413,'_menu_item_xfn',''), (18945,2413,'_menu_item_url',''), (18946,2414,'_menu_item_type','post_type'), (18947,2414,'_menu_item_menu_item_parent','0'), (18948,2414,'_menu_item_object_id','2369'), (18949,2414,'_menu_item_object','page'), (18950,2414,'_menu_item_target',''), (18951,2414,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (18952,2414,'_menu_item_xfn',''), (18953,2414,'_menu_item_url',''), (18963,11,'_edit_lock','1410885462:1'), (18964,2375,'_edit_lock','1410885276:1'), (18965,2369,'_edit_lock','1418084239:1'), (18966,2370,'_edit_lock','1418084241:1'), (18967,2371,'_edit_lock','1418084241:1'), (18968,2372,'_edit_lock','1418084244:1'), (18969,2373,'_edit_lock','1418084239:1'), (18970,2374,'_edit_lock','1410885923:1'), (18971,9,'_edit_lock','1410885465:1'), (18972,2374,'_edit_last','1'), (18973,2373,'_edit_last','1'); /*!40000 ALTER TABLE `wporg_36_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_36_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_36_posts`; CREATE TABLE `wporg_36_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_36_posts` WRITE; /*!40000 ALTER TABLE `wporg_36_posts` DISABLE KEYS */; INSERT INTO `wporg_36_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 (3,1,'2014-09-16 15:46:21','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-09-16 15:46:21','0000-00-00 00:00:00','',0,'http://apps.wordpressorg.dev/?p=3',0,'post','',0), (9,7,'2014-01-14 03:47:52','2014-01-14 03:47:52','

Forums

\nIf you run into issues while using your WordPress app, we encourage you to visit the forums for troubleshooting help and to view other discussions that might be helpful. In the forums, you can also provide feedback and requests for features and weigh in on future development.\n\nFor iOS users, visit the WordPress for iOS Forums.\n\nFor Android users, visit the WordPress for Android Forums.\n

FAQs

\nHere are some frequently asked questions:\n\n
\n

WordPress for iOS

\n
    \n
  1. Which version of WordPress does the App work with?
  2. \n
  3. Which devices will this work with?
  4. \n
  5. I get an “Unable to read the WordPress site on that URL” error message. What do I do ?
  6. \n
  7. I get a “Blog returned invalid data” error message. what do I do?
  8. \n
  9. I can’t login, I get a “Precondition Failed” or a “Forbidden” error message. What do I need to do?
  10. \n
  11. I can’t upload photos/videos, I get a “Failed” error message. What do I need to do?
  12. \n
  13. My blog is located in a folder, and resolves to http://example.com/blog. How do I add the blog?
  14. \n
  15. Can I adjust the size of photos uploaded from the app?
  16. \n
  17. I can save posts to local drafts but can’t figure out how to publish to the blog — what do I need to do?
  18. \n
  19. How do I delete a blog?
  20. \n
  21. I get an “XML-RPC Service are disabled on your blog”. How I can enable them on my blog?
  22. \n
  23. My Host Blocks XML-RPC Access! How do I fix that?
  24. \n
  25. Can I use SSL to encrypt the App communication?
  26. \n
  27. I’m in China and I can’t login, I get an SSL error. What do I need to do?
  28. \n
  29. How to set up set up Stats via Jetpack?
  30. \n
  31. I can’t connect to my self-hosted blog, what do I do?
  32. \n
  33. I get the error “Couldn’t Sync — Sorry, you cannot edit posts site.”
  34. \n
  35. How do I send in debug logs from the app?
  36. \n
\n
\n

WordPress for Android

\n
    \n
  1. Which version of WordPress does the App work with?
  2. \n
  3. Which Android devices will this work with?
  4. \n
  5. How do I enable XML-RPC access to my blog?
  6. \n
  7. Can’t add my site to the app. What do I do?
  8. \n
  9. My Host Blocks XML-RPC Access! How do I fix that?
  10. \n
  11. Can I adjust the size of photos uploaded from the app?
  12. \n
  13. Can I use stats with a self-hosted blog?
  14. \n
  15. Adding a blog is taking a long time or times out. How do I fix that?
  16. \n
  17. Why do I get a “connection refused” error when on the stats tab?
  18. \n
  19. Can I use SSL to encrypt the App communication?
  20. \n
\n
\n

WordPress for iOS

\n
    \n
  1. \n

    Which version of WordPress does the App work with?

    \nWe make sure the app works with the current and two previous versions of WordPress. Earlier versions are not supported but may still work for most features.
  2. \n
  3. \n

    Which devices will this work with?

    \nThe App works with any device that is running iOS version 7 or greater.
  4. \n
  5. \n

    I get an \"Unable to read the WordPress site on that URL\" error message. What do I do ?

    \n
      \n
    1. Ensure that you\'ve typed in the URL correctly.
    2. \n
    3. If it\'s correct, make sure XML-RPC services are enabled on the blog.
    4. \n
    5. Verify that xmlrpc.php is functioning properly:\n
        \n
      1. Locate your RSD meta tag by viewing-source on your blog. It will look similar to this: <link rel=\"EditURI\" type=\"application/rsd+xml\" title=\"RSD\" href=\"http://example.com/xmlrpc.php?rsd\" />
      2. \n
      3. Next, follow the link, http://example.com/xmlrpc.php?rsd, and make sure it resolved to an XML file. Locate the WordPress API item: http://example.com/xmlrpc.php.
      4. \n
      5. Lastly, load that apiLink value into your browser. If everything is setup correctly, you should see this message: \"XML-RPC server accepts POST requests only.\"
      6. \n
      \n
    6. \n
    7. Go to the W3C Markup Validator and type in the URL of your WordPress site. If you get a response such as \"... one or more bytes that I cannot interpret as UTF-8\" that is most likely what is causing the app to have trouble with your site.
    8. \n
    9. Try with the default theme and with no active plug-in.(Trying it with the default theme and plugins disabled will help pin down where the problem is. If everything works then you go back and enable your theme and then try it again. If everything still works then you go back and activate each plugin one at a time until you find the one that is causing the breakage.)
    10. \n
    11. Turn on the \'debug mode\', that enables extended log format, and check the log file. Instructions here.
    12. \n
    \n
  6. \n
  7. \n

    I get a \"Blog returned invalid data\" error message. what do I do?

    \n
      \n
    1. A common issue that can cause errors with the App is invalid characters.  The easiest way to check is to go to the W3C Markup Validator and type in the URL of your WordPress site.  If you get a response such as \"... one or more bytes that I cannot interpret as UTF-8\" that is most likely what is causing the app to have trouble with your site.
    2. \n
    3. You can also try with the default theme and with no active plug-in.(Trying it with the default theme and plugins disabled will help pin down where the problem is. If everything works then you go back and enable your theme and then try it again. If everything still works then you go back and activate each plugin one at a time until you find the one that is causing the breakage.)
    4. \n
    5. You might be able to figure out what’s wrong by yourself by following the instructions here: http://wpiphonedev.wordpress.com/extra-debug/
    6. \n
    \n
  8. \n
  9. \n

    I can\'t login, I get a \"Precondition Failed\" or a \"Forbidden\" error message. What do I need to do?

    \nIf you receive a \"Precondition Failed\" that is most likely a mod_Security issue discussed in this WordPress Support Forum discussion.\n\nCheck with your hosting provider or system administrator to see if permissions or other issues are causing the error.
  10. \n
  11. \n

    I can\'t upload photos/videos, I get a \"Failed\" error message. What do I need to do?

    \nIf you’re running WordPress 2.9.2 or later please be sure to add the following lines to your root .htaccess file:\n\nphp_value memory_limit 128M\nphp_value upload_max_filesize 128M\nphp_value post_max_size 128M\nphp_value max_execution_time 120\n\nAdditional info here.
  12. \n
  13. \n

    My blog is located in a folder, and resolves to http://example.com/blog.  How do I add the blog?

    \nType in the full URL when adding the blog, in this case, example.com/blog.
  14. \n
  15. \n

    Can I adjust the size of photos uploaded from the app?

    \nYou can choose whether to have photos resized for faster uploading. You can choose between predefined dimensions (small/medium/large) or setting a custom resize dimension.
  16. \n
  17. \n

    I can save posts to local drafts but can\'t figure out how to publish to the blog -- what do I need to do?

    \nWhen you are ready to publish, change the status of the post (from the Settings screen) to \"Published\" and then tap \"Save.\"
  18. \n
  19. \n

    How do I delete a blog?

    \n
      \n
    1. Tap \"Me\" at the bottom of the screen
    2. \n
    3. Tap \"Edit\" in top left of the screen
    4. \n
    5. WordPress.com blogs can be hidden from the App view by using the toggle switch on the right.
    6. \n
    7. Self Hosted sites can be deleted by tapping the red \"–\" and then tap \"Remove\".
    8. \n
    \n
  20. \n
  21. \n

    I get an \"XML-RPC Service are disabled on your blog\". How I can enable them on my blog?

    \nNote: As of WordPress 3.5, XML-RPC is enabled by default. The following settings only apply to 3.4 or lower.\n
      \n
    1. Go to your blog and log in (/wp-admin).
    2. \n
    3. In the sidebar, open Settings and then select Writing.
    4. \n
    5. Under Remote Publishing, check the XML-RPC protocol checkbox.
    6. \n
    7. Click Save Changes at the bottom of the page.
    8. \n
    \n
  22. \n
  23. \n

    My Host Blocks XML-RPC Access! How do I fix that?

    \n
      \n
    1. Rename your xmlrpc.php file to something different, but only change it after the \'xmlrpc\'. Ex: xmlrpc_wp.php.
    2. \n
    3. Install this plugin.
    4. \n
    5. Read the installation instructions and activate it.
    6. \n
    7. Remove your blog from the app and add it back again.
    8. \n
    \n
  24. \n
  25. \n

    Can I use SSL to encrypt the App communication?

    \nYes. On WordPress.com blogs, all communication (done over XML-RPC)  is by default going to use an encrypted connection via SSL.  For self-hosted WordPress, if you have SSL enabled, WordPress 2.6.1 or later supports pointing the RSD information at the \"https\" version of xmlrpc.php which creates an encrypted communication link with the App.
  26. \n
  27. \n

    I\'m in China and I can\'t login, I get an SSL error. What do I need to do?

    \nThe app tried to connect to your blog using a secure connection (https) but apparently WordPress.com is being blocked in China over https connection. You can add the blog following the steps below:\n
      \n
    1. Tap the add blogs button.
    2. \n
    3. Tap on \"Add self-hosted WordPress blog\".
    4. \n
    5. Insert the URL of your blog http://your-blog-name.wordpress.com/xmlrpc.php
    6. \n
    7. Insert your Credentials and tap \"Save\".
    8. \n
    \n
  28. \n
  29. \n

    How to set up set up Stats via Jetpack?

    \nJetpack is a plugin that connects to WordPress.com and enables awesome features like stats, powered by the WordPress.com cloud infrastructure. To view your self-hosted blog\'s stats:\n
      \n
    1. Install the Jetpack plugin on your blog. To install, go to the Plugins > Add New in your dashboard, search for Jetpack, and click \"Install Now\".
    2. \n
    3. Connect the plugin to a WordPress.com account. In the Jetpack tab in your dashboard click the \"Connect to WordPress.com\" button and follow the directions.
    4. \n
    5. In the app, enter the credentials to the WordPress.com account connected to the Jetpack plugin. You can do this when prompted on the Stats screen, or by tapping Settings > Your Blog > Configure Jetpack Stats.
    6. \n
    \n
  30. \n
  31. \n

    I can\'t connect to my self-hosted blog, what do I do?

    \nIf this guide to help you make the XMLRPC endpoint accessible didn\'t help, the case might be that you\'re running a plugin on your blog that is blocking access for apps to connect to your blog.\n\nWe have a running list of WordPress plugins that can break your blog here: http://ios.forums.wordpress.org/topic/app-blocking-plugin-list?replies=1#post-5985\n\nIf you\'re running any of these plugins, please try and disable them to see if that fixes the problem.\n\nIf your plugin is not on the list but does make your site unreachable, please let us know and we\'ll add it. Feel free to nudge the developers of the respective plugins to fix the connectivity issues!
  32. \n
  33. \n

    I get the error \"Couldn\'t Sync -- Sorry, you cannot edit posts site.\"

    \nThe reason you would get this error is most likely because of one of two reasons:\n
      \n
    1. The account you have on the site doesn\'t have sufficient privileges. Your user role needs to be Author, Editor, or Administrator to be able to manage content in the app.
    2. \n
    3. You recently changed the URL associated with your blog in the app, moved your website elsewhere, or changed your CMS.
    4. \n
    \nSolution: make sure you have the sufficient privileges on the site, Author or higher. Make sure the blog URL in the app is correct by going to Settings and tap your blog to edit it.
  34. \n
  35. \n

    How do I send in debug logs from the app?

    \n
      \n
    1. Open the app.
    2. \n
    3. Click on the \"Me\" tab.
    4. \n
    5. If you see \"Settings\" in the top right tap on it, if not tap on the \"Me\" tab again and it\'ll take you back to the blog list where you will see \"Settings\".
    6. \n
    7. Click on \"Support\".
    8. \n
    9. Enable \"Extra Debug\".
    10. \n
    11. Exit out of the app and re-open it and try to perform the actions causing difficulty.
    12. \n
    13. Go back to the Support screen in Settings.
    14. \n
    15. Click on \"Activity Logs\".
    16. \n
    17. Click on \"Current.
    18. \n
    19. Tap the share button in the top right and select \"Mail\".
    20. \n
    21. From here email the logs to the receipient of your choice.
    22. \n
    \n
  36. \n
\n\n
\n\n

WordPress for Android

\n
    \n
  1. \n

    Which version of WordPress does the App work with?

    \nThe App works with WordPress.com and WordPress 3.6 or higher.
  2. \n
  3. \n

    Which Android devices will this work with?

    \nThe App will work on all phones that are running Android version 2.3 (Gingerbread) or higher.
  4. \n
  5. \n

    How do I enable XML-RPC access to my blog?

    \nNote: As of WordPress 3.5, you no longer need to enable XML-RPC access. While logged into your WordPress dashboard, select ‘Writing’ under the Settings tab on the left. Scroll down to ‘Remote Publishing’, then check the box next to ‘XML-RPC’ and save your changes.
  6. \n
  7. \n

    Can’t add my site to the app. What do I do?

    \n
      \n
    1. Ensure that you\'ve typed in the URL correctly.
    2. \n
    3. If it\'s correct, make sure XML-RPC services are enabled on the blog.
    4. \n
    5. Verify that xmlrpc.php is functioning properly:\n
        \n
      1. Locate your RSD meta tag by viewing-source on your blog. It will look similar to this: <link rel=\"EditURI\" type=\"application/rsd+xml\" title=\"RSD\" href=\"http://example.com/xmlrpc.php?rsd\" />
      2. \n
      3. Next, follow the link, http://example.com/xmlrpc.php?rsd, and make sure it resolved to an XML file. Locate the WordPress API item: http://example.com/xmlrpc.php.
      4. \n
      5. Lastly, load that apiLink value into your browser. If everything is setup correctly, you should see this message: \"XML-RPC server accepts POST requests only.\"
      6. \n
      \n
    6. \n
    7. Go to the W3C Markup Validator and type in the URL of your WordPress site. If you get a response such as \"... one or more bytes that I cannot interpret as UTF-8\" that is most likely what is causing the app to have trouble with your site.
    8. \n
    9. Try with the default theme and with no active plug-in.(Trying it with the default theme and plugins disabled will help pin down where the problem is. If everything works then you go back and enable your theme and then try it again. If everything still works then you go back and activate each plugin one at a time until you find the one that is causing the breakage.)
    10. \n
    11. Turn on the \'debug mode\', that enables extended log format, and check the log file. Instructions here.
    12. \n
    \n
  8. \n
  9. \n

    My Host Blocks XML-RPC Access! How do I fix that?

    \n
      \n
    1. Rename your xmlrpc.php file to something different, but only change it after the \'xmlrpc\'. Ex: xmlrpc_wp.php.
    2. \n
    3. Install this plugin.
    4. \n
    5. Read the installation instructions and activate it.
    6. \n
    7. Remove your blog from the app and add it back again.
    8. \n
    \n
  10. \n
  11. \n

    Can I adjust the size of photos uploaded from the app?

    \nWhen in the dashboard view of your blog, select ‘Settings’, then change the ‘Default image width’ setting to your desired width. You can also tap on an image in the post editor to set a custom size there as well.
  12. \n
  13. \n

    Can I use stats with a self-hosted blog?

    \nYes! If you install Jetpack you can enable stats for your self-hosted blog. After installing the plugin, simply enter your new WordPress.com login after selecting the ‘Stats’ button in the app.
  14. \n
  15. \n

    Adding a blog is taking a long time or times out. How do I fix that?

    \nAdding a blog is dependent on the speed of your Internet connection, so if you have a very weak signal or a slow EDGE connection, try again when you are in 3G/4G or Wi-Fi mode.
  16. \n
  17. \n

    Why do I get a \"connection refused\" error when on the stats tab?

    \nIf you’ve installed an ad blocker app such as AdFree Android, it will block your connection to stats.wordpress.com. You will need to edit the /system/etc/hosts file on your device and remove all entries that have stats.wordpress.com to get it working again.
  18. \n
  19. \n

    Can I use SSL to encrypt the App communication?

    \nYes. On WordPress.com blogs, all communication (done over XML-RPC) is by default going to use an encrypted connection via SSL. For self-hosted WordPress, if you have SSL enabled, WordPress 2.6.1 or later supports pointing the RSD information at the “https” version of xmlrpc.php which creates an encrypted communication link with the App.
  20. \n
','Support','','publish','closed','closed','','support','','','2014-01-14 03:47:52','2014-01-14 03:47:52','',0,'http://wpmobileapps.wordpress.com/?page_id=9',0,'page','',0), (11,1,'2014-01-14 03:48:08','2014-01-14 03:48:08','','Blog','','publish','closed','closed','','blog','','','2014-01-14 03:48:08','2014-01-14 03:48:08','',0,'http://wpmobileapps.wordpress.com/?page_id=11',0,'page','',0), (29,1,'2014-01-15 03:25:25','2014-01-15 03:25:25','','DSC_0202','','inherit','open','open','','dsc_0202','','','2014-01-15 03:25:25','2014-01-15 03:25:25','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/dsc_0202.jpg',0,'attachment','image/jpeg',0), (33,4,'2014-01-15 04:20:15','2014-01-15 04:20:15','','logo','','inherit','open','open','','logo','','','2014-01-15 04:20:15','2014-01-15 04:20:15','',0,'http:///wp-content/uploads/2014/01/logo.png',0,'attachment','image/png',0), (36,4,'2014-01-15 04:37:13','2014-01-15 04:37:13','','logo','','inherit','open','open','','logo-2-2','','','2014-01-15 04:37:13','2014-01-15 04:37:13','',0,'http:///wp-content/uploads/2014/01/logo11.png',0,'attachment','image/png',0), (65,4,'2014-01-15 06:54:15','2014-01-15 06:54:15','','DSC_0199','','inherit','open','open','','dsc_0199','','','2014-01-15 06:54:15','2014-01-15 06:54:15','',0,'http:///wp-content/uploads/2014/01/dsc_0199.jpg',0,'attachment','image/jpeg',0), (67,4,'2014-01-15 06:56:24','2014-01-15 06:56:24','','DSC_0199b','','inherit','open','open','','dsc_0199b','','','2014-01-15 06:56:24','2014-01-15 06:56:24','',0,'http:///wp-content/uploads/2014/01/dsc_0199b.jpg',0,'attachment','image/jpeg',0), (83,4,'2014-01-16 03:35:15','2014-01-16 03:35:15','','colors','','inherit','open','open','','colors','','','2014-01-16 03:35:15','2014-01-16 03:35:15','',0,'http:///wp-content/uploads/2014/01/colors.jpg',0,'attachment','image/jpeg',0), (85,1,'2014-01-16 03:38:44','2014-01-16 03:38:44','','DSC01390','','inherit','open','open','','dsc01390','','','2014-01-16 03:38:44','2014-01-16 03:38:44','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/dsc013901.jpg',0,'attachment','image/jpeg',0), (86,4,'2014-01-16 03:42:59','2014-01-16 03:42:59','','announcement-ios7-02','','inherit','open','open','','announcement-ios7-02','','','2014-01-16 03:42:59','2014-01-16 03:42:59','',0,'http:///wp-content/uploads/2014/01/announcement-ios7-02.png',0,'attachment','image/png',0), (89,4,'2014-01-16 03:48:28','2014-01-16 03:48:28','','DSC01390','','inherit','open','open','','dsc01390-2','','','2014-01-16 03:48:28','2014-01-16 03:48:28','',0,'http:///wp-content/uploads/2014/01/dsc0139011.jpg',0,'attachment','image/jpeg',0), (94,4,'2014-01-17 02:04:28','2014-01-17 02:04:28','','DSC013902','','inherit','open','open','','dsc013902','','','2014-01-17 02:04:28','2014-01-17 02:04:28','',0,'http:///wp-content/uploads/2014/01/dsc013902.jpg',0,'attachment','image/jpeg',0), (103,4,'2008-07-10 07:16:58','2008-07-10 07:16:58','','blogtitle','','inherit','open','open','','blogtitle','','','2008-07-10 07:16:58','2008-07-10 07:16:58','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2008/07/blogtitle.png',0,'attachment','image/png',0), (112,4,'2008-07-10 19:02:07','2008-07-10 19:02:07','','Blog list screenshot','','inherit','open','open','','ss1','','','2008-07-10 19:02:07','2008-07-10 19:02:07','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2008/07/ss1.jpg',0,'attachment','image/jpeg',0), (113,4,'2008-07-10 19:02:10','2008-07-10 19:02:10','','Post list screenshot','','inherit','open','open','','ss2','','','2008-07-10 19:02:10','2008-07-10 19:02:10','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2008/07/ss2.jpg',1,'attachment','image/jpeg',0), (114,4,'2008-07-10 19:02:14','2008-07-10 19:02:14','','Photos screenshot','','inherit','open','open','','ss3','','','2008-07-10 19:02:14','2008-07-10 19:02:14','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2008/07/ss3.jpg',2,'attachment','image/jpeg',0), (141,1,'2010-03-29 12:11:11','2010-03-29 20:11:11','','add_media','','inherit','open','open','','add_media','','','2010-03-29 12:11:11','2010-03-29 20:11:11','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/add_media.png',0,'attachment','image/png',0), (142,1,'2010-03-29 12:11:13','2010-03-29 20:11:13','','blogs','','inherit','open','open','','blogs','','','2010-03-29 12:11:13','2010-03-29 20:11:13','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/blogs.png',0,'attachment','image/png',0), (143,1,'2010-03-29 12:11:16','2010-03-29 20:11:16','','categories','','inherit','open','open','','categories','','','2010-03-29 12:11:16','2010-03-29 20:11:16','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/categories.png',0,'attachment','image/png',0), (144,1,'2010-03-29 12:11:18','2010-03-29 20:11:18','','comments','','inherit','open','open','','comments','','','2010-03-29 12:11:18','2010-03-29 20:11:18','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/comments.png',0,'attachment','image/png',0), (145,1,'2010-03-29 12:11:22','2010-03-29 20:11:22','','german','','inherit','open','open','','german','','','2010-03-29 12:11:22','2010-03-29 20:11:22','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/german.png',0,'attachment','image/png',0), (150,1,'2010-03-29 12:27:15','2010-03-29 20:27:15','','view_comment','','inherit','open','open','','view_comment','','','2010-03-29 12:27:15','2010-03-29 20:27:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/view_comment1.png',0,'attachment','image/png',0), (162,3,'2009-11-11 12:35:23','2009-11-11 19:35:23','','04 - MainScreen - Storm LCD only','','inherit','open','open','','04-mainscreen-storm-lcd-only','','','2009-11-11 12:35:23','2009-11-11 19:35:23','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/04-mainscreen-storm-lcd-only.png',0,'attachment','image/png',0), (163,3,'2009-11-11 12:35:25','2009-11-11 19:35:25','','02 - MainScreen - Full Storm Device','','inherit','open','open','','02-mainscreen-full-storm-device','','','2009-11-11 12:35:25','2009-11-11 19:35:25','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/02-mainscreen-full-storm-device.png',0,'attachment','image/png',0), (164,1,'2010-03-29 13:31:04','2010-03-29 21:31:04','','blogs','','inherit','open','open','','blogs-2-2','','','2010-03-29 13:31:04','2010-03-29 21:31:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/blogs11.png',0,'attachment','image/png',0), (165,3,'2009-11-11 12:35:27','2009-11-11 19:35:27','','09- Media Properties - Full Storm Device','','inherit','open','open','','09-media-properties-full-storm-device','','','2009-11-11 12:35:27','2009-11-11 19:35:27','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/09-media-properties-full-storm-device.png',0,'attachment','image/png',0), (166,3,'2009-11-11 12:35:29','2009-11-11 19:35:29','','08 - Media Screen - Storm LCD only','','inherit','open','open','','08-media-screen-storm-lcd-only','','','2009-11-11 12:35:29','2009-11-11 19:35:29','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/08-media-screen-storm-lcd-only.png',0,'attachment','image/png',0), (167,3,'2009-11-11 12:35:32','2009-11-11 19:35:32','','07 - Media Screen - Full Storm Device','','inherit','open','open','','07-media-screen-full-storm-device','','','2009-11-11 12:35:32','2009-11-11 19:35:32','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/07-media-screen-full-storm-device.png',0,'attachment','image/png',0), (168,3,'2009-11-11 12:35:34','2009-11-11 19:35:34','','06 - Blog Screen - Storm LCD only','','inherit','open','open','','06-blog-screen-storm-lcd-only','','','2009-11-11 12:35:34','2009-11-11 19:35:34','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/06-blog-screen-storm-lcd-only.png',0,'attachment','image/png',0), (169,3,'2009-11-11 12:35:38','2009-11-11 19:35:38','','05 - Blog Screen - Full Storm Device','','inherit','open','open','','05-blog-screen-full-storm-device','','','2009-11-11 12:35:38','2009-11-11 19:35:38','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/05-blog-screen-full-storm-device.png',0,'attachment','image/png',0), (170,3,'2009-11-11 12:35:40','2009-11-11 19:35:40','','03 - MainScreen - LCD only','','inherit','open','open','','03-mainscreen-lcd-only','','','2009-11-11 12:35:40','2009-11-11 19:35:40','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/03-mainscreen-lcd-only.png',0,'attachment','image/png',0), (171,3,'2009-11-11 12:35:42','2009-11-11 19:35:42','','01 - MainScreen - Full Device','','inherit','open','open','','01-mainscreen-full-device','','','2009-11-11 12:35:42','2009-11-11 19:35:42','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/01-mainscreen-full-device.png',0,'attachment','image/png',0), (175,3,'2009-11-11 12:46:59','2009-11-11 19:46:59','','04 - MainScreen - Storm LCD only','','inherit','open','open','','04-mainscreen-storm-lcd-only-2','','','2009-11-11 12:46:59','2009-11-11 19:46:59','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/04-mainscreen-storm-lcd-only1.png',4,'attachment','image/png',0), (176,3,'2009-11-11 12:47:01','2009-11-11 19:47:01','','02 - MainScreen - Full Storm Device','','inherit','open','open','','02-mainscreen-full-storm-device-2','','','2009-11-11 12:47:01','2009-11-11 19:47:01','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/02-mainscreen-full-storm-device1.png',2,'attachment','image/png',0), (177,3,'2009-11-11 12:47:02','2009-11-11 19:47:02','','10 - Media Properties - Storm LCD only','','inherit','open','open','','10-media-properties-storm-lcd-only-2','','','2009-11-11 12:47:02','2009-11-11 19:47:02','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/10-media-properties-storm-lcd-only1.png',10,'attachment','image/png',0), (178,3,'2009-11-11 12:47:04','2009-11-11 19:47:04','','09- Media Properties - Full Storm Device','','inherit','open','open','','09-media-properties-full-storm-device-2','','','2009-11-11 12:47:04','2009-11-11 19:47:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/09-media-properties-full-storm-device1.png',9,'attachment','image/png',0), (179,3,'2009-11-11 12:47:07','2009-11-11 19:47:07','','08 - Media Screen - Storm LCD only','','inherit','open','open','','08-media-screen-storm-lcd-only-2','','','2009-11-11 12:47:07','2009-11-11 19:47:07','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/08-media-screen-storm-lcd-only1.png',8,'attachment','image/png',0), (180,3,'2009-11-11 12:47:09','2009-11-11 19:47:09','','07 - Media Screen - Full Storm Device','','inherit','open','open','','07-media-screen-full-storm-device-2','','','2009-11-11 12:47:09','2009-11-11 19:47:09','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/07-media-screen-full-storm-device1.png',7,'attachment','image/png',0), (181,3,'2009-11-11 12:47:12','2009-11-11 19:47:12','','06 - Blog Screen - Storm LCD only','','inherit','open','open','','06-blog-screen-storm-lcd-only-2','','','2009-11-11 12:47:12','2009-11-11 19:47:12','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/06-blog-screen-storm-lcd-only1.png',6,'attachment','image/png',0), (182,3,'2009-11-11 12:47:13','2009-11-11 19:47:13','','05 - Blog Screen - Full Storm Device','','inherit','open','open','','05-blog-screen-full-storm-device-2','','','2009-11-11 12:47:13','2009-11-11 19:47:13','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/05-blog-screen-full-storm-device1.png',5,'attachment','image/png',0), (184,1,'2010-04-05 08:42:33','2010-04-05 16:42:33','','Share YouTube Video','','inherit','open','open','','share','','','2010-04-05 08:42:33','2010-04-05 16:42:33','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/share.jpg',0,'attachment','image/jpeg',0), (191,1,'2010-05-11 09:27:28','2010-05-11 17:27:28','','Video Upload','','inherit','open','open','','video','','','2010-05-11 09:27:28','2010-05-11 17:27:28','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/video.jpg',0,'attachment','image/jpeg',0), (192,1,'2010-05-11 09:28:32','2010-05-11 17:28:32','','Geotagging','Geotagging','inherit','open','open','','location','','','2010-05-11 09:28:32','2010-05-11 17:28:32','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/location.jpg',0,'attachment','image/jpeg',0), (199,1,'2010-05-24 08:27:07','2010-05-24 16:27:07','','delete','','inherit','open','open','','delete','','','2010-05-24 08:27:07','2010-05-24 16:27:07','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/delete.jpg',0,'attachment','image/jpeg',0), (200,1,'2010-05-24 08:30:57','2010-05-24 16:30:57','','post-signature','','inherit','open','open','','post-signature','','','2010-05-24 08:30:57','2010-05-24 16:30:57','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/post-signature.jpg',0,'attachment','image/jpeg',0), (215,1,'2011-08-02 19:35:03','2011-08-02 19:35:03','','Landscape Editing','The landscape editor','inherit','open','open','','landscape','','','2011-08-02 19:35:03','2011-08-02 19:35:03','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/08/landscape.jpg',0,'attachment','image/jpeg',0), (223,1,'2011-08-24 12:18:30','2011-08-24 12:18:30','','Screenshot of the post editor','','inherit','open','open','','wordpress-windows-phone-7-post-editor-screenshot-version-1-2','','','2011-08-24 12:18:30','2011-08-24 12:18:30','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/08/wordpress-windows-phone-7-post-editor-screenshot-version-1-2.png',0,'attachment','image/png',0), (237,4,'2008-09-16 04:49:50','2008-09-16 04:49:50','','chart-test','','inherit','open','open','','chart-test','','','2008-09-16 04:49:50','2008-09-16 04:49:50','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2008/09/chart-test.pdf',0,'attachment','application/pdf',0), (238,4,'2008-09-16 04:51:13','2008-09-16 04:51:13','','wp-iphone-july-august','','inherit','open','open','','wp-iphone-july-august','','','2008-09-16 04:51:13','2008-09-16 04:51:13','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2008/09/wp-iphone-july-august.png',0,'attachment','image/png',0), (239,4,'2008-09-16 04:56:51','2008-09-16 04:56:51','','wp-iphone-stats','','inherit','open','open','','wp-iphone-stats','','','2008-09-16 04:56:51','2008-09-16 04:56:51','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2008/09/wp-iphone-stats.png',0,'attachment','image/png',0), (242,4,'2008-09-16 05:57:46','2008-09-16 05:57:46','','wp-iphone-installs','','inherit','open','open','','wp-iphone-installs','','','2008-09-16 05:57:46','2008-09-16 05:57:46','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2008/09/wp-iphone-installs.png',0,'attachment','image/png',0), (243,9,'2010-07-06 12:58:29','2010-07-06 20:58:29','','comments','','inherit','open','open','','comments-3','','','2010-07-06 12:58:29','2010-07-06 20:58:29','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/comments1.png',0,'attachment','image/png',0), (244,4,'2008-09-16 06:08:36','2008-09-16 06:08:36','','iphone-wordpress-stats','','inherit','open','open','','iphone-wordpress-stats','','','2008-09-16 06:08:36','2008-09-16 06:08:36','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2008/09/iphone-wordpress-stats.png',0,'attachment','image/png',0), (246,4,'2008-09-16 06:22:45','2008-09-16 06:22:45','','iphone-wp-stats','','inherit','open','open','','iphone-wp-stats','','','2008-09-16 06:22:45','2008-09-16 06:22:45','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2008/09/iphone-wp-stats.png',0,'attachment','image/png',0), (273,1,'2010-05-12 03:04:11','2010-05-12 10:04:11','','blackberry-wordpress-02','','inherit','open','open','','blackberry-wordpress-02','','','2010-05-12 03:04:11','2010-05-12 10:04:11','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/blackberry-wordpress-02.png',0,'attachment','image/png',0), (274,1,'2010-05-12 03:04:12','2010-05-12 10:04:12','','blackberry-wordpress-03','','inherit','open','open','','blackberry-wordpress-03','','','2010-05-12 03:04:12','2010-05-12 10:04:12','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/blackberry-wordpress-03.png',0,'attachment','image/png',0), (275,1,'2010-05-12 03:04:15','2010-05-12 10:04:15','','blackberry-wordpress-04','','inherit','open','open','','blackberry-wordpress-04-2','','','2010-05-12 03:04:15','2010-05-12 10:04:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/blackberry-wordpress-04.png',0,'attachment','image/png',0), (276,1,'2010-05-12 03:04:18','2010-05-12 10:04:18','','blackberry-wordpress-05','','inherit','open','open','','blackberry-wordpress-05','','','2010-05-12 03:04:18','2010-05-12 10:04:18','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/blackberry-wordpress-05.png',0,'attachment','image/png',0), (277,1,'2010-05-12 03:04:19','2010-05-12 10:04:19','','blackberry-wordpress-06','','inherit','open','open','','blackberry-wordpress-06-2-2','','','2010-05-12 03:04:19','2010-05-12 10:04:19','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/blackberry-wordpress-06.png',0,'attachment','image/png',0), (286,1,'2012-11-14 17:58:56','2012-11-14 17:58:56','','01-700-nokia-lumia-920-grey-front','','inherit','open','open','','01-700-nokia-lumia-920-grey-front','','','2012-11-14 17:58:56','2012-11-14 17:58:56','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/01-700-nokia-lumia-920-grey-front.png',0,'attachment','image/png',0), (287,1,'2012-11-14 17:59:16','2012-11-14 17:59:16','','02-700-nokia-lumia-920-grey-front','','inherit','open','open','','02-700-nokia-lumia-920-grey-front','','','2012-11-14 17:59:16','2012-11-14 17:59:16','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/02-700-nokia-lumia-920-grey-front.png',0,'attachment','image/png',0), (289,1,'2012-11-14 18:11:12','2012-11-14 18:11:12','','04-700-nokia-lumia-920-grey-front','','inherit','open','open','','04-700-nokia-lumia-920-grey-front','','','2012-11-14 18:11:12','2012-11-14 18:11:12','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/04-700-nokia-lumia-920-grey-front.png',0,'attachment','image/png',0), (307,1,'2010-07-05 10:13:56','2010-07-05 17:13:56','','blackberry-wordpress-02','','inherit','open','open','','blackberry-wordpress-02-2-2','','','2010-07-05 10:13:56','2010-07-05 17:13:56','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/blackberry-wordpress-02.png',0,'attachment','image/png',0), (308,1,'2010-08-24 06:31:24','2010-08-24 14:31:24','','ishot-77','','inherit','open','open','','ishot-77','','','2010-08-24 06:31:24','2010-08-24 14:31:24','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/ishot-77.jpg',0,'attachment','image/jpeg',0), (309,1,'2010-07-05 10:14:03','2010-07-05 17:14:03','','blackberry-wordpress-01','','inherit','open','open','','blackberry-wordpress-01-2-2','','','2010-07-05 10:14:03','2010-07-05 17:14:03','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/blackberry-wordpress-01.png',0,'attachment','image/png',0), (312,1,'2010-08-24 06:46:08','2010-08-24 14:46:08','','notification','','inherit','open','open','','notification','','','2010-08-24 06:46:08','2010-08-24 14:46:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/notification.jpg',0,'attachment','image/jpeg',0), (316,1,'2012-12-03 15:44:48','2012-12-03 15:44:48','','Bulk Comments Moderations','','inherit','open','open','','screen-capture-2','','','2012-12-03 15:44:48','2012-12-03 15:44:48','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/12/screen-capture-2.jpg',0,'attachment','image/jpeg',0), (317,1,'2012-12-03 15:44:52','2012-12-03 15:44:52','','Bulk Comments Moderations menu','','inherit','open','open','','screen-capture-3','','','2012-12-03 15:44:52','2012-12-03 15:44:52','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/12/screen-capture-3.jpg',0,'attachment','image/jpeg',0), (319,4,'2009-03-12 17:59:18','2009-03-12 17:59:18','','wordpress-iphone-app-store','','inherit','open','open','','wordpress-iphone-app-store','','','2009-03-12 17:59:18','2009-03-12 17:59:18','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/03/wordpress-iphone-app-store.png',0,'attachment','image/png',0), (321,4,'2009-03-13 07:32:56','2009-03-13 07:32:56','','About Screen','About Screen','inherit','open','open','','ss-about','','','2009-03-13 07:32:56','2009-03-13 07:32:56','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/03/ss-about.jpg',2,'attachment','image/jpeg',0), (322,4,'2009-03-13 07:32:58','2009-03-13 07:32:58','','Add a blog','Add a blog','inherit','open','open','','ss-add','','','2009-03-13 07:32:58','2009-03-13 07:32:58','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/03/ss-add.jpg',8,'attachment','image/jpeg',0), (323,4,'2009-03-13 07:32:59','2009-03-13 07:32:59','','Moderating comments in landscape','Moderating comments in landscape','inherit','open','open','','ss-commentmod','','','2009-03-13 07:32:59','2009-03-13 07:32:59','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/03/ss-commentmod.jpg',10,'attachment','image/jpeg',0), (324,4,'2009-03-13 07:33:01','2009-03-13 07:33:01','','Bulk moderating comments','Bulk moderating comments','inherit','open','open','','ss-comments','','','2009-03-13 07:33:01','2009-03-13 07:33:01','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/03/ss-comments.jpg',3,'attachment','image/jpeg',0), (325,4,'2009-03-13 07:33:02','2009-03-13 07:33:02','','Main Menu','Main Menu','inherit','open','open','','ss-main','','','2009-03-13 07:33:02','2009-03-13 07:33:02','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/03/ss-main.jpg',1,'attachment','image/jpeg',0), (326,4,'2009-03-13 07:33:04','2009-03-13 07:33:04','','Editing a page','Editing a page','inherit','open','open','','ss-page','','','2009-03-13 07:33:04','2009-03-13 07:33:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/03/ss-page.jpg',4,'attachment','image/jpeg',0), (327,4,'2009-03-13 07:33:05','2009-03-13 07:33:05','','Adding photos','Adding photos','inherit','open','open','','ss-photos','','','2009-03-13 07:33:05','2009-03-13 07:33:05','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/03/ss-photos.jpg',5,'attachment','image/jpeg',0), (328,4,'2009-03-13 07:33:07','2009-03-13 07:33:07','','Posts','Posts','inherit','open','open','','ss-posts','','','2009-03-13 07:33:07','2009-03-13 07:33:07','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/03/ss-posts.jpg',7,'attachment','image/jpeg',0), (329,4,'2009-03-13 07:33:08','2009-03-13 07:33:08','','Writing a post','Writing a post','inherit','open','open','','ss-write','','','2009-03-13 07:33:08','2009-03-13 07:33:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/03/ss-write.jpg',6,'attachment','image/jpeg',0), (330,4,'2009-03-13 07:33:10','2009-03-13 07:33:10','','Writing a post in landscape','Writing a post in landscape','inherit','open','open','','ss-writeland','','','2009-03-13 07:33:10','2009-03-13 07:33:10','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/03/ss-writeland.jpg',9,'attachment','image/jpeg',0), (338,1,'2010-08-03 13:21:37','2010-08-03 20:21:37','','01','','inherit','open','open','','01','','','2010-08-03 13:21:37','2010-08-03 20:21:37','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/01.png',1,'attachment','image/png',0), (340,1,'2010-08-03 13:21:49','2010-08-03 20:21:49','','03','','inherit','open','open','','03','','','2010-08-03 13:21:49','2010-08-03 20:21:49','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/03.png',3,'attachment','image/png',0), (342,1,'2010-08-03 13:21:57','2010-08-03 20:21:57','','05','','inherit','open','open','','05','','','2010-08-03 13:21:57','2010-08-03 20:21:57','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/05.png',5,'attachment','image/png',0), (349,1,'2010-11-24 04:45:16','2010-11-24 12:45:16','','1.3.8-screen','','inherit','open','open','','1-3-8-screen','','','2010-11-24 04:45:16','2010-11-24 12:45:16','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/11/1-3-8-screen.jpg',0,'attachment','image/jpeg',0), (362,1,'2010-08-21 01:37:02','2010-08-21 08:37:02','','05','','inherit','open','open','','05-2-2','','','2010-08-21 01:37:02','2010-08-21 08:37:02','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/0511.png',0,'attachment','image/png',0), (363,8,'2010-08-21 01:37:04','2010-08-21 08:37:04','','01','','inherit','open','open','','01-2-2','','','2010-08-21 01:37:04','2010-08-21 08:37:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/0112.png',0,'attachment','image/png',0), (364,8,'2010-08-21 01:37:06','2010-08-21 08:37:06','','02','','inherit','open','open','','02-2','','','2010-08-21 01:37:06','2010-08-21 08:37:06','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/021.png',0,'attachment','image/png',0), (365,9,'2011-01-25 05:21:02','2011-01-25 13:21:02','','qp-select','','inherit','open','open','','qp-select','','','2011-01-25 05:21:02','2011-01-25 13:21:02','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/01/qp-select.png',0,'attachment','image/png',0), (366,1,'2011-01-25 05:21:04','2011-01-25 13:21:04','','share url','','inherit','open','open','','share-url','','','2011-01-25 05:21:04','2011-01-25 13:21:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/01/share-url.png',0,'attachment','image/png',0), (368,4,'2009-05-22 06:18:59','2009-05-22 06:18:59','','add a blog','','inherit','open','open','','add-a-blog','','','2009-05-22 06:18:59','2009-05-22 06:18:59','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/05/add-a-blog.png',0,'attachment','image/png',0), (369,4,'2009-05-22 06:19:03','2009-05-22 06:19:03','','home screen','','inherit','open','open','','home-screen','','','2009-05-22 06:19:03','2009-05-22 06:19:03','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/05/home-screen.png',0,'attachment','image/png',0), (370,4,'2009-05-22 06:19:06','2009-05-22 06:19:06','','how to edit or delete','','inherit','open','open','','how-to-edit-or-delete','','','2009-05-22 06:19:06','2009-05-22 06:19:06','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/05/how-to-edit-or-delete.png',0,'attachment','image/png',0), (371,4,'2009-05-22 06:19:10','2009-05-22 06:19:10','','saving','','inherit','open','open','','saving','','','2009-05-22 06:19:10','2009-05-22 06:19:10','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/05/saving.png',0,'attachment','image/png',0), (374,4,'2009-05-22 06:28:30','2009-05-22 06:28:30','','new validation','','inherit','open','open','','new-validation','','','2009-05-22 06:28:30','2009-05-22 06:28:30','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/05/new-validation.png',0,'attachment','image/png',0), (378,1,'2010-09-04 00:59:34','2010-09-04 07:59:34','','00','','inherit','open','open','','00','','','2010-09-04 00:59:34','2010-09-04 07:59:34','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/09/00.png',1,'attachment','image/png',0), (379,1,'2010-09-04 00:59:37','2010-09-04 07:59:37','','01','','inherit','open','open','','01-3','','','2010-09-04 00:59:37','2010-09-04 07:59:37','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/09/01.png',3,'attachment','image/png',0), (380,1,'2010-09-04 00:59:42','2010-09-04 07:59:42','','02','','inherit','open','open','','02-3-2','','','2010-09-04 00:59:42','2010-09-04 07:59:42','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/09/02.png',4,'attachment','image/png',0), (381,1,'2010-09-04 00:59:46','2010-09-04 07:59:46','','03','','inherit','open','open','','03-3','','','2010-09-04 00:59:46','2010-09-04 07:59:46','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/09/03.png',5,'attachment','image/png',0), (383,9,'2011-04-18 00:06:33','2011-04-18 08:06:33','','wp-android-httppswd','','inherit','open','open','','wp-android-httppswd','','','2011-04-18 00:06:33','2011-04-18 08:06:33','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/wp-android-httppswd.jpg',0,'attachment','image/jpeg',0), (384,9,'2011-04-18 00:06:36','2011-04-18 08:06:36','','wp-android-postpassword','','inherit','open','open','','wp-android-postpassword','','','2011-04-18 00:06:36','2011-04-18 08:06:36','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/wp-android-postpassword.jpg',0,'attachment','image/jpeg',0), (386,8,'2013-02-26 10:37:29','2013-02-26 10:37:29','','Pier','','inherit','open','open','','03-7','','','2013-02-26 10:37:29','2013-02-26 10:37:29','',0,'http:///wp-content/uploads/2013/02/03.jpeg',0,'attachment','image/jpeg',0), (387,1,'2013-02-26 10:37:38','2013-02-26 10:37:38','','Rooftops','','inherit','open','open','','04-5','','','2013-02-26 10:37:38','2013-02-26 10:37:38','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/04.jpeg',0,'attachment','image/jpeg',0), (388,9,'2011-04-18 00:12:39','2011-04-18 08:12:39','','wp-android-httppswd','','inherit','open','open','','wp-android-httppswd-2-2','','','2011-04-18 00:12:39','2011-04-18 08:12:39','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/wp-android-httppswd11.jpg',0,'attachment','image/jpeg',0), (389,8,'2013-02-26 10:37:51','2013-02-26 10:37:51','','Restaurant','','inherit','open','open','','06-3','','','2013-02-26 10:37:51','2013-02-26 10:37:51','',0,'http:///wp-content/uploads/2013/02/061.jpeg',0,'attachment','image/jpeg',0), (391,8,'2013-02-26 10:37:59','2013-02-26 10:37:59','','Bird','','inherit','open','open','','08','','','2013-02-26 10:37:59','2013-02-26 10:37:59','',0,'http:///wp-content/uploads/2013/02/08.jpeg',0,'attachment','image/jpeg',0), (392,8,'2013-02-26 10:38:05','2013-02-26 10:38:05','','Cold Water','','inherit','open','open','','09','','','2013-02-26 10:38:05','2013-02-26 10:38:05','',0,'http:///wp-content/uploads/2013/02/09.jpeg',0,'attachment','image/jpeg',0), (400,1,'2013-02-26 11:23:15','2013-02-26 11:23:15','','01-dashboard','','inherit','open','open','','01-dashboard','','','2013-02-26 11:23:15','2013-02-26 11:23:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/01-dashboard.png',0,'attachment','image/png',0), (401,4,'2009-07-15 06:50:22','2009-07-15 06:50:22','','iPhone Simulator-1','','inherit','open','open','','iphone-simulator-1','','','2009-07-15 06:50:22','2009-07-15 06:50:22','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/07/iphone-simulator-1.png',0,'attachment','image/png',0), (403,1,'2013-02-26 11:23:25','2013-02-26 11:23:25','','04 - gellery-settings','','inherit','open','open','','04-gellery-settings','','','2013-02-26 11:23:25','2013-02-26 11:23:25','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/04-gellery-settings.jpg',0,'attachment','image/jpeg',0), (418,4,'2009-08-03 09:55:12','2009-08-03 09:55:12','','Sneak Peak','','inherit','open','open','','img_0173','','','2009-08-03 09:55:12','2009-08-03 09:55:12','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/08/img_0173.png',0,'attachment','image/png',0), (422,1,'2013-02-27 23:16:42','2013-02-27 23:16:42','','wpwindowsphone-2.0-dashboard-and-website-access','','inherit','open','open','','wpwindowsphone-2-0-dashboard-and-website-access','','','2013-02-27 23:16:42','2013-02-27 23:16:42','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/wpwindowsphone-2-0-dashboard-and-website-access.png',0,'attachment','image/png',0), (431,1,'2011-05-27 06:50:41','2011-05-27 14:50:41','','amazon_appstore','','inherit','open','open','','amazon_appstore','','','2011-05-27 06:50:41','2011-05-27 14:50:41','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/05/amazon_appstore.png',0,'attachment','image/png',0), (433,8,'2011-02-07 12:27:08','2011-02-07 19:27:08','','00','','inherit','open','open','','00-2-2','','','2011-02-07 12:27:08','2011-02-07 19:27:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/02/00.png',0,'attachment','image/png',0), (435,1,'2013-04-08 16:50:00','2013-04-08 16:50:00','','VE-01','','inherit','open','open','','ve-01','','','2013-04-08 16:50:00','2013-04-08 16:50:00','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/ve-01.jpg',0,'attachment','image/jpeg',0), (436,1,'2013-04-08 16:50:05','2013-04-08 16:50:05','','VE-02','','inherit','open','open','','ve-02','','','2013-04-08 16:50:05','2013-04-08 16:50:05','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/ve-02.jpg',0,'attachment','image/jpeg',0), (438,1,'2013-04-08 16:50:44','2013-04-08 16:50:44','','VE-04','','inherit','open','open','','ve-04','','','2013-04-08 16:50:44','2013-04-08 16:50:44','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/ve-04.png',0,'attachment','image/png',0), (440,8,'2011-03-04 02:11:42','2011-03-04 09:11:42','','04','','inherit','open','open','','04-4','','','2011-03-04 02:11:42','2011-03-04 09:11:42','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/04.png',0,'attachment','image/png',0), (441,9,'2011-09-19 08:50:09','2011-09-19 16:50:09','','android-read','','inherit','open','open','','android-read','','','2011-09-19 08:50:09','2011-09-19 16:50:09','',0,'http:///wp-content/uploads/2011/09/android-read.jpg',0,'attachment','image/jpeg',0), (442,1,'2013-04-08 16:54:45','2013-04-08 16:54:45','','VE-70','','inherit','open','open','','ve-70','','','2013-04-08 16:54:45','2013-04-08 16:54:45','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/ve-70.png',0,'attachment','image/png',0), (443,8,'2011-03-04 10:55:23','2011-03-04 17:55:23','','20 - Post list Screen','','inherit','open','open','','20-post-list-screen','','','2011-03-04 10:55:23','2011-03-04 17:55:23','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/20-post-list-screen.png',0,'attachment','image/png',0), (444,8,'2011-03-04 11:05:11','2011-03-04 18:05:11','','blackberry-wordpress-02','','inherit','open','open','','blackberry-wordpress-02-3','','','2011-03-04 11:05:11','2011-03-04 18:05:11','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/blackberry-wordpress-02.png',0,'attachment','image/png',0), (445,8,'2011-03-04 11:16:44','2011-03-04 18:16:44','','02','','inherit','open','open','','02-4','','','2011-03-04 11:16:44','2011-03-04 18:16:44','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/02.png',0,'attachment','image/png',0), (446,8,'2011-03-04 11:16:47','2011-03-04 18:16:47','','03','','inherit','open','open','','03-5','','','2011-03-04 11:16:47','2011-03-04 18:16:47','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/031.png',0,'attachment','image/png',0), (447,4,'2009-09-11 19:46:28','2009-09-11 19:46:28','','ss','','inherit','open','open','','ss','','','2009-09-11 19:46:28','2009-09-11 19:46:28','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/09/ss.png',0,'attachment','image/png',0), (448,8,'2011-03-04 11:25:27','2011-03-04 18:25:27','','22 - post settings','','inherit','open','open','','22-post-settings','','','2011-03-04 11:25:27','2011-03-04 18:25:27','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/22-post-settings.png',0,'attachment','image/png',0), (452,8,'2011-03-04 11:54:04','2011-03-04 18:54:04','','09 - options screen','','inherit','open','open','','09-options-screen','','','2011-03-04 11:54:04','2011-03-04 18:54:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/09-options-screen.png',0,'attachment','image/png',0), (453,8,'2011-03-04 11:54:09','2011-03-04 18:54:09','','10 - options screen','','inherit','open','open','','10-options-screen','','','2011-03-04 11:54:09','2011-03-04 18:54:09','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/10-options-screen.png',0,'attachment','image/png',0), (473,8,'2011-04-29 08:09:31','2011-04-29 15:09:31','','01','','inherit','open','open','','01-4','','','2011-04-29 08:09:31','2011-04-29 15:09:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/011.png',1,'attachment','image/png',0), (474,8,'2011-04-29 08:09:44','2011-04-29 15:09:44','','02','','inherit','open','open','','02-5','','','2011-04-29 08:09:44','2011-04-29 15:09:44','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/02.png',2,'attachment','image/png',0), (475,1,'2011-04-29 08:09:52','2011-04-29 15:09:52','','03','','inherit','open','open','','03-6','','','2011-04-29 08:09:52','2011-04-29 15:09:52','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/031.png',3,'attachment','image/png',0), (478,1,'2011-04-29 08:14:20','2011-04-29 15:14:20','','postformats-1','','inherit','open','open','','postformats-1','','','2011-04-29 08:14:20','2011-04-29 15:14:20','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/postformats-1.png',6,'attachment','image/png',0), (479,1,'2011-04-29 08:14:23','2011-04-29 15:14:23','','postformats-2','','inherit','open','open','','postformats-2','','','2011-04-29 08:14:23','2011-04-29 15:14:23','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/postformats-2.png',7,'attachment','image/png',0), (480,8,'2011-04-29 08:14:27','2011-04-29 15:14:27','','resize-opt1','','inherit','open','open','','resize-opt1','','','2011-04-29 08:14:27','2011-04-29 15:14:27','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/resize-opt11.png',5,'attachment','image/png',0), (481,8,'2011-04-29 08:14:30','2011-04-29 15:14:30','','resize-opt2','','inherit','open','open','','resize-opt2','','','2011-04-29 08:14:30','2011-04-29 15:14:30','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/resize-opt2.png',4,'attachment','image/png',0), (483,1,'2011-09-19 10:47:32','2011-09-19 18:47:32','','version-1-5-follow-example','','inherit','open','open','','version-1-5-follow-example','','','2011-09-19 10:47:32','2011-09-19 18:47:32','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/09/version-1-5-follow-example.png',0,'attachment','image/png',0), (505,1,'2011-12-14 05:30:38','2011-12-14 13:30:38','','dashboard','','inherit','open','open','','dashboard','','','2011-12-14 05:30:38','2011-12-14 13:30:38','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/12/dashboard.png',0,'attachment','image/png',0), (510,1,'2012-02-21 05:33:31','2012-02-21 12:33:31','','WordPress-for-PlayBook-dashboard-press-image','','inherit','open','open','','wordpress-for-playbook-dashboard-press-image','','','2012-02-21 05:33:31','2012-02-21 12:33:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/02/wordpress-for-playbook-dashboard-press-image.jpg',0,'attachment','image/jpeg',0), (511,1,'2011-12-14 07:21:34','2011-12-14 15:21:34','','tablet-posts','Browsing Posts on a Tablet','inherit','open','open','','tablet-posts','','','2011-12-14 07:21:34','2011-12-14 15:21:34','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/12/tablet-posts.png',0,'attachment','image/png',0), (512,1,'2012-02-21 06:03:15','2012-02-21 13:03:15','','detail-screenshot-dashboard-button','Access the Dashboard quickly from anywhere','inherit','open','open','','detail-screenshot-dashboard-button','','','2012-02-21 06:03:15','2012-02-21 13:03:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/02/detail-screenshot-dashboard-button.jpg',0,'attachment','image/jpeg',0), (536,1,'2011-12-18 21:15:32','2011-12-19 05:15:32','','wordpress-android-2_0-dashboard','','inherit','open','open','','wordpress-android-2_0-dashboard','','','2011-12-18 21:15:32','2011-12-19 05:15:32','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/12/wordpress-android-2_0-dashboard.png',0,'attachment','image/png',0), (540,4,'2009-11-05 22:35:37','2009-11-05 22:35:37','','charts','','inherit','open','open','','charts-2','','','2009-11-05 22:35:37','2009-11-05 22:35:37','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/charts1.png',0,'attachment','image/png',0), (542,1,'2011-12-18 21:31:13','2011-12-19 05:31:13','','wordpress-android-2_0-tablet-thumb','','inherit','open','open','','wordpress-android-2_0-tablet-thumb','','','2011-12-18 21:31:13','2011-12-19 05:31:13','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/12/wordpress-android-2_0-tablet-thumb.png',0,'attachment','image/png',0), (549,1,'2011-12-19 05:51:00','2011-12-19 13:51:00','','wordpress-android-2_0-new-editor','','inherit','open','open','','wordpress-android-2_0-new-editor','','','2011-12-19 05:51:00','2011-12-19 13:51:00','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/12/wordpress-android-2_0-new-editor.png',0,'attachment','image/png',0), (550,1,'2011-12-19 05:53:49','2011-12-19 13:53:49','','wordpress-android-2_0-tablet-ready','','inherit','open','open','','wordpress-android-2_0-tablet-ready','','','2011-12-19 05:53:49','2011-12-19 13:53:49','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/12/wordpress-android-2_0-tablet-ready.png',0,'attachment','image/png',0), (573,1,'2011-12-19 08:49:34','2011-12-19 16:49:34','The Post Editor','editor','','inherit','open','open','','editor-merged','','','2011-12-19 08:49:34','2011-12-19 16:49:34','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/12/editor-merged.png',0,'attachment','image/png',0), (591,4,'2010-02-09 03:02:52','2010-02-09 03:02:52','','Comments list','','inherit','open','open','','1','','','2010-02-09 03:02:52','2010-02-09 03:02:52','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/02/1.png',1,'attachment','image/png',0), (592,4,'2010-02-09 03:02:53','2010-02-09 03:02:53','','Moderating a comment','','inherit','open','open','','2','','','2010-02-09 03:02:53','2010-02-09 03:02:53','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/02/2.png',2,'attachment','image/png',0), (593,4,'2010-02-09 03:02:55','2010-02-09 03:02:55','','Writing a post','','inherit','open','open','','3','','','2010-02-09 03:02:55','2010-02-09 03:02:55','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/02/3.png',3,'attachment','image/png',0), (594,4,'2010-02-09 03:02:57','2010-02-09 03:02:57','','Posts list','','inherit','open','open','','4','','','2010-02-09 03:02:57','2010-02-09 03:02:57','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/02/4.png',4,'attachment','image/png',0), (596,4,'2010-02-09 03:03:01','2010-02-09 03:03:01','','Replying to a comment','','inherit','open','open','','6','','','2010-02-09 03:03:01','2010-02-09 03:03:01','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/02/6.png',5,'attachment','image/png',0), (597,4,'2010-02-09 03:03:04','2010-02-09 03:03:04','','Editing a comment','','inherit','open','open','','7','','','2010-02-09 03:03:04','2010-02-09 03:03:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/02/7.png',6,'attachment','image/png',0), (600,1,'2012-05-31 08:54:51','2012-05-31 15:54:51','','Version 1.6 of WordPress for BlackBerry','','inherit','open','open','','version-1-6-dashboard-promo','','','2012-05-31 08:54:51','2012-05-31 15:54:51','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/05/version-1-6-dashboard-promo.png',0,'attachment','image/png',0), (603,1,'2012-01-17 18:51:33','2012-01-18 02:51:33','','kindle-fire-final','','inherit','open','open','','kindle-fire-final','','','2012-01-17 18:51:33','2012-01-18 02:51:33','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/01/kindle-fire-final.jpg',0,'attachment','image/jpeg',0), (604,1,'2012-05-31 09:00:37','2012-05-31 16:00:37','','Quick Photo','','inherit','open','open','','dashboard_icon_new_photo_96','','','2012-05-31 09:00:37','2012-05-31 16:00:37','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/05/dashboard_icon_new_photo_96.png',0,'attachment','image/png',0), (606,1,'2012-01-17 19:16:26','2012-01-18 03:16:26','','wordpress-android-phones-tablets','','inherit','open','open','','wordpress-android-phones-tablets','','','2012-01-17 19:16:26','2012-01-18 03:16:26','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/01/wordpress-android-phones-tablets.jpg',0,'attachment','image/jpeg',0), (609,1,'2010-03-23 02:13:15','2010-03-23 02:13:15','','wp-23-3','','inherit','open','open','','wp-23-3-2','','','2010-03-23 02:13:15','2010-03-23 02:13:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/wp-23-31.png',0,'attachment','image/png',0), (610,1,'2010-03-23 02:13:33','2010-03-23 02:13:33','','wp-23-2','','inherit','open','open','','wp-23-2','','','2010-03-23 02:13:33','2010-03-23 02:13:33','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/wp-23-2.png',0,'attachment','image/png',0), (611,1,'2010-03-23 02:13:39','2010-03-23 02:13:39','','wp-23-1','','inherit','open','open','','wp-23-1','','','2010-03-23 02:13:39','2010-03-23 02:13:39','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/wp-23-1.png',0,'attachment','image/png',0), (627,1,'2012-02-09 04:30:22','2012-02-09 12:30:22','','kindle-fire+nook-color-press-image','','inherit','open','open','','kindle-firenook-color-press-image','','','2012-02-09 04:30:22','2012-02-09 12:30:22','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/02/kindle-firenook-color-press-image.jpg',0,'attachment','image/jpeg',0), (633,1,'2012-05-31 10:40:31','2012-05-31 17:40:31','','Follow button in the WordPress.com Toolbar','','inherit','open','open','','version-1-6-follow-example','','','2012-05-31 10:40:31','2012-05-31 17:40:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/05/version-1-6-follow-example.png',0,'attachment','image/png',0), (651,1,'2012-05-03 00:57:25','2012-05-03 08:57:25','','2.1-header','','inherit','open','open','','2-1-header','','','2012-05-03 00:57:25','2012-05-03 08:57:25','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/05/2-1-header.jpg',0,'attachment','image/jpeg',0), (657,1,'2010-04-02 03:52:28','2010-04-02 03:52:28','','home-appstore','','inherit','open','open','','home-appstore','','','2010-04-02 03:52:28','2010-04-02 03:52:28','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-appstore.png',0,'attachment','image/png',0), (659,1,'2010-04-02 03:52:30','2010-04-02 03:52:30','','home-devices','','inherit','open','open','','home-devices','','','2010-04-02 03:52:30','2010-04-02 03:52:30','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-devices.jpg',0,'attachment','image/jpeg',0), (660,1,'2010-04-02 03:52:31','2010-04-02 03:52:31','','home-geo','','inherit','open','open','','home-geo','','','2010-04-02 03:52:31','2010-04-02 03:52:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-geo.jpg',0,'attachment','image/jpeg',0), (661,1,'2010-04-02 03:52:33','2010-04-02 03:52:33','','home-logo','','inherit','open','open','','home-logo','','','2010-04-02 03:52:33','2010-04-02 03:52:33','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-logo.png',0,'attachment','image/png',0), (662,1,'2010-04-02 03:52:34','2010-04-02 03:52:34','','home-photos','','inherit','open','open','','home-photos','','','2010-04-02 03:52:34','2010-04-02 03:52:34','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-photos.jpg',0,'attachment','image/jpeg',0), (663,1,'2010-04-02 03:52:36','2010-04-02 03:52:36','','home-writing','','inherit','open','open','','home-writing','','','2010-04-02 03:52:36','2010-04-02 03:52:36','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-writing.jpg',0,'attachment','image/jpeg',0), (671,1,'2010-04-02 05:49:10','2010-04-02 05:49:10','','1','','inherit','open','open','','1-2','','','2010-04-02 05:49:10','2010-04-02 05:49:10','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/1.png',1,'attachment','image/png',0), (672,1,'2010-04-02 05:49:13','2010-04-02 05:49:13','','2','','inherit','open','open','','2-2','','','2010-04-02 05:49:13','2010-04-02 05:49:13','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/2.png',2,'attachment','image/png',0), (673,4,'2010-04-02 05:49:17','2010-04-02 05:49:17','','3','','inherit','open','open','','3-2','','','2010-04-02 05:49:17','2010-04-02 05:49:17','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/31.png',3,'attachment','image/png',0), (674,1,'2010-04-02 05:49:22','2010-04-02 05:49:22','','4','','inherit','open','open','','4-2','','','2010-04-02 05:49:22','2010-04-02 05:49:22','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/4.png',4,'attachment','image/png',0), (675,1,'2010-04-02 05:49:25','2010-04-02 05:49:25','','5','','inherit','open','open','','5','','','2010-04-02 05:49:25','2010-04-02 05:49:25','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/5.png',5,'attachment','image/png',0), (676,4,'2010-04-02 06:39:14','2010-04-02 06:39:14','','home-comment','','inherit','open','open','','home-comment','','','2010-04-02 06:39:14','2010-04-02 06:39:14','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-comment.jpg',0,'attachment','image/jpeg',0), (677,1,'2013-01-28 02:59:58','2013-01-28 09:59:58','','IMG_00000010','','inherit','open','open','','img_00000010','','','2013-01-28 02:59:58','2013-01-28 09:59:58','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/01/img_000000101.png',0,'attachment','image/png',0), (678,1,'2013-01-28 03:00:03','2013-01-28 10:00:03','','IMG_00000012','','inherit','open','open','','img_00000012','','','2013-01-28 03:00:03','2013-01-28 10:00:03','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/01/img_00000012.png',0,'attachment','image/png',0), (681,1,'2012-05-08 12:34:40','2012-05-08 20:34:40','','Version 2.1 of WordPress for Android','','inherit','open','open','','version-2-1-devices','','','2012-05-08 12:34:40','2012-05-08 20:34:40','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/05/version-2-1-devices.jpg',0,'attachment','image/jpeg',0), (684,1,'2012-05-08 12:53:34','2012-05-08 20:53:34','','WordPress for Android Logo','','inherit','open','open','','version-2-1-wordpress-for-android-logo','','','2012-05-08 12:53:34','2012-05-08 20:53:34','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/05/version-2-1-wordpress-for-android-logo.jpg',0,'attachment','image/jpeg',0), (685,1,'2013-02-02 19:48:49','2013-02-03 02:48:49','','WordPress for BlackBerry OS 10','','inherit','open','open','','wpblackberry-for-blackberry-os10','','','2013-02-02 19:48:49','2013-02-03 02:48:49','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/wpblackberry-for-blackberry-os10.jpg',0,'attachment','image/jpeg',0), (687,1,'2010-04-03 03:59:12','2010-04-03 03:59:12','','home-devices-1','','inherit','open','open','','home-devices-1','','','2010-04-03 03:59:12','2010-04-03 03:59:12','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-devices-1.jpg',0,'attachment','image/jpeg',0), (688,1,'2010-04-03 17:04:01','2010-04-03 17:04:01','','home-icon','','inherit','open','open','','home-icon','','','2010-04-03 17:04:01','2010-04-03 17:04:01','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-icon.png',0,'attachment','image/png',0), (690,1,'2010-04-03 17:07:29','2010-04-03 17:07:29','','home-ss','','inherit','open','open','','home-ss','','','2010-04-03 17:07:29','2010-04-03 17:07:29','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-ss.png',0,'attachment','image/png',0), (698,1,'2010-04-26 20:11:14','2010-04-26 20:11:14','','blogging-ipad-keyboard','','inherit','open','open','','blogging-ipad-keyboard','','','2010-04-26 20:11:14','2010-04-26 20:11:14','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/blogging-ipad-keyboard.jpg',0,'attachment','image/jpeg',0), (702,1,'2010-05-03 17:50:31','2010-05-03 17:50:31','','Geolocation Plugin Screenshot','','inherit','open','open','','screenshot','','','2010-05-03 17:50:31','2010-05-03 17:50:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/screenshot.png',0,'attachment','image/png',0), (717,1,'2012-08-31 07:53:36','2012-08-31 15:53:36','','Version 2.2 of WordPress for Android: Featured Images & All-New Stats','','inherit','open','open','','wordpress-for-android-version-2-2-featured-image-stats','','','2012-08-31 07:53:36','2012-08-31 15:53:36','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/wordpress-for-android-version-2-2-featured-image-stats.png',0,'attachment','image/png',0), (721,1,'2010-06-08 09:44:41','2010-06-08 09:44:41','','home-icon','','inherit','open','open','','home-icon-2-2','','','2010-06-08 09:44:41','2010-06-08 09:44:41','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/06/home-icon.png',0,'attachment','image/png',0), (742,4,'2010-06-23 04:09:16','2010-06-23 04:09:16','','home-geo','','inherit','open','open','','home-geo-2-2','','','2010-06-23 04:09:16','2010-06-23 04:09:16','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/06/home-geo.jpg',0,'attachment','image/jpeg',0), (744,4,'2010-07-07 17:31:08','2010-07-07 17:31:08','','home-ss','','inherit','open','open','','home-ss-3','','','2010-07-07 17:31:08','2010-07-07 17:31:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/home-ss1.jpg',0,'attachment','image/jpeg',0), (748,1,'2013-01-24 10:43:41','2013-01-24 18:43:41','','Holo in Version 2.2.6','','inherit','open','open','','2-2-6','','','2013-01-24 10:43:41','2013-01-24 18:43:41','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/01/2-2-6.png',0,'attachment','image/png',0), (761,1,'2013-04-10 10:08:06','2013-04-10 18:08:06','','Action Bar','','inherit','open','open','','action-bar','','','2013-04-10 10:08:06','2013-04-10 18:08:06','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/action-bar.jpg',0,'attachment','image/jpeg',0), (763,9,'2013-04-10 10:24:08','2013-04-10 18:24:08','','galaxys3-reader-port','','inherit','open','open','','galaxys3-reader-port','','','2013-04-10 10:24:08','2013-04-10 18:24:08','',0,'http:///wp-content/uploads/2013/04/galaxys3-reader-port.png',0,'attachment','image/png',0), (764,9,'2013-04-10 10:24:24','2013-04-10 18:24:24','','Menu Drawer','Easily navigate the app with the Menu Drawer.','inherit','open','open','','galaxys3-posts-port-open','','','2013-04-10 10:24:24','2013-04-10 18:24:24','',0,'http:///wp-content/uploads/2013/04/galaxys3-posts-port-open.png',0,'attachment','image/png',0), (776,1,'2013-04-10 12:20:28','2013-04-10 20:20:28','','nexus10-posts','','inherit','open','open','','nexus10-posts','','','2013-04-10 12:20:28','2013-04-10 20:20:28','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/nexus10-posts1.png',0,'attachment','image/png',0), (811,6,'2013-04-16 14:40:07','2013-04-16 22:40:07','','featured-graphic','','inherit','open','open','','featured-graphic','','','2013-04-16 14:40:07','2013-04-16 22:40:07','',0,'http:///wp-content/uploads/2013/04/featured-graphic.jpg',0,'attachment','image/jpeg',0), (814,6,'2013-04-16 14:52:25','2013-04-16 22:52:25','','','','inherit','open','open','','featured-graphic-holo-update','','','2013-04-16 14:52:25','2013-04-16 22:52:25','',0,'http:///wp-content/uploads/2013/04/featured-graphic-holo-update.jpg',0,'attachment','image/jpeg',0), (816,6,'2013-04-17 00:39:49','2013-04-17 08:39:49','','Version 2.3 of WordPress for Android: menu drawer and action bar','','inherit','open','open','','wordpress-for-android-version-2-3-devices','','','2013-04-17 00:39:49','2013-04-17 08:39:49','',0,'http:///wp-content/uploads/2013/04/wordpress-for-android-version-2-3-devices.jpg',0,'attachment','image/jpeg',0), (819,6,'2013-04-17 00:50:47','2013-04-17 08:50:47','','Version 2.3 of WordPress for Android: action bar on a Nexus 7','','inherit','open','open','','wordpress-for-android-version-2-3-action-bar-on-nexus-7','','','2013-04-17 00:50:47','2013-04-17 08:50:47','',0,'http:///wp-content/uploads/2013/04/wordpress-for-android-version-2-3-action-bar-on-nexus-7.jpg',0,'attachment','image/jpeg',0), (822,6,'2013-04-17 00:58:56','2013-04-17 08:58:56','','Version 2.3 of WordPress for Android: menu drawer on Samsung Galaxy S3','','inherit','open','open','','wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3','','','2013-04-17 00:58:56','2013-04-17 08:58:56','',0,'http:///wp-content/uploads/2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3.jpg',0,'attachment','image/jpeg',0), (828,6,'2013-04-17 01:39:36','2013-04-17 09:39:36','','wordpress-for-android-version-2-3-featured-menu-drawer','','inherit','open','open','','wordpress-for-android-version-2-3-featured-menu-drawer','','','2013-04-17 01:39:36','2013-04-17 09:39:36','',0,'http:///wp-content/uploads/2013/04/wordpress-for-android-version-2-3-featured-menu-drawer.jpg',0,'attachment','image/jpeg',0), (829,6,'2013-04-17 01:39:38','2013-04-17 09:39:38','','wordpress-for-android-version-2-3-featured-action-bar','','inherit','open','open','','wordpress-for-android-version-2-3-featured-action-bar','','','2013-04-17 01:39:38','2013-04-17 09:39:38','',0,'http:///wp-content/uploads/2013/04/wordpress-for-android-version-2-3-featured-action-bar.jpg',0,'attachment','image/jpeg',0), (830,6,'2013-04-17 01:41:59','2013-04-17 09:41:59','','wordpress-for-android-version-2-3-featured-action-bar','','inherit','open','open','','wordpress-for-android-version-2-3-featured-action-bar-2-2','','','2013-04-17 01:41:59','2013-04-17 09:41:59','',0,'http:///wp-content/uploads/2013/04/wordpress-for-android-version-2-3-featured-action-bar11.jpg',0,'attachment','image/jpeg',0), (831,1,'2013-04-17 01:45:12','2013-04-17 09:45:12','','Posts in the Menu Drawer','','inherit','open','open','','wordpress-for-android-version-2-3-featured-menu-drawer-2','','','2013-04-17 01:45:12','2013-04-17 09:45:12','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/wordpress-for-android-version-2-3-featured-menu-drawer.png',0,'attachment','image/png',0), (832,6,'2013-04-17 01:45:15','2013-04-17 09:45:15','','The App Bar on the Posts screen','','inherit','open','open','','wordpress-for-android-version-2-3-featured-action-bar-3','','','2013-04-17 01:45:15','2013-04-17 09:45:15','',0,'http:///wp-content/uploads/2013/04/wordpress-for-android-version-2-3-featured-action-bar.png',0,'attachment','image/png',0), (835,1,'2013-04-17 10:44:58','2013-04-17 18:44:58','','featured-graphic-holo-update2','','inherit','open','open','','featured-graphic-holo-update2','','','2013-04-17 10:44:58','2013-04-17 18:44:58','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/featured-graphic-holo-update21.jpg',0,'attachment','image/jpeg',0), (842,6,'2013-04-18 14:11:32','2013-04-18 22:11:32','','featured-graphic-holo-update3','','inherit','open','open','','featured-graphic-holo-update3','','','2013-04-18 14:11:32','2013-04-18 22:11:32','',0,'http:///wp-content/uploads/2013/04/featured-graphic-holo-update31.jpg',0,'attachment','image/jpeg',0), (844,6,'2013-04-18 14:14:18','2013-04-18 22:14:18','','wordpress-for-android-version-2-3-devices2','','inherit','open','open','','wordpress-for-android-version-2-3-devices2','','','2013-04-18 14:14:18','2013-04-18 22:14:18','',0,'http:///wp-content/uploads/2013/04/wordpress-for-android-version-2-3-devices2.jpg',0,'attachment','image/jpeg',0), (845,6,'2013-04-18 14:17:18','2013-04-18 22:17:18','','wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update','','inherit','open','open','','wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update','','','2013-04-18 14:17:18','2013-04-18 22:17:18','',0,'http:///wp-content/uploads/2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update.jpg',0,'attachment','image/jpeg',0), (848,1,'2010-10-12 22:59:23','2010-10-12 22:59:23','','welcome','','inherit','open','open','','welcome','','','2010-10-12 22:59:23','2010-10-12 22:59:23','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/10/welcome.png',0,'attachment','image/png',0), (849,1,'2010-10-12 23:00:08','2010-10-12 23:00:08','','video_upload','','inherit','open','open','','video_upload','','','2010-10-12 23:00:08','2010-10-12 23:00:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/10/video_upload.png',0,'attachment','image/png',0), (861,1,'2013-05-29 15:17:53','2013-05-29 23:17:53','','Version 2.4 of WordPress for Android: Notifications panel on a Samsung Galaxy S3','','inherit','open','open','','wordpress-for-android-2-4-wordpress-com-notifications','','','2013-05-29 15:17:53','2013-05-29 23:17:53','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/05/wordpress-for-android-2-4-wordpress-com-notifications1.jpg',0,'attachment','image/jpeg',0), (867,6,'2013-05-29 15:24:56','2013-05-29 23:24:56','','Pending notifications in the notification center','See what\'s going on with your blog quickly.','inherit','open','open','','wordpress-for-android-notification-center-pending','','','2013-05-29 15:24:56','2013-05-29 23:24:56','',0,'http:///wp-content/uploads/2013/05/wordpress-for-android-notification-center-pending.png',0,'attachment','image/png',0), (868,6,'2013-05-29 15:26:39','2013-05-29 23:26:39','','Replying to comments from the notification center','Reply to comments with ease.','inherit','open','open','','wordpress-for-android-reply-to-comment-from-notification-center','','','2013-05-29 15:26:39','2013-05-29 23:26:39','',0,'http:///wp-content/uploads/2013/05/wordpress-for-android-reply-to-comment-from-notification-center.png',0,'attachment','image/png',0), (873,1,'2010-10-25 23:43:53','2010-10-25 23:43:53','','screen-shot-2010-10-25-at-6-39-59-pm','','inherit','open','open','','screen-shot-2010-10-25-at-6-39-59-pm','','','2010-10-25 23:43:53','2010-10-25 23:43:53','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/10/screen-shot-2010-10-25-at-6-39-59-pm.png',0,'attachment','image/png',0), (880,1,'2013-08-08 08:31:38','2013-08-08 16:31:38','','categories-select','Category selection screen.','inherit','open','open','','categories-select','','','2013-08-08 08:31:38','2013-08-08 16:31:38','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/08/categories-select1.png',0,'attachment','image/png',0), (908,1,'2013-10-16 14:46:31','2013-10-16 22:46:31','','device-2013-10-16-154614','','inherit','open','open','','device-2013-10-16-154614','','','2013-10-16 14:46:31','2013-10-16 22:46:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/10/device-2013-10-16-154614.png',0,'attachment','image/png',0), (909,1,'2013-10-16 14:47:03','2013-10-16 22:47:03','','device-2013-10-16-151357','','inherit','open','open','','device-2013-10-16-151357','','','2013-10-16 14:47:03','2013-10-16 22:47:03','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/10/device-2013-10-16-151357.png',0,'attachment','image/png',0), (910,1,'2013-10-16 14:47:12','2013-10-16 22:47:12','','device-2013-10-16-151831','Use search in the new Theme Browser to find your new theme.','inherit','open','open','','device-2013-10-16-151831','','','2013-10-16 14:47:12','2013-10-16 22:47:12','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/10/device-2013-10-16-151831.png',0,'attachment','image/png',0), (911,1,'2013-10-16 14:47:24','2013-10-16 22:47:24','','device-2013-10-16-151933','','inherit','open','open','','device-2013-10-16-151933','','','2013-10-16 14:47:24','2013-10-16 22:47:24','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/10/device-2013-10-16-151933.png',0,'attachment','image/png',0), (912,1,'2013-10-16 14:47:28','2013-10-16 22:47:28','','device-2013-10-16-152222','','inherit','open','open','','device-2013-10-16-152222','','','2013-10-16 14:47:28','2013-10-16 22:47:28','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/10/device-2013-10-16-152222.png',0,'attachment','image/png',0), (913,1,'2013-10-16 14:47:35','2013-10-16 22:47:35','','device-2013-10-16-152325','','inherit','open','open','','device-2013-10-16-152325','','','2013-10-16 14:47:35','2013-10-16 22:47:35','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/10/device-2013-10-16-1523251.png',0,'attachment','image/png',0), (914,1,'2013-10-16 14:47:39','2013-10-16 22:47:39','','device-2013-10-16-152459','','inherit','open','open','','device-2013-10-16-152459','','','2013-10-16 14:47:39','2013-10-16 22:47:39','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/10/device-2013-10-16-152459.png',0,'attachment','image/png',0), (915,1,'2013-10-16 14:47:44','2013-10-16 22:47:44','','device-2013-10-16-152614','','inherit','open','open','','device-2013-10-16-152614','','','2013-10-16 14:47:44','2013-10-16 22:47:44','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/10/device-2013-10-16-152614.png',0,'attachment','image/png',0), (917,4,'2011-01-12 00:56:56','2011-01-12 00:56:56','','wp-ios-264','WordPress for iOS version 2.6.4 is now available in the App Store.','inherit','open','open','','wp-ios-264','','','2011-01-12 00:56:56','2011-01-12 00:56:56','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/01/wp-ios-2641.png',0,'attachment','image/png',0), (929,1,'2013-10-21 12:12:11','2013-10-21 20:12:11','','WordPress for Android: Native Stats, Theme Browser for WordPress.com, Media Library Support','','inherit','open','open','','android-2-5-promo','','','2013-10-21 12:12:11','2013-10-21 20:12:11','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/10/android-2-5-promo.png',0,'attachment','image/png',0), (934,1,'2011-01-31 01:11:06','2011-01-31 01:11:06','','wp-ios-265','','inherit','open','open','','wp-ios-265','','','2011-01-31 01:11:06','2011-01-31 01:11:06','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/01/wp-ios-265.png',0,'attachment','image/png',0), (940,1,'2013-11-12 19:54:38','2013-11-13 03:54:38','','wordpress-for-android-samsung-galaxy-s3','','inherit','open','open','','wordpress-for-android-samsung-galaxy-s3','','','2013-11-12 19:54:38','2013-11-13 03:54:38','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/11/wordpress-for-android-samsung-galaxy-s3.jpg',0,'attachment','image/jpeg',0), (951,4,'2011-03-16 21:18:51','2011-03-16 21:18:51','','pull-to-refresh','Pull to Refresh in WordPress for iOS 2.7','inherit','open','open','','pull-to-refresh','','','2011-03-16 21:18:51','2011-03-16 21:18:51','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/pull-to-refresh.jpg',0,'attachment','image/jpeg',0), (957,4,'2011-03-16 21:32:31','2011-03-16 21:32:31','','ipad-editor','New iPad Editor View','inherit','open','open','','ipad-editor','','','2011-03-16 21:32:31','2011-03-16 21:32:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/ipad-editor.jpg',0,'attachment','image/jpeg',0), (960,4,'2011-03-16 21:35:34','2011-03-16 21:35:34','','ipad-editor','','inherit','open','open','','ipad-editor-2-2','','','2011-03-16 21:35:34','2011-03-16 21:35:34','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/ipad-editor11.jpg',0,'attachment','image/jpeg',0), (963,4,'2011-03-16 21:37:26','2011-03-16 21:37:26','','ipad-editor','','inherit','open','open','','ipad-editor-3','','','2011-03-16 21:37:26','2011-03-16 21:37:26','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/ipad-editor2.jpg',0,'attachment','image/jpeg',0), (965,1,'2014-01-30 11:02:45','2014-01-30 19:02:45','\"WordPress\n\nThe latest update to WordPress for Android includes a new reading and setup experience, as well as significant updates to the user interface. Here are some of the highlights of this release.\n

New Reader

\nThe app Reader has been completely redesigned, and now provides a much-improved, native reading experience. You’ll definitely notice its speed — posts appear in a snap, and images fade in as they load. You can also view users that have commented or liked posts, as well as edit the list of tags that you follow. We’ve revamped the like, reblog, and comment interfaces to make it easier than ever to respond to posts that strike your fancy.\n

Redesigned Blog Setup

\nWhen signing in to the app or creating an account on WordPress.com, you’ll notice a brand new user interface that makes it super-simple to start blogging. If you keep multiple blogs on your account, they will all be automatically added for you. You can also hide whichever blogs you don’t wish to work on in the app.\n

UI Improvements

\nWe’ve given the app a facelift, including a new color scheme, a refined navigation drawer layout, and sharp-looking lists in notifications, posts, pages and comments.\n\nYou’ll also notice some changes to the post editor, with larger images and a new Post Settings area where you’ll manage post data such as status, post formats, and categories, among others. The post content area will now go full screen while you are editing, to give you maximum space to focus on your content. Give the app a try here:\n\nDownload the update today from Google Play.\n

What’s next?

\nA big thanks to all of the contributors who worked so hard on this release: aerych, daniloercoli, Jason-Chen, maxme, nbradbury and roundhill!\n\nThe mobile team isn’t stopping here! We have pretty big plans for the months to come and the rest of 2014. You can keep up with the development progress over at http://make.wordpress.org/mobile. You can also follow the app on twitter @WPAndroid.','Now Available: New Reader, Easier Setup and Improved UI','','publish','closed','open','','2-6-release','','','2014-01-30 11:02:45','2014-01-30 19:02:45','',0,'http://android.wordpress.org/?p=965',0,'post','',12), (966,1,'2014-01-27 13:16:54','2014-01-27 21:16:54','','WordPress for Android 2.6','','inherit','open','open','','android26','','','2014-01-27 13:16:54','2014-01-27 21:16:54','',965,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/android26.png',0,'attachment','image/png',0), (968,4,'2011-03-16 21:45:03','2011-03-16 21:45:03','','iphone-editor','','inherit','open','open','','iphone-editor','','','2011-03-16 21:45:03','2011-03-16 21:45:03','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/iphone-editor.jpg',0,'attachment','image/jpeg',0), (973,4,'2011-03-16 21:47:05','2011-03-16 21:47:05','','iphone-editor','','inherit','open','open','','iphone-editor-2-2','','','2011-03-16 21:47:05','2011-03-16 21:47:05','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/iphone-editor11.jpg',0,'attachment','image/jpeg',0), (990,1,'2014-04-03 04:33:42','2014-04-03 12:33:42','The latest update of WordPress for Android is now available. Version 2.7 brings some great new features along with it. Read on to find out more!\n

Pull-to-Refresh

\n\"Pull\nYou can now refresh content in the app by using the familiar pull-to-refresh gesture. Just swipe down on any screen in the app and you\'ll get the freshest content available for that screen.\n

Performance Improvements

\nWe also worked hard on making the app perform faster and more efficiently behind the scenes:\n
    \n
  • Your stats have been optimized to load and scroll faster than ever before.
  • \n
  • Posts and Pages now support infinite scroll so you can easily load more content.
  • \n
  • Media upgrades let you see content faster and scroll more smoothly.
  • \n
  • We improved the post editor --- it now uses less of your device\'s memory when adding media to a post.
  • \n
\n

Much More

\nThis release includes many more small enhancements and fixes. Curious what they are? Check out the GitHub milestone for more info.\n\nExcited for the update? Download it now from Google Play.\n

Contributor Thanks & What\'s Next

\nWe owe a big thanks to the contributors who helped make this release happen: @nbradbury, @maxme, @roundhill, @daniloercoli and @aagam-shah\n\nUp next, we want to focus on post drafts and even better media management.\n\nBe sure to follow WPAndroid for all of the latest updates.','Pull-to-Refresh and More Added in Latest Update','','publish','closed','open','','pull-to-refresh-update','','','2014-04-03 04:33:42','2014-04-03 12:33:42','',0,'http://android.wordpress.org/?p=990',0,'post','',6), (991,9,'2014-03-19 14:28:35','2014-03-19 22:28:35','','Pull to Refresh','','inherit','open','open','','pull-to-refresh-2-2','','','2014-03-19 14:28:35','2014-03-19 22:28:35','',990,'http:///wp-content/uploads/2014/03/pull-to-refresh1.gif',0,'attachment','image/gif',0), (999,4,'2011-03-17 00:28:49','2011-03-17 00:28:49','','20110316-192842.jpg','','inherit','open','open','','20110316-192842-jpg','','','2011-03-17 00:28:49','2011-03-17 00:28:49','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/20110316-192842.jpg',0,'attachment','image/jpeg',0), (1000,4,'2011-03-17 00:29:39','2011-03-17 00:29:39','','20110316-192935.jpg','','inherit','open','open','','20110316-192935-jpg','','','2011-03-17 00:29:39','2011-03-17 00:29:39','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/20110316-192935.jpg',0,'attachment','image/jpeg',0), (1010,4,'2011-04-05 15:13:23','2011-04-05 15:13:23','','home-icon','','inherit','open','open','','home-icon-3','','','2011-04-05 15:13:23','2011-04-05 15:13:23','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/home-icon1-e1302016469212.png',0,'attachment','image/png',0), (1017,1,'2014-05-01 23:06:53','2014-05-02 07:06:53','We\'re pleased to bring you WordPress for Android Version 2.8, which offers the following improvements:\n\n

What\'s new

\n
    \n
  • App startup time has been reduced, and the Statistics screen will load faster.
  • \n
  • The app is now available in Turkish, English (UK), and offers improved support for Traditional Chinese.
  • \n
  • Samsung users will now be able to use the app in multi-window.
  • \n
  • Notification and Comment screens have been reworked to enhance the user experience on small tablets.
  • \n
\n\nCheck out the GitHub milestone for more info.\n

Download

\nDownload it now from Google Play.\n

Thanks

\nA huge thank you to the contributors who helped make this release happen:\n@anirudh24seven, @daniloercoli, @maxme, @mixpanelsteve, @nbradbury, @roundhill, @sendhil\n\nBe sure to follow WPAndroid for all of the latest updates.','WordPress for Android 2.8','','publish','closed','open','','wordpress-for-android-2-8','','','2014-05-01 23:06:53','2014-05-02 07:06:53','',0,'http://android.wordpress.org/?p=1017',0,'post','',1), (1019,16,'2014-04-24 22:25:56','2014-04-25 06:25:56','','screencap-2014-04-18T15-04-39+0800','','inherit','open','open','','screencap-2014-04-18t15-04-390800','','','2014-04-24 22:25:56','2014-04-25 06:25:56','',1017,'http:///wp-content/uploads/2014/04/screencap-2014-04-18t15-04-390800.png',0,'attachment','image/png',0), (1020,16,'2014-04-24 22:26:56','2014-04-25 06:26:56','','screencap-2014-04-25T14-26-12+0800','','inherit','open','open','','screencap-2014-04-25t14-26-120800','','','2014-04-24 22:26:56','2014-04-25 06:26:56','',1017,'http:///wp-content/uploads/2014/04/screencap-2014-04-25t14-26-120800.png',0,'attachment','image/png',0), (1022,1,'2014-04-24 22:32:27','2014-04-25 06:32:27','','screencap-2014-04-25T14-32-07+0800','','inherit','open','open','','screencap-2014-04-25t14-32-070800','','','2014-04-24 22:32:27','2014-04-25 06:32:27','',1017,'http://apps.wordpressorg.dev/wp-content/uploads/2014/04/screencap-2014-04-25t14-32-0708001.png',0,'attachment','image/png',0), (1037,1,'2014-05-16 09:00:15','2014-05-16 17:00:15','\"gingerbread-man\"Way back in 2011 Google released Android 4.0 (\"Ice Cream Sandwich\"), a major update that substantially improved the platform both for developers and for end users. This left developers with a problem: how do they take advantage of all the new features without leaving users of older devices stranded?\n\nFor most developers the answer has been to support both older and newer devices. This requires a lot of work, but it\'s worth it when it means many more people can use your software.\n\nThe downside is this approach slows development, resulting in longer delays between releases. It also means developers sometimes don\'t take advantage of the latest Android features, because doing so requires more time and testing to make sure the app continues to work on older devices.\n\nWe\'ve followed this approach for quite a while with WordPress for Android, supporting everything from the latest devices to ones running Android 2.3 (\"Gingerbread\"). At the same time we\'ve been seeing the usage of our app decline on Gingerbread, to the point that it\'s now less than 10%.\n\nThis means over 90% of our users are paying a \"Gingerbread tax\" - waiting longer for new versions and not seeing features that take advantage of their phones - so that we can continue supporting older devices.\n\nWe\'ve decided to abolish this tax. Starting with version 2.9 of WordPress for Android - due later this month - new versions will only support devices running Android 4.0 or later. If you\'re using an older phone, the previous version of our app will still appear in Google Play and you\'ll still be able to use it.\n\nWe\'ll be honest: our developers - including myself - are happy about this because it\'ll make us more productive. But the thing we\'re the happiest about is that it will result in a faster, smaller, better app for the large majority of our users.','WordPress for Android: No Longer Paying the Gingerbread Tax','','publish','closed','open','','wordpress-for-android-no-longer-paying-the-gingerbread-tax','','','2014-05-16 09:00:15','2014-05-16 17:00:15','',0,'http://android.wordpress.org/?p=1037',0,'post','',0), (1044,4,'2011-05-16 13:53:31','2011-05-16 13:53:31','','wpioscrashreports-graph-may16','','inherit','open','open','','wpioscrashreports-graph-may16','','','2011-05-16 13:53:31','2011-05-16 13:53:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/05/wpioscrashreports-graph-may16.png',0,'attachment','image/png',0), (1051,1,'2011-05-16 13:58:04','2011-05-16 13:58:04','','wpioscrashreports-graph-small','','inherit','open','open','','wpioscrashreports-graph-small','','','2011-05-16 13:58:04','2011-05-16 13:58:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/05/wpioscrashreports-graph-small.png',0,'attachment','image/png',0), (1055,1,'2014-05-16 08:45:40','2014-05-16 16:45:40','','gingerbread-man','','inherit','open','open','','gingerbread-man','','','2014-05-16 08:45:40','2014-05-16 16:45:40','',1037,'http://apps.wordpressorg.dev/wp-content/uploads/2014/05/gingerbread-man1.png',0,'attachment','image/png',0), (1059,1,'2014-06-04 02:29:55','2014-06-04 10:29:55','','blog-discovery-feature','','inherit','open','open','','blog-discovery-feature','','','2014-06-04 02:29:55','2014-06-04 10:29:55','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/06/blog-discovery-feature.gif',0,'attachment','image/gif',0), (1064,1,'2011-05-18 20:58:48','2011-05-18 20:58:48','','quick-photo-walkthrough','How Quick Photo works.','inherit','open','open','','quick-photo-walkthrough','','','2011-05-18 20:58:48','2011-05-18 20:58:48','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/05/quick-photo-walkthrough.jpg',0,'attachment','image/jpeg',0), (1065,1,'2014-06-06 00:34:22','2014-06-06 08:34:22','The WordPress for Android 2.9 release is now available in the Google Play Store. This release includes some exciting new features, enhancements, and bug fixes.\n

Blog Discovery

\nBlog discovery is a new feature in the Reader that lets you:\n
    \n
  • Find new blogs (based on recommendations).
  • \n
  • Preview a blog and read posts before following it.
  • \n
  • Manage your tags and blog subscriptions.
  • \n
\n\"blog-discovery-feature\"\n

Publish Icon Button

\nWe replaced the publish icon button with a contextual text button. Whether you\'re saving a draft, publishing or scheduling a post, or updating one, this new button will display your action, depending on your current task.\n

Faster Notifications and Stats Refresh

\nWe updated the Notifications feature to use Simperium technology, which will sync your notifications quickly and efficiently.\n\nWe also know you love viewing your Stats, so we improved them to refresh faster than ever before.\n

Interface Improvements

\n
    \n
  • Reintroduction of the refresh button in all refreshable views, along with the pull-to-refresh gesture.
  • \n
  • Pull-to-refresh tip bar has been replaced by a less aggressive, self-hiding message.
  • \n
  • Save dialog has been removed, and all posts are now auto-saved when you close the edit post view.
  • \n
  • Reblogging interface redesign in the Reader.
  • \n
  • Sharing image, video, text, or link via WordPress for Android now remembers the previous choice.
  • \n
\n

General Changes

\n
    \n
  • Posts and pages auto-save feature has been improved.
  • \n
  • Fixed bugs related to statistics (only affecting Jetpack users) and image handling.
  • \n
  • Reader improvements to fill gaps in time between two syncs.
  • \n
  • As we announced earlier, we dropped Android 2.3 support. Current (2.9) and later versions need Android 4.0 or later.
  • \n
  • New translations: Hebrew and Basque.
  • \n
  • SNI (Server Name Indication) support.
  • \n
  • Minor bug fixes.
  • \n
\n

What’s Next?

\nA big thanks to all of the contributors who worked on this release: @beaucollins, @daniloercoli, @maxme, @nbradbury, @roundhill, and @sendhil! You can keep up with the development progress at http://make.wordpress.org/mobile and can also follow the app on Twitter @WPAndroid. If you need support or want to send us suggestions, please visit our forums.','Version 2.9 of WordPress for Android ','','publish','closed','open','','version-2-9-of-wordpress-for-android','','','2014-06-06 00:34:22','2014-06-06 08:34:22','',0,'http://android.wordpress.org/?p=1065',0,'post','',11), (1066,1,'2011-05-18 21:03:54','2011-05-18 21:03:54','','wordpress-ios-stats-screenshot','','inherit','open','open','','wordpress-ios-stats-screenshot','','','2011-05-18 21:03:54','2011-05-18 21:03:54','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/05/wordpress-ios-stats-screenshot.png',0,'attachment','image/png',0), (1078,1,'2011-06-01 23:07:08','2011-06-01 23:07:08','','20110602-010624.jpg','','inherit','open','open','','20110602-010624-jpg','','','2011-06-01 23:07:08','2011-06-01 23:07:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/06/20110602-010624.jpg',0,'attachment','image/jpeg',0), (1087,1,'2014-06-06 09:38:13','2014-06-06 17:38:13','','blog-discovery-feature','','inherit','open','open','','blog-discovery-feature-2','','','2014-06-06 09:38:13','2014-06-06 17:38:13','',1065,'http://apps.wordpressorg.dev/wp-content/uploads/2014/06/blog-discovery-feature11.gif',0,'attachment','image/gif',0), (1102,1,'2011-09-23 17:51:14','2011-09-23 17:51:14','','Version 2.9 of WordPress for iOS','The new post editor','inherit','open','open','','wordpress-ios-2-9-html-format-bar-screenshot','','','2011-09-23 17:51:14','2011-09-23 17:51:14','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/09/wordpress-ios-2-9-html-format-bar-screenshot.png',0,'attachment','image/png',0), (1104,1,'2011-09-23 18:07:56','2011-09-23 18:07:56','Full Screen Editing','WordPress for iOS 2.9 - Full Screen Editing','','inherit','open','open','','wordpress-ios-2-9-full-screen','','','2011-09-23 18:07:56','2011-09-23 18:07:56','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/09/wordpress-ios-2-9-full-screen.png',0,'attachment','image/png',0), (1107,1,'2011-09-23 18:27:34','2011-09-23 18:27:34','','title','caption','inherit','open','open','','wordpress-ios-2-9-update','','','2011-09-23 18:27:34','2011-09-23 18:27:34','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/09/wordpress-ios-2-9-update.png',0,'attachment','image/png',0), (1111,1,'2011-09-23 18:49:18','2011-09-23 18:49:18','','wordpress-ios-2-9','','inherit','open','open','','wordpress-ios-2-9','','','2011-09-23 18:49:18','2011-09-23 18:49:18','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/09/wordpress-ios-2-9.png',0,'attachment','image/png',0), (1112,1,'2011-09-23 18:51:31','2011-09-23 18:51:31','','WordPress for iOS 2.9 HTML Format Bar','','inherit','open','open','','wordpress-ios-2-9-html-format-bar','','','2011-09-23 18:51:31','2011-09-23 18:51:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/09/wordpress-ios-2-9-html-format-bar.png',0,'attachment','image/png',0), (1115,1,'2011-09-23 18:58:39','2011-09-23 18:58:39','','wordpress-ios-2-9-take2','','inherit','open','open','','wordpress-ios-2-9-take2','','','2011-09-23 18:58:39','2011-09-23 18:58:39','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/09/wordpress-ios-2-9-take2.png',0,'attachment','image/png',0), (1116,1,'2011-09-23 19:02:24','2011-09-23 19:02:24','','WordPress for iOS Read','Follow your favorite blogs','inherit','open','open','','wordpress-ios-2-9-read','','','2011-09-23 19:02:24','2011-09-23 19:02:24','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/09/wordpress-ios-2-9-read.png',0,'attachment','image/png',0), (1139,1,'2012-03-15 06:59:59','2012-03-15 06:59:59','','wordpress-camera-plus','','inherit','open','open','','wordpress-camera-plus','','','2012-03-15 06:59:59','2012-03-15 06:59:59','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/03/wordpress-camera-plus.png',0,'attachment','image/png',0), (1164,1,'2012-05-25 03:44:19','2012-05-25 03:44:19','','Version 3.0 of WordPress for iOS','Swipe to moderate comments','inherit','open','open','','wordpress-ios-3-0-swipe-to-moderate','','','2012-05-25 03:44:19','2012-05-25 03:44:19','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/05/wordpress-ios-3-0-swipe-to-moderate.png',0,'attachment','image/png',0), (1219,1,'2012-08-08 20:24:59','2012-08-08 20:24:59','','1-wpios-3-1-sidebar','','inherit','open','open','','1-wpios-3-1-sidebar','','','2012-08-08 20:24:59','2012-08-08 20:24:59','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/1-wpios-3-1-sidebar.png',0,'attachment','image/png',0), (1220,1,'2012-08-08 20:25:04','2012-08-08 20:25:04','','2-wpios-3-1-photo','','inherit','open','open','','2-wpios-3-1-photo','','','2012-08-08 20:25:04','2012-08-08 20:25:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/2-wpios-3-1-photo.png',0,'attachment','image/png',0), (1221,1,'2012-08-08 20:25:09','2012-08-08 20:25:09','','3-wpios-3-1-comments','','inherit','open','open','','3-wpios-3-1-comments','','','2012-08-08 20:25:09','2012-08-08 20:25:09','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/3-wpios-3-1-comments.png',0,'attachment','image/png',0), (1222,1,'2012-08-08 20:25:12','2012-08-08 20:25:12','','4-wpios-3-1-editor','','inherit','open','open','','4-wpios-3-1-editor','','','2012-08-08 20:25:12','2012-08-08 20:25:12','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/4-wpios-3-1-editor.png',0,'attachment','image/png',0), (1223,1,'2012-08-08 20:25:17','2012-08-08 20:25:17','','5-wpios-3-1-reader','','inherit','open','open','','5-wpios-3-1-reader','','','2012-08-08 20:25:17','2012-08-08 20:25:17','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/5-wpios-3-1-reader.png',0,'attachment','image/png',0), (1224,1,'2012-08-08 20:25:42','2012-08-08 20:25:42','','1-wpios-ipad-3-1-viewsite','','inherit','open','open','','1-wpios-ipad-3-1-viewsite','','','2012-08-08 20:25:42','2012-08-08 20:25:42','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/1-wpios-ipad-3-1-viewsite.png',0,'attachment','image/png',0), (1225,1,'2012-08-08 20:25:53','2012-08-08 20:25:53','','2-wpios-ipad-3-1-photo','','inherit','open','open','','2-wpios-ipad-3-1-photo','','','2012-08-08 20:25:53','2012-08-08 20:25:53','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/2-wpios-ipad-3-1-photo.png',0,'attachment','image/png',0), (1226,1,'2012-08-08 20:26:02','2012-08-08 20:26:02','','3-wpios-ipad-3-1-comments','','inherit','open','open','','3-wpios-ipad-3-1-comments','','','2012-08-08 20:26:02','2012-08-08 20:26:02','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/3-wpios-ipad-3-1-comments.png',0,'attachment','image/png',0), (1227,1,'2012-08-08 20:26:08','2012-08-08 20:26:08','','4-wpios-ipad-3-1-editor','','inherit','open','open','','4-wpios-ipad-3-1-editor','','','2012-08-08 20:26:08','2012-08-08 20:26:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/4-wpios-ipad-3-1-editor.png',0,'attachment','image/png',0), (1228,1,'2012-08-08 20:26:28','2012-08-08 20:26:28','','5-wpios-ipad-3-1-reader','','inherit','open','open','','5-wpios-ipad-3-1-reader','','','2012-08-08 20:26:28','2012-08-08 20:26:28','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/5-wpios-ipad-3-1-reader.png',0,'attachment','image/png',0), (1233,1,'2012-08-09 21:12:37','2012-08-09 21:12:37','','Version 3.1 of WordPress for iOS: Updated Interface','','inherit','open','open','','wpios-3-1-iphone-updated-interface','','','2012-08-09 21:12:37','2012-08-09 21:12:37','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/wpios-3-1-iphone-updated-interface.jpg',0,'attachment','image/jpeg',0), (1236,1,'2012-08-09 21:23:32','2012-08-09 21:23:32','','Version 3.1 of WordPress for iOS: Panels & Sidebar','','inherit','open','open','','wpios-3-1-iphone-ipad-panels-sidebar-comments','','','2012-08-09 21:23:32','2012-08-09 21:23:32','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/wpios-3-1-iphone-ipad-panels-sidebar-comments.jpg',0,'attachment','image/jpeg',0), (1272,1,'2012-10-22 23:01:54','2012-10-22 23:01:54','','wpios-3-2-featured-image-support','','inherit','open','open','','wpios-3-2-featured-image-support','','','2012-10-22 23:01:54','2012-10-22 23:01:54','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/10/wpios-3-2-featured-image-support1.jpg',0,'attachment','image/jpeg',0), (1274,1,'2012-10-22 23:04:36','2012-10-22 23:04:36','','wpios-3-2-accessible-settings','','inherit','open','open','','wpios-3-2-accessible-settings','','','2012-10-22 23:04:36','2012-10-22 23:04:36','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/10/wpios-3-2-accessible-settings.jpg',0,'attachment','image/jpeg',0), (1277,1,'2012-10-22 23:28:08','2012-10-22 23:28:08','','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications','','inherit','open','open','','wpios-3-2-self-hosted-push-notifications','','','2012-10-22 23:28:08','2012-10-22 23:28:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/10/wpios-3-2-self-hosted-push-notifications.png',0,'attachment','image/png',0), (1280,1,'2012-10-22 23:33:04','2012-10-22 23:33:04','','wpios-3-2-self-hosted-push-notifications','','inherit','open','open','','wpios-3-2-self-hosted-push-notifications-2','','','2012-10-22 23:33:04','2012-10-22 23:33:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/10/wpios-3-2-self-hosted-push-notifications1.png',0,'attachment','image/png',0), (1286,1,'2012-10-22 23:46:51','2012-10-22 23:46:51','','Version 3.2 of WordPress for iOS: Self-Hosted Push Notifications','','inherit','open','open','','wpios-3-2-self-hosted-push-notifications-3','','','2012-10-22 23:46:51','2012-10-22 23:46:51','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/10/wpios-3-2-self-hosted-push-notifications2.png',0,'attachment','image/png',0), (1302,1,'2012-11-15 00:23:05','2012-11-15 00:23:05','','home-photos','','inherit','open','open','','home-photos-2-2','','','2012-11-15 00:23:05','2012-11-15 00:23:05','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/home-photos.jpg',0,'attachment','image/jpeg',0), (1303,1,'2012-11-15 00:23:06','2012-11-15 00:23:06','','home-comments','','inherit','open','open','','home-comments','','','2012-11-15 00:23:06','2012-11-15 00:23:06','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/home-comments.jpg',0,'attachment','image/jpeg',0), (1304,1,'2012-11-15 00:23:07','2012-11-15 00:23:07','','home-editor','','inherit','open','open','','home-editor','','','2012-11-15 00:23:07','2012-11-15 00:23:07','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/home-editor.jpg',0,'attachment','image/jpeg',0), (1305,1,'2012-11-15 00:23:08','2012-11-15 00:23:08','','home-reader','','inherit','open','open','','home-reader','','','2012-11-15 00:23:08','2012-11-15 00:23:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/home-reader.jpg',0,'attachment','image/jpeg',0), (1306,1,'2012-11-15 00:23:09','2012-11-15 00:23:09','','home-devices','','inherit','open','open','','home-devices-2-2','','','2012-11-15 00:23:09','2012-11-15 00:23:09','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/home-devices.jpg',0,'attachment','image/jpeg',0), (1307,1,'2012-11-15 00:50:04','2012-11-15 00:50:04','','home-moderate-comments','','inherit','open','open','','home-moderate-comments','','','2012-11-15 00:50:04','2012-11-15 00:50:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/home-moderate-comments.jpg',0,'attachment','image/jpeg',0), (1308,1,'2012-11-15 00:50:07','2012-11-15 00:50:07','','home-moderate-comments','','inherit','open','open','','home-moderate-comments-2','','','2012-11-15 00:50:07','2012-11-15 00:50:07','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/home-moderate-comments1.jpg',0,'attachment','image/jpeg',0), (1309,1,'2012-11-15 00:50:14','2012-11-15 00:50:14','','home-moderate-comments','','inherit','open','open','','home-moderate-comments-3','','','2012-11-15 00:50:14','2012-11-15 00:50:14','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/home-moderate-comments2.jpg',0,'attachment','image/jpeg',0), (1310,1,'2012-11-15 00:50:26','2012-11-15 00:50:26','','home-moderate-comments','','inherit','open','open','','home-moderate-comments-4','','','2012-11-15 00:50:26','2012-11-15 00:50:26','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/home-moderate-comments3.jpg',0,'attachment','image/jpeg',0), (1317,1,'2012-11-30 03:51:04','2012-11-30 03:51:04','','wpios-3-2-sounds','','inherit','open','open','','wpios-3-2-sounds','','','2012-11-30 03:51:04','2012-11-30 03:51:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/wpios-3-2-sounds1.jpg',0,'attachment','image/jpeg',0), (1336,1,'2012-12-02 05:48:26','2012-12-02 05:48:26','','wpios-3-3-sounds','','inherit','open','open','','wpios-3-3-sounds','','','2012-12-02 05:48:26','2012-12-02 05:48:26','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/12/wpios-3-3-sounds.jpg',0,'attachment','image/jpeg',0), (1353,1,'2013-02-01 04:06:49','2013-02-01 04:06:49','','wpios-3-4-notifications','','inherit','open','open','','wpios-3-4-notifications','','','2013-02-01 04:06:49','2013-02-01 04:06:49','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/wpios-3-4-notifications.jpg',0,'attachment','image/jpeg',0), (1385,1,'2013-02-21 22:43:27','2013-02-21 22:43:27','','wpios-3-5-better-previews','','inherit','open','open','','wpios-3-5-better-previews','','','2013-02-21 22:43:27','2013-02-21 22:43:27','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/wpios-3-5-better-previews.jpg',0,'attachment','image/jpeg',0), (1395,1,'2013-02-21 23:01:24','2013-02-21 23:01:24','','wpios-3-5-autosave','','inherit','open','open','','wpios-3-5-autosave-2','','','2013-02-21 23:01:24','2013-02-21 23:01:24','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/wpios-3-5-autosave1.jpg',0,'attachment','image/jpeg',0), (1400,1,'2013-02-21 23:16:10','2013-02-21 23:16:10','','wpios-3-5-draft-previews-plus-autosave','','inherit','open','open','','wpios-3-5-draft-previews-plus-autosave','','','2013-02-21 23:16:10','2013-02-21 23:16:10','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/wpios-3-5-draft-previews-plus-autosave.jpg',0,'attachment','image/jpeg',0), (1402,4,'2013-02-21 23:18:40','2013-02-21 23:18:40','','wpios-3-5-draft-previews-plus-autosave','','inherit','open','open','','wpios-3-5-draft-previews-plus-autosave-2-2','','','2013-02-21 23:18:40','2013-02-21 23:18:40','',0,'http:///wp-content/uploads/2013/02/wpios-3-5-draft-previews-plus-autosave1.png',0,'attachment','image/png',0), (1420,1,'2013-06-03 10:26:07','2013-06-03 10:26:07','','WordPress for iOS 3.6','','inherit','open','open','','nux-screenshot-iphone5','','','2013-06-03 10:26:07','2013-06-03 10:26:07','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/06/nux-screenshot-iphone5.png',0,'attachment','image/png',0), (1424,1,'2013-06-03 17:43:22','2013-06-03 17:43:22','','wpios-3-6-nux','','inherit','open','open','','wpios-3-6-nux','','','2013-06-03 17:43:22','2013-06-03 17:43:22','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/06/wpios-3-6-nux.jpg',0,'attachment','image/jpeg',0), (1429,4,'2013-06-03 17:53:15','2013-06-03 17:53:15','','wpios-3-6-nux-ribbon','','inherit','open','open','','wpios-3-6-nux-ribbon','','','2013-06-03 17:53:15','2013-06-03 17:53:15','',0,'http:///wp-content/uploads/2013/06/wpios-3-6-nux-ribbon1.jpg',0,'attachment','image/jpeg',0), (1458,1,'2013-08-14 12:08:50','2013-08-14 12:08:50','','New native reader','','inherit','open','open','','wpios-3-7','','','2013-08-14 12:08:50','2013-08-14 12:08:50','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/08/wpios-3-71.png',0,'attachment','image/png',0), (1461,1,'2013-08-14 12:22:02','2013-08-14 12:22:02','','wpios-3-7-reader','','inherit','open','open','','wpios-3-7-reader','','','2013-08-14 12:22:02','2013-08-14 12:22:02','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/08/wpios-3-7-reader1.jpg',0,'attachment','image/jpeg',0), (1468,1,'2013-09-18 11:10:33','2013-09-18 11:10:33','','announcement-ios7-02','','inherit','open','open','','announcement-ios7-02-2','','','2013-09-18 11:10:33','2013-09-18 11:10:33','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/09/announcement-ios7-02.png',0,'attachment','image/png',0), (1476,1,'2013-09-18 11:53:01','2013-09-18 11:53:01','','WordPress for iOS App Icon Fall 2013','The new app icon','inherit','open','open','','announcement-ios7-01','','','2013-09-18 11:53:01','2013-09-18 11:53:01','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/09/announcement-ios7-01.png',0,'attachment','image/png',0), (1488,1,'2013-09-20 20:13:17','2013-09-20 20:13:17','','WordPress for iOS featured in the US App Store on September 20, 2013','','inherit','open','open','','wordpress-ios-social-networking-featured-screenshot-large','','','2013-09-20 20:13:17','2013-09-20 20:13:17','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/09/wordpress-ios-social-networking-featured-screenshot-large.png',0,'attachment','image/png',0), (1494,1,'2013-09-20 21:01:39','2013-09-20 21:01:39','','wordpress-ios-social-networking-featured-screenshot-take3','','inherit','open','open','','wordpress-ios-social-networking-featured-screenshot-take3','','','2013-09-20 21:01:39','2013-09-20 21:01:39','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/09/wordpress-ios-social-networking-featured-screenshot-take3.png',0,'attachment','image/png',0), (1512,1,'2013-12-10 18:55:43','2013-12-10 18:55:43','WordPress for iOS 3.8.5 is out and now available to download from the App Store. This release is primarily a bug fix release.\n\nSome of the fixes included in this version are:\n
    \n
  • Fixed a crash when loading the posts view.
  • \n
  • Fixed a crash when opening Reader comments.
  • \n
  • Fixed a Jetpack connectivity issue.
  • \n
\nFull list of changes in version 3.8.5\n

What’s next?

\nWe are currently hard at work on the next major version of the app(3.9) which will have quite a few UI and UX changes that we hope will improve your experience with the app. We as a team have also decided to only support iOS7 going forward in order to allow us to take advantage of the latest technologies and provide you our users with the best app possible. If you want a sneak peek of what’s coming take a look here.\n\nA huge thanks to the contributors who worked on this release: @astralbodies, @xtreme-rebecca-putinski, @koke, @mikejohnstn, @tomwitkin, @aerych. If you would like to get involved with WordPress for iOS development, drop us a line at make.wordpress.org/mobile and grab a copy of the code at github.com/wordpress-mobile/WordPress-iOS.\n\nHave feedback? Leave a comment below or tweet us @WordPressiOS','Upgrade to 3.8.5 for Various Bug Fixes','','publish','closed','closed','','upgrade-to-3-8-5-for-various-bug-fixes','','','2013-12-10 18:55:43','2013-12-10 18:55:43','',0,'http://wpiphone.wordpress.com/?p=1512',0,'post','',2), (1516,1,'2013-12-30 20:04:07','2013-12-30 20:04:07','WordPress for iOS 3.8.6 is out and now available to download from the App Store. This release is a hot fix release designed to fix a bug where the Reader would crash when loading a video.\n

What’s next?

\nWe are almost done with the next major version of the app (3.9) which will have quite a few UI and UX changes that we hope will improve your experience with the app. This release (3.8.6) will be the last release to support iOS6 as with 3.9 and beyond we will only support iOS7 to allow us to take advantage of the latest technologies and provide you our users with the best app possible. You can get a sneak peek of what\'s coming here.\n\nA huge thanks to the contributors who worked on this release: @koke and @aerych. If you would like to get involved with WordPress for iOS development, drop us a line at make.wordpress.org/mobile and grab a copy of the code at github.com/wordpress-mobile/WordPress-iOS.\n\nHave feedback? Leave a comment below or tweet us @WordPressiOS','Upgrade to 3.8.6 for Reader Bug Fix','','publish','closed','closed','','upgrade-to-3-8-6-for-reader-bug-fix','','','2013-12-30 20:04:07','2013-12-30 20:04:07','',0,'http://wpiphone.wordpress.com/?p=1516',0,'post','',2), (1528,1,'2014-01-30 22:19:13','2014-01-30 22:19:13','\"3-9\"\n\nWordPress for iOS 3.9 is out and now available to download from the App Store. This release is one of our largest app releases to date. This update is remarkable both for the significant changes we’ve introduced, and for the level of dedication it received from our hard-working team members.\n\nVersion 3.9 includes a major visual redesign of the app. We decided to drop the sidebar navigation and embrace a tab bar-based layout. The app’s new design allowed us to add numerous visual improvements throughout, including revamped and enhanced Reader, Comments, and Notifications sections. We also created a seamless inline commenting experience to make it easier for you to engage with the content you love. Finally, we made visual improvements to the editing experience of posts and pages.\n\nOur team has embraced the latest and greatest technologies that Apple has provided us with iOS 7 to deliver you the best app possible. Version 3.9 and future updates will require iOS 7.\n\nThe app also includes several other changes. On top of various bug fixes and performance improvements, it now supports deep-linking from Twitter, and features an improved login screen. Be sure to try it out.\n\nA huge thanks to the contributors who worked on this release: @pivotal-rebecca, @mikejohnstn, @aerych, @h4xnoodle, @astralbodies, @tomwitkin, @irbrad, @beaucollins,@koke, @intoxicated\n\nIf you would like to get involved with WordPress for iOS development, drop us a line at make.wordpress.org/mobile and grab a copy of the code at github.com/wordpress-mobile/WordPress-iOS.\n\nHave feedback? Leave a comment below or tweet us @WordPressiOS','WordPress for iOS 3.9 Released','','publish','closed','open','','wordpress-for-ios-3-9-released','','','2014-01-30 22:19:13','2014-01-30 22:19:13','',0,'http://ios.wordpress.org/?p=1528',0,'post','',33), (1531,1,'2014-01-30 22:32:49','2014-01-30 22:32:49','','ios-39','','inherit','open','open','','ios-39','','','2014-01-30 22:32:49','2014-01-30 22:32:49','',1528,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/ios-39.jpg',0,'attachment','image/jpeg',0), (1535,1,'2014-02-12 01:40:29','2014-02-12 01:40:29','WordPress for iOS 3.9.1 is out and now available to download from the App Store.\n\nSome of the fixes included in this version are:\n
    \n
  • Added: Ability to dismiss commenting by tapping on the background.
  • \n
  • Fixed: The last tab you selected is now loaded when returning to the app.
  • \n
  • Fixed: Timezone is now correctly preserved after updating a post.
  • \n
  • Fixed: You can now add links to longer posts.
  • \n
  • Various other improvements.
  • \n
\nFull list of changes in version 3.9.1.\n

What\'s next?

\nWe are currently hard at work on the next major version of the app (4.0) where the major feature will be changing the stats feature to be completely native, which means they will load faster and look great too. For a sneak peek of what\'s coming, take a look here.\n\nA huge thanks to the contributors who worked on this release:@koke, @sendhil , @astralbodies, @koke, @dannylagrouw, @irbrad, @daniloercoli.\n\nHave feedback? Leave a comment below or tweet us @WordPressiOS','WordPress for iOS 3.9.1 Released','','publish','closed','open','','wordpress-for-ios-3-9-1-released','','','2014-02-12 01:40:29','2014-02-12 01:40:29','',0,'http://ios.wordpress.org/?p=1535',0,'post','',16), (1542,1,'2014-03-20 20:23:26','2014-03-20 20:23:26','

\"stats-2\"

\n

New and improved stats

\nWordPress for iOS 4.0 is out today and available to download from the App Store. For this release, we focused on improving a favorite feature among our users: stats. We\'ve reimagined your stats view, converting it from a traditional web view to a completely native component. Simply put, your stats are now faster and more stable, and in time we\'ll add more bells and whistles to make your stats more dynamic and even better. As this is a work-in-progress, you\'re still able to access your old stats view, so you won\'t miss out on anything.\n

What\'s next

\nOur team is currently focused on 4.0.1, a janitorial/cleanup release that will focus on fixing bugs and making minor tweaks. Once finished, we\'ll shift to 4.1, which will focus on media management within the app. We\'re really excited about these upcoming changes and can\'t wait to release them!\n\nA huge thanks to the contributors who worked on this release: @aerych, @dannylagrouw, @ric2z, @roundhill, @astralbodies, @sendhil, @bummytime, @irbrad, @koke, @maxme, and @itsaboutcode.\n\nIf you\'d like to get involved with WordPress for iOS development, drop us a line at make.wordpress.org/mobile and grab a copy of the code at github.com/wordpress-mobile/WordPress-iOS.\n\nDo you have feedback? Leave a comment below or tweet us @WordPressiOS.','WordPress for iOS 4.0 Released','','publish','closed','open','','wordpress-for-ios-4-0-released','','','2014-03-20 20:23:26','2014-03-20 20:23:26','',0,'http://ios.wordpress.org/?p=1542',0,'post','',29), (1550,1,'2014-03-20 00:08:09','2014-03-20 00:08:09','','stats-2','','inherit','open','open','','stats-2','','','2014-03-20 00:08:09','2014-03-20 00:08:09','',1542,'http://apps.wordpressorg.dev/wp-content/uploads/2014/03/stats-2.png',0,'attachment','image/png',0), (1553,1,'2014-04-08 03:41:42','2014-04-08 03:41:42','WordPress for iOS 4.0.1 is out and now available to download from the App Store.\n\nSome of the updates included are:\n
    \n
  • Improved the performance of stats.
  • \n
  • Made the “Options” page easier to locate and access.
  • \n
  • Fixed a bug that caused the app to freeze when you tried to update a post’s settings.
  • \n
  • Fixed a bug that stopped you from moving the cursor to the end of a line.
  • \n
  • Fixed a bug that broke the UI when you inserted a link in the post editor.
  • \n
  • Fixed a bug that crashed the app when you added a featured image to a post.
  • \n
  • Increased the minimum required version of WordPress to 3.6.
  • \n
  • Fixed a bug that caused the post editor to malfunction if you inserted a link.
  • \n
\n

What\'s Next?

\nWe’re hard at work on the next major version of the app (4.1), where we’re working through your feedback to make big improvements to working with media. The post editor is getting better media management features, including the ability to easily attach media that’s already been uploaded to your blog. For a sneak peek, take a look  here.\n\nA huge thanks to our contributors who worked on this release: @itsaboutcode, @koke, @astralbodies, @aerych, @sendhil.\n\nHave feedback? Leave a comment below or tweet us @WordPressiOS','WordPress for iOS 4.0.1 Released','','publish','closed','open','','wordpress-for-ios-4-0-1-released','','','2014-04-08 03:41:42','2014-04-08 03:41:42','',0,'http://wpiphone.wordpress.com/?p=1553',0,'post','',31), (1558,1,'2014-05-17 23:50:38','2014-05-17 23:50:38','WordPress for iOS 4.0.3 has been released and is available to download from the App Store.\n\nThe major changes in this release are:\n- Adjusted user interface for media management to allow for faster insertion of images.\n- Improved accessibility of the stats interface.\n- Launched live chat support on a limited rollout.\n- Fixed many miscellaneous bugs.\n\nWe are hard at work on the next major version of the app (4.1) where we will continue to overhaul media management along with improvements to the post editor.\n\nMany thanks to the contributors who worked on this release: @aerych, @astralbodies, @irbrad, @koke, @sendhil\n\nHave feedback? Leave a comment below or tweet us @WordPressiOS','WordPress for iOS 4.0.3 Released','','publish','open','open','','wordpress-for-ios-4-0-3-released','','','2014-05-17 23:50:38','2014-05-17 23:50:38','',0,'http://wpiphone.wordpress.com/?p=1558',0,'post','',5), (1692,9,'2010-01-25 16:31:20','2010-01-25 23:31:20','','wpid-2010-01-25-15.29.17.jpg','','inherit','open','open','','wpid-2010-01-25-15-29-17-jpg','','','2010-01-25 16:31:20','2010-01-25 23:31:20','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/01/wpid-2010-01-25-15-29-17.jpg',0,'attachment','image/jpeg',0), (1695,9,'2010-07-06 12:50:20','2010-07-06 20:50:20','','reports','','inherit','open','open','','reports','','','2010-07-06 12:50:20','2010-07-06 20:50:20','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/reports.png',0,'attachment','image/png',0), (1696,1,'2010-07-06 12:50:17','2010-07-06 20:50:17','','comments','','inherit','open','open','','comments-2-2','','','2010-07-06 12:50:17','2010-07-06 20:50:17','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/comments2.png',0,'attachment','image/png',0), (1697,1,'2010-07-06 12:50:26','2010-07-06 20:50:26','','visualeditor','','inherit','open','open','','visualeditor','','','2010-07-06 12:50:26','2010-07-06 20:50:26','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/visualeditor.png',0,'attachment','image/png',0), (1699,9,'2010-07-06 12:50:24','2010-07-06 20:50:24','','views','','inherit','open','open','','views','','','2010-07-06 12:50:24','2010-07-06 20:50:24','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/views1.png',0,'attachment','image/png',0), (1700,1,'2011-04-18 00:06:38','2011-04-18 08:06:38','','wp-android-setdate','','inherit','open','open','','wp-android-setdate','','','2011-04-18 00:06:38','2011-04-18 08:06:38','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/wp-android-setdate.jpg',0,'attachment','image/jpeg',0), (1701,1,'2012-01-16 07:20:43','2012-01-16 15:20:43','','wp-kindle-fire','','inherit','open','open','','wp-kindle-fire','','','2012-01-16 07:20:43','2012-01-16 15:20:43','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/01/wp-kindle-fire.jpg',0,'attachment','image/jpeg',0), (1702,1,'2012-05-03 01:14:25','2012-05-03 09:14:25','','2.1-header','','inherit','open','open','','2-1-header-3','','','2012-05-03 01:14:25','2012-05-03 09:14:25','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/05/2-1-header1.jpg',0,'attachment','image/jpeg',0), (1704,1,'2012-05-03 01:06:42','2012-05-03 09:06:42','','2.1-header','','inherit','open','open','','2-1-header-2','','','2012-05-03 01:06:42','2012-05-03 09:06:42','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/05/2-1-header2.jpg',0,'attachment','image/jpeg',0), (1705,1,'2012-08-31 01:01:22','2012-08-31 09:01:22','','stats','','inherit','open','open','','stats','','','2012-08-31 01:01:22','2012-08-31 09:01:22','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/stats.png',0,'attachment','image/png',0), (1706,1,'2012-08-31 01:01:23','2012-08-31 09:01:23','','featured-image','','inherit','open','open','','featured-image','','','2012-08-31 01:01:23','2012-08-31 09:01:23','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/08/featured-image.png',0,'attachment','image/png',0), (1708,9,'2013-06-19 11:42:53','2013-06-19 19:42:53','','app-store-icon-114px','','inherit','open','open','','app-store-icon-114px','','','2013-06-19 11:42:53','2013-06-19 19:42:53','',0,'http:///wp-content/uploads/2013/06/app-store-icon-114px.png',0,'attachment','image/png',0), (1709,1,'2013-05-27 09:10:56','2013-05-27 17:10:56','','notifications','','inherit','open','open','','notifications-2','','','2013-05-27 09:10:56','2013-05-27 17:10:56','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/05/notifications1.jpg',0,'attachment','image/jpeg',0), (1710,1,'2013-08-08 08:31:41','2013-08-08 16:31:41','','categories-edit-post','Tap on a category to remove it from the post.','inherit','open','open','','categories-edit-post','','','2013-08-08 08:31:41','2013-08-08 16:31:41','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/08/categories-edit-post1.png',0,'attachment','image/png',0), (1711,9,'2013-08-16 10:39:58','2013-08-16 18:39:58','','Post Excerpt','New excerpt field added to the post editor.','inherit','open','open','','post-excerpt','','','2013-08-16 10:39:58','2013-08-16 18:39:58','',0,'http:///wp-content/uploads/2013/08/post-excerpt1.png',0,'attachment','image/png',0), (1712,1,'2013-10-16 15:02:19','2013-10-16 23:02:19','','2.5-feature','','inherit','open','open','','2-5-feature','','','2013-10-16 15:02:19','2013-10-16 23:02:19','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/10/2-5-feature.jpg',0,'attachment','image/jpeg',0), (1723,3,'2009-11-11 12:47:15','2009-11-11 19:47:15','','03 - MainScreen - LCD only','','inherit','open','open','','03-mainscreen-lcd-only-2','','','2009-11-11 12:47:15','2009-11-11 19:47:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/03-mainscreen-lcd-only1.png',3,'attachment','image/png',0), (1724,3,'2009-11-11 12:47:17','2009-11-11 19:47:17','','01 - MainScreen - Full Device','','inherit','open','open','','01-mainscreen-full-device-2','','','2009-11-11 12:47:17','2009-11-11 19:47:17','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/01-mainscreen-full-device1.png',1,'attachment','image/png',0), (1725,3,'2009-11-11 12:35:26','2009-11-11 19:35:26','','10 - Media Properties - Storm LCD only','','inherit','open','open','','10-media-properties-storm-lcd-only','','','2009-11-11 12:35:26','2009-11-11 19:35:26','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/10-media-properties-storm-lcd-only.png',0,'attachment','image/png',0), (1726,1,'2009-11-11 12:47:17','2009-11-11 19:47:17','','01 - MainScreen - Full Device','','inherit','open','open','','01-mainscreen-full-device-2-2','','','2009-11-11 12:47:17','2009-11-11 19:47:17','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2009/11/01-mainscreen-full-device11.png',1,'attachment','image/png',0), (1727,3,'2010-03-17 17:41:34','2010-03-18 00:41:34','','blackberry-wordpress-04','','inherit','open','open','','blackberry-wordpress-04','','','2010-03-17 17:41:34','2010-03-18 00:41:34','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/blackberry-wordpress-04.png',0,'attachment','image/png',0), (1728,3,'2010-03-17 17:41:31','2010-03-18 00:41:31','','blackberry-wordpress-07','','inherit','open','open','','blackberry-wordpress-07','','','2010-03-17 17:41:31','2010-03-18 00:41:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/blackberry-wordpress-07.png',0,'attachment','image/png',0), (1729,1,'2010-03-17 17:41:31','2010-03-18 00:41:31','','blackberry-wordpress-07','','inherit','open','open','','blackberry-wordpress-07','','','2010-03-17 17:41:31','2010-03-18 00:41:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/blackberry-wordpress-071.png',0,'attachment','image/png',0), (1730,1,'2010-03-17 17:41:37','2010-03-18 00:41:37','','blackberry-wordpress-06','','inherit','open','open','','blackberry-wordpress-06','','','2010-03-17 17:41:37','2010-03-18 00:41:37','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/blackberry-wordpress-06.png',0,'attachment','image/png',0), (1731,3,'2010-03-17 17:41:37','2010-03-18 00:41:37','','blackberry-wordpress-06','','inherit','open','open','','blackberry-wordpress-06-2','','','2010-03-17 17:41:37','2010-03-18 00:41:37','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/blackberry-wordpress-061.png',0,'attachment','image/png',0), (1732,9,'2010-03-29 12:11:11','2010-03-29 20:11:11','','add_media','','inherit','open','open','','add_media-2','','','2010-03-29 12:11:11','2010-03-29 20:11:11','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/add_media1.png',0,'attachment','image/png',0), (1733,9,'2010-03-29 12:11:13','2010-03-29 20:11:13','','blogs','','inherit','open','open','','blogs-2','','','2010-03-29 12:11:13','2010-03-29 20:11:13','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/blogs1.png',0,'attachment','image/png',0), (1734,9,'2010-03-29 12:11:16','2010-03-29 20:11:16','','categories','','inherit','open','open','','categories-2','','','2010-03-29 12:11:16','2010-03-29 20:11:16','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/categories1.png',0,'attachment','image/png',0), (1735,9,'2010-03-29 12:11:18','2010-03-29 20:11:18','','comments','','inherit','open','open','','comments-2','','','2010-03-29 12:11:18','2010-03-29 20:11:18','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/comments1.png',0,'attachment','image/png',0), (1736,9,'2010-03-29 12:11:22','2010-03-29 20:11:22','','german','','inherit','open','open','','german-2','','','2010-03-29 12:11:22','2010-03-29 20:11:22','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/german1.png',0,'attachment','image/png',0), (1737,9,'2010-03-29 12:27:15','2010-03-29 20:27:15','','view_comment','','inherit','open','open','','view_comment-2','','','2010-03-29 12:27:15','2010-03-29 20:27:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/view_comment11.png',0,'attachment','image/png',0), (1738,9,'2010-03-29 13:31:04','2010-03-29 21:31:04','','blogs','','inherit','open','open','','blogs-2-3','','','2010-03-29 13:31:04','2010-03-29 21:31:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/blogs12.png',0,'attachment','image/png',0), (1739,4,'2010-03-23 02:13:15','2010-03-23 02:13:15','','wp-23-3','','inherit','open','open','','wp-23-3-2-2','','','2010-03-23 02:13:15','2010-03-23 02:13:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/wp-23-311.png',0,'attachment','image/png',0), (1740,4,'2010-03-23 02:13:33','2010-03-23 02:13:33','','wp-23-2','','inherit','open','open','','wp-23-2-2','','','2010-03-23 02:13:33','2010-03-23 02:13:33','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/wp-23-21.png',0,'attachment','image/png',0), (1741,4,'2010-03-23 02:13:39','2010-03-23 02:13:39','','wp-23-1','','inherit','open','open','','wp-23-1-2','','','2010-03-23 02:13:39','2010-03-23 02:13:39','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/03/wp-23-11.png',0,'attachment','image/png',0), (1742,4,'2010-04-02 03:52:28','2010-04-02 03:52:28','','home-appstore','','inherit','open','open','','home-appstore-2','','','2010-04-02 03:52:28','2010-04-02 03:52:28','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-appstore1.png',0,'attachment','image/png',0), (1743,4,'2010-04-02 03:52:30','2010-04-02 03:52:30','','home-devices','','inherit','open','open','','home-devices-2','','','2010-04-02 03:52:30','2010-04-02 03:52:30','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-devices1.jpg',0,'attachment','image/jpeg',0), (1744,4,'2010-04-02 03:52:31','2010-04-02 03:52:31','','home-geo','','inherit','open','open','','home-geo-2','','','2010-04-02 03:52:31','2010-04-02 03:52:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-geo1.jpg',0,'attachment','image/jpeg',0), (1745,4,'2010-04-02 03:52:33','2010-04-02 03:52:33','','home-logo','','inherit','open','open','','home-logo-2','','','2010-04-02 03:52:33','2010-04-02 03:52:33','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-logo1.png',0,'attachment','image/png',0), (1746,4,'2010-04-02 03:52:34','2010-04-02 03:52:34','','home-photos','','inherit','open','open','','home-photos-2','','','2010-04-02 03:52:34','2010-04-02 03:52:34','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-photos1.jpg',0,'attachment','image/jpeg',0), (1747,4,'2010-04-02 03:52:36','2010-04-02 03:52:36','','home-writing','','inherit','open','open','','home-writing','','','2010-04-02 03:52:36','2010-04-02 03:52:36','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-writing1.jpg',0,'attachment','image/jpeg',0), (1748,4,'2010-04-02 05:49:10','2010-04-02 05:49:10','','1','','inherit','open','open','','1-2-2','','','2010-04-02 05:49:10','2010-04-02 05:49:10','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/11.png',1,'attachment','image/png',0), (1749,4,'2010-04-02 05:49:13','2010-04-02 05:49:13','','2','','inherit','open','open','','2-2-2','','','2010-04-02 05:49:13','2010-04-02 05:49:13','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/21.png',2,'attachment','image/png',0), (1750,1,'2010-04-02 05:49:17','2010-04-02 05:49:17','','3','','inherit','open','open','','3-2','','','2010-04-02 05:49:17','2010-04-02 05:49:17','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/3.png',3,'attachment','image/png',0), (1751,4,'2010-04-02 05:49:22','2010-04-02 05:49:22','','4','','inherit','open','open','','4-2-2','','','2010-04-02 05:49:22','2010-04-02 05:49:22','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/41.png',4,'attachment','image/png',0), (1752,9,'2010-04-05 08:42:33','2010-04-05 16:42:33','','Share YouTube Video','','inherit','open','open','','share-2','','','2010-04-05 08:42:33','2010-04-05 16:42:33','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/share1.jpg',0,'attachment','image/jpeg',0), (1753,9,'2010-05-11 09:28:32','2010-05-11 17:28:32','','Geotagging','Geotagging','inherit','open','open','','location-2','','','2010-05-11 09:28:32','2010-05-11 17:28:32','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/location1.jpg',0,'attachment','image/jpeg',0), (1754,9,'2010-05-24 08:27:07','2010-05-24 16:27:07','','delete','','inherit','open','open','','delete-2','','','2010-05-24 08:27:07','2010-05-24 16:27:07','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/delete1.jpg',0,'attachment','image/jpeg',0), (1755,9,'2010-05-24 08:30:57','2010-05-24 16:30:57','','post-signature','','inherit','open','open','','post-signature-2','','','2010-05-24 08:30:57','2010-05-24 16:30:57','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/post-signature1.jpg',0,'attachment','image/jpeg',0), (1756,8,'2010-05-12 03:04:11','2010-05-12 10:04:11','','blackberry-wordpress-02','','inherit','open','open','','blackberry-wordpress-02-2','','','2010-05-12 03:04:11','2010-05-12 10:04:11','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/blackberry-wordpress-021.png',0,'attachment','image/png',0), (1757,8,'2010-05-12 03:04:12','2010-05-12 10:04:12','','blackberry-wordpress-03','','inherit','open','open','','blackberry-wordpress-03-2','','','2010-05-12 03:04:12','2010-05-12 10:04:12','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/blackberry-wordpress-031.png',0,'attachment','image/png',0), (1758,8,'2010-05-12 03:04:15','2010-05-12 10:04:15','','blackberry-wordpress-04','','inherit','open','open','','blackberry-wordpress-04-2-2','','','2010-05-12 03:04:15','2010-05-12 10:04:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/blackberry-wordpress-041.png',0,'attachment','image/png',0), (1759,8,'2010-05-12 03:04:18','2010-05-12 10:04:18','','blackberry-wordpress-05','','inherit','open','open','','blackberry-wordpress-05-2','','','2010-05-12 03:04:18','2010-05-12 10:04:18','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/blackberry-wordpress-051.png',0,'attachment','image/png',0), (1760,8,'2010-05-12 03:04:19','2010-05-12 10:04:19','','blackberry-wordpress-06','','inherit','open','open','','blackberry-wordpress-06-2-3','','','2010-05-12 03:04:19','2010-05-12 10:04:19','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/blackberry-wordpress-061.png',0,'attachment','image/png',0), (1761,4,'2010-04-02 05:49:25','2010-04-02 05:49:25','','5','','inherit','open','open','','5','','','2010-04-02 05:49:25','2010-04-02 05:49:25','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/51.png',5,'attachment','image/png',0), (1762,1,'2010-04-02 06:39:14','2010-04-02 06:39:14','','home-comment','','inherit','open','open','','home-comment-2','','','2010-04-02 06:39:14','2010-04-02 06:39:14','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-comment1.jpg',0,'attachment','image/jpeg',0), (1763,4,'2010-04-03 03:59:12','2010-04-03 03:59:12','','home-devices-1','','inherit','open','open','','home-devices-1-2','','','2010-04-03 03:59:12','2010-04-03 03:59:12','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-devices-1.jpg',0,'attachment','image/jpeg',0), (1764,4,'2010-04-03 17:04:01','2010-04-03 17:04:01','','home-icon','','inherit','open','open','','home-icon-2','','','2010-04-03 17:04:01','2010-04-03 17:04:01','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-icon1.png',0,'attachment','image/png',0), (1765,4,'2010-04-03 17:07:29','2010-04-03 17:07:29','','home-ss','','inherit','open','open','','home-ss','','','2010-04-03 17:07:29','2010-04-03 17:07:29','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/home-ss1.png',0,'attachment','image/png',0), (1766,4,'2010-04-26 20:11:14','2010-04-26 20:11:14','','blogging-ipad-keyboard','','inherit','open','open','','blogging-ipad-keyboard-2','','','2010-04-26 20:11:14','2010-04-26 20:11:14','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/04/blogging-ipad-keyboard1.jpg',0,'attachment','image/jpeg',0), (1767,4,'2010-05-03 17:50:31','2010-05-03 17:50:31','','Geolocation Plugin Screenshot','','inherit','open','open','','screenshot-2','','','2010-05-03 17:50:31','2010-05-03 17:50:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/screenshot1.png',0,'attachment','image/png',0), (1768,4,'2010-06-08 09:44:41','2010-06-08 09:44:41','','home-icon','','inherit','open','open','','home-icon-2-3','','','2010-06-08 09:44:41','2010-06-08 09:44:41','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/06/home-icon1.png',0,'attachment','image/png',0), (1769,1,'2010-05-03 14:58:39','2010-05-03 21:58:39','','geolocation plugin screenshot','','inherit','open','open','','screenshot-2-2','','','2010-05-03 14:58:39','2010-05-03 21:58:39','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/screenshot11.png',0,'attachment','image/png',0), (1770,8,'2010-05-03 14:58:39','2010-05-03 21:58:39','','geolocation plugin screenshot','','inherit','open','open','','screenshot-2-3','','','2010-05-03 14:58:39','2010-05-03 21:58:39','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/screenshot12.png',0,'attachment','image/png',0), (1771,1,'2010-05-12 03:04:09','2010-05-12 10:04:09','','blackberry-wordpress-01','','inherit','open','open','','blackberry-wordpress-01','','','2010-05-12 03:04:09','2010-05-12 10:04:09','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/blackberry-wordpress-01.png',0,'attachment','image/png',0), (1772,8,'2010-05-12 03:04:09','2010-05-12 10:04:09','','blackberry-wordpress-01','','inherit','open','open','','blackberry-wordpress-01-2','','','2010-05-12 03:04:09','2010-05-12 10:04:09','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/05/blackberry-wordpress-011.png',0,'attachment','image/png',0), (1773,8,'2010-08-03 13:21:37','2010-08-03 20:21:37','','01','','inherit','open','open','','01-2','','','2010-08-03 13:21:37','2010-08-03 20:21:37','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/011.png',1,'attachment','image/png',0), (1774,8,'2010-08-03 13:21:49','2010-08-03 20:21:49','','03','','inherit','open','open','','03-2','','','2010-08-03 13:21:49','2010-08-03 20:21:49','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/031.png',3,'attachment','image/png',0), (1775,8,'2010-08-03 13:21:57','2010-08-03 20:21:57','','05','','inherit','open','open','','05-2','','','2010-08-03 13:21:57','2010-08-03 20:21:57','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/051.png',5,'attachment','image/png',0), (1776,8,'2010-08-21 01:37:02','2010-08-21 08:37:02','','05','','inherit','open','open','','05-2-3','','','2010-08-21 01:37:02','2010-08-21 08:37:02','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/0512.png',0,'attachment','image/png',0), (1777,1,'2010-08-21 01:37:04','2010-08-21 08:37:04','','01','','inherit','open','open','','01-2-3','','','2010-08-21 01:37:04','2010-08-21 08:37:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/0111.png',0,'attachment','image/png',0), (1778,1,'2010-08-21 01:37:06','2010-08-21 08:37:06','','02','','inherit','open','open','','02-2-2','','','2010-08-21 01:37:06','2010-08-21 08:37:06','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/0211.png',0,'attachment','image/png',0), (1779,1,'2010-06-23 04:09:16','2010-06-23 04:09:16','','home-geo','','inherit','open','open','','home-geo-2-3','','','2010-06-23 04:09:16','2010-06-23 04:09:16','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/06/home-geo1.jpg',0,'attachment','image/jpeg',0), (1780,1,'2010-07-07 17:31:08','2010-07-07 17:31:08','','home-ss','','inherit','open','open','','home-ss-3-2','','','2010-07-07 17:31:08','2010-07-07 17:31:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/home-ss11.jpg',0,'attachment','image/jpeg',0), (1781,1,'2010-07-06 12:50:20','2010-07-06 20:50:20','','reports','','inherit','open','open','','reports-2','','','2010-07-06 12:50:20','2010-07-06 20:50:20','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/reports1.png',0,'attachment','image/png',0), (1782,9,'2010-07-06 12:50:17','2010-07-06 20:50:17','','comments','','inherit','open','open','','comments-2-3','','','2010-07-06 12:50:17','2010-07-06 20:50:17','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/comments.png',0,'attachment','image/png',0), (1783,9,'2010-07-06 12:50:26','2010-07-06 20:50:26','','visualeditor','','inherit','open','open','','visualeditor-2','','','2010-07-06 12:50:26','2010-07-06 20:50:26','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/visualeditor1.png',0,'attachment','image/png',0), (1784,1,'2010-07-06 12:50:24','2010-07-06 20:50:24','','views','','inherit','open','open','','views-2','','','2010-07-06 12:50:24','2010-07-06 20:50:24','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/views.png',0,'attachment','image/png',0), (1785,8,'2010-08-03 13:21:53','2010-08-03 20:21:53','','04','','inherit','open','open','','04','','','2010-08-03 13:21:53','2010-08-03 20:21:53','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/04.png',4,'attachment','image/png',0), (1786,1,'2010-07-05 10:14:00','2010-07-05 17:14:00','','blackberry-wordpress-03','','inherit','open','open','','blackberry-wordpress-03-2-2','','','2010-07-05 10:14:00','2010-07-05 17:14:00','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/blackberry-wordpress-03.png',0,'attachment','image/png',0), (1787,8,'2010-07-05 10:14:00','2010-07-05 17:14:00','','blackberry-wordpress-03','','inherit','open','open','','blackberry-wordpress-03-2-3','','','2010-07-05 10:14:00','2010-07-05 17:14:00','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/07/blackberry-wordpress-031.png',0,'attachment','image/png',0), (1788,1,'2010-08-03 13:21:42','2010-08-03 20:21:42','','02','','inherit','open','open','','02','','','2010-08-03 13:21:42','2010-08-03 20:21:42','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/02.png',2,'attachment','image/png',0), (1789,8,'2010-08-03 13:21:42','2010-08-03 20:21:42','','02','','inherit','open','open','','02-3','','','2010-08-03 13:21:42','2010-08-03 20:21:42','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/022.png',2,'attachment','image/png',0), (1790,1,'2010-08-21 01:37:08','2010-08-21 08:37:08','','03','','inherit','open','open','','03-2-2','','','2010-08-21 01:37:08','2010-08-21 08:37:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/0311.png',0,'attachment','image/png',0), (1791,8,'2010-08-21 01:37:08','2010-08-21 08:37:08','','03','','inherit','open','open','','03-2-3','','','2010-08-21 01:37:08','2010-08-21 08:37:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/0312.png',0,'attachment','image/png',0), (1792,1,'2010-08-21 01:37:11','2010-08-21 08:37:11','','04','','inherit','open','open','','04-2','','','2010-08-21 01:37:11','2010-08-21 08:37:11','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/041.png',0,'attachment','image/png',0), (1793,8,'2010-08-21 01:37:11','2010-08-21 08:37:11','','04','','inherit','open','open','','04-2-2','','','2010-08-21 01:37:11','2010-08-21 08:37:11','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/0411.png',0,'attachment','image/png',0), (1794,9,'2010-08-24 06:31:24','2010-08-24 14:31:24','','ishot-77','','inherit','open','open','','ishot-77-2','','','2010-08-24 06:31:24','2010-08-24 14:31:24','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/ishot-771.jpg',0,'attachment','image/jpeg',0), (1795,9,'2010-08-24 06:46:08','2010-08-24 14:46:08','','notification','','inherit','open','open','','notification-2','','','2010-08-24 06:46:08','2010-08-24 14:46:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/08/notification.jpg',0,'attachment','image/jpeg',0), (1796,9,'2010-11-24 04:45:16','2010-11-24 12:45:16','','1.3.8-screen','','inherit','open','open','','1-3-8-screen-2','','','2010-11-24 04:45:16','2010-11-24 12:45:16','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/11/1-3-8-screen1.jpg',0,'attachment','image/jpeg',0), (1797,8,'2010-09-04 00:59:34','2010-09-04 07:59:34','','00','','inherit','open','open','','00-2','','','2010-09-04 00:59:34','2010-09-04 07:59:34','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/09/001.png',1,'attachment','image/png',0), (1798,8,'2010-09-04 00:59:37','2010-09-04 07:59:37','','01','','inherit','open','open','','01-3-2','','','2010-09-04 00:59:37','2010-09-04 07:59:37','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/09/011.png',3,'attachment','image/png',0), (1799,8,'2010-09-04 00:59:42','2010-09-04 07:59:42','','02','','inherit','open','open','','02-3-3','','','2010-09-04 00:59:42','2010-09-04 07:59:42','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/09/021.png',4,'attachment','image/png',0), (1800,4,'2010-10-12 22:59:23','2010-10-12 22:59:23','','welcome','','inherit','open','open','','welcome-2','','','2010-10-12 22:59:23','2010-10-12 22:59:23','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/10/welcome1.png',0,'attachment','image/png',0), (1801,4,'2010-10-12 23:00:08','2010-10-12 23:00:08','','video_upload','','inherit','open','open','','video_upload-2','','','2010-10-12 23:00:08','2010-10-12 23:00:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/10/video_upload1.png',0,'attachment','image/png',0), (1802,4,'2010-10-25 23:43:53','2010-10-25 23:43:53','','screen-shot-2010-10-25-at-6-39-59-pm','','inherit','open','open','','screen-shot-2010-10-25-at-6-39-59-pm-2','','','2010-10-25 23:43:53','2010-10-25 23:43:53','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/10/screen-shot-2010-10-25-at-6-39-59-pm1.png',0,'attachment','image/png',0), (1803,1,'2010-09-04 00:59:54','2010-09-04 07:59:54','','06','','inherit','open','open','','06','','','2010-09-04 00:59:54','2010-09-04 07:59:54','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/09/06.png',2,'attachment','image/png',0), (1804,8,'2010-09-04 00:59:51','2010-09-04 07:59:51','','05','','inherit','open','open','','05-3','','','2010-09-04 00:59:51','2010-09-04 07:59:51','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/09/05.png',7,'attachment','image/png',0), (1805,1,'2010-09-04 00:59:51','2010-09-04 07:59:51','','05','','inherit','open','open','','05-3-2','','','2010-09-04 00:59:51','2010-09-04 07:59:51','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/09/051.png',7,'attachment','image/png',0), (1806,8,'2010-09-04 00:59:49','2010-09-04 07:59:49','','04','','inherit','open','open','','04-3','','','2010-09-04 00:59:49','2010-09-04 07:59:49','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/09/04.png',6,'attachment','image/png',0), (1807,1,'2010-09-04 00:59:49','2010-09-04 07:59:49','','04','','inherit','open','open','','04-3-2','','','2010-09-04 00:59:49','2010-09-04 07:59:49','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/09/041.png',6,'attachment','image/png',0), (1808,6,'2010-12-06 21:50:55','2010-12-06 21:50:55','','3232323','','inherit','open','open','','3232323','','','2010-12-06 21:50:55','2010-12-06 21:50:55','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/3232323.jpg',0,'attachment','image/jpeg',0), (1809,1,'2010-12-06 21:50:55','2010-12-06 21:50:55','','3232323','','inherit','open','open','','3232323-2','','','2010-12-06 21:50:55','2010-12-06 21:50:55','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/32323231.jpg',0,'attachment','image/jpeg',0), (1810,6,'2010-12-06 16:11:36','2010-12-06 16:11:36','','wordpress-for-windows-phone-logo','','inherit','open','open','','wordpress-for-windows-phone-logo','','','2010-12-06 16:11:36','2010-12-06 16:11:36','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/wordpress-for-windows-phone-logo.png',0,'attachment','image/png',0), (1811,1,'2010-12-06 16:11:36','2010-12-06 16:11:36','','wordpress-for-windows-phone-logo','','inherit','open','open','','wordpress-for-windows-phone-logo-2','','','2010-12-06 16:11:36','2010-12-06 16:11:36','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/wordpress-for-windows-phone-logo1.png',0,'attachment','image/png',0), (1812,6,'2010-12-07 00:13:16','2010-12-07 00:13:16','','open-source-illustration','','inherit','open','open','','open-source-illustration','','','2010-12-07 00:13:16','2010-12-07 00:13:16','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/open-source-illustration.jpg',0,'attachment','image/jpeg',0), (1813,1,'2010-12-07 00:13:16','2010-12-07 00:13:16','','open-source-illustration','','inherit','open','open','','open-source-illustration-2','','','2010-12-07 00:13:16','2010-12-07 00:13:16','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/open-source-illustration1.jpg',0,'attachment','image/jpeg',0), (1814,6,'2010-12-07 02:04:09','2010-12-07 02:04:09','','Screen shot 2010-12-07 at 3.03.41 AM','Caption text here, two lines please two lines please two lines please two lines please','inherit','open','open','','screen-shot-2010-12-07-at-3-03-41-am','','','2010-12-07 02:04:09','2010-12-07 02:04:09','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/screen-shot-2010-12-07-at-3-03-41-am.png',0,'attachment','image/png',0), (1815,1,'2010-12-07 02:04:09','2010-12-07 02:04:09','','Screen shot 2010-12-07 at 3.03.41 AM','Caption text here, two lines please two lines please two lines please two lines please','inherit','open','open','','screen-shot-2010-12-07-at-3-03-41-am-2','','','2010-12-07 02:04:09','2010-12-07 02:04:09','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/screen-shot-2010-12-07-at-3-03-41-am1.png',0,'attachment','image/png',0), (1816,6,'2010-12-14 22:25:06','2010-12-14 22:25:06','','screen_4','Pages','inherit','open','open','','screen_4','','','2010-12-14 22:25:06','2010-12-14 22:25:06','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/screen_4.png',4,'attachment','image/png',0), (1817,1,'2010-12-14 22:25:06','2010-12-14 22:25:06','','screen_4','Pages','inherit','open','open','','screen_4-2','','','2010-12-14 22:25:06','2010-12-14 22:25:06','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/screen_41.png',4,'attachment','image/png',0), (1818,6,'2010-12-14 22:25:02','2010-12-14 22:25:02','','screen_5','Stats','inherit','open','open','','screen_5','','','2010-12-14 22:25:02','2010-12-14 22:25:02','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/screen_5.png',5,'attachment','image/png',0), (1819,1,'2010-12-14 22:25:02','2010-12-14 22:25:02','','screen_5','Stats','inherit','open','open','','screen_5-2','','','2010-12-14 22:25:02','2010-12-14 22:25:02','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/screen_51.png',5,'attachment','image/png',0), (1820,6,'2010-12-14 22:24:58','2010-12-14 22:24:58','','screen_1','The Actions dashboard','inherit','open','open','','screen_1','','','2010-12-14 22:24:58','2010-12-14 22:24:58','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/screen_1.png',1,'attachment','image/png',0), (1821,1,'2010-12-14 22:24:58','2010-12-14 22:24:58','','screen_1','The Actions dashboard','inherit','open','open','','screen_1-2','','','2010-12-14 22:24:58','2010-12-14 22:24:58','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/screen_11.png',1,'attachment','image/png',0), (1822,1,'2011-01-25 05:21:02','2011-01-25 13:21:02','','qp-select','','inherit','open','open','','qp-select','','','2011-01-25 05:21:02','2011-01-25 13:21:02','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/01/qp-select1.png',0,'attachment','image/png',0), (1823,9,'2011-01-25 05:21:04','2011-01-25 13:21:04','','share url','','inherit','open','open','','share-url-2','','','2011-01-25 05:21:04','2011-01-25 13:21:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/01/share-url1.png',0,'attachment','image/png',0), (1824,1,'2011-02-07 12:27:08','2011-02-07 19:27:08','','00','','inherit','open','open','','00-2-3','','','2011-02-07 12:27:08','2011-02-07 19:27:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/02/001.png',0,'attachment','image/png',0), (1825,1,'2011-03-04 02:11:42','2011-03-04 09:11:42','','04','','inherit','open','open','','04-4-2','','','2011-03-04 02:11:42','2011-03-04 09:11:42','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/041.png',0,'attachment','image/png',0), (1826,1,'2011-03-04 10:55:23','2011-03-04 17:55:23','','20 - Post list Screen','','inherit','open','open','','20-post-list-screen-2','','','2011-03-04 10:55:23','2011-03-04 17:55:23','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/20-post-list-screen1.png',0,'attachment','image/png',0), (1827,1,'2011-03-04 11:05:11','2011-03-04 18:05:11','','blackberry-wordpress-02','','inherit','open','open','','blackberry-wordpress-02-3-2','','','2011-03-04 11:05:11','2011-03-04 18:05:11','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/blackberry-wordpress-021.png',0,'attachment','image/png',0), (1828,1,'2011-03-04 11:16:44','2011-03-04 18:16:44','','02','','inherit','open','open','','02-4-2','','','2011-03-04 11:16:44','2011-03-04 18:16:44','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/021.png',0,'attachment','image/png',0), (1829,1,'2011-03-04 11:16:47','2011-03-04 18:16:47','','03','','inherit','open','open','','03-5-2','','','2011-03-04 11:16:47','2011-03-04 18:16:47','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/0311.png',0,'attachment','image/png',0), (1830,1,'2011-03-04 11:25:27','2011-03-04 18:25:27','','22 - post settings','','inherit','open','open','','22-post-settings-2','','','2011-03-04 11:25:27','2011-03-04 18:25:27','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/22-post-settings1.png',0,'attachment','image/png',0), (1831,1,'2011-03-04 11:54:04','2011-03-04 18:54:04','','09 - options screen','','inherit','open','open','','09-options-screen-2','','','2011-03-04 11:54:04','2011-03-04 18:54:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/09-options-screen1.png',0,'attachment','image/png',0), (1832,1,'2011-03-04 11:54:09','2011-03-04 18:54:09','','10 - options screen','','inherit','open','open','','10-options-screen','','','2011-03-04 11:54:09','2011-03-04 18:54:09','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/10-options-screen1.png',0,'attachment','image/png',0), (1833,4,'2011-01-31 01:11:06','2011-01-31 01:11:06','','wp-ios-265','','inherit','open','open','','wp-ios-265','','','2011-01-31 01:11:06','2011-01-31 01:11:06','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/01/wp-ios-2651.png',0,'attachment','image/png',0), (1834,1,'2011-03-16 21:18:51','2011-03-16 21:18:51','','pull-to-refresh','Pull to Refresh in WordPress for iOS 2.7','inherit','open','open','','pull-to-refresh-2','','','2011-03-16 21:18:51','2011-03-16 21:18:51','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/pull-to-refresh1.jpg',0,'attachment','image/jpeg',0), (1835,1,'2011-03-16 21:32:31','2011-03-16 21:32:31','','ipad-editor','New iPad Editor View','inherit','open','open','','ipad-editor-2','','','2011-03-16 21:32:31','2011-03-16 21:32:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/ipad-editor1.jpg',0,'attachment','image/jpeg',0), (1836,8,'2011-03-04 02:17:41','2011-03-04 09:17:41','','03','','inherit','open','open','','03-4','','','2011-03-04 02:17:41','2011-03-04 09:17:41','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/03.png',0,'attachment','image/png',0), (1837,1,'2011-03-04 02:17:41','2011-03-04 09:17:41','','03','','inherit','open','open','','03-4-2','','','2011-03-04 02:17:41','2011-03-04 09:17:41','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/032.png',0,'attachment','image/png',0), (1838,8,'2011-03-04 02:10:05','2011-03-04 09:10:05','','06','','inherit','open','open','','06-2','','','2011-03-04 02:10:05','2011-03-04 09:10:05','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/06.png',0,'attachment','image/png',0), (1839,1,'2011-03-04 02:10:05','2011-03-04 09:10:05','','06','','inherit','open','open','','06-2-2','','','2011-03-04 02:10:05','2011-03-04 09:10:05','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/061.png',0,'attachment','image/png',0), (1840,6,'2010-12-14 22:25:13','2010-12-14 22:25:13','','screen_3','Posts','inherit','open','open','','screen_3','','','2010-12-14 22:25:13','2010-12-14 22:25:13','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/screen_3.png',3,'attachment','image/png',0), (1841,1,'2010-12-14 22:25:13','2010-12-14 22:25:13','','screen_3','Posts','inherit','open','open','','screen_3-2','','','2010-12-14 22:25:13','2010-12-14 22:25:13','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/screen_31.png',3,'attachment','image/png',0), (1842,6,'2010-12-14 22:25:17','2010-12-14 22:25:17','','screen_2','Comments','inherit','open','open','','screen_2','','','2010-12-14 22:25:17','2010-12-14 22:25:17','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/screen_2.png',2,'attachment','image/png',0), (1843,1,'2010-12-14 22:25:17','2010-12-14 22:25:17','','screen_2','Comments','inherit','open','open','','screen_2-2','','','2010-12-14 22:25:17','2010-12-14 22:25:17','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/screen_21.png',2,'attachment','image/png',0), (1844,6,'2010-12-17 17:12:37','2010-12-17 17:12:37','','GlotPress','','inherit','open','open','','glotpress','','','2010-12-17 17:12:37','2010-12-17 17:12:37','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/glotpress.png',0,'attachment','image/png',0), (1845,1,'2010-12-17 17:12:37','2010-12-17 17:12:37','','GlotPress','','inherit','open','open','','glotpress-2','','','2010-12-17 17:12:37','2010-12-17 17:12:37','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2010/12/glotpress1.png',0,'attachment','image/png',0), (1846,1,'2011-04-18 00:06:33','2011-04-18 08:06:33','','wp-android-httppswd','','inherit','open','open','','wp-android-httppswd-2','','','2011-04-18 00:06:33','2011-04-18 08:06:33','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/wp-android-httppswd1.jpg',0,'attachment','image/jpeg',0), (1847,1,'2011-04-18 00:06:36','2011-04-18 08:06:36','','wp-android-postpassword','','inherit','open','open','','wp-android-postpassword-2','','','2011-04-18 00:06:36','2011-04-18 08:06:36','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/wp-android-postpassword1.jpg',0,'attachment','image/jpeg',0), (1848,1,'2011-04-29 08:09:31','2011-04-29 15:09:31','','01','','inherit','open','open','','01-4-2','','','2011-04-29 08:09:31','2011-04-29 15:09:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/01.png',1,'attachment','image/png',0), (1849,1,'2011-04-29 08:09:44','2011-04-29 15:09:44','','02','','inherit','open','open','','02-5-2','','','2011-04-29 08:09:44','2011-04-29 15:09:44','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/021.png',2,'attachment','image/png',0), (1850,8,'2011-04-29 08:09:52','2011-04-29 15:09:52','','03','','inherit','open','open','','03-6-2','','','2011-04-29 08:09:52','2011-04-29 15:09:52','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/03.png',3,'attachment','image/png',0), (1851,8,'2011-04-29 08:14:20','2011-04-29 15:14:20','','postformats-1','','inherit','open','open','','postformats-1-2','','','2011-04-29 08:14:20','2011-04-29 15:14:20','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/postformats-11.png',6,'attachment','image/png',0), (1852,1,'2011-04-29 08:14:27','2011-04-29 15:14:27','','resize-opt1','','inherit','open','open','','resize-opt1-2','','','2011-04-29 08:14:27','2011-04-29 15:14:27','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/resize-opt1.png',5,'attachment','image/png',0), (1853,1,'2011-04-29 08:14:30','2011-04-29 15:14:30','','resize-opt2','','inherit','open','open','','resize-opt2-2','','','2011-04-29 08:14:30','2011-04-29 15:14:30','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/resize-opt21.png',4,'attachment','image/png',0), (1854,1,'2011-03-16 21:35:34','2011-03-16 21:35:34','','ipad-editor','','inherit','open','open','','ipad-editor-2-3','','','2011-03-16 21:35:34','2011-03-16 21:35:34','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/ipad-editor12.jpg',0,'attachment','image/jpeg',0), (1855,1,'2011-03-16 21:37:26','2011-03-16 21:37:26','','ipad-editor','','inherit','open','open','','ipad-editor-3-2','','','2011-03-16 21:37:26','2011-03-16 21:37:26','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/ipad-editor21.jpg',0,'attachment','image/jpeg',0), (1856,1,'2011-03-16 21:45:03','2011-03-16 21:45:03','','iphone-editor','','inherit','open','open','','iphone-editor-2','','','2011-03-16 21:45:03','2011-03-16 21:45:03','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/iphone-editor1.jpg',0,'attachment','image/jpeg',0), (1857,1,'2011-03-16 21:47:05','2011-03-16 21:47:05','','iphone-editor','','inherit','open','open','','iphone-editor-2-3','','','2011-03-16 21:47:05','2011-03-16 21:47:05','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/iphone-editor12.jpg',0,'attachment','image/jpeg',0), (1858,1,'2011-03-17 00:28:49','2011-03-17 00:28:49','','20110316-192842.jpg','','inherit','open','open','','20110316-192842-jpg-2','','','2011-03-17 00:28:49','2011-03-17 00:28:49','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/20110316-1928421.jpg',0,'attachment','image/jpeg',0), (1859,1,'2011-03-17 00:29:39','2011-03-17 00:29:39','','20110316-192935.jpg','','inherit','open','open','','20110316-192935-jpg-2','','','2011-03-17 00:29:39','2011-03-17 00:29:39','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/03/20110316-1929351.jpg',0,'attachment','image/jpeg',0), (1860,1,'2011-04-05 15:13:23','2011-04-05 15:13:23','','home-icon','','inherit','open','open','','home-icon-3-2','','','2011-04-05 15:13:23','2011-04-05 15:13:23','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/home-icon1-e13020164692121.png',0,'attachment','image/png',0), (1861,4,'2011-05-16 13:58:04','2011-05-16 13:58:04','','wpioscrashreports-graph-small','','inherit','open','open','','wpioscrashreports-graph-small-2','','','2011-05-16 13:58:04','2011-05-16 13:58:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/05/wpioscrashreports-graph-small1.png',0,'attachment','image/png',0), (1862,9,'2011-04-18 00:06:38','2011-04-18 08:06:38','','wp-android-setdate','','inherit','open','open','','wp-android-setdate-2','','','2011-04-18 00:06:38','2011-04-18 08:06:38','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/04/wp-android-setdate1.jpg',0,'attachment','image/jpeg',0), (1863,9,'2011-08-02 19:35:03','2011-08-02 19:35:03','','Landscape Editing','The landscape editor','inherit','open','open','','landscape-2','','','2011-08-02 19:35:03','2011-08-02 19:35:03','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/08/landscape.jpg',0,'attachment','image/jpeg',0), (1864,6,'2011-08-24 12:18:30','2011-08-24 12:18:30','','Screenshot of the post editor','','inherit','open','open','','wordpress-windows-phone-7-post-editor-screenshot-version-1-2-2','','','2011-08-24 12:18:30','2011-08-24 12:18:30','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/08/wordpress-windows-phone-7-post-editor-screenshot-version-1-21.png',0,'attachment','image/png',0), (1865,9,'2011-05-27 06:50:41','2011-05-27 14:50:41','','amazon_appstore','','inherit','open','open','','amazon_appstore-2','','','2011-05-27 06:50:41','2011-05-27 14:50:41','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/05/amazon_appstore1.png',0,'attachment','image/png',0), (1866,1,'2011-08-02 17:22:12','2011-08-02 17:22:12','','New Panorama','The new panorama view','inherit','open','open','','capture2','','','2011-08-02 17:22:12','2011-08-02 17:22:12','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/08/capture2.png',0,'attachment','image/png',0), (1867,1,'2011-09-22 16:49:12','2011-09-22 16:49:12','','Screen Shot 2011-09-22 at 5.47.59 PM','','inherit','open','open','','screen-shot-2011-09-22-at-5-47-59-pm','','','2011-09-22 16:49:12','2011-09-22 16:49:12','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2011/09/screen-shot-2011-09-22-at-5-47-59-pm.png',0,'attachment','image/png',0), (1868,1,'2012-02-02 00:42:38','2012-02-02 00:42:38','','wordpress-windowsphone-v1-5','','inherit','open','open','','wordpress-windowsphone-v1-5','','','2012-02-02 00:42:38','2012-02-02 00:42:38','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/02/wordpress-windowsphone-v1-5.jpg',0,'attachment','image/jpeg',0), (1869,1,'2012-05-31 09:03:05','2012-05-31 16:03:05','','Read','','inherit','open','open','','dashboard_icon_subs_96','','','2012-05-31 09:03:05','2012-05-31 16:03:05','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/05/dashboard_icon_subs_96.png',0,'attachment','image/png',0), (1870,1,'2012-05-31 09:32:22','2012-05-31 16:32:22','','Infinite Scroll','','inherit','open','open','','version-1-6-infinite-scroll','','','2012-05-31 09:32:22','2012-05-31 16:32:22','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/05/version-1-6-infinite-scroll.png',0,'attachment','image/png',0), (1871,1,'2012-11-29 21:52:10','2012-11-29 21:52:10','','Version 1.7 of WordPress for Windows Phone - New Post','','inherit','open','open','','wpwindowsphone-1-7-new-post','','','2012-11-29 21:52:10','2012-11-29 21:52:10','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/11/wpwindowsphone-1-7-new-post.png',0,'attachment','image/png',0), (1872,1,'2013-02-26 10:37:29','2013-02-26 10:37:29','','Pier','','inherit','open','open','','03-7-2','','','2013-02-26 10:37:29','2013-02-26 10:37:29','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/031.jpeg',0,'attachment','image/jpeg',0), (1873,8,'2013-01-28 02:59:58','2013-01-28 09:59:58','','IMG_00000010','','inherit','open','open','','img_00000010-2','','','2013-01-28 02:59:58','2013-01-28 09:59:58','',0,'http:///wp-content/uploads/2013/01/img_00000010.png',0,'attachment','image/png',0), (1874,8,'2013-01-28 03:00:03','2013-01-28 10:00:03','','IMG_00000012','','inherit','open','open','','img_00000012-2','','','2013-01-28 03:00:03','2013-01-28 10:00:03','',0,'http:///wp-content/uploads/2013/01/img_000000121.png',0,'attachment','image/png',0), (1875,6,'2013-02-02 19:48:49','2013-02-03 02:48:49','','WordPress for BlackBerry OS 10','','inherit','open','open','','wpblackberry-for-blackberry-os10-2','','','2013-02-02 19:48:49','2013-02-03 02:48:49','',0,'http:///wp-content/uploads/2013/02/wpblackberry-for-blackberry-os101.jpg',0,'attachment','image/jpeg',0), (1876,9,'2013-01-24 10:43:41','2013-01-24 18:43:41','','Holo in Version 2.2.6','','inherit','open','open','','2-2-6-2','','','2013-01-24 10:43:41','2013-01-24 18:43:41','',0,'http:///wp-content/uploads/2013/01/2-2-61.png',0,'attachment','image/png',0), (1877,4,'2013-02-01 04:06:49','2013-02-01 04:06:49','','wpios-3-4-notifications','','inherit','open','open','','wpios-3-4-notifications-2','','','2013-02-01 04:06:49','2013-02-01 04:06:49','',0,'http:///wp-content/uploads/2013/02/wpios-3-4-notifications1.jpg',0,'attachment','image/jpeg',0), (1878,4,'2013-02-21 23:01:24','2013-02-21 23:01:24','','wpios-3-5-autosave','','inherit','open','open','','wpios-3-5-autosave-2-2','','','2013-02-21 23:01:24','2013-02-21 23:01:24','',0,'http:///wp-content/uploads/2013/02/wpios-3-5-autosave11.jpg',0,'attachment','image/jpeg',0), (1879,4,'2013-02-21 23:16:10','2013-02-21 23:16:10','','wpios-3-5-draft-previews-plus-autosave','','inherit','open','open','','wpios-3-5-draft-previews-plus-autosave-2','','','2013-02-21 23:16:10','2013-02-21 23:16:10','',0,'http:///wp-content/uploads/2013/02/wpios-3-5-draft-previews-plus-autosave1.jpg',0,'attachment','image/jpeg',0), (1880,1,'2013-02-21 23:18:40','2013-02-21 23:18:40','','wpios-3-5-draft-previews-plus-autosave','','inherit','open','open','','wpios-3-5-draft-previews-plus-autosave-2-3','','','2013-02-21 23:18:40','2013-02-21 23:18:40','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/wpios-3-5-draft-previews-plus-autosave.png',0,'attachment','image/png',0), (1881,1,'2013-01-28 02:59:41','2013-01-28 09:59:41','','IMG_00000007','','inherit','open','open','','img_00000007','','','2013-01-28 02:59:41','2013-01-28 09:59:41','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/01/img_00000007.png',0,'attachment','image/png',0), (1882,8,'2013-01-28 02:59:41','2013-01-28 09:59:41','','IMG_00000007','','inherit','open','open','','img_00000007-2','','','2013-01-28 02:59:41','2013-01-28 09:59:41','',0,'http:///wp-content/uploads/2013/01/img_000000071.png',0,'attachment','image/png',0), (1883,1,'2013-01-28 02:59:46','2013-01-28 09:59:46','','IMG_00000008','','inherit','open','open','','img_00000008','','','2013-01-28 02:59:46','2013-01-28 09:59:46','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/01/img_00000008.png',0,'attachment','image/png',0), (1884,8,'2013-01-28 02:59:46','2013-01-28 09:59:46','','IMG_00000008','','inherit','open','open','','img_00000008-2','','','2013-01-28 02:59:46','2013-01-28 09:59:46','',0,'http:///wp-content/uploads/2013/01/img_000000081.png',0,'attachment','image/png',0), (1885,1,'2013-01-28 02:59:36','2013-01-28 09:59:36','','IMG_00000005','','inherit','open','open','','img_00000005','','','2013-01-28 02:59:36','2013-01-28 09:59:36','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/01/img_00000005.png',0,'attachment','image/png',0), (1886,8,'2013-01-28 02:59:36','2013-01-28 09:59:36','','IMG_00000005','','inherit','open','open','','img_00000005-2','','','2013-01-28 02:59:36','2013-01-28 09:59:36','',0,'http:///wp-content/uploads/2013/01/img_000000051.png',0,'attachment','image/png',0), (1887,1,'2013-01-28 02:59:50','2013-01-28 09:59:50','','IMG_00000009','','inherit','open','open','','img_00000009','','','2013-01-28 02:59:50','2013-01-28 09:59:50','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/01/img_00000009.png',0,'attachment','image/png',0), (1888,8,'2013-01-28 02:59:50','2013-01-28 09:59:50','','IMG_00000009','','inherit','open','open','','img_00000009-2','','','2013-01-28 02:59:50','2013-01-28 09:59:50','',0,'http:///wp-content/uploads/2013/01/img_000000091.png',0,'attachment','image/png',0), (1889,1,'2013-02-02 19:26:56','2013-02-03 02:26:56','','wpblackberry-now-for-blackberry-os10','','inherit','open','open','','wpblackberry-now-for-blackberry-os10','','','2013-02-02 19:26:56','2013-02-03 02:26:56','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/wpblackberry-now-for-blackberry-os10.jpg',0,'attachment','image/jpeg',0), (1890,6,'2013-02-02 19:26:56','2013-02-03 02:26:56','','wpblackberry-now-for-blackberry-os10','','inherit','open','open','','wpblackberry-now-for-blackberry-os10-2','','','2013-02-02 19:26:56','2013-02-03 02:26:56','',0,'http:///wp-content/uploads/2013/02/wpblackberry-now-for-blackberry-os101.jpg',0,'attachment','image/jpeg',0), (1891,1,'2012-12-03 15:44:58','2012-12-03 15:44:58','','Comments List','','inherit','open','open','','screen-capture','','','2012-12-03 15:44:58','2012-12-03 15:44:58','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/12/screen-capture.jpg',0,'attachment','image/jpeg',0), (1892,8,'2012-12-03 15:44:58','2012-12-03 15:44:58','','Comments List','','inherit','open','open','','screen-capture-4','','','2012-12-03 15:44:58','2012-12-03 15:44:58','',0,'http:///wp-content/uploads/2012/12/screen-capture1.jpg',0,'attachment','image/jpeg',0), (1893,1,'2012-12-07 01:58:02','2012-12-07 01:58:02','','wpwindowsphone-1-8-comment-moderation','','inherit','open','open','','wpwindowsphone-1-8-comment-moderation','','','2012-12-07 01:58:02','2012-12-07 01:58:02','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2012/12/wpwindowsphone-1-8-comment-moderation.png',0,'attachment','image/png',0), (1894,1,'2013-02-26 10:37:26','2013-02-26 10:37:26','','Fire Hydrant','','inherit','open','open','','02-6','','','2013-02-26 10:37:26','2013-02-26 10:37:26','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/02.jpeg',0,'attachment','image/jpeg',0), (1895,6,'2012-12-07 01:58:02','2012-12-07 01:58:02','','wpwindowsphone-1-8-comment-moderation','','inherit','open','open','','wpwindowsphone-1-8-comment-moderation-2','','','2012-12-07 01:58:02','2012-12-07 01:58:02','',0,'http:///wp-content/uploads/2012/12/wpwindowsphone-1-8-comment-moderation1.png',0,'attachment','image/png',0), (2019,1,'2014-06-27 16:24:12','2014-06-27 16:24:12','','reader-@2x','','inherit','open','closed','','reader-2x','','','2014-06-27 16:24:12','2014-06-27 16:24:12','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/06/reader-2x1.png',0,'attachment','image/png',0), (2044,10,'2014-06-27 21:52:06','2014-06-27 21:52:06','','landscape','','inherit','open','closed','','landscape-2-2','','','2014-06-27 21:52:06','2014-06-27 21:52:06','',0,'http:///wp-content/uploads/2014/06/landscape.png',0,'attachment','image/png',0), (2053,1,'2014-07-09 00:47:23','2014-07-09 00:47:23','','stats-2x','','inherit','open','closed','','stats-2x','','','2014-07-09 00:47:23','2014-07-09 00:47:23','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/07/stats-2x3.png',0,'attachment','image/png',0), (2063,1,'2014-07-16 06:41:04','2014-07-16 06:41:04','','3-9-image','','inherit','open','closed','','3-9-image','','','2014-07-16 06:41:04','2014-07-16 06:41:04','',1528,'http://apps.wordpressorg.dev/wp-content/uploads/2014/07/3-9-image.jpg',0,'attachment','image/jpeg',0), (2066,1,'2014-07-16 06:43:04','2014-07-16 06:43:04','','stats-2','','inherit','open','closed','','stats-2-2','','','2014-07-16 06:43:04','2014-07-16 06:43:04','',1542,'http://apps.wordpressorg.dev/wp-content/uploads/2014/07/stats-21.png',0,'attachment','image/png',0), (2070,14,'2014-07-16 07:03:13','2014-07-16 07:03:13','','blog-discovery-feature','','inherit','open','closed','','blog-discovery-feature-3','','','2014-07-16 07:03:13','2014-07-16 07:03:13','',1065,'http:///wp-content/uploads/2014/07/blog-discovery-feature21.gif',0,'attachment','image/gif',0), (2073,14,'2014-07-16 07:05:48','2014-07-16 07:05:48','','gingerbread-man1','','inherit','open','closed','','gingerbread-man1','','','2014-07-16 07:05:48','2014-07-16 07:05:48','',1037,'http:///wp-content/uploads/2014/07/gingerbread-man11.png',0,'attachment','image/png',0), (2076,14,'2014-07-16 07:07:30','2014-07-16 07:07:30','','pull-to-refresh','','inherit','open','closed','','pull-to-refresh-3','','','2014-07-16 07:07:30','2014-07-16 07:07:30','',990,'http:///wp-content/uploads/2014/07/pull-to-refresh.gif',0,'attachment','image/gif',0), (2079,14,'2014-07-16 07:09:11','2014-07-16 07:09:11','','android26','','inherit','open','closed','','android26-2-2','','','2014-07-16 07:09:11','2014-07-16 07:09:11','',965,'http:///wp-content/uploads/2014/07/android261.png',0,'attachment','image/png',0), (2114,16,'2014-07-28 12:21:25','2014-07-28 12:21:25','','screencap-geotagging-3','','inherit','open','closed','','screencap-2014-07-28t14-20-050200','','','2014-07-28 12:21:25','2014-07-28 12:21:25','',0,'http:///wp-content/uploads/2014/07/screencap-2014-07-28t14-20-050200.png',0,'attachment','image/png',0), (2115,16,'2014-07-28 12:21:27','2014-07-28 12:21:27','','screencap-geotagging-1','','inherit','open','closed','','screencap-2014-07-28t14-18-290200','','','2014-07-28 12:21:27','2014-07-28 12:21:27','',0,'http:///wp-content/uploads/2014/07/screencap-2014-07-28t14-18-290200.png',0,'attachment','image/png',0), (2116,16,'2014-07-28 12:22:43','2014-07-28 12:22:43','','screencap-geotagging-3','','inherit','open','closed','','screencap-2014-07-28t14-22-280200','','','2014-07-28 12:22:43','2014-07-28 12:22:43','',0,'http:///wp-content/uploads/2014/07/screencap-2014-07-28t14-22-280200.png',0,'attachment','image/png',0), (2117,1,'2014-08-05 17:09:30','2014-08-05 17:09:30','The WordPress Android app version 3.0 has been released in the Google Play Store. This release includes enhancements and bug fixes.\n

Swipe between posts in the Reader

\nYou can now navigate among posts in the selected tag by swiping them.\n\n\"\"\n

Geotagging simplified

\nGeotagging has been redesigned. We removed the geotagging option from blog settings and added a simple button in the post settings. It\'s now easier to add and remove a location to a post: to geotag a post, go to post settings and tap \"Add location.\" Then, you can use the \"Locate\" button to auto-discover your location or enter an arbitrary location in the text box.\n\n[gallery ids=\"2116,2115,2114\"]\n

Interface improvements

\n
    \n
  • We smoothed and improved some animations.
  • \n
  • Full-screen videos are now available from the Reader post details screen.
  • \n
  • We modified the scrollbar color (from dark gray to transparent white) on the blue background.
  • \n
\n

General changes

\n
    \n
  • You can contact support directly from within the app by using the “Help” button in the settings screen.
  • \n
  • A new FAQ screen is in place to help you with the app.
  • \n
  • Your WordPress.com blog list now automatically updates -- there\'s no need to refresh the list manually.
  • \n
  • We added the option to allow users to opt in an out of user behavior tracking. (We track user events to help make our app better.)
  • \n
  • Stats links now open in the app. (Previously, they opened in an external browser.)
  • \n
  • We\'re proud to support a new language: Brazilian Portuguese!
  • \n
\n

Bug fixes

\nThis version also comes with a bunch of bug fixes. Here are bug-squashing highlights from this release:\n
    \n
  • Users with Jetpack-enabled blogs can now moderate comments directly from the notification screen.
  • \n
  • We fixed an issue where devices with Hebrew as the default language displayed the app in English.
  • \n
  • Users on servers with SNI and a shared ssl certificate are now able to log in.
  • \n
  • We fixed an issue where some users were taken to a blank screen on opening the app from a push notification.
  • \n
  • We fixed a problem where deleting a post or switching to another screen caused the app to crash.
  • \n
\n

What’s next?

\nA big thanks to all of the contributors who worked on this release: @anirudh24seven, @daniloercoli, @gnima, @maxme, @mjangda, @nbradbury, @roundhill, and @sendhil! You can keep up with the development progress at http://make.wordpress.org/mobile and can also follow the app on Twitter @WPAndroid. If you need support or want to send us suggestions, please visit our forums or contact us directly in the app.','WordPress Android App Version 3.0','','publish','open','closed','','wordpress-android-app-version-3-0','','','2014-08-05 17:09:30','2014-08-05 17:09:30','',0,'http://apps.wordpress.org/?p=2117',0,'post','',2), (2190,16,'2014-08-25 11:28:24','2014-08-25 11:28:24','','native-stats-month','','inherit','open','closed','','screencap-2014-08-25t13-26-100200','','','2014-08-25 11:28:24','2014-08-25 11:28:24','',2193,'http:///wp-content/uploads/2014/08/screencap-2014-08-25t13-26-100200.png',0,'attachment','image/png',0), (2191,16,'2014-08-25 11:28:30','2014-08-25 11:28:30','','native-stats-week','','inherit','open','closed','','screencap-2014-08-25t13-26-040200','','','2014-08-25 11:28:30','2014-08-25 11:28:30','',2193,'http:///wp-content/uploads/2014/08/screencap-2014-08-25t13-26-040200.png',0,'attachment','image/png',0), (2192,16,'2014-08-25 11:28:36','2014-08-25 11:28:36','','native-stats-day','','inherit','open','closed','','screencap-2014-08-25t13-25-440200','','','2014-08-25 11:28:36','2014-08-25 11:28:36','',2193,'http:///wp-content/uploads/2014/08/screencap-2014-08-25t13-25-440200.png',0,'attachment','image/png',0), (2193,1,'2014-09-03 14:30:16','2014-09-03 14:30:16','The WordPress Android app version 3.1 is now available in the Google Play Store. This update brings robust statistics to the app experience, and makes keeping up with your favorite sites in the Reader even easier.\n

Native Statistics Details

\nNow, you can tap the bar chart in your Statistics to access more detailed stats. Tap a specific bar in the Days, Weeks, or Months views to see detailed data on your views and visitors.\n\n[gallery type=\"rectangular\" ids=\"2228,2229,2230\"]\n

General Changes

\n
    \n
  • Automatic refresh: Statistics and Reader post lists automatically refresh when you open the app, so you always see the newest data.
  • \n
  • Improved Reader experience: To make interacting on the go easier, we added comment likes to the Reader. You can also block blogs on Reader tag pages to customize your reading experience.
  • \n
  • Updated blog preview. See screenshot below:
  • \n
\n\"new-blog-preview2\"\n\n \n\nWe\'ve also temporarily disabled the live chat with Automattic support due to an issue with the library we\'re using. We expect to re-enable it in the next version or two.\n

Bug Fixes

\nThis version also comes with a bunch of bug fixes. Here\'s a non-exhaustive list:\n
    \n
  • Improved notifications synchronization, which sometimes got stuck.
  • \n
  • Fixed the ability to follow a blog by its URL.
  • \n
  • Fixed broken blockquote styling in the comments view.
  • \n
\n

What’s Next?

\nA big thanks to all of the contributors who worked on this release: @beaucollins, @daniloercoli, @maxme, @mjangda, @nbradbury, @roundhill and @sendhil! You can keep up with the development progress for the next version by visiting our 3.2 milestone on GitHub or by following us on Twitter @WPAndroid.\n\nBeta testers have access to beta versions with beta updates shipped directly through Google Play. The beta versions may have new features, new fixes, and possibly new bugs. If you want to join them, request access on our Google+ Community.','WordPress Android App Version 3.1','','publish','open','closed','','wordpress-android-app-version-3-1','','','2014-09-03 14:30:16','2014-09-03 14:30:16','',0,'http://apps.wordpress.org/?p=2193',0,'post','',2), (2203,16,'2014-08-26 14:39:38','2014-08-26 14:39:38','','new-blog-preview','','inherit','open','closed','','new-blog-preview','','','2014-08-26 14:39:38','2014-08-26 14:39:38','',2193,'http:///wp-content/uploads/2014/08/new-blog-preview.png',0,'attachment','image/png',0), (2205,1,'2014-08-26 14:47:15','2014-08-26 14:47:15','','new-blog-preview2','','inherit','open','closed','','new-blog-preview2','','','2014-08-26 14:47:15','2014-08-26 14:47:15','',2193,'http://apps.wordpressorg.dev/wp-content/uploads/2014/08/new-blog-preview21.png',0,'attachment','image/png',0), (2207,1,'2014-09-04 15:18:37','2014-09-04 15:18:37','WordPress for iOS 4.3 is here! The download is available from the App Store. Here\'s a glimpse at the latest updates:\n

Various stats improvements

\nWe know you love checking your stats on the go, wherever you may be. On your Stats page, you can now see more details in the stats chart in your Visitors and Views. Just tap on any view -- Days, Weeks, Months -- and then click on a particular day, week, or month to view specific views and visitors stats for that item.\n\n[gallery type=\"rectangular\" ids=\"2208,2210,2209\"]\n

Follow more sites in your Reader

\nYou can now follow a blog or website, on WordPress.com and elsewhere on the web, by adding its URL. In your Reader, click on the tag at the top right of the screen, and enter the URL of the site you\'d like to follow:\n\n\"Photo\n\nAfter you click \"Done,\" you\'ll see a \"Followed\" message on the screen that confirms you\'ve successfully followed the site.\n

Other updates and fixes

\nIn addition, we\'ve provided initial support for iOS 8 in preparation for upcoming features -- we\'re excited about what\'s to come! We\'ve also released numerous stability updates, including fixes for errors that affected some users, including a crash when opening the Reader, as well as an error for live chat users who were unable to follow up on their support requests.\n\nAs usual, we\'re hard at work on the next release, which will include an iOS 8 \"Today\" extension to view stats, a major interface update for notifications and a limited rollout of a new WYSIWYG post editor.\n\nMany thanks to the contributors who worked on this release: Aaron Douglas, Brad Angelcyk, Cyril Chandelier, Dan Roundhill, David Filip, Eric Johnson, Jorge Bernal, Jorge Leandro Perez, Matt Bumgardner, Oguz Kocer and Sendhil Panchadsaram.\n\nIf you have feedback, please leave a comment below or tweet us @WordPressiOS. Thanks!','WordPress for iOS 4.3 Released','','publish','open','closed','','4-3-release','','','2014-09-04 15:18:37','2014-09-04 15:18:37','',0,'http://apps.wordpress.org/?p=2207',0,'post','',0), (2214,1,'2014-08-26 16:52:07','2014-08-26 16:52:07','','Photo Aug 26, 9 49 28 AM','','inherit','open','closed','','photo-aug-26-9-49-28-am','','','2014-08-26 16:52:07','2014-08-26 16:52:07','',2207,'http://apps.wordpressorg.dev/wp-content/uploads/2014/08/photo-aug-26-9-49-28-am.png',0,'attachment','image/png',0), (2228,1,'2014-09-04 13:04:39','2014-09-04 13:04:39','','native-stats-day','','inherit','open','closed','','native-stats-day','','','2014-09-04 13:04:39','2014-09-04 13:04:39','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/09/native-stats-day.png',0,'attachment','image/png',0), (2229,1,'2014-09-04 13:04:45','2014-09-04 13:04:45','','native-stats-week','','inherit','open','closed','','native-stats-week','','','2014-09-04 13:04:45','2014-09-04 13:04:45','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/09/native-stats-week.png',0,'attachment','image/png',0), (2230,1,'2014-09-04 13:04:48','2014-09-04 13:04:48','','native-stats-month','','inherit','open','closed','','native-stats-month','','','2014-09-04 13:04:48','2014-09-04 13:04:48','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/09/native-stats-month.png',0,'attachment','image/png',0), (2249,1,'2013-01-03 14:49:04','2013-01-03 14:49:04','','featured','','inherit','open','open','','featured','','','2013-01-03 14:49:04','2013-01-03 14:49:04','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/01/featured.jpg',0,'attachment','image/jpeg',0), (2250,8,'2013-01-03 14:49:04','2013-01-03 14:49:04','','featured','','inherit','open','open','','featured-2','','','2013-01-03 14:49:04','2013-01-03 14:49:04','',0,'http:///wp-content/uploads/2013/01/featured1.jpg',0,'attachment','image/jpeg',0), (2251,6,'2013-01-05 23:38:28','2013-01-05 23:38:28','','wpwindowsphone-1-8-featured-images-editor-reliability','','inherit','open','open','','wpwindowsphone-1-8-featured-images-editor-reliability','','','2013-01-05 23:38:28','2013-01-05 23:38:28','',0,'http:///wp-content/uploads/2013/01/wpwindowsphone-1-8-featured-images-editor-reliability1.png',0,'attachment','image/png',0), (2252,1,'2013-01-05 23:38:28','2013-01-05 23:38:28','','wpwindowsphone-1-8-featured-images-editor-reliability','','inherit','open','open','','wpwindowsphone-1-8-featured-images-editor-reliability-2','','','2013-01-05 23:38:28','2013-01-05 23:38:28','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/01/wpwindowsphone-1-8-featured-images-editor-reliability.png',0,'attachment','image/png',0), (2253,8,'2013-02-26 10:37:38','2013-02-26 10:37:38','','Rooftops','','inherit','open','open','','04-5-2','','','2013-02-26 10:37:38','2013-02-26 10:37:38','',0,'http:///wp-content/uploads/2013/02/041.jpeg',0,'attachment','image/jpeg',0), (2254,1,'2013-02-26 10:37:51','2013-02-26 10:37:51','','Restaurant','','inherit','open','open','','06-3-2','','','2013-02-26 10:37:51','2013-02-26 10:37:51','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/06.jpeg',0,'attachment','image/jpeg',0), (2255,1,'2013-02-26 10:37:59','2013-02-26 10:37:59','','Bird','','inherit','open','open','','08-2','','','2013-02-26 10:37:59','2013-02-26 10:37:59','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/081.jpeg',0,'attachment','image/jpeg',0), (2256,1,'2013-02-26 10:38:05','2013-02-26 10:38:05','','Cold Water','','inherit','open','open','','09','','','2013-02-26 10:38:05','2013-02-26 10:38:05','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/091.jpeg',0,'attachment','image/jpeg',0), (2257,8,'2013-02-26 11:23:15','2013-02-26 11:23:15','','01-dashboard','','inherit','open','open','','01-dashboard-2','','','2013-02-26 11:23:15','2013-02-26 11:23:15','',0,'http:///wp-content/uploads/2013/02/01-dashboard.png',0,'attachment','image/png',0), (2258,8,'2013-02-26 11:23:25','2013-02-26 11:23:25','','04 - gellery-settings','','inherit','open','open','','04-gellery-settings-2','','','2013-02-26 11:23:25','2013-02-26 11:23:25','',0,'http:///wp-content/uploads/2013/02/04-gellery-settings1.jpg',0,'attachment','image/jpeg',0), (2259,6,'2013-02-27 23:16:42','2013-02-27 23:16:42','','wpwindowsphone-2.0-dashboard-and-website-access','','inherit','open','open','','wpwindowsphone-2-0-dashboard-and-website-access','','','2013-02-27 23:16:42','2013-02-27 23:16:42','',0,'http:///wp-content/uploads/2013/02/wpwindowsphone-2-0-dashboard-and-website-access1.png',0,'attachment','image/png',0), (2260,8,'2013-04-08 16:50:00','2013-04-08 16:50:00','','VE-01','','inherit','open','open','','ve-01-2','','','2013-04-08 16:50:00','2013-04-08 16:50:00','',0,'http:///wp-content/uploads/2013/04/ve-011.jpg',0,'attachment','image/jpeg',0), (2261,8,'2013-04-08 16:50:05','2013-04-08 16:50:05','','VE-02','','inherit','open','open','','ve-02','','','2013-04-08 16:50:05','2013-04-08 16:50:05','',0,'http:///wp-content/uploads/2013/04/ve-021.jpg',0,'attachment','image/jpeg',0), (2262,8,'2013-04-08 16:50:44','2013-04-08 16:50:44','','VE-04','','inherit','open','open','','ve-04-2','','','2013-04-08 16:50:44','2013-04-08 16:50:44','',0,'http:///wp-content/uploads/2013/04/ve-041.png',0,'attachment','image/png',0), (2263,8,'2013-04-08 16:54:45','2013-04-08 16:54:45','','VE-70','','inherit','open','open','','ve-70-2','','','2013-04-08 16:54:45','2013-04-08 16:54:45','',0,'http:///wp-content/uploads/2013/04/ve-701.png',0,'attachment','image/png',0), (2264,1,'2013-02-26 10:37:43','2013-02-26 10:37:43','','Balcony','','inherit','open','open','','05-4','','','2013-02-26 10:37:43','2013-02-26 10:37:43','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/05.jpeg',0,'attachment','image/jpeg',0), (2265,8,'2013-02-26 10:37:43','2013-02-26 10:37:43','','Balcony','','inherit','open','open','','05-4-2','','','2013-02-26 10:37:43','2013-02-26 10:37:43','',0,'http:///wp-content/uploads/2013/02/051.jpeg',0,'attachment','image/jpeg',0), (2266,1,'2013-04-08 16:44:13','2013-04-08 16:44:13','','VE-00','','inherit','open','open','','ve-00','','','2013-04-08 16:44:13','2013-04-08 16:44:13','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/ve-00.png',0,'attachment','image/png',0), (2267,1,'2013-02-26 11:23:19','2013-02-26 11:23:19','','02 - write screen','','inherit','open','open','','02-write-screen','','','2013-02-26 11:23:19','2013-02-26 11:23:19','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/02-write-screen.jpg',0,'attachment','image/jpeg',0), (2268,8,'2013-04-08 16:44:13','2013-04-08 16:44:13','','VE-00','','inherit','open','open','','ve-00-2','','','2013-04-08 16:44:13','2013-04-08 16:44:13','',0,'http:///wp-content/uploads/2013/04/ve-001.png',0,'attachment','image/png',0), (2269,1,'2013-02-26 11:23:22','2013-02-26 11:23:22','','03- gallery settings','','inherit','open','open','','03-gallery-settings','','','2013-02-26 11:23:22','2013-02-26 11:23:22','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/03-gallery-settings.jpg',0,'attachment','image/jpeg',0), (2270,8,'2013-02-26 10:37:55','2013-02-26 10:37:55','','Boardwalk','','inherit','open','open','','07','','','2013-02-26 10:37:55','2013-02-26 10:37:55','',0,'http:///wp-content/uploads/2013/02/07.jpeg',0,'attachment','image/jpeg',0), (2271,1,'2013-02-26 10:37:55','2013-02-26 10:37:55','','Boardwalk','','inherit','open','open','','07-2','','','2013-02-26 10:37:55','2013-02-26 10:37:55','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/071.jpeg',0,'attachment','image/jpeg',0), (2272,8,'2013-04-08 16:50:50','2013-04-08 16:50:50','','PNs-01','','inherit','open','open','','pns-01','','','2013-04-08 16:50:50','2013-04-08 16:50:50','',0,'http:///wp-content/uploads/2013/04/pns-01.jpg',0,'attachment','image/jpeg',0), (2273,1,'2013-04-08 16:50:50','2013-04-08 16:50:50','','PNs-01','','inherit','open','open','','pns-01-2','','','2013-04-08 16:50:50','2013-04-08 16:50:50','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/pns-011.jpg',0,'attachment','image/jpeg',0), (2274,8,'2013-04-08 16:50:55','2013-04-08 16:50:55','','PNs-02','','inherit','open','open','','pns-02','','','2013-04-08 16:50:55','2013-04-08 16:50:55','',0,'http:///wp-content/uploads/2013/04/pns-02.jpg',0,'attachment','image/jpeg',0), (2275,1,'2013-04-08 16:50:55','2013-04-08 16:50:55','','PNs-02','','inherit','open','open','','pns-02-2','','','2013-04-08 16:50:55','2013-04-08 16:50:55','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/pns-021.jpg',0,'attachment','image/jpeg',0), (2276,6,'2013-02-27 22:44:14','2013-02-27 22:44:14','','wpwindowsphone-2.0-gallery-support','','inherit','open','open','','wpwindowsphone-2-0-gallery-support','','','2013-02-27 22:44:14','2013-02-27 22:44:14','',0,'http:///wp-content/uploads/2013/02/wpwindowsphone-2-0-gallery-support.png',0,'attachment','image/png',0), (2277,1,'2013-02-27 22:44:14','2013-02-27 22:44:14','','wpwindowsphone-2.0-gallery-support','','inherit','open','open','','wpwindowsphone-2-0-gallery-support-2','','','2013-02-27 22:44:14','2013-02-27 22:44:14','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/02/wpwindowsphone-2-0-gallery-support1.png',0,'attachment','image/png',0), (2278,1,'2013-04-10 10:24:08','2013-04-10 18:24:08','','galaxys3-reader-port','','inherit','open','open','','galaxys3-reader-port-2','','','2013-04-10 10:24:08','2013-04-10 18:24:08','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/galaxys3-reader-port1.png',0,'attachment','image/png',0), (2279,1,'2013-04-10 10:24:24','2013-04-10 18:24:24','','Menu Drawer','Easily navigate the app with the Menu Drawer.','inherit','open','open','','galaxys3-posts-port-open-2','','','2013-04-10 10:24:24','2013-04-10 18:24:24','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/galaxys3-posts-port-open1.png',0,'attachment','image/png',0), (2280,1,'2013-04-16 14:40:07','2013-04-16 22:40:07','','featured-graphic','','inherit','open','open','','featured-graphic-2','','','2013-04-16 14:40:07','2013-04-16 22:40:07','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/featured-graphic1.jpg',0,'attachment','image/jpeg',0), (2281,1,'2013-04-16 14:52:25','2013-04-16 22:52:25','','','','inherit','open','open','','featured-graphic-holo-update-2','','','2013-04-16 14:52:25','2013-04-16 22:52:25','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/featured-graphic-holo-update1.jpg',0,'attachment','image/jpeg',0), (2282,1,'2013-04-17 00:39:49','2013-04-17 08:39:49','','Version 2.3 of WordPress for Android: menu drawer and action bar','','inherit','open','open','','wordpress-for-android-version-2-3-devices-2','','','2013-04-17 00:39:49','2013-04-17 08:39:49','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/wordpress-for-android-version-2-3-devices1.jpg',0,'attachment','image/jpeg',0), (2283,1,'2013-04-17 00:50:47','2013-04-17 08:50:47','','Version 2.3 of WordPress for Android: action bar on a Nexus 7','','inherit','open','open','','wordpress-for-android-version-2-3-action-bar-on-nexus-7-2','','','2013-04-17 00:50:47','2013-04-17 08:50:47','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/wordpress-for-android-version-2-3-action-bar-on-nexus-71.jpg',0,'attachment','image/jpeg',0), (2284,1,'2013-04-17 00:58:56','2013-04-17 08:58:56','','Version 2.3 of WordPress for Android: menu drawer on Samsung Galaxy S3','','inherit','open','open','','wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-2','','','2013-04-17 00:58:56','2013-04-17 08:58:56','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s31.jpg',0,'attachment','image/jpeg',0), (2285,1,'2013-04-17 01:39:38','2013-04-17 09:39:38','','wordpress-for-android-version-2-3-featured-action-bar','','inherit','open','open','','wordpress-for-android-version-2-3-featured-action-bar-2','','','2013-04-17 01:39:38','2013-04-17 09:39:38','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/wordpress-for-android-version-2-3-featured-action-bar1.jpg',0,'attachment','image/jpeg',0), (2286,6,'2013-04-17 01:45:12','2013-04-17 09:45:12','','Posts in the Menu Drawer','','inherit','open','open','','wordpress-for-android-version-2-3-featured-menu-drawer-2-2','','','2013-04-17 01:45:12','2013-04-17 09:45:12','',0,'http:///wp-content/uploads/2013/04/wordpress-for-android-version-2-3-featured-menu-drawer1.png',0,'attachment','image/png',0), (2287,1,'2013-04-17 01:45:15','2013-04-17 09:45:15','','The App Bar on the Posts screen','','inherit','open','open','','wordpress-for-android-version-2-3-featured-action-bar-3-2','','','2013-04-17 01:45:15','2013-04-17 09:45:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/wordpress-for-android-version-2-3-featured-action-bar1.png',0,'attachment','image/png',0), (2288,6,'2013-04-17 10:44:58','2013-04-17 18:44:58','','featured-graphic-holo-update2','','inherit','open','open','','featured-graphic-holo-update2-2','','','2013-04-17 10:44:58','2013-04-17 18:44:58','',0,'http:///wp-content/uploads/2013/04/featured-graphic-holo-update2.jpg',0,'attachment','image/jpeg',0), (2289,1,'2013-04-18 14:11:32','2013-04-18 22:11:32','','featured-graphic-holo-update3','','inherit','open','open','','featured-graphic-holo-update3','','','2013-04-18 14:11:32','2013-04-18 22:11:32','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/featured-graphic-holo-update3.jpg',0,'attachment','image/jpeg',0), (2290,1,'2013-04-18 14:14:18','2013-04-18 22:14:18','','wordpress-for-android-version-2-3-devices2','','inherit','open','open','','wordpress-for-android-version-2-3-devices2','','','2013-04-18 14:14:18','2013-04-18 22:14:18','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/wordpress-for-android-version-2-3-devices21.jpg',0,'attachment','image/jpeg',0), (2291,1,'2013-04-18 14:17:18','2013-04-18 22:17:18','','wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update','','inherit','open','open','','wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update-2','','','2013-04-18 14:17:18','2013-04-18 22:17:18','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/wordpress-for-android-version-2-3-menu-drawer-on-samsung-galaxy-s3-update1.jpg',0,'attachment','image/jpeg',0), (2292,9,'2013-05-27 09:10:56','2013-05-27 17:10:56','','notifications','','inherit','open','open','','notifications-2-2','','','2013-05-27 09:10:56','2013-05-27 17:10:56','',0,'http:///wp-content/uploads/2013/05/notifications.jpg',0,'attachment','image/jpeg',0), (2293,6,'2013-04-11 06:23:27','2013-04-11 06:23:27','','Screenshot of Version 2.1 of WordPress for Windows Phone: Rich Text Editor and Comment Push Notifications','','inherit','open','open','','wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor','','','2013-04-11 06:23:27','2013-04-11 06:23:27','',0,'http:///wp-content/uploads/2013/04/wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor.png',0,'attachment','image/png',0), (2294,1,'2013-04-11 06:23:27','2013-04-11 06:23:27','','Screenshot of Version 2.1 of WordPress for Windows Phone: Rich Text Editor and Comment Push Notifications','','inherit','open','open','','wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor-2','','','2013-04-11 06:23:27','2013-04-11 06:23:27','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/04/wpwindowsphone-2-0-comment-push-notifications-and-rich-text-editor1.png',0,'attachment','image/png',0), (2295,1,'2013-05-29 15:24:56','2013-05-29 23:24:56','','Pending notifications in the notification center','See what\'s going on with your blog quickly.','inherit','open','open','','wordpress-for-android-notification-center-pending-2','','','2013-05-29 15:24:56','2013-05-29 23:24:56','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/05/wordpress-for-android-notification-center-pending1.png',0,'attachment','image/png',0), (2296,1,'2013-05-29 15:26:39','2013-05-29 23:26:39','','Replying to comments from the notification center','Reply to comments with ease.','inherit','open','open','','wordpress-for-android-reply-to-comment-from-notification-center-2','','','2013-05-29 15:26:39','2013-05-29 23:26:39','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/05/wordpress-for-android-reply-to-comment-from-notification-center1.png',0,'attachment','image/png',0), (2297,9,'2013-08-08 08:31:38','2013-08-08 16:31:38','','categories-select','Category selection screen.','inherit','open','open','','categories-select-2','','','2013-08-08 08:31:38','2013-08-08 16:31:38','',0,'http:///wp-content/uploads/2013/08/categories-select.png',0,'attachment','image/png',0), (2298,9,'2013-10-16 14:46:31','2013-10-16 22:46:31','','device-2013-10-16-154614','','inherit','open','open','','device-2013-10-16-154614-2','','','2013-10-16 14:46:31','2013-10-16 22:46:31','',0,'http:///wp-content/uploads/2013/10/device-2013-10-16-1546141.png',0,'attachment','image/png',0), (2299,9,'2013-10-16 14:47:03','2013-10-16 22:47:03','','device-2013-10-16-151357','','inherit','open','open','','device-2013-10-16-151357-2','','','2013-10-16 14:47:03','2013-10-16 22:47:03','',0,'http:///wp-content/uploads/2013/10/device-2013-10-16-1513571.png',0,'attachment','image/png',0), (2300,9,'2013-10-16 14:47:12','2013-10-16 22:47:12','','device-2013-10-16-151831','Use search in the new Theme Browser to find your new theme.','inherit','open','open','','device-2013-10-16-151831-2','','','2013-10-16 14:47:12','2013-10-16 22:47:12','',0,'http:///wp-content/uploads/2013/10/device-2013-10-16-1518311.png',0,'attachment','image/png',0), (2301,9,'2013-10-16 14:47:24','2013-10-16 22:47:24','','device-2013-10-16-151933','','inherit','open','open','','device-2013-10-16-151933-2','','','2013-10-16 14:47:24','2013-10-16 22:47:24','',0,'http:///wp-content/uploads/2013/10/device-2013-10-16-1519331.png',0,'attachment','image/png',0), (2302,4,'2013-06-03 10:26:07','2013-06-03 10:26:07','','WordPress for iOS 3.6','','inherit','open','open','','nux-screenshot-iphone5-2','','','2013-06-03 10:26:07','2013-06-03 10:26:07','',0,'http:///wp-content/uploads/2013/06/nux-screenshot-iphone51.png',0,'attachment','image/png',0), (2303,1,'2013-06-03 17:53:15','2013-06-03 17:53:15','','wpios-3-6-nux-ribbon','','inherit','open','open','','wpios-3-6-nux-ribbon-2','','','2013-06-03 17:53:15','2013-06-03 17:53:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/06/wpios-3-6-nux-ribbon11.jpg',0,'attachment','image/jpeg',0), (2304,4,'2013-08-14 12:08:50','2013-08-14 12:08:50','','New native reader','','inherit','open','open','','wpios-3-7','','','2013-08-14 12:08:50','2013-08-14 12:08:50','',0,'http:///wp-content/uploads/2013/08/wpios-3-7.png',0,'attachment','image/png',0), (2305,4,'2013-08-14 12:22:02','2013-08-14 12:22:02','','wpios-3-7-reader','','inherit','open','open','','wpios-3-7-reader','','','2013-08-14 12:22:02','2013-08-14 12:22:02','',0,'http:///wp-content/uploads/2013/08/wpios-3-7-reader.jpg',0,'attachment','image/jpeg',0), (2306,4,'2013-09-18 11:10:33','2013-09-18 11:10:33','','announcement-ios7-02','','inherit','open','open','','announcement-ios7-02-2-2','','','2013-09-18 11:10:33','2013-09-18 11:10:33','',0,'http:///wp-content/uploads/2013/09/announcement-ios7-021.png',0,'attachment','image/png',0), (2307,4,'2013-09-18 11:53:01','2013-09-18 11:53:01','','WordPress for iOS App Icon Fall 2013','The new app icon','inherit','open','open','','announcement-ios7-01-2','','','2013-09-18 11:53:01','2013-09-18 11:53:01','',0,'http:///wp-content/uploads/2013/09/announcement-ios7-011.png',0,'attachment','image/png',0), (2308,4,'2013-09-20 20:13:17','2013-09-20 20:13:17','','WordPress for iOS featured in the US App Store on September 20, 2013','','inherit','open','open','','wordpress-ios-social-networking-featured-screenshot-large-2','','','2013-09-20 20:13:17','2013-09-20 20:13:17','',0,'http:///wp-content/uploads/2013/09/wordpress-ios-social-networking-featured-screenshot-large1.png',0,'attachment','image/png',0), (2309,9,'2013-08-08 08:31:41','2013-08-08 16:31:41','','categories-edit-post','Tap on a category to remove it from the post.','inherit','open','open','','categories-edit-post','','','2013-08-08 08:31:41','2013-08-08 16:31:41','',0,'http:///wp-content/uploads/2013/08/categories-edit-post.png',0,'attachment','image/png',0), (2310,1,'2013-08-16 10:39:58','2013-08-16 18:39:58','','Post Excerpt','New excerpt field added to the post editor.','inherit','open','open','','post-excerpt-2','','','2013-08-16 10:39:58','2013-08-16 18:39:58','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2013/08/post-excerpt.png',0,'attachment','image/png',0), (2311,4,'2014-01-15 03:25:25','2014-01-15 03:25:25','','DSC_0202','','inherit','open','open','','dsc_0202-2','','','2014-01-15 03:25:25','2014-01-15 03:25:25','',0,'http:///wp-content/uploads/2014/01/dsc_0202.jpg',0,'attachment','image/jpeg',0), (2312,1,'2014-01-15 04:20:15','2014-01-15 04:20:15','','logo','','inherit','open','open','','logo-2','','','2014-01-15 04:20:15','2014-01-15 04:20:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/logo1.png',0,'attachment','image/png',0), (2313,1,'2014-01-15 04:37:13','2014-01-15 04:37:13','','logo','','inherit','open','open','','logo-2-3','','','2014-01-15 04:37:13','2014-01-15 04:37:13','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/logo12.png',0,'attachment','image/png',0), (2314,1,'2014-01-15 06:54:15','2014-01-15 06:54:15','','DSC_0199','','inherit','open','open','','dsc_0199-2','','','2014-01-15 06:54:15','2014-01-15 06:54:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/dsc_01991.jpg',0,'attachment','image/jpeg',0), (2315,1,'2014-01-15 06:56:24','2014-01-15 06:56:24','','DSC_0199b','','inherit','open','open','','dsc_0199b-2','','','2014-01-15 06:56:24','2014-01-15 06:56:24','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/dsc_0199b1.jpg',0,'attachment','image/jpeg',0), (2316,1,'2014-01-16 03:35:15','2014-01-16 03:35:15','','colors','','inherit','open','open','','colors-2','','','2014-01-16 03:35:15','2014-01-16 03:35:15','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/colors1.jpg',0,'attachment','image/jpeg',0), (2317,1,'2014-01-16 03:42:59','2014-01-16 03:42:59','','announcement-ios7-02','','inherit','open','open','','announcement-ios7-02-3','','','2014-01-16 03:42:59','2014-01-16 03:42:59','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/announcement-ios7-021.png',0,'attachment','image/png',0), (2318,1,'2014-01-16 03:48:28','2014-01-16 03:48:28','','DSC01390','','inherit','open','open','','dsc01390-2-2','','','2014-01-16 03:48:28','2014-01-16 03:48:28','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/dsc0139012.jpg',0,'attachment','image/jpeg',0), (2319,1,'2014-01-17 02:04:28','2014-01-17 02:04:28','','DSC013902','','inherit','open','open','','dsc013902-2','','','2014-01-17 02:04:28','2014-01-17 02:04:28','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/dsc0139021.jpg',0,'attachment','image/jpeg',0), (2320,9,'2013-10-16 14:47:35','2013-10-16 22:47:35','','device-2013-10-16-152325','','inherit','open','open','','device-2013-10-16-152325-2','','','2013-10-16 14:47:35','2013-10-16 22:47:35','',0,'http:///wp-content/uploads/2013/10/device-2013-10-16-152325.png',0,'attachment','image/png',0), (2321,9,'2013-10-16 14:47:39','2013-10-16 22:47:39','','device-2013-10-16-152459','','inherit','open','open','','device-2013-10-16-152459-2','','','2013-10-16 14:47:39','2013-10-16 22:47:39','',0,'http:///wp-content/uploads/2013/10/device-2013-10-16-1524591.png',0,'attachment','image/png',0), (2322,9,'2013-10-16 14:47:44','2013-10-16 22:47:44','','device-2013-10-16-152614','','inherit','open','open','','device-2013-10-16-152614-2','','','2013-10-16 14:47:44','2013-10-16 22:47:44','',0,'http:///wp-content/uploads/2013/10/device-2013-10-16-1526141.png',0,'attachment','image/png',0), (2323,9,'2013-10-21 12:12:11','2013-10-21 20:12:11','','WordPress for Android: Native Stats, Theme Browser for WordPress.com, Media Library Support','','inherit','open','open','','android-2-5-promo-2','','','2013-10-21 12:12:11','2013-10-21 20:12:11','',0,'http:///wp-content/uploads/2013/10/android-2-5-promo1.png',0,'attachment','image/png',0), (2324,6,'2013-11-12 19:54:38','2013-11-13 03:54:38','','wordpress-for-android-samsung-galaxy-s3','','inherit','open','open','','wordpress-for-android-samsung-galaxy-s3-2','','','2013-11-12 19:54:38','2013-11-13 03:54:38','',0,'http:///wp-content/uploads/2013/11/wordpress-for-android-samsung-galaxy-s31.jpg',0,'attachment','image/jpeg',0), (2325,9,'2014-01-27 13:16:54','2014-01-27 21:16:54','','WordPress for Android 2.6','','inherit','open','open','','android26-2','','','2014-01-27 13:16:54','2014-01-27 21:16:54','',965,'http:///wp-content/uploads/2014/01/android261.png',0,'attachment','image/png',0), (2326,1,'2014-01-17 06:38:05','2014-01-17 06:38:05','','chart','','inherit','open','open','','chart','','','2014-01-17 06:38:05','2014-01-17 06:38:05','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/chart.png',0,'attachment','image/png',0), (2327,1,'2014-01-17 06:39:35','2014-01-17 06:39:35','','paint','','inherit','open','open','','paint','','','2014-01-17 06:39:35','2014-01-17 06:39:35','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/paint.png',0,'attachment','image/png',0), (2328,4,'2014-01-17 06:39:35','2014-01-17 06:39:35','','paint','','inherit','open','open','','paint-2','','','2014-01-17 06:39:35','2014-01-17 06:39:35','',0,'http:///wp-content/uploads/2014/01/paint1.png',0,'attachment','image/png',0), (2329,1,'2014-01-17 06:40:30','2014-01-17 06:40:30','','bubble','','inherit','open','open','','bubble','','','2014-01-17 06:40:30','2014-01-17 06:40:30','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/01/bubble.png',0,'attachment','image/png',0), (2330,4,'2014-01-17 06:40:30','2014-01-17 06:40:30','','bubble','','inherit','open','open','','bubble-2','','','2014-01-17 06:40:30','2014-01-17 06:40:30','',0,'http:///wp-content/uploads/2014/01/bubble1.png',0,'attachment','image/png',0), (2331,1,'2014-03-19 14:28:35','2014-03-19 22:28:35','','Pull to Refresh','','inherit','open','open','','pull-to-refresh-2-3','','','2014-03-19 14:28:35','2014-03-19 22:28:35','',990,'http://apps.wordpressorg.dev/wp-content/uploads/2014/03/pull-to-refresh.gif',0,'attachment','image/gif',0), (2332,1,'2014-04-24 22:25:56','2014-04-25 06:25:56','','screencap-2014-04-18T15-04-39+0800','','inherit','open','open','','screencap-2014-04-18t15-04-390800-2','','','2014-04-24 22:25:56','2014-04-25 06:25:56','',1017,'http://apps.wordpressorg.dev/wp-content/uploads/2014/04/screencap-2014-04-18t15-04-3908001.png',0,'attachment','image/png',0), (2333,1,'2014-04-24 22:26:56','2014-04-25 06:26:56','','screencap-2014-04-25T14-26-12+0800','','inherit','open','open','','screencap-2014-04-25t14-26-120800-2','','','2014-04-24 22:26:56','2014-04-25 06:26:56','',1017,'http://apps.wordpressorg.dev/wp-content/uploads/2014/04/screencap-2014-04-25t14-26-1208001.png',0,'attachment','image/png',0), (2334,16,'2014-04-24 22:32:27','2014-04-25 06:32:27','','screencap-2014-04-25T14-32-07+0800','','inherit','open','open','','screencap-2014-04-25t14-32-070800-2','','','2014-04-24 22:32:27','2014-04-25 06:32:27','',1017,'http:///wp-content/uploads/2014/04/screencap-2014-04-25t14-32-070800.png',0,'attachment','image/png',0), (2335,15,'2014-05-16 08:45:40','2014-05-16 16:45:40','','gingerbread-man','','inherit','open','open','','gingerbread-man-2','','','2014-05-16 08:45:40','2014-05-16 16:45:40','',1037,'http:///wp-content/uploads/2014/05/gingerbread-man11.png',0,'attachment','image/png',0), (2336,14,'2014-06-06 09:38:13','2014-06-06 17:38:13','','blog-discovery-feature','','inherit','open','open','','blog-discovery-feature-2-2','','','2014-06-06 09:38:13','2014-06-06 17:38:13','',1065,'http:///wp-content/uploads/2014/06/blog-discovery-feature1.gif',0,'attachment','image/gif',0), (2337,10,'2014-04-02 16:24:06','2014-04-02 16:24:06','','landscape','','inherit','open','open','','landscape-3','','','2014-04-02 16:24:06','2014-04-02 16:24:06','',0,'http:///wp-content/uploads/2014/04/landscape1.png',0,'attachment','image/png',0), (2338,10,'2014-04-02 16:43:31','2014-04-02 16:43:31','','reader','','inherit','open','open','','reader-2','','','2014-04-02 16:43:31','2014-04-02 16:43:31','',0,'http:///wp-content/uploads/2014/04/reader.png',0,'attachment','image/png',0), (2339,1,'2014-04-02 16:43:31','2014-04-02 16:43:31','','reader','','inherit','open','open','','reader-2-2','','','2014-04-02 16:43:31','2014-04-02 16:43:31','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/04/reader1.png',0,'attachment','image/png',0), (2340,10,'2014-07-09 00:47:23','2014-07-09 00:47:23','','stats-2x','','inherit','open','closed','','stats-2x-2','','','2014-07-09 00:47:23','2014-07-09 00:47:23','',0,'http:///wp-content/uploads/2014/07/stats-2x31.png',0,'attachment','image/png',0), (2341,14,'2014-07-16 06:41:04','2014-07-16 06:41:04','','3-9-image','','inherit','open','closed','','3-9-image-2','','','2014-07-16 06:41:04','2014-07-16 06:41:04','',1528,'http:///wp-content/uploads/2014/07/3-9-image1.jpg',0,'attachment','image/jpeg',0), (2342,14,'2014-07-16 06:43:04','2014-07-16 06:43:04','','stats-2','','inherit','open','closed','','stats-2-2','','','2014-07-16 06:43:04','2014-07-16 06:43:04','',1542,'http:///wp-content/uploads/2014/07/stats-211.png',0,'attachment','image/png',0), (2343,1,'2014-07-16 07:03:13','2014-07-16 07:03:13','','blog-discovery-feature','','inherit','open','closed','','blog-discovery-feature-3-2','','','2014-07-16 07:03:13','2014-07-16 07:03:13','',1065,'http://apps.wordpressorg.dev/wp-content/uploads/2014/07/blog-discovery-feature2.gif',0,'attachment','image/gif',0), (2344,1,'2014-07-16 07:05:48','2014-07-16 07:05:48','','gingerbread-man1','','inherit','open','closed','','gingerbread-man1-2','','','2014-07-16 07:05:48','2014-07-16 07:05:48','',1037,'http://apps.wordpressorg.dev/wp-content/uploads/2014/07/gingerbread-man111.png',0,'attachment','image/png',0), (2345,1,'2014-07-16 07:07:30','2014-07-16 07:07:30','','pull-to-refresh','','inherit','open','closed','','pull-to-refresh-3-2','','','2014-07-16 07:07:30','2014-07-16 07:07:30','',990,'http://apps.wordpressorg.dev/wp-content/uploads/2014/07/pull-to-refresh1.gif',0,'attachment','image/gif',0), (2346,1,'2014-07-16 07:09:11','2014-07-16 07:09:11','','android26','','inherit','open','closed','','android26-2-3','','','2014-07-16 07:09:11','2014-07-16 07:09:11','',965,'http://apps.wordpressorg.dev/wp-content/uploads/2014/07/android2611.png',0,'attachment','image/png',0), (2347,1,'2014-07-28 12:21:25','2014-07-28 12:21:25','','screencap-geotagging-3','','inherit','open','closed','','screencap-2014-07-28t14-20-050200-2','','','2014-07-28 12:21:25','2014-07-28 12:21:25','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/07/screencap-2014-07-28t14-20-0502001.png',0,'attachment','image/png',0), (2348,1,'2014-07-28 12:21:27','2014-07-28 12:21:27','','screencap-geotagging-1','','inherit','open','closed','','screencap-2014-07-28t14-18-290200-2','','','2014-07-28 12:21:27','2014-07-28 12:21:27','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/07/screencap-2014-07-28t14-18-2902001.png',0,'attachment','image/png',0), (2349,1,'2014-07-28 12:22:43','2014-07-28 12:22:43','','screencap-geotagging-3','','inherit','open','closed','','screencap-2014-07-28t14-22-280200-2','','','2014-07-28 12:22:43','2014-07-28 12:22:43','',0,'http://apps.wordpressorg.dev/wp-content/uploads/2014/07/screencap-2014-07-28t14-22-2802001.png',0,'attachment','image/png',0), (2350,1,'2014-08-25 11:28:24','2014-08-25 11:28:24','','native-stats-month','','inherit','open','closed','','screencap-2014-08-25t13-26-100200-2','','','2014-08-25 11:28:24','2014-08-25 11:28:24','',2193,'http://apps.wordpressorg.dev/wp-content/uploads/2014/08/screencap-2014-08-25t13-26-1002001.png',0,'attachment','image/png',0), (2351,1,'2014-08-25 11:28:30','2014-08-25 11:28:30','','native-stats-week','','inherit','open','closed','','screencap-2014-08-25t13-26-040200-2','','','2014-08-25 11:28:30','2014-08-25 11:28:30','',2193,'http://apps.wordpressorg.dev/wp-content/uploads/2014/08/screencap-2014-08-25t13-26-0402001.png',0,'attachment','image/png',0), (2352,1,'2014-08-25 11:28:36','2014-08-25 11:28:36','','native-stats-day','','inherit','open','closed','','screencap-2014-08-25t13-25-440200-2','','','2014-08-25 11:28:36','2014-08-25 11:28:36','',2193,'http://apps.wordpressorg.dev/wp-content/uploads/2014/08/screencap-2014-08-25t13-25-4402001.png',0,'attachment','image/png',0), (2353,1,'2014-08-26 14:39:38','2014-08-26 14:39:38','','new-blog-preview','','inherit','open','closed','','new-blog-preview-2','','','2014-08-26 14:39:38','2014-08-26 14:39:38','',2193,'http://apps.wordpressorg.dev/wp-content/uploads/2014/08/new-blog-preview1.png',0,'attachment','image/png',0), (2354,16,'2014-08-26 14:47:15','2014-08-26 14:47:15','','new-blog-preview2','','inherit','open','closed','','new-blog-preview2-2','','','2014-08-26 14:47:15','2014-08-26 14:47:15','',2193,'http:///wp-content/uploads/2014/08/new-blog-preview2.png',0,'attachment','image/png',0), (2355,1,'2014-09-16 16:24:06','2014-09-16 16:24:06','','iOS','','publish','open','open','','ios','','','2014-12-09 00:17:27','2014-12-09 00:17:27','',0,'http://apps.wordpressorg.dev/?p=2355',3,'nav_menu_item','',0), (2356,1,'2014-09-16 16:24:06','2014-09-16 16:24:06','','Download','','publish','open','open','','download','','','2014-12-09 00:17:27','2014-12-09 00:17:27','',0,'http://apps.wordpressorg.dev/?p=2356',2,'nav_menu_item','',0), (2357,17,'2014-08-26 16:52:07','2014-08-26 16:52:07','','Photo Aug 26, 9 49 28 AM','','inherit','open','closed','','photo-aug-26-9-49-28-am-2','','','2014-08-26 16:52:07','2014-08-26 16:52:07','',2207,'http:///wp-content/uploads/2014/08/photo-aug-26-9-49-28-am1.png',0,'attachment','image/png',0), (2360,16,'2014-09-04 13:04:39','2014-09-04 13:04:39','','native-stats-day','','inherit','open','closed','','native-stats-day-2','','','2014-09-04 13:04:39','2014-09-04 13:04:39','',0,'http:///wp-content/uploads/2014/09/native-stats-day1.png',0,'attachment','image/png',0), (2361,16,'2014-09-04 13:04:45','2014-09-04 13:04:45','','native-stats-week','','inherit','open','closed','','native-stats-week-2','','','2014-09-04 13:04:45','2014-09-04 13:04:45','',0,'http:///wp-content/uploads/2014/09/native-stats-week1.png',0,'attachment','image/png',0), (2362,16,'2014-09-04 13:04:48','2014-09-04 13:04:48','','native-stats-month','','inherit','open','closed','','native-stats-month-2','','','2014-09-04 13:04:48','2014-09-04 13:04:48','',0,'http:///wp-content/uploads/2014/09/native-stats-month1.png',0,'attachment','image/png',0), (2363,1,'2014-08-26 16:41:30','2014-08-26 16:41:30','','Photo Aug 26, 9 37 51 AM','Stat details for a specific day, August 20','inherit','open','closed','','photo-aug-26-9-37-51-am','','','2014-08-26 16:41:30','2014-08-26 16:41:30','',2207,'http://apps.wordpressorg.dev/wp-content/uploads/2014/08/photo-aug-26-9-37-51-am.png',0,'attachment','image/png',0), (2364,17,'2014-08-26 16:41:30','2014-08-26 16:41:30','','Photo Aug 26, 9 37 51 AM','Stat details for a specific day, August 20','inherit','open','closed','','photo-aug-26-9-37-51-am-2','','','2014-08-26 16:41:30','2014-08-26 16:41:30','',2207,'http:///wp-content/uploads/2014/08/photo-aug-26-9-37-51-am1.png',0,'attachment','image/png',0), (2365,1,'2014-08-26 16:41:32','2014-08-26 16:41:32','','Photo Aug 26, 9 38 57 AM','Stat details for July 2014','inherit','open','closed','','photo-aug-26-9-38-57-am','','','2014-08-26 16:41:32','2014-08-26 16:41:32','',2207,'http://apps.wordpressorg.dev/wp-content/uploads/2014/08/photo-aug-26-9-38-57-am.png',0,'attachment','image/png',0), (2366,17,'2014-08-26 16:41:32','2014-08-26 16:41:32','','Photo Aug 26, 9 38 57 AM','Stat details for July 2014','inherit','open','closed','','photo-aug-26-9-38-57-am-2','','','2014-08-26 16:41:32','2014-08-26 16:41:32','',2207,'http:///wp-content/uploads/2014/08/photo-aug-26-9-38-57-am1.png',0,'attachment','image/png',0), (2367,1,'2014-08-26 16:41:33','2014-08-26 16:41:33','','Photo Aug 26, 9 39 06 AM','Stat details for the week of August 4','inherit','open','closed','','photo-aug-26-9-39-06-am','','','2014-08-26 16:41:33','2014-08-26 16:41:33','',2207,'http://apps.wordpressorg.dev/wp-content/uploads/2014/08/photo-aug-26-9-39-06-am.png',0,'attachment','image/png',0), (2369,1,'2014-03-04 23:52:08','2014-03-04 23:52:08','

Inspiration strikes anytime, anywhere. WordPress: at your fingertips.

\n

Download the WordPress app:

\n[wpmobileapps_download_button platform=\"ios\" link=\"http://itunes.apple.com/us/app/wordpress/id335703880?mt=8\"]iOS[/wpmobileapps_download_button][wpmobileapps_download_button platform=\"android\" link=\"http://play.google.com/store/apps/details?id=org.wordpress.android\"]ANDROID[/wpmobileapps_download_button]','Features','','publish','closed','closed','','features-2','','','2014-03-04 23:52:08','2014-03-04 23:52:08','',0,'http://daves-macbook-pro-2.local:5757/wp/?page_id=1792',0,'page','',0), (2370,1,'2014-03-04 23:53:26','2014-03-04 23:53:26','Publish blog updates from any corner of the globe, like travel writer Chérie King, who explores the world with her iPad and a thirst for adventure. Or draft posts from the palm of your hand: you might find writer Dave Graham editing a post on his Android phone, in a Yorkshire coffee shop in the United Kingdom.','Post on the Go','','publish','closed','closed','','post-on-the-go','','','2014-03-04 23:53:26','2014-03-04 23:53:26','',2369,'http://daves-macbook-pro-2.local:5757/wp/?page_id=1794',0,'page','',0), (2371,1,'2014-03-04 23:54:17','2014-03-04 23:54:17','Sneak a peek at your visitors and views on your morning commute. Monitor your top posts and most popular stories of the day on your lunch break. Discover where your readers come from, all across the globe. Keep your finger on the pulse of your site.','WordPress Stats','','publish','closed','closed','','wordpress-stats','','','2014-03-04 23:54:17','2014-03-04 23:54:17','',2369,'http://daves-macbook-pro-2.local:5757/wp/?page_id=1796',1,'page','',0), (2372,1,'2014-03-04 23:54:37','2014-03-04 23:54:37','Catch up with your favorite sites and join the conversation anywhere, any time — like Toronto street photographer Shane Francescut, who follows popular photography tags, browses new blog post right in the Reader, and leaves likes and comments, all on his Android device.','Reader','','publish','closed','closed','','reader','','','2014-03-04 23:54:37','2014-03-04 23:54:37','',2369,'http://daves-macbook-pro-2.local:5757/wp/?page_id=1798',2,'page','',0), (2373,1,'2014-03-04 23:54:56','2014-03-04 23:54:56','Keep up with your site\'s activity, even when away from your desk. Check your notifications to keep conversations flowing with your followers, all around the world. Engage with the community you’ve built — with just a touch on your screen.','Push Notifications','','publish','closed','closed','','push-notifications','','','2014-09-16 17:25:15','2014-09-16 17:25:15','',2369,'http://daves-macbook-pro-2.local:5757/wp/?page_id=1800',3,'page','',0), (2374,1,'2014-03-04 23:55:15','2014-03-04 23:55:15','

If you’re a self-hosted user with a Jetpack-powered site, like parenting blogger Robert Loftus, you can publish posts and connect with readers from your device of choice. From notifications to sharing tools, you’ve got the entire WordPress community in your pocket.

\r\n','Jetpack Integration','','publish','closed','closed','','jetpack-integration','','','2014-09-16 16:45:22','2014-09-16 16:45:22','',2369,'http://daves-macbook-pro-2.local:5757/wp/?page_id=1802',4,'page','',0), (2375,1,'2014-03-05 20:46:54','2014-03-05 20:46:54','

User Feedback

\nIf you\'re a user or developer and would like to leave feedback about the WordPress mobile apps, contact us on our forums. Your feedback is invaluable and helps us to improve the experience, each and every day.\n\nCheck out our Requests and Feedback forums for WordPress for iOS and WordPress for Android.\n

Developers

\n

GitHub repositories:

\n\nAre you passionate about mobile development? Do you want to work on projects that improve the mobile experiences of hundreds of thousands of users around the world?\n\nIf you are a mobile developer and have a passion for enhancing the user experience on small-screen portable devices, you can contribute to the WordPress mobile apps, which are open-source projects — this means anyone, including you, can play a part in its development.\n\nFor details on how to get involved in the WordPress mobile community, take a look at the WordPress Mobile Development Handbook: a guide on tools, code, style guidelines, and more.\n\nYou should also visit the development blog to see what developers are currently working on, and the official GitHub repositories for WordPress for iOS and WordPress for Android.','Contribute','','publish','closed','closed','','contribute','','','2014-03-05 20:46:54','2014-03-05 20:46:54','',0,'http://daves-macbook-pro-2.local:5757/wp/?page_id=1824',0,'page','',0), (2376,1,'2014-09-16 16:24:15','2014-09-16 16:24:15','','Android','','publish','open','open','','android','','','2014-12-09 00:17:27','2014-12-09 00:17:27','',0,'http://apps.wordpressorg.dev/?p=2376',4,'nav_menu_item','',0), (2378,1,'2014-09-16 16:24:15','2014-09-16 16:24:15',' ','','','publish','open','open','','2378','','','2014-12-09 00:17:27','2014-12-09 00:17:27','',0,'http://apps.wordpressorg.dev/?p=2378',5,'nav_menu_item','',0), (2384,1,'2014-09-16 16:24:16','2014-09-16 16:24:16','','iOS','GitHub WordPress iOS','publish','open','open','','ios-5','','','2014-12-09 00:17:38','2014-12-09 00:17:38','',0,'http://apps.wordpressorg.dev/?p=2384',1,'nav_menu_item','',0), (2386,1,'2014-09-16 16:24:16','2014-09-16 16:24:16','','Android','GitHub WordPress Android','publish','open','open','','android-5','','','2014-12-09 00:17:38','2014-12-09 00:17:38','',0,'http://apps.wordpressorg.dev/?p=2386',2,'nav_menu_item','',0), (2387,1,'2014-09-16 16:24:16','2014-09-16 16:24:16',' ','','','publish','open','open','','2387','','','2014-12-09 00:17:27','2014-12-09 00:17:27','',0,'http://apps.wordpressorg.dev/?p=2387',6,'nav_menu_item','',0), (2388,1,'2014-09-16 16:24:16','2014-09-16 16:24:16','','Android','Twitter WordPress Android','publish','open','open','','android-6','','','2014-12-09 00:17:38','2014-12-09 00:17:38','',0,'http://apps.wordpressorg.dev/?p=2388',4,'nav_menu_item','',0), (2389,1,'2014-09-16 16:24:16','2014-09-16 16:24:16','','iOS','Twitter WordPress iOS','publish','open','open','','ios-6','','','2014-12-09 00:17:38','2014-12-09 00:17:38','',0,'http://apps.wordpressorg.dev/?p=2389',3,'nav_menu_item','',0), (2401,1,'2014-09-11 06:15:35','2014-09-11 06:15:35','

Forums

\nIf you run into issues while using your WordPress app, we encourage you to visit the forums for troubleshooting help and to view other discussions that might be helpful. In the forums, you can also provide feedback and requests for features and weigh in on future development.\n\nFor iOS users, visit the WordPress for iOS Forums.\n\nFor Android users, visit the WordPress for Android Forums.\n

FAQs

\nHere are some frequently asked questions:\n\n
\n

WordPress for iOS

\n
    \n
  1. Which version of WordPress does the App work with?
  2. \n
  3. Which devices will this work with?
  4. \n
  5. I get an “Unable to read the WordPress site on that URL” error message. What do I do ?
  6. \n
  7. I get a “Blog returned invalid data” error message. what do I do?
  8. \n
  9. I can’t login, I get a “Precondition Failed” or a “Forbidden” error message. What do I need to do?
  10. \n
  11. I can’t upload photos/videos, I get a “Failed” error message. What do I need to do?
  12. \n
  13. My blog is located in a folder, and resolves to http://example.com/blog. How do I add the blog?
  14. \n
  15. Can I adjust the size of photos uploaded from the app?
  16. \n
  17. I can save posts to local drafts but can’t figure out how to publish to the blog — what do I need to do?
  18. \n
  19. How do I delete a blog?
  20. \n
  21. I get an “XML-RPC Service are disabled on your blog”. How I can enable them on my blog?
  22. \n
  23. My Host Blocks XML-RPC Access! How do I fix that?
  24. \n
  25. Can I use SSL to encrypt the App communication?
  26. \n
  27. I’m in China and I can’t login, I get an SSL error. What do I need to do?
  28. \n
  29. How to set up set up Stats via Jetpack?
  30. \n
  31. I can’t connect to my self-hosted blog, what do I do?
  32. \n
  33. I get the error “Couldn’t Sync — Sorry, you cannot edit posts site.”
  34. \n
  35. How do I configure extra debugging for the app?
  36. \n
\n
\n

WordPress for Android

\n
    \n
  1. Which version of WordPress does the App work with?
  2. \n
  3. Which Android devices will this work with?
  4. \n
  5. How do I enable XML-RPC access to my blog?
  6. \n
  7. Can’t add my site to the app. What do I do?
  8. \n
  9. My Host Blocks XML-RPC Access! How do I fix that?
  10. \n
  11. Can I adjust the size of photos uploaded from the app?
  12. \n
  13. Can I use stats with a self-hosted blog?
  14. \n
  15. Adding a blog is taking a long time or times out. How do I fix that?
  16. \n
  17. Why do I get a “connection refused” error when on the stats tab?
  18. \n
  19. Can I use SSL to encrypt the App communication?
  20. \n
\n
\n

WordPress for iOS

\n
    \n
  1. \n

    Which version of WordPress does the App work with?

    \nWe make sure the app works with the current and two previous versions of WordPress. Earlier versions are not supported but may still work for most features.
  2. \n
  3. \n

    Which devices will this work with?

    \nThe App works with any device that is running iOS version 7 or greater.
  4. \n
  5. \n

    I get an \"Unable to read the WordPress site on that URL\" error message. What do I do ?

    \n
      \n
    1. Ensure that you\'ve typed in the URL correctly.
    2. \n
    3. If it\'s correct, make sure XML-RPC services are enabled on the blog.
    4. \n
    5. Verify that xmlrpc.php is functioning properly:\n
        \n
      1. Locate your RSD meta tag by viewing-source on your blog. It will look similar to this: <link rel=\"EditURI\" type=\"application/rsd+xml\" title=\"RSD\" href=\"http://example.com/xmlrpc.php?rsd\" />
      2. \n
      3. Next, follow the link, http://example.com/xmlrpc.php?rsd, and make sure it resolved to an XML file. Locate the WordPress API item: http://example.com/xmlrpc.php.
      4. \n
      5. Lastly, load that apiLink value into your browser. If everything is setup correctly, you should see this message: \"XML-RPC server accepts POST requests only.\"
      6. \n
      \n
    6. \n
    7. Go to the W3C Markup Validator and type in the URL of your WordPress site. If you get a response such as \"... one or more bytes that I cannot interpret as UTF-8\" that is most likely what is causing the app to have trouble with your site.
    8. \n
    9. Try with the default theme and with no active plug-in.(Trying it with the default theme and plugins disabled will help pin down where the problem is. If everything works then you go back and enable your theme and then try it again. If everything still works then you go back and activate each plugin one at a time until you find the one that is causing the breakage.)
    10. \n
    11. Turn on the \'debug mode\', that enables extended log format, and check the log file. Instructions here.
    12. \n
    \n
  6. \n
  7. \n

    I get a \"Blog returned invalid data\" error message. what do I do?

    \n
      \n
    1. A common issue that can cause errors with the App is invalid characters.  The easiest way to check is to go to the W3C Markup Validator and type in the URL of your WordPress site.  If you get a response such as \"... one or more bytes that I cannot interpret as UTF-8\" that is most likely what is causing the app to have trouble with your site.
    2. \n
    3. You can also try with the default theme and with no active plug-in.(Trying it with the default theme and plugins disabled will help pin down where the problem is. If everything works then you go back and enable your theme and then try it again. If everything still works then you go back and activate each plugin one at a time until you find the one that is causing the breakage.)
    4. \n
    5. You might be able to figure out what’s wrong by yourself by following the instructions here: http://wpiphonedev.wordpress.com/extra-debug/
    6. \n
    \n
  8. \n
  9. \n

    I can\'t login, I get a \"Precondition Failed\" or a \"Forbidden\" error message. What do I need to do?

    \nIf you receive a \"Precondition Failed\" that is most likely a mod_Security issue discussed in this WordPress Support Forum discussion.\n\nCheck with your hosting provider or system administrator to see if permissions or other issues are causing the error.
  10. \n
  11. \n

    I can\'t upload photos/videos, I get a \"Failed\" error message. What do I need to do?

    \nIf you’re running WordPress 2.9.2 or later please be sure to add the following lines to your root .htaccess file:\n\nphp_value memory_limit 128M\nphp_value upload_max_filesize 128M\nphp_value post_max_size 128M\nphp_value max_execution_time 120\n\nAdditional info here.
  12. \n
  13. \n

    My blog is located in a folder, and resolves to http://example.com/blog.  How do I add the blog?

    \nType in the full URL when adding the blog, in this case, example.com/blog.
  14. \n
  15. \n

    Can I adjust the size of photos uploaded from the app?

    \nYou can choose whether to have photos resized for faster uploading. You can choose between predefined dimensions (small/medium/large) or setting a custom resize dimension.
  16. \n
  17. \n

    I can save posts to local drafts but can\'t figure out how to publish to the blog -- what do I need to do?

    \nWhen you are ready to publish, change the status of the post (from the Settings screen) to \"Published\" and then tap \"Save.\"
  18. \n
  19. \n

    How do I delete a blog?

    \n
      \n
    1. Tap \"Me\" at the bottom of the screen
    2. \n
    3. Tap \"Edit\" in top left of the screen
    4. \n
    5. WordPress.com blogs can be hidden from the App view by using the toggle switch on the right.
    6. \n
    7. Self Hosted sites can be deleted by tapping the red \"–\" and then tap \"Remove\".
    8. \n
    \n
  20. \n
  21. \n

    I get an \"XML-RPC Service are disabled on your blog\". How I can enable them on my blog?

    \nNote: As of WordPress 3.5, XML-RPC is enabled by default. The following settings only apply to 3.4 or lower.\n
      \n
    1. Go to your blog and log in (/wp-admin).
    2. \n
    3. In the sidebar, open Settings and then select Writing.
    4. \n
    5. Under Remote Publishing, check the XML-RPC protocol checkbox.
    6. \n
    7. Click Save Changes at the bottom of the page.
    8. \n
    \n
  22. \n
  23. \n

    My Host Blocks XML-RPC Access! How do I fix that?

    \n
      \n
    1. Rename your xmlrpc.php file to something different, but only change it after the \'xmlrpc\'. Ex: xmlrpc_wp.php.
    2. \n
    3. Install this plugin.
    4. \n
    5. Read the installation instructions and activate it.
    6. \n
    7. Remove your blog from the app and add it back again.
    8. \n
    \n
  24. \n
  25. \n

    Can I use SSL to encrypt the App communication?

    \nYes. On WordPress.com blogs, all communication (done over XML-RPC)  is by default going to use an encrypted connection via SSL.  For self-hosted WordPress, if you have SSL enabled, WordPress 2.6.1 or later supports pointing the RSD information at the \"https\" version of xmlrpc.php which creates an encrypted communication link with the App.
  26. \n
  27. \n

    I\'m in China and I can\'t login, I get an SSL error. What do I need to do?

    \nThe app tried to connect to your blog using a secure connection (https) but apparently WordPress.com is being blocked in China over https connection. You can add the blog following the steps below:\n
      \n
    1. Tap the add blogs button.
    2. \n
    3. Tap on \"Add self-hosted WordPress blog\".
    4. \n
    5. Insert the URL of your blog http://your-blog-name.wordpress.com/xmlrpc.php
    6. \n
    7. Insert your Credentials and tap \"Save\".
    8. \n
    \n
  28. \n
  29. \n

    How to set up set up Stats via Jetpack?

    \nJetpack is a plugin that connects to WordPress.com and enables awesome features like stats, powered by the WordPress.com cloud infrastructure. To view your self-hosted blog\'s stats:\n
      \n
    1. Install the Jetpack plugin on your blog. To install, go to the Plugins > Add New in your dashboard, search for Jetpack, and click \"Install Now\".
    2. \n
    3. Connect the plugin to a WordPress.com account. In the Jetpack tab in your dashboard click the \"Connect to WordPress.com\" button and follow the directions.
    4. \n
    5. In the app, enter the credentials to the WordPress.com account connected to the Jetpack plugin. You can do this when prompted on the Stats screen, or by tapping Settings > Your Blog > Configure Jetpack Stats.
    6. \n
    \n
  30. \n
  31. \n

    I can\'t connect to my self-hosted blog, what do I do?

    \nIf this guide to help you make the XMLRPC endpoint accessible didn\'t help, the case might be that you\'re running a plugin on your blog that is blocking access for apps to connect to your blog.\n\nWe have a running list of WordPress plugins that can break your blog here: http://ios.forums.wordpress.org/topic/app-blocking-plugin-list?replies=1#post-5985\n\nIf you\'re running any of these plugins, please try and disable them to see if that fixes the problem.\n\nIf your plugin is not on the list but does make your site unreachable, please let us know and we\'ll add it. Feel free to nudge the developers of the respective plugins to fix the connectivity issues!
  32. \n
  33. \n

    I get the error \"Couldn\'t Sync -- Sorry, you cannot edit posts site.\"

    \nThe reason you would get this error is most likely because of one of two reasons:\n
      \n
    1. The account you have on the site doesn\'t have sufficient privileges. Your user role needs to be Author, Editor, or Administrator to be able to manage content in the app.
    2. \n
    3. You recently changed the URL associated with your blog in the app, moved your website elsewhere, or changed your CMS.
    4. \n
    \nSolution: make sure you have the sufficient privileges on the site, Author or higher. Make sure the blog URL in the app is correct by going to Settings and tap your blog to edit it.
  34. \n
  35. \n

    How do I send in activity logs from the app?

    \n
      \n
    1. Open the app.
    2. \n
    3. Click on the \"Me\" tab.
    4. \n
    5. If you see \"Settings\" in the top right tap on it, if not tap on the \"Me\" tab again and it\'ll take you back to the blog list where you will see \"Settings\".
    6. \n
    7. Click on \"Support\".
    8. \n
    9. Enable \"Extra Debug\".
    10. \n
    11. Exit out of the app and re-open it and try to perform the actions causing difficulty.
    12. \n
    13. Go back to the Support screen in Settings.
    14. \n
    15. Click on \"Activity Logs\".
    16. \n
    17. Click on \"Current.
    18. \n
    19. Tap the share button in the top right and select \"Mail\".
    20. \n
    21. From here email the logs to the receipient of your choice.
    22. \n
    \n
  36. \n
\n\n
\n\n

WordPress for Android

\n
    \n
  1. \n

    Which version of WordPress does the App work with?

    \nThe App works with WordPress.com and WordPress 3.6 or higher.
  2. \n
  3. \n

    Which Android devices will this work with?

    \nThe App will work on all phones that are running Android version 2.3 (Gingerbread) or higher.
  4. \n
  5. \n

    How do I enable XML-RPC access to my blog?

    \nNote: As of WordPress 3.5, you no longer need to enable XML-RPC access. While logged into your WordPress dashboard, select ‘Writing’ under the Settings tab on the left. Scroll down to ‘Remote Publishing’, then check the box next to ‘XML-RPC’ and save your changes.
  6. \n
  7. \n

    Can’t add my site to the app. What do I do?

    \n
      \n
    1. Ensure that you\'ve typed in the URL correctly.
    2. \n
    3. If it\'s correct, make sure XML-RPC services are enabled on the blog.
    4. \n
    5. Verify that xmlrpc.php is functioning properly:\n
        \n
      1. Locate your RSD meta tag by viewing-source on your blog. It will look similar to this: <link rel=\"EditURI\" type=\"application/rsd+xml\" title=\"RSD\" href=\"http://example.com/xmlrpc.php?rsd\" />
      2. \n
      3. Next, follow the link, http://example.com/xmlrpc.php?rsd, and make sure it resolved to an XML file. Locate the WordPress API item: http://example.com/xmlrpc.php.
      4. \n
      5. Lastly, load that apiLink value into your browser. If everything is setup correctly, you should see this message: \"XML-RPC server accepts POST requests only.\"
      6. \n
      \n
    6. \n
    7. Go to the W3C Markup Validator and type in the URL of your WordPress site. If you get a response such as \"... one or more bytes that I cannot interpret as UTF-8\" that is most likely what is causing the app to have trouble with your site.
    8. \n
    9. Try with the default theme and with no active plug-in.(Trying it with the default theme and plugins disabled will help pin down where the problem is. If everything works then you go back and enable your theme and then try it again. If everything still works then you go back and activate each plugin one at a time until you find the one that is causing the breakage.)
    10. \n
    11. Turn on the \'debug mode\', that enables extended log format, and check the log file. Instructions here.
    12. \n
    \n
  8. \n
  9. \n

    My Host Blocks XML-RPC Access! How do I fix that?

    \n
      \n
    1. Rename your xmlrpc.php file to something different, but only change it after the \'xmlrpc\'. Ex: xmlrpc_wp.php.
    2. \n
    3. Install this plugin.
    4. \n
    5. Read the installation instructions and activate it.
    6. \n
    7. Remove your blog from the app and add it back again.
    8. \n
    \n
  10. \n
  11. \n

    Can I adjust the size of photos uploaded from the app?

    \nWhen in the dashboard view of your blog, select ‘Settings’, then change the ‘Default image width’ setting to your desired width. You can also tap on an image in the post editor to set a custom size there as well.
  12. \n
  13. \n

    Can I use stats with a self-hosted blog?

    \nYes! If you install Jetpack you can enable stats for your self-hosted blog. After installing the plugin, simply enter your new WordPress.com login after selecting the ‘Stats’ button in the app.
  14. \n
  15. \n

    Adding a blog is taking a long time or times out. How do I fix that?

    \nAdding a blog is dependent on the speed of your Internet connection, so if you have a very weak signal or a slow EDGE connection, try again when you are in 3G/4G or Wi-Fi mode.
  16. \n
  17. \n

    Why do I get a \"connection refused\" error when on the stats tab?

    \nIf you’ve installed an ad blocker app such as AdFree Android, it will block your connection to stats.wordpress.com. You will need to edit the /system/etc/hosts file on your device and remove all entries that have stats.wordpress.com to get it working again.
  18. \n
  19. \n

    Can I use SSL to encrypt the App communication?

    \nYes. On WordPress.com blogs, all communication (done over XML-RPC) is by default going to use an encrypted connection via SSL. For self-hosted WordPress, if you have SSL enabled, WordPress 2.6.1 or later supports pointing the RSD information at the “https” version of xmlrpc.php which creates an encrypted communication link with the App.
  20. \n
','Support','','inherit','open','open','','9-autosave-v1','','','2014-09-11 06:15:35','2014-09-11 06:15:35','',9,'http://apps.wordpress.org/2014/09/11/9-autosave-v1/',0,'revision','',0); INSERT INTO `wporg_36_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 (2402,1,'2014-09-11 06:15:53','2014-09-11 06:15:53','

Forums

\nIf you run into issues while using your WordPress app, we encourage you to visit the forums for troubleshooting help and to view other discussions that might be helpful. In the forums, you can also provide feedback and requests for features and weigh in on future development.\n\nFor iOS users, visit the WordPress for iOS Forums.\n\nFor Android users, visit the WordPress for Android Forums.\n

FAQs

\nHere are some frequently asked questions:\n\n
\n

WordPress for iOS

\n
    \n
  1. Which version of WordPress does the App work with?
  2. \n
  3. Which devices will this work with?
  4. \n
  5. I get an “Unable to read the WordPress site on that URL” error message. What do I do ?
  6. \n
  7. I get a “Blog returned invalid data” error message. what do I do?
  8. \n
  9. I can’t login, I get a “Precondition Failed” or a “Forbidden” error message. What do I need to do?
  10. \n
  11. I can’t upload photos/videos, I get a “Failed” error message. What do I need to do?
  12. \n
  13. My blog is located in a folder, and resolves to http://example.com/blog. How do I add the blog?
  14. \n
  15. Can I adjust the size of photos uploaded from the app?
  16. \n
  17. I can save posts to local drafts but can’t figure out how to publish to the blog — what do I need to do?
  18. \n
  19. How do I delete a blog?
  20. \n
  21. I get an “XML-RPC Service are disabled on your blog”. How I can enable them on my blog?
  22. \n
  23. My Host Blocks XML-RPC Access! How do I fix that?
  24. \n
  25. Can I use SSL to encrypt the App communication?
  26. \n
  27. I’m in China and I can’t login, I get an SSL error. What do I need to do?
  28. \n
  29. How to set up set up Stats via Jetpack?
  30. \n
  31. I can’t connect to my self-hosted blog, what do I do?
  32. \n
  33. I get the error “Couldn’t Sync — Sorry, you cannot edit posts site.”
  34. \n
  35. How do I send in debug logs from the app?
  36. \n
\n
\n

WordPress for Android

\n
    \n
  1. Which version of WordPress does the App work with?
  2. \n
  3. Which Android devices will this work with?
  4. \n
  5. How do I enable XML-RPC access to my blog?
  6. \n
  7. Can’t add my site to the app. What do I do?
  8. \n
  9. My Host Blocks XML-RPC Access! How do I fix that?
  10. \n
  11. Can I adjust the size of photos uploaded from the app?
  12. \n
  13. Can I use stats with a self-hosted blog?
  14. \n
  15. Adding a blog is taking a long time or times out. How do I fix that?
  16. \n
  17. Why do I get a “connection refused” error when on the stats tab?
  18. \n
  19. Can I use SSL to encrypt the App communication?
  20. \n
\n
\n

WordPress for iOS

\n
    \n
  1. \n

    Which version of WordPress does the App work with?

    \nWe make sure the app works with the current and two previous versions of WordPress. Earlier versions are not supported but may still work for most features.
  2. \n
  3. \n

    Which devices will this work with?

    \nThe App works with any device that is running iOS version 7 or greater.
  4. \n
  5. \n

    I get an \"Unable to read the WordPress site on that URL\" error message. What do I do ?

    \n
      \n
    1. Ensure that you\'ve typed in the URL correctly.
    2. \n
    3. If it\'s correct, make sure XML-RPC services are enabled on the blog.
    4. \n
    5. Verify that xmlrpc.php is functioning properly:\n
        \n
      1. Locate your RSD meta tag by viewing-source on your blog. It will look similar to this: <link rel=\"EditURI\" type=\"application/rsd+xml\" title=\"RSD\" href=\"http://example.com/xmlrpc.php?rsd\" />
      2. \n
      3. Next, follow the link, http://example.com/xmlrpc.php?rsd, and make sure it resolved to an XML file. Locate the WordPress API item: http://example.com/xmlrpc.php.
      4. \n
      5. Lastly, load that apiLink value into your browser. If everything is setup correctly, you should see this message: \"XML-RPC server accepts POST requests only.\"
      6. \n
      \n
    6. \n
    7. Go to the W3C Markup Validator and type in the URL of your WordPress site. If you get a response such as \"... one or more bytes that I cannot interpret as UTF-8\" that is most likely what is causing the app to have trouble with your site.
    8. \n
    9. Try with the default theme and with no active plug-in.(Trying it with the default theme and plugins disabled will help pin down where the problem is. If everything works then you go back and enable your theme and then try it again. If everything still works then you go back and activate each plugin one at a time until you find the one that is causing the breakage.)
    10. \n
    11. Turn on the \'debug mode\', that enables extended log format, and check the log file. Instructions here.
    12. \n
    \n
  6. \n
  7. \n

    I get a \"Blog returned invalid data\" error message. what do I do?

    \n
      \n
    1. A common issue that can cause errors with the App is invalid characters.  The easiest way to check is to go to the W3C Markup Validator and type in the URL of your WordPress site.  If you get a response such as \"... one or more bytes that I cannot interpret as UTF-8\" that is most likely what is causing the app to have trouble with your site.
    2. \n
    3. You can also try with the default theme and with no active plug-in.(Trying it with the default theme and plugins disabled will help pin down where the problem is. If everything works then you go back and enable your theme and then try it again. If everything still works then you go back and activate each plugin one at a time until you find the one that is causing the breakage.)
    4. \n
    5. You might be able to figure out what’s wrong by yourself by following the instructions here: http://wpiphonedev.wordpress.com/extra-debug/
    6. \n
    \n
  8. \n
  9. \n

    I can\'t login, I get a \"Precondition Failed\" or a \"Forbidden\" error message. What do I need to do?

    \nIf you receive a \"Precondition Failed\" that is most likely a mod_Security issue discussed in this WordPress Support Forum discussion.\n\nCheck with your hosting provider or system administrator to see if permissions or other issues are causing the error.
  10. \n
  11. \n

    I can\'t upload photos/videos, I get a \"Failed\" error message. What do I need to do?

    \nIf you’re running WordPress 2.9.2 or later please be sure to add the following lines to your root .htaccess file:\n\nphp_value memory_limit 128M\nphp_value upload_max_filesize 128M\nphp_value post_max_size 128M\nphp_value max_execution_time 120\n\nAdditional info here.
  12. \n
  13. \n

    My blog is located in a folder, and resolves to http://example.com/blog.  How do I add the blog?

    \nType in the full URL when adding the blog, in this case, example.com/blog.
  14. \n
  15. \n

    Can I adjust the size of photos uploaded from the app?

    \nYou can choose whether to have photos resized for faster uploading. You can choose between predefined dimensions (small/medium/large) or setting a custom resize dimension.
  16. \n
  17. \n

    I can save posts to local drafts but can\'t figure out how to publish to the blog -- what do I need to do?

    \nWhen you are ready to publish, change the status of the post (from the Settings screen) to \"Published\" and then tap \"Save.\"
  18. \n
  19. \n

    How do I delete a blog?

    \n
      \n
    1. Tap \"Me\" at the bottom of the screen
    2. \n
    3. Tap \"Edit\" in top left of the screen
    4. \n
    5. WordPress.com blogs can be hidden from the App view by using the toggle switch on the right.
    6. \n
    7. Self Hosted sites can be deleted by tapping the red \"–\" and then tap \"Remove\".
    8. \n
    \n
  20. \n
  21. \n

    I get an \"XML-RPC Service are disabled on your blog\". How I can enable them on my blog?

    \nNote: As of WordPress 3.5, XML-RPC is enabled by default. The following settings only apply to 3.4 or lower.\n
      \n
    1. Go to your blog and log in (/wp-admin).
    2. \n
    3. In the sidebar, open Settings and then select Writing.
    4. \n
    5. Under Remote Publishing, check the XML-RPC protocol checkbox.
    6. \n
    7. Click Save Changes at the bottom of the page.
    8. \n
    \n
  22. \n
  23. \n

    My Host Blocks XML-RPC Access! How do I fix that?

    \n
      \n
    1. Rename your xmlrpc.php file to something different, but only change it after the \'xmlrpc\'. Ex: xmlrpc_wp.php.
    2. \n
    3. Install this plugin.
    4. \n
    5. Read the installation instructions and activate it.
    6. \n
    7. Remove your blog from the app and add it back again.
    8. \n
    \n
  24. \n
  25. \n

    Can I use SSL to encrypt the App communication?

    \nYes. On WordPress.com blogs, all communication (done over XML-RPC)  is by default going to use an encrypted connection via SSL.  For self-hosted WordPress, if you have SSL enabled, WordPress 2.6.1 or later supports pointing the RSD information at the \"https\" version of xmlrpc.php which creates an encrypted communication link with the App.
  26. \n
  27. \n

    I\'m in China and I can\'t login, I get an SSL error. What do I need to do?

    \nThe app tried to connect to your blog using a secure connection (https) but apparently WordPress.com is being blocked in China over https connection. You can add the blog following the steps below:\n
      \n
    1. Tap the add blogs button.
    2. \n
    3. Tap on \"Add self-hosted WordPress blog\".
    4. \n
    5. Insert the URL of your blog http://your-blog-name.wordpress.com/xmlrpc.php
    6. \n
    7. Insert your Credentials and tap \"Save\".
    8. \n
    \n
  28. \n
  29. \n

    How to set up set up Stats via Jetpack?

    \nJetpack is a plugin that connects to WordPress.com and enables awesome features like stats, powered by the WordPress.com cloud infrastructure. To view your self-hosted blog\'s stats:\n
      \n
    1. Install the Jetpack plugin on your blog. To install, go to the Plugins > Add New in your dashboard, search for Jetpack, and click \"Install Now\".
    2. \n
    3. Connect the plugin to a WordPress.com account. In the Jetpack tab in your dashboard click the \"Connect to WordPress.com\" button and follow the directions.
    4. \n
    5. In the app, enter the credentials to the WordPress.com account connected to the Jetpack plugin. You can do this when prompted on the Stats screen, or by tapping Settings > Your Blog > Configure Jetpack Stats.
    6. \n
    \n
  30. \n
  31. \n

    I can\'t connect to my self-hosted blog, what do I do?

    \nIf this guide to help you make the XMLRPC endpoint accessible didn\'t help, the case might be that you\'re running a plugin on your blog that is blocking access for apps to connect to your blog.\n\nWe have a running list of WordPress plugins that can break your blog here: http://ios.forums.wordpress.org/topic/app-blocking-plugin-list?replies=1#post-5985\n\nIf you\'re running any of these plugins, please try and disable them to see if that fixes the problem.\n\nIf your plugin is not on the list but does make your site unreachable, please let us know and we\'ll add it. Feel free to nudge the developers of the respective plugins to fix the connectivity issues!
  32. \n
  33. \n

    I get the error \"Couldn\'t Sync -- Sorry, you cannot edit posts site.\"

    \nThe reason you would get this error is most likely because of one of two reasons:\n
      \n
    1. The account you have on the site doesn\'t have sufficient privileges. Your user role needs to be Author, Editor, or Administrator to be able to manage content in the app.
    2. \n
    3. You recently changed the URL associated with your blog in the app, moved your website elsewhere, or changed your CMS.
    4. \n
    \nSolution: make sure you have the sufficient privileges on the site, Author or higher. Make sure the blog URL in the app is correct by going to Settings and tap your blog to edit it.
  34. \n
  35. \n

    How do I send in debug logs from the app?

    \n
      \n
    1. Open the app.
    2. \n
    3. Click on the \"Me\" tab.
    4. \n
    5. If you see \"Settings\" in the top right tap on it, if not tap on the \"Me\" tab again and it\'ll take you back to the blog list where you will see \"Settings\".
    6. \n
    7. Click on \"Support\".
    8. \n
    9. Enable \"Extra Debug\".
    10. \n
    11. Exit out of the app and re-open it and try to perform the actions causing difficulty.
    12. \n
    13. Go back to the Support screen in Settings.
    14. \n
    15. Click on \"Activity Logs\".
    16. \n
    17. Click on \"Current.
    18. \n
    19. Tap the share button in the top right and select \"Mail\".
    20. \n
    21. From here email the logs to the receipient of your choice.
    22. \n
    \n
  36. \n
\n\n
\n\n

WordPress for Android

\n
    \n
  1. \n

    Which version of WordPress does the App work with?

    \nThe App works with WordPress.com and WordPress 3.6 or higher.
  2. \n
  3. \n

    Which Android devices will this work with?

    \nThe App will work on all phones that are running Android version 2.3 (Gingerbread) or higher.
  4. \n
  5. \n

    How do I enable XML-RPC access to my blog?

    \nNote: As of WordPress 3.5, you no longer need to enable XML-RPC access. While logged into your WordPress dashboard, select ‘Writing’ under the Settings tab on the left. Scroll down to ‘Remote Publishing’, then check the box next to ‘XML-RPC’ and save your changes.
  6. \n
  7. \n

    Can’t add my site to the app. What do I do?

    \n
      \n
    1. Ensure that you\'ve typed in the URL correctly.
    2. \n
    3. If it\'s correct, make sure XML-RPC services are enabled on the blog.
    4. \n
    5. Verify that xmlrpc.php is functioning properly:\n
        \n
      1. Locate your RSD meta tag by viewing-source on your blog. It will look similar to this: <link rel=\"EditURI\" type=\"application/rsd+xml\" title=\"RSD\" href=\"http://example.com/xmlrpc.php?rsd\" />
      2. \n
      3. Next, follow the link, http://example.com/xmlrpc.php?rsd, and make sure it resolved to an XML file. Locate the WordPress API item: http://example.com/xmlrpc.php.
      4. \n
      5. Lastly, load that apiLink value into your browser. If everything is setup correctly, you should see this message: \"XML-RPC server accepts POST requests only.\"
      6. \n
      \n
    6. \n
    7. Go to the W3C Markup Validator and type in the URL of your WordPress site. If you get a response such as \"... one or more bytes that I cannot interpret as UTF-8\" that is most likely what is causing the app to have trouble with your site.
    8. \n
    9. Try with the default theme and with no active plug-in.(Trying it with the default theme and plugins disabled will help pin down where the problem is. If everything works then you go back and enable your theme and then try it again. If everything still works then you go back and activate each plugin one at a time until you find the one that is causing the breakage.)
    10. \n
    11. Turn on the \'debug mode\', that enables extended log format, and check the log file. Instructions here.
    12. \n
    \n
  8. \n
  9. \n

    My Host Blocks XML-RPC Access! How do I fix that?

    \n
      \n
    1. Rename your xmlrpc.php file to something different, but only change it after the \'xmlrpc\'. Ex: xmlrpc_wp.php.
    2. \n
    3. Install this plugin.
    4. \n
    5. Read the installation instructions and activate it.
    6. \n
    7. Remove your blog from the app and add it back again.
    8. \n
    \n
  10. \n
  11. \n

    Can I adjust the size of photos uploaded from the app?

    \nWhen in the dashboard view of your blog, select ‘Settings’, then change the ‘Default image width’ setting to your desired width. You can also tap on an image in the post editor to set a custom size there as well.
  12. \n
  13. \n

    Can I use stats with a self-hosted blog?

    \nYes! If you install Jetpack you can enable stats for your self-hosted blog. After installing the plugin, simply enter your new WordPress.com login after selecting the ‘Stats’ button in the app.
  14. \n
  15. \n

    Adding a blog is taking a long time or times out. How do I fix that?

    \nAdding a blog is dependent on the speed of your Internet connection, so if you have a very weak signal or a slow EDGE connection, try again when you are in 3G/4G or Wi-Fi mode.
  16. \n
  17. \n

    Why do I get a \"connection refused\" error when on the stats tab?

    \nIf you’ve installed an ad blocker app such as AdFree Android, it will block your connection to stats.wordpress.com. You will need to edit the /system/etc/hosts file on your device and remove all entries that have stats.wordpress.com to get it working again.
  18. \n
  19. \n

    Can I use SSL to encrypt the App communication?

    \nYes. On WordPress.com blogs, all communication (done over XML-RPC) is by default going to use an encrypted connection via SSL. For self-hosted WordPress, if you have SSL enabled, WordPress 2.6.1 or later supports pointing the RSD information at the “https” version of xmlrpc.php which creates an encrypted communication link with the App.
  20. \n
','Support','','inherit','open','open','','9-revision-v1','','','2014-09-11 06:15:53','2014-09-11 06:15:53','',9,'http://apps.wordpress.org/2014/09/11/9-revision-v1/',0,'revision','',0), (2403,1,'2014-09-12 12:36:16','2014-09-12 12:36:16','','Blog','','inherit','open','open','','11-revision-v1','','','2014-09-12 12:36:16','2014-09-12 12:36:16','',11,'http://apps.wordpress.org/2014/09/12/11-revision-v1/',0,'revision','',0), (2404,1,'2014-09-12 12:36:16','2014-09-12 12:36:16','

User Feedback

\nIf you\'re a user or developer and would like to leave feedback about the WordPress mobile apps, contact us on our forums. Your feedback is invaluable and helps us to improve the experience, each and every day.\n\nCheck out our Requests and Feedback forums for WordPress for iOS and WordPress for Android.\n

Developers

\n

GitHub repositories:

\n\nAre you passionate about mobile development? Do you want to work on projects that improve the mobile experiences of hundreds of thousands of users around the world?\n\nIf you are a mobile developer and have a passion for enhancing the user experience on small-screen portable devices, you can contribute to the WordPress mobile apps, which are open-source projects — this means anyone, including you, can play a part in its development.\n\nFor details on how to get involved in the WordPress mobile community, take a look at the WordPress Mobile Development Handbook: a guide on tools, code, style guidelines, and more.\n\nYou should also visit the development blog to see what developers are currently working on, and the official GitHub repositories for WordPress for iOS and WordPress for Android.','Contribute','','inherit','open','open','','1839-revision-v1','','','2014-09-12 12:36:16','2014-09-12 12:36:16','',2375,'http://apps.wordpress.org/2014/09/12/1839-revision-v1/',0,'revision','',0), (2405,1,'2014-09-12 12:36:16','2014-09-12 12:36:16','

Inspiration strikes anytime, anywhere. WordPress: at your fingertips.

\n

Download the WordPress app:

\n[wpmobileapps_download_button platform=\"ios\" link=\"http://itunes.apple.com/us/app/wordpress/id335703880?mt=8\"]iOS[/wpmobileapps_download_button][wpmobileapps_download_button platform=\"android\" link=\"http://play.google.com/store/apps/details?id=org.wordpress.android\"]ANDROID[/wpmobileapps_download_button]','Features','','inherit','open','open','','1833-revision-v1','','','2014-09-12 12:36:16','2014-09-12 12:36:16','',2369,'http://apps.wordpress.org/2014/09/12/1833-revision-v1/',0,'revision','',0), (2406,1,'2014-09-12 12:36:16','2014-09-12 12:36:16','Publish blog updates from any corner of the globe, like travel writer Chérie King, who explores the world with her iPad and a thirst for adventure. Or draft posts from the palm of your hand: you might find writer Dave Graham editing a post on his Android phone, in a Yorkshire coffee shop in the United Kingdom.','Post on the Go','','inherit','open','open','','1834-revision-v1','','','2014-09-12 12:36:16','2014-09-12 12:36:16','',2370,'http://apps.wordpress.org/2014/09/12/1834-revision-v1/',0,'revision','',0), (2407,1,'2014-09-12 12:36:16','2014-09-12 12:36:16','Sneak a peek at your visitors and views on your morning commute. Monitor your top posts and most popular stories of the day on your lunch break. Discover where your readers come from, all across the globe. Keep your finger on the pulse of your site.','WordPress Stats','','inherit','open','open','','1835-revision-v1','','','2014-09-12 12:36:16','2014-09-12 12:36:16','',2371,'http://apps.wordpress.org/2014/09/12/1835-revision-v1/',0,'revision','',0), (2408,1,'2014-09-12 12:36:16','2014-09-12 12:36:16','Catch up with your favorite sites and join the conversation anywhere, any time — like Toronto street photographer Shane Francescut, who follows popular photography tags, browses new blog post right in the Reader, and leaves likes and comments, all on his Android device.','Reader','','inherit','open','open','','1836-revision-v1','','','2014-09-12 12:36:16','2014-09-12 12:36:16','',2372,'http://apps.wordpress.org/2014/09/12/1836-revision-v1/',0,'revision','',0), (2409,1,'2014-09-12 12:36:16','2014-09-12 12:36:16','Keep up with your site\'s activity, even when away from your desk. Check your notifications to keep conversations flowing with your followers, all around the world. Engage with the community you’ve built — with just a touch on your screen.','Push Notifications','','inherit','open','open','','1837-revision-v1','','','2014-09-12 12:36:16','2014-09-12 12:36:16','',2373,'http://apps.wordpress.org/2014/09/12/1837-revision-v1/',0,'revision','',0), (2410,1,'2014-09-12 12:36:16','2014-09-12 12:36:16','If you’re a self-hosted user with a Jetpack-powered site, like parenting blogger Robert Loftus, you can publish posts and connect with readers from your device of choice. From notifications to sharing tools, you’ve got the entire WordPress community in your pocket.','Jetpack Integration','','inherit','open','open','','1838-revision-v1','','','2014-09-12 12:36:16','2014-09-12 12:36:16','',2374,'http://apps.wordpress.org/2014/09/12/1838-revision-v1/',0,'revision','',0), (2413,1,'2014-09-16 16:24:52','2014-09-16 16:24:52',' ','','','publish','open','open','','2413','','','2014-12-09 00:17:27','2014-12-09 00:17:27','',0,'http://apps.wordpressorg.dev/?p=2413',7,'nav_menu_item','',0), (2414,1,'2014-09-16 16:24:52','2014-09-16 16:24:52',' ','','','publish','open','open','','2414','','','2014-12-09 00:17:27','2014-12-09 00:17:27','',0,'http://apps.wordpressorg.dev/?p=2414',1,'nav_menu_item','',0), (2419,1,'2014-09-16 16:45:22','2014-09-16 16:45:22','

If you’re a self-hosted user with a Jetpack-powered site, like parenting blogger Robert Loftus, you can publish posts and connect with readers from your device of choice. From notifications to sharing tools, you’ve got the entire WordPress community in your pocket.

\r\n','Jetpack Integration','','inherit','open','open','','2374-revision-v1','','','2014-09-16 16:45:22','2014-09-16 16:45:22','',2374,'http://apps.wordpressorg.dev/2014/09/16/2374-revision-v1/',0,'revision','',0), (2420,1,'2014-09-16 17:25:15','2014-09-16 17:25:15','Keep up with your site\'s activity, even when away from your desk. Check your notifications to keep conversations flowing with your followers, all around the world. Engage with the community you’ve built — with just a touch on your screen.','Push Notifications','','inherit','open','open','','2373-revision-v1','','','2014-09-16 17:25:15','2014-09-16 17:25:15','',2373,'http://apps.wordpressorg.dev/2014/09/16/2373-revision-v1/',0,'revision','',0), (2421,1,'2014-12-09 00:14:42','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-09 00:14:42','0000-00-00 00:00:00','',0,'http://apps.wordpressorg.dev/?p=2421',0,'post','',0), (2422,1,'2014-12-09 00:19:31','2014-12-09 00:19:31','

Inspiration strikes anytime, anywhere. WordPress: at your fingertips.

\n

Download the WordPress app:

\n

[wpmobileapps_download_button platform=\"ios\" link=\"http://itunes.apple.com/us/app/wordpress/id335703880?mt=8\"]iOS[/wpmobileapps_download_button][wpmobileapps_download_button platform=\"android\" link=\"http://play.google.com/store/apps/details?id=org.wordpress.android\"]ANDROID[/wpmobileapps_download_button]

\n','Features','','inherit','open','open','','2369-autosave-v1','','','2014-12-09 00:19:31','2014-12-09 00:19:31','',2369,'http://apps.wordpressorg.dev/2014/12/09/2369-autosave-v1/',0,'revision','',0), (2423,1,'2014-12-09 00:19:33','2014-12-09 00:19:33','

Publish blog updates from any corner of the globe, like travel writer Chérie King, who explores the world with her iPad and a thirst for adventure. Or draft posts from the palm of your hand: you might find writer Dave Graham editing a post on his Android phone, in a Yorkshire coffee shop in the United Kingdom.

\n','Post on the Go','','inherit','open','open','','2370-autosave-v1','','','2014-12-09 00:19:33','2014-12-09 00:19:33','',2370,'http://apps.wordpressorg.dev/2014/12/09/2370-autosave-v1/',0,'revision','',0), (2424,1,'2014-12-09 00:19:41','2014-12-09 00:19:41','

Catch up with your favorite sites and join the conversation anywhere, any time — like Toronto street photographer Shane Francescut, who follows popular photography tags, browses new blog post right in the Reader, and leaves likes and comments, all on his Android device.

\n','Reader','','inherit','open','open','','2372-autosave-v1','','','2014-12-09 00:19:41','2014-12-09 00:19:41','',2372,'http://apps.wordpressorg.dev/2014/12/09/2372-autosave-v1/',0,'revision','',0); /*!40000 ALTER TABLE `wporg_36_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_36_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_36_term_relationships`; CREATE TABLE `wporg_36_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_36_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_36_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_36_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (965,2,0), (965,10,0), (965,46,0), (965,158,0), (990,2,0), (990,10,0), (990,46,0), (990,158,0), (990,159,0), (1017,2,0), (1017,10,0), (1017,160,0), (1037,2,0), (1037,46,0), (1037,86,0), (1037,158,0), (1065,2,0), (1065,10,0), (1512,6,0), (1512,8,0), (1516,6,0), (1516,8,0), (1528,6,0), (1528,8,0), (1535,6,0), (1535,8,0), (1542,6,0), (1542,8,0), (1553,6,0), (1553,8,0), (1558,6,0), (1558,8,0), (2117,2,0), (2117,10,0), (2117,46,0), (2117,62,0), (2193,1,0), (2193,2,0), (2193,10,0), (2207,6,0), (2207,8,0), (2207,10,0), (2207,122,0), (2207,134,0), (2207,135,0), (2355,167,0), (2356,167,0), (2376,167,0), (2378,167,0), (2384,168,0), (2386,168,0), (2387,167,0), (2388,168,0), (2389,168,0), (2413,167,0), (2414,167,0); /*!40000 ALTER TABLE `wporg_36_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_36_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_36_term_taxonomy`; CREATE TABLE `wporg_36_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_36_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_36_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_36_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1), (2,2,'category','',0,7), (3,3,'category','',0,0), (4,4,'category','',0,0), (5,5,'category','',0,0), (6,6,'category','',0,8), (7,7,'category','',0,0), (8,8,'category','',0,8), (9,9,'category','',0,0), (10,10,'category','',0,7), (11,11,'category','',0,0), (12,12,'category','',0,0), (13,13,'category','',0,0), (14,14,'post_tag','',0,0), (15,15,'post_tag','',0,0), (16,16,'post_tag','',0,0), (17,17,'post_tag','',0,0), (18,18,'post_tag','',0,0), (19,19,'post_tag','',0,0), (20,20,'post_tag','',0,0), (21,21,'post_tag','',0,0), (22,22,'post_tag','',0,0), (23,23,'post_tag','',0,0), (24,24,'post_tag','',0,0), (25,25,'post_tag','',0,0), (26,26,'post_tag','',0,0), (27,27,'post_tag','',0,0), (28,28,'post_tag','',0,0), (29,29,'post_tag','',0,0), (30,30,'post_tag','',0,0), (31,31,'post_tag','',0,0), (32,32,'post_tag','',0,0), (33,33,'post_tag','',0,0), (34,34,'post_tag','',0,0), (35,35,'post_tag','',0,0), (36,36,'post_tag','',0,0), (37,37,'post_tag','',0,0), (38,38,'post_tag','',0,0), (39,39,'post_tag','',0,0), (40,40,'post_tag','',0,0), (41,41,'post_tag','',0,0), (42,42,'post_tag','',0,0), (43,43,'post_tag','',0,0), (44,44,'post_tag','',0,0), (45,45,'post_tag','',0,0), (46,166,'post_tag','',0,4), (47,46,'post_tag','',0,0), (48,47,'post_tag','',0,0), (49,48,'post_tag','',0,0), (50,49,'post_tag','',0,0), (51,50,'post_tag','',0,0), (52,51,'post_tag','',0,0), (53,52,'post_tag','',0,0), (54,53,'post_tag','',0,0), (55,54,'post_tag','',0,0), (56,55,'post_tag','',0,0), (57,56,'post_tag','',0,0), (58,57,'post_tag','',0,0), (59,58,'post_tag','',0,0), (60,167,'post_tag','',0,0), (61,59,'post_tag','',0,0), (62,60,'post_tag','',0,1), (63,61,'post_tag','',0,0), (64,62,'post_tag','',0,0), (65,63,'post_tag','',0,0), (66,64,'post_tag','',0,0), (67,65,'post_tag','',0,0), (68,66,'post_tag','',0,0), (69,168,'post_tag','',0,0), (70,67,'post_tag','',0,0), (71,68,'post_tag','',0,0), (72,69,'post_tag','',0,0), (73,70,'post_tag','',0,0), (74,71,'post_tag','',0,0), (75,72,'post_tag','',0,0), (76,73,'post_tag','',0,0), (77,74,'post_tag','',0,0), (78,75,'post_tag','',0,0), (79,76,'post_tag','',0,0), (80,77,'post_tag','',0,0), (81,78,'post_tag','',0,0), (82,79,'post_tag','',0,0), (83,80,'post_tag','',0,0), (84,81,'post_tag','',0,0), (85,82,'post_tag','',0,0), (86,83,'post_tag','',0,1), (87,84,'post_tag','',0,0), (88,85,'post_tag','',0,0), (89,86,'post_tag','',0,0), (90,87,'post_tag','',0,0), (91,88,'post_tag','',0,0), (92,89,'post_tag','',0,0), (93,90,'post_tag','',0,0), (94,91,'post_tag','',0,0), (95,92,'post_tag','',0,0), (96,93,'post_tag','',0,0), (97,94,'post_tag','',0,0), (98,95,'post_tag','',0,0), (99,96,'post_tag','',0,0), (100,97,'post_tag','',0,0), (101,98,'post_tag','',0,0), (102,99,'post_tag','',0,0), (103,100,'post_tag','',0,0), (104,101,'post_tag','',0,0), (105,102,'post_tag','',0,0), (106,103,'post_tag','',0,0), (107,104,'post_tag','',0,0), (108,105,'post_tag','',0,0), (109,106,'post_tag','',0,0), (110,107,'post_tag','',0,0), (111,108,'post_tag','',0,0), (112,109,'post_tag','',0,0), (113,110,'post_tag','',0,0), (114,111,'post_tag','',0,0), (115,112,'post_tag','',0,0), (116,113,'post_tag','',0,0), (117,114,'post_tag','',0,0), (118,115,'post_tag','',0,0), (119,116,'post_tag','',0,0), (120,117,'post_tag','',0,0), (121,118,'post_tag','',0,0), (122,119,'post_tag','',0,1), (123,120,'post_tag','',0,0), (124,121,'post_tag','',0,0), (125,169,'post_tag','',0,0), (126,122,'post_tag','',0,0), (127,123,'post_tag','',0,0), (128,124,'post_tag','',0,0), (129,125,'post_tag','',0,0), (130,126,'post_tag','',0,0), (131,127,'post_tag','',0,0), (132,128,'post_tag','',0,0), (133,129,'post_tag','',0,0), (134,130,'post_tag','',0,1), (135,131,'post_tag','',0,1), (136,132,'post_tag','',0,0), (137,133,'post_tag','',0,0), (138,134,'post_tag','',0,0), (139,135,'post_tag','',0,0), (140,136,'post_tag','',0,0), (141,137,'post_tag','',0,0), (142,138,'post_tag','',0,0), (143,139,'post_tag','',0,0), (144,140,'post_tag','',0,0), (145,141,'post_tag','',0,0), (146,142,'post_tag','',0,0), (147,143,'post_tag','',0,0), (148,144,'post_tag','',0,0), (149,145,'post_tag','',0,0), (150,146,'post_tag','',0,0), (151,147,'post_tag','',0,0), (152,148,'post_tag','',0,0), (153,149,'post_tag','',0,0), (154,150,'post_tag','',0,0), (155,151,'post_tag','',0,0), (156,152,'post_tag','',0,0), (157,153,'post_tag','',0,0), (158,154,'post_tag','',0,3), (159,155,'post_tag','',0,1), (160,156,'post_tag','',0,1), (161,157,'post_tag','',0,0), (162,158,'post_tag','',0,0), (163,159,'post_tag','',0,0), (164,160,'post_tag','',0,0), (165,161,'post_tag','',0,0), (166,162,'post_tag','',0,0), (167,163,'nav_menu','',0,7), (168,164,'nav_menu','',0,4), (169,165,'post_format','',0,0); /*!40000 ALTER TABLE `wporg_36_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_36_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_36_termmeta`; CREATE TABLE `wporg_36_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_36_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_36_terms`; CREATE TABLE `wporg_36_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_36_terms` WRITE; /*!40000 ALTER TABLE `wporg_36_terms` DISABLE KEYS */; INSERT INTO `wporg_36_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0), (2,'Android','android',0), (3,'Beta','beta-2',0), (4,'BlackBerry','blackberry',0), (5,'Design','design',0), (6,'iOS','ios-2',0), (7,'Milestone','milestone',0), (8,'News','news',0), (9,'Other','other',0), (10,'Releases','releases',0), (11,'status','status',0), (12,'Translation','translation',0), (13,'Update','update-2',0), (14,'1.4','1-4',0), (15,'1.4.6','1-4-6',0), (16,'1.5','1-5',0), (17,'1.6','1-6',0), (18,'1.6.5','1-6-5',0), (19,'1.7','1-7',0), (20,'1.8','1-8',0), (21,'2.0','2-0',0), (22,'2.0.4','2-0-4',0), (23,'2.0.5','2-0-5',0), (24,'2.1','2-1',0), (25,'2.2','2-2',0), (26,'2.2.4','2-2-4',0), (27,'2.2.6','2-2-6',0), (28,'2.4','2-4',0), (29,'2.6','2-6',0), (30,'2.6.1','2-6-1',0), (31,'2.6.4','2-6-4',0), (32,'2.7','2-7',0), (33,'2.7.2','2-7-2',0), (34,'2.8','2-8',0), (35,'2.9','2-9',0), (36,'3.0','3-0',0), (37,'3.1','3-1',0), (38,'3.2','3-2',0), (39,'3.3','3-3',0), (40,'3.4','3-4',0), (41,'3.5','3-5',0), (42,'3.8','3-8',0), (43,'3.8.4','3-8-4',0), (44,'Action Bar','action-bar',0), (45,'ad-hoc','ad-hoc',0), (46,'announcement','announcement',0), (47,'api','api',0), (48,'app store','app-store',0), (49,'appworld','appworld',0), (50,'asdf','asdf',0), (51,'asdfsafd','asdfsafd',0), (52,'audio','audio',0), (53,'Automattic','automattic',0), (54,'autosave','autosave',0), (55,'BB10','bb10',0), (56,'beta','beta',0), (57,'beta test','beta-test',0), (58,'BIS','bis',0), (59,'bug fix','bug-fix',0), (60,'bug fixes','bug-fixes',0), (61,'bugs','bugs',0), (62,'camera+','camera',0), (63,'comment moderation','comment-moderation',0), (64,'comments','comments',0), (65,'crashes','crashes',0), (66,'Dashboard','dashboard',0), (67,'dev chat','dev-chat',0), (68,'Effigent','effigent',0), (69,'fasdf','fasdf',0), (70,'featured','featured',0), (71,'Featured Image','featured-image',0), (72,'Featured Images','featured-images',0), (73,'Features','features',0), (74,'feedback','feedback',0), (75,'fixes','fixes',0), (76,'formatting','formatting',0), (77,'forums','forums',0), (78,'full-screen editor','full-screen-editor',0), (79,'geolocation','geolocation',0), (80,'geotagging','geotagging',0), (81,'get involved','get-involved',0), (82,'gfds','gfds',0), (83,'gingerbread','gingerbread',0), (84,'Google Summer of Code','google-summer-of-code',0), (85,'headsup','headsup',0), (86,'holo','holo',0), (87,'HTC Sense','htc-sense',0), (88,'html','html',0), (89,'html5','html5',0), (90,'introduction','introduction',0), (91,'ios','ios',0), (92,'iOS 7','ios-7',0), (93,'iPad','ipad',0), (94,'iPhone','iphone',0), (95,'itunes','itunes',0), (96,'James Kendrick','james-kendrick',0), (97,'jkontherun','jkontherun',0), (98,'Kindle Fire','kindle-fire',0), (99,'landscape','landscape',0), (100,'launch','launch',0), (101,'localization','localization',0), (102,'mango','mango',0), (103,'Media','media',0), (104,'Microsoft','microsoft',0), (105,'moderation','moderation',0), (106,'New Zealand','new-zealand',0), (107,'news','news-2',0), (108,'Nook Color','nook-color',0), (109,'Nook Tablet','nook-tablet',0), (110,'Notifications','notifications',0), (111,'OS3','os3',0), (112,'password','password',0), (113,'photo','photo',0), (114,'PlayBook','playbook',0), (115,'plugin','plugin',0), (116,'previews','previews',0), (117,'quick photo','quick-photo',0), (118,'read','read',0), (119,'reader','reader',0), (120,'releaese','releaese',0), (121,'release','release',0), (122,'review','review',0), (123,'road map','road-map',0), (124,'roadmap','roadmap',0), (125,'scheduling','scheduling',0), (126,'sdfg','sdfg',0), (127,'Share','share',0), (128,'sharing','sharing',0), (129,'sounds','sounds',0), (130,'stability','stability',0), (131,'stats','stats',0), (132,'tablets','tablets',0), (133,'tag','tag',0), (134,'tag mutiple','tag-mutiple',0), (135,'tag1','tag1',0), (136,'tag2','tag2',0), (137,'testing','testing',0), (138,'twitter','twitter',0), (139,'UI','ui',0), (140,'update','update',0), (141,'update','update-2-2',0), (142,'update','update-2-3',0), (143,'update','update-2-4',0), (144,'update','update-2-5',0), (145,'update','update-2-6',0), (146,'update','update-2-7',0), (147,'update','update-2-8',0), (148,'video','video',0), (149,'videopress','videopress',0), (150,'Visual Editor','visual-editor',0), (151,'Windows Phone','windows-phone',0), (152,'Windows Phone 8','windows-phone-8',0), (153,'WordCamp','wordcamp',0), (154,'WordPress','wordpress',0), (155,'wordpress app','wordpress-app',0), (156,'WordPress for Android','wordpress-for-android',0), (157,'WordPress for iOS','wordpress-for-ios',0), (158,'WordPress for PlayBook','wordpress-for-playbook',0), (159,'wordpress.com','wordpress-com',0), (160,'WordPress.com Reader','wordpress-com-reader',0), (161,'wpios','wpios',0), (162,'wpToGo','wptogo',0), (163,'Main Nav','main-nav',0), (164,'Social Nav','social-nav',0), (165,'Standard','post-format-standard',0), (166,'Android','android',0), (167,'BlackBerry','blackberry',0), (168,'Design','design',0), (169,'Releases','releases',0); /*!40000 ALTER TABLE `wporg_36_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_367_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_367_commentmeta`; CREATE TABLE `wporg_367_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_367_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_367_comments`; CREATE TABLE `wporg_367_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_367_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_367_links`; CREATE TABLE `wporg_367_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_367_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_367_options`; CREATE TABLE `wporg_367_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_367_options` WRITE; /*!40000 ALTER TABLE `wporg_367_options` DISABLE KEYS */; INSERT INTO `wporg_367_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://wordpressorg.dev/plugins','yes'), (2,'home','http://wordpressorg.dev/plugins','yes'), (3,'blogname','Plugin Directory','yes'), (4,'blogdescription','Plugins extend and expand the functionality of WordPress.','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','0','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','','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','closed','yes'), (20,'default_ping_status','closed','yes'), (21,'default_pingback_flag','','yes'), (22,'posts_per_page','14','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','','yes'), (27,'moderation_notify','','yes'), (28,'permalink_structure','/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:3:{i:1;s:23:\"debug-bar/debug-bar.php\";i:2;s:19:\"jetpack/jetpack.php\";i:4;s:37:\"plugin-directory/plugin-directory.php\";}','yes'), (34,'category_base','/post-categories','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (36,'comment_max_links','0','yes'), (37,'gmt_offset','0','yes'), (38,'default_email_category','1','yes'), (39,'recently_edited','','no'), (40,'template','pub/wporg-plugins','yes'), (41,'stylesheet','pub/wporg-plugins','yes'), (42,'comment_whitelist','','yes'), (43,'blacklist_keys','','no'), (44,'comment_registration','','yes'), (45,'html_type','text/html','yes'), (46,'use_trackback','0','yes'), (47,'default_role','subscriber','yes'), (48,'db_version','38590','yes'), (49,'uploads_use_yearmonth_folders','1','yes'), (50,'upload_path','wp-content/blogs.dir/367/files','yes'), (51,'blog_public','1','yes'), (52,'default_link_category','2','yes'), (53,'show_on_front','posts','yes'), (54,'tag_base','/post-tags','yes'), (55,'show_avatars','1','yes'), (56,'avatar_rating','G','yes'), (57,'upload_url_path','','yes'), (58,'thumbnail_size_w','150','yes'), (59,'thumbnail_size_h','150','yes'), (60,'thumbnail_crop','1','yes'), (61,'medium_size_w','300','yes'), (62,'medium_size_h','300','yes'), (63,'avatar_default','mystery','yes'), (64,'large_size_w','1024','yes'), (65,'large_size_h','1024','yes'), (66,'image_default_link_type','none','yes'), (67,'image_default_size','','yes'), (68,'image_default_align','','yes'), (69,'close_comments_for_old_posts','','yes'), (70,'close_comments_days_old','1','yes'), (71,'thread_comments','','yes'), (72,'thread_comments_depth','5','yes'), (73,'page_comments','','yes'), (74,'comments_per_page','50','yes'), (75,'default_comments_page','newest','yes'), (76,'comment_order','asc','yes'), (77,'sticky_posts','a:0:{}','yes'), (78,'widget_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (79,'widget_text','a:5:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:3:{s:5:\"title\";s:14:\"Plugin Authors\";s:4:\"text\";s:250:\"Now what are the possibilities of warp drive? Cmdr Riker\'s nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That\'s why the transporter\'s biofilters couldn\'t extract it.\";s:6:\"filter\";b:0;}i:4;a:3:{s:5:\"title\";s:16:\"Plugin Reviewers\";s:4:\"text\";s:176:\"Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators.\";s:6:\"filter\";b:0;}i:5;a:3:{s:5:\"title\";s:15:\"Plugin Handbook\";s:4:\"text\";s:227:\"Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. \";s:6:\"filter\";b:0;}}','yes'), (80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'), (81,'uninstall_plugins','a:0:{}','no'), (82,'timezone_string','','yes'), (83,'page_for_posts','0','yes'), (84,'page_on_front','0','yes'), (85,'default_post_format','0','yes'), (86,'link_manager_enabled','0','yes'), (87,'finished_splitting_shared_terms','1','yes'), (88,'site_icon','0','yes'), (89,'medium_large_size_w','768','yes'), (90,'medium_large_size_h','0','yes'), (91,'wporg_367_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:77:{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:14:\"manage_ratings\";b:1;s:23:\"plugin_dashboard_access\";b:1;s:15:\"plugin_edit_own\";b:1;s:18:\"plugin_edit_others\";b:1;i:1;b:1;s:15:\"plugin_set_tags\";b:1;s:20:\"plugin_add_committer\";b:1;s:19:\"plugin_edit_pending\";b:1;s:13:\"plugin_review\";b:1;s:14:\"plugin_approve\";b:1;s:13:\"plugin_reject\";b:1;s:14:\"plugin_disable\";b:1;s:12:\"plugin_close\";b:1;s:19:\"plugin_set_category\";b:1;s:18:\"plugin_set_section\";b:1;s:11:\"plugin_edit\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:48:{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:23:\"plugin_dashboard_access\";b:1;s:15:\"plugin_edit_own\";b:1;s:18:\"plugin_edit_others\";b:1;i:1;b:1;s:15:\"plugin_set_tags\";b:1;s:20:\"plugin_add_committer\";b:1;s:19:\"plugin_edit_pending\";b:1;s:13:\"plugin_review\";b:1;s:14:\"plugin_approve\";b:1;s:13:\"plugin_reject\";b:1;s:14:\"plugin_disable\";b:1;s:12:\"plugin_close\";b:1;s:19:\"plugin_set_category\";b:1;s:18:\"plugin_set_section\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:17:{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:23:\"plugin_dashboard_access\";b:1;s:15:\"plugin_edit_own\";b:1;i:1;b:1;s:15:\"plugin_set_tags\";b:1;s:20:\"plugin_add_committer\";b:1;s:18:\"plugin_edit_others\";b:1;s:19:\"plugin_set_category\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:12:{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:23:\"plugin_dashboard_access\";b:1;s:15:\"plugin_edit_own\";b:1;i:1;b:1;s:15:\"plugin_set_tags\";b:1;s:20:\"plugin_add_committer\";b:1;s:18:\"plugin_edit_others\";b:1;s:19:\"plugin_set_category\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:15:\"plugin_reviewer\";a:2:{s:4:\"name\";s:15:\"Plugin Reviewer\";s:12:\"capabilities\";a:5:{s:4:\"read\";b:1;s:19:\"plugin_set_category\";b:1;s:17:\"moderate_comments\";b:1;s:19:\"plugin_edit_pending\";b:1;s:13:\"plugin_review\";b:1;}}s:12:\"plugin_admin\";a:2:{s:4:\"name\";s:12:\"Plugin Admin\";s:12:\"capabilities\";a:14:{s:4:\"read\";b:1;s:19:\"plugin_set_category\";b:1;s:17:\"moderate_comments\";b:1;s:19:\"plugin_edit_pending\";b:1;s:13:\"plugin_review\";b:1;s:14:\"plugin_approve\";b:1;s:13:\"plugin_reject\";b:1;s:14:\"plugin_disable\";b:1;s:12:\"plugin_close\";b:1;s:18:\"plugin_set_section\";b:1;s:17:\"manage_categories\";b:1;s:23:\"plugin_dashboard_access\";b:1;s:11:\"plugin_edit\";b:1;s:18:\"plugin_edit_others\";b:1;}}}','yes'), (92,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (94,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (95,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (96,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (97,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"orphaned_widgets_1\";a:3:{i:0;s:13:\"plugin_meta-2\";i:1;s:16:\"plugin_ratings-2\";i:2;s:16:\"plugin_support-2\";}s:18:\"orphaned_widgets_2\";a:3:{i:0;s:6:\"text-3\";i:1;s:6:\"text-4\";i:2;s:6:\"text-5\";}s:13:\"array_version\";i:3;}','yes'), (98,'WPLANG','','yes'), (99,'allowedthemes','a:1:{s:17:\"pub/wporg-plugins\";b:1;}','yes'), (100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (102,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (103,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (104,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (105,'cron','a:12:{i:1492449193;a:5:{s:33:\"import_plugin:rating-manager-lite\";a:1:{s:32:\"efc62c8f390a59a0ef1b739e74577313\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:19:\"rating-manager-lite\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:1;s:9:\"revisions\";a:4:{i:0;i:1635303;i:1;i:1635306;i:2;i:1635327;i:3;i:1635360;}}}}}s:32:\"import_plugin:rapid-secure-login\";a:1:{s:32:\"107e7a77e1889ad346d8d13862cd48ea\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:18:\"rapid-secure-login\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"2.0.1\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635304;i:1;i:1635305;}}}}}s:30:\"import_plugin:images-via-imgix\";a:1:{s:32:\"a393c14e761072f03411fdca297ee859\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:16:\"images-via-imgix\";s:12:\"tags_touched\";a:3:{i:0;s:5:\"trunk\";i:10;s:5:\"1.3.1\";i:16;s:5:\"1.3.2\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:4:{i:0;i:1635307;i:1;i:1635356;i:2;i:1635364;i:3;i:1635392;}}}}}s:33:\"import_plugin:podclankova-inzerce\";a:1:{s:32:\"d1082eb5b598566457fb665a4a5185d7\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:19:\"podclankova-inzerce\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"trunk\";i:3;s:5:\"2.2.5\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635308;i:1;i:1635309;}}}}}s:30:\"import_plugin:nextgen-facebook\";a:1:{s:32:\"0bcf6657649cecbc404a2802f93f2bef\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:16:\"nextgen-facebook\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"trunk\";i:2;s:7:\"8.40.12\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635310;i:1;i:1635330;}}}}}}i:1492449194;a:52:{s:31:\"import_plugin:new-album-gallery\";a:1:{s:32:\"5c53bce6803d408c83085bb4ee1c94d4\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:17:\"new-album-gallery\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"0.0.6\";i:1;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:0;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635311;}}}}}s:19:\"import_plugin:wpsso\";a:1:{s:32:\"ea5a3b476f736e2f866871fd3336b877\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:5:\"wpsso\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"trunk\";i:2;s:7:\"3.40.12\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635312;i:1;i:1635331;}}}}}s:32:\"import_plugin:wpsso-organization\";a:1:{s:32:\"26d045ee678e3ce422def96654f11916\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:18:\"wpsso-organization\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"trunk\";i:2;s:6:\"1.0.16\";}s:14:\"readme_touched\";b:0;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635313;i:1;i:1635314;}}}}}s:35:\"import_plugin:woo-order-export-lite\";a:1:{s:32:\"c9d75395658651dbb16ed5a488c2ab57\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:21:\"woo-order-export-lite\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635315;}}}}}s:23:\"import_plugin:wpsso-plm\";a:1:{s:32:\"fd498b0aa3c06556d7129a9526fcab4f\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:9:\"wpsso-plm\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"trunk\";i:4;s:6:\"2.2.12\";}s:14:\"readme_touched\";b:0;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635316;i:1;i:1635317;}}}}}s:47:\"import_plugin:woo-product-image-gallery-options\";a:1:{s:32:\"0b95c3f0f77bbd6abbabdd933fb02423\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:33:\"woo-product-image-gallery-options\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:1;s:9:\"revisions\";a:3:{i:0;i:1635318;i:1;i:1635325;i:2;i:1635333;}}}}}s:25:\"import_plugin:adapti-link\";a:1:{s:32:\"ef1ce317351c63f22d0f87870cd125d8\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:11:\"adapti-link\";s:12:\"tags_touched\";a:2:{i:0;s:4:\"1.01\";i:10;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:1;s:9:\"revisions\";a:7:{i:0;i:1635319;i:1;i:1635324;i:2;i:1635340;i:3;i:1635342;i:4;i:1635354;i:5;i:1635365;i:6;i:1635382;}}}}}s:34:\"import_plugin:wpsso-schema-json-ld\";a:1:{s:32:\"202bb55ee54762ad736bfbb4c9153bfb\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:20:\"wpsso-schema-json-ld\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"trunk\";i:1;s:6:\"1.13.6\";}s:14:\"readme_touched\";b:0;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635320;i:1;i:1635321;}}}}}s:45:\"import_plugin:list-backorders-for-woocommerce\";a:1:{s:32:\"81691b0f82123e5038baf767aeb24cc2\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:31:\"list-backorders-for-woocommerce\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:0;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635322;}}}}}s:28:\"import_plugin:parallax-image\";a:1:{s:32:\"170080783417751ed84d0891fc4ffd7e\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:14:\"parallax-image\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:0;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635323;}}}}}s:41:\"import_plugin:simple-yearly-archive-posts\";a:1:{s:32:\"8bc8f2018f84fa4b3d18a2b3891b06a7\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:27:\"simple-yearly-archive-posts\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:1;s:9:\"revisions\";a:2:{i:0;i:1635326;i:1;i:1635328;}}}}}s:39:\"import_plugin:shared-article-repository\";a:1:{s:32:\"e06d96c886a28b23bfb727f383bcd8f9\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:25:\"shared-article-repository\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635329;}}}}}s:35:\"import_plugin:page-builder-sandwich\";a:1:{s:32:\"37176bf8a8520d20d46e66e9ca7a281e\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:21:\"page-builder-sandwich\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"4.2.2\";i:1;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:0;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635332;}}}}}s:23:\"import_plugin:customify\";a:1:{s:32:\"f2b27dcf7caea80bfcabefb581d70067\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:9:\"customify\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"trunk\";i:9;s:5:\"1.5.2\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635334;i:1;i:1635339;}}}}}s:26:\"import_plugin:slider-video\";a:1:{s:32:\"e5de3a08776a496cf522a156a184677e\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:12:\"slider-video\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"1.1.3\";i:94;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635335;i:1;i:1635344;}}}}}s:20:\"import_plugin:wpshop\";a:1:{s:32:\"5c680b97d5c24566377830d61cef25ba\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:6:\"wpshop\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:0;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635336;}}}}}s:22:\"import_plugin:versions\";a:1:{s:32:\"510937041f43151aa23de19fad5a4ca3\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:8:\"versions\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"1.0.3\";i:3;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635337;}}}}}s:22:\"import_plugin:mailpoet\";a:1:{s:32:\"0e83b78c94b97421fce30666352a0ca9\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:8:\"mailpoet\";s:12:\"tags_touched\";a:2:{i:0;s:13:\"3.0.0-beta.26\";i:38;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635338;i:1;i:1635346;}}}}}s:45:\"import_plugin:remove-category-word-from-title\";a:1:{s:32:\"bf49593e29d0123fa4b183f6f2dd4e63\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:31:\"remove-category-word-from-title\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635341;}}}}}s:19:\"import_plugin:wc4bp\";a:1:{s:32:\"36a8d9a1da3d37f35e64cd388a4e8a22\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:5:\"wc4bp\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"3.0.4\";i:2;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635343;}}}}}s:27:\"import_plugin:xili-language\";a:1:{s:32:\"06b376cd31cc1588f027041b3e36c40e\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:13:\"xili-language\";s:12:\"tags_touched\";a:1:{i:0;s:6:\"2.21.2\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:0;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635345;}}}}}s:29:\"import_plugin:tk-google-fonts\";a:1:{s:32:\"a10f82e5165d8af13bc50c59686d07aa\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:15:\"tk-google-fonts\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"1.3.2\";i:1;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:0;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635347;}}}}}s:31:\"import_plugin:woo-quick-reports\";a:1:{s:32:\"0b51973ffdd037f7e930e81cea82c8e2\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:17:\"woo-quick-reports\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"trunk\";i:9;s:5:\"1.0.4\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635348;i:1;i:1635352;}}}}}s:31:\"import_plugin:tm-style-switcher\";a:1:{s:32:\"610287c669ee23fb0fa534e6591aea87\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:17:\"tm-style-switcher\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"1.0.4\";i:312;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635349;}}}}}s:27:\"import_plugin:wp-ispconfig3\";a:1:{s:32:\"cf895ed2da435855f6d8ecc2bfaf7132\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:13:\"wp-ispconfig3\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635350;}}}}}s:31:\"import_plugin:easy-social-icons\";a:1:{s:32:\"c3e226b9a7dfa887cc615b82c610c880\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:17:\"easy-social-icons\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"3.0.3\";i:1;s:5:\"trunk\";}s:14:\"readme_touched\";b:0;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635351;}}}}}s:41:\"import_plugin:hotelierscom-booking-module\";a:1:{s:32:\"2082881f804ecfc66612a125bb148c86\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:27:\"hotelierscom-booking-module\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:0;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635353;}}}}}s:23:\"import_plugin:job-board\";a:1:{s:32:\"4437d4b68cb9b81f4f88748d4d60937a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:9:\"job-board\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"1.1.4\";i:72;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:1;s:9:\"revisions\";a:1:{i:0;i:1635355;}}}}}s:39:\"import_plugin:broadcast-call-to-actions\";a:1:{s:32:\"c5f60da8007777594da9188220ed8e0f\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:25:\"broadcast-call-to-actions\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:0;s:14:\"assets_touched\";b:1;s:9:\"revisions\";a:3:{i:0;i:1635357;i:1;i:1635359;i:2;i:1635361;}}}}}s:39:\"import_plugin:security-malware-firewall\";a:1:{s:32:\"4813db68b3406052934226ce163e6c6c\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:25:\"security-malware-firewall\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:0;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635358;}}}}}s:34:\"import_plugin:omega-instant-search\";a:1:{s:32:\"ccb18b8ecf69552da93aec83916905b4\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:20:\"omega-instant-search\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"trunk\";i:4;s:5:\"1.4.9\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635362;i:1;i:1635363;}}}}}s:25:\"import_plugin:gr-progress\";a:1:{s:32:\"20359596b1413ddc7a5ca7e5cfb00e83\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:11:\"gr-progress\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"1.5.0\";i:7;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635366;i:1;i:1635377;}}}}}s:41:\"import_plugin:dc-woocommerce-multi-vendor\";a:1:{s:32:\"be43a970a6c9b3eda5d0f620c5a88f7c\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:27:\"dc-woocommerce-multi-vendor\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"2.6.2\";i:444;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635367;i:1;i:1635369;}}}}}s:24:\"import_plugin:locatoraid\";a:1:{s:32:\"64222e7174bbc2c54849562697978aee\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:10:\"locatoraid\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635368;}}}}}s:23:\"import_plugin:soulmatch\";a:1:{s:32:\"e3b5b3b988e00e1fa5510f2ac744bd82\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:9:\"soulmatch\";s:12:\"tags_touched\";a:3:{i:0;s:5:\"0.1.0\";i:1;s:5:\"trunk\";i:2;s:5:\"0.1.1\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635370;i:1;i:1635372;}}}}}s:25:\"import_plugin:hellodialog\";a:1:{s:32:\"055b6538c4836a7d9b5eae55723b503f\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:11:\"hellodialog\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"trunk\";i:3;s:5:\"1.2.1\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635371;i:1;i:1635373;}}}}}s:38:\"import_plugin:business-hours-indicator\";a:1:{s:32:\"b54f7a4bc5a85c1b48c06a4afc15547d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:24:\"business-hours-indicator\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"2.0.0\";i:88;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635374;}}}}}s:25:\"import_plugin:zero-bs-crm\";a:1:{s:32:\"f551c714a4ef814cd05a24ed0afbec80\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:11:\"zero-bs-crm\";s:12:\"tags_touched\";a:2:{i:0;s:3:\"2.0\";i:1;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:0;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635375;}}}}}s:30:\"import_plugin:eu-cookie-notice\";a:1:{s:32:\"f7b11ea31ea955e4d8fdca0dc4a297a2\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:16:\"eu-cookie-notice\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"trunk\";i:9;s:5:\"1.0.4\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635376;i:1;i:1635380;}}}}}s:22:\"import_plugin:iqq-smtp\";a:1:{s:32:\"2febd2b4304f929dcb50f32ee55fa86a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:8:\"iqq-smtp\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"0.2.0\";i:3;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635378;}}}}}s:44:\"import_plugin:eagle-storytelling-application\";a:1:{s:32:\"e036850660c3b2bf7775ebc7c1624e28\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:30:\"eagle-storytelling-application\";s:12:\"tags_touched\";a:3:{i:0;s:5:\"trunk\";i:13;s:8:\"2.1.0010\";i:182;s:5:\"2.1.1\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:4:{i:0;i:1635379;i:1;i:1635383;i:2;i:1635386;i:3;i:1635387;}}}}}s:47:\"import_plugin:bancomail-email-lists-integration\";a:1:{s:32:\"0975832a7f39d97c839a071dfee7d998\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:33:\"bancomail-email-lists-integration\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:1;s:9:\"revisions\";a:3:{i:0;i:1635381;i:1;i:1635385;i:2;i:1635391;}}}}}s:25:\"import_plugin:maxgalleria\";a:1:{s:32:\"df07becf5c230f38be903273064f28f5\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:11:\"maxgalleria\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"trunk\";i:4;s:5:\"5.2.4\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635384;i:1;i:1635388;}}}}}s:30:\"import_plugin:apsis-pro-for-wp\";a:1:{s:32:\"49bc332c6383156cb8c59b0e0e1f9e0c\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:16:\"apsis-pro-for-wp\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"1.0.8\";i:9;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635389;}}}}}s:23:\"import_plugin:prime-ads\";a:1:{s:32:\"ea57606817115a1dbe22f2accc96f258\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:9:\"prime-ads\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635390;}}}}}s:45:\"import_plugin:kikfyre-events-calendar-tickets\";a:1:{s:32:\"e7e6004d80488f3e0a19f05eecc17829\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:31:\"kikfyre-events-calendar-tickets\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"1.3.2\";i:293;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635393;}}}}}s:35:\"import_plugin:iyzico-payment-module\";a:1:{s:32:\"1e6226028161c720eb9e16a2db22192f\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:21:\"iyzico-payment-module\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"1.0.3\";}s:14:\"readme_touched\";b:0;s:12:\"code_touched\";b:0;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635394;}}}}}s:39:\"import_plugin:embed-documents-shortcode\";a:1:{s:32:\"edfa2d2174226e9ffa08d2e707676b71\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:25:\"embed-documents-shortcode\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:0;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635395;}}}}}s:45:\"import_plugin:tm-woocommerce-compare-wishlist\";a:1:{s:32:\"114a5a0534e2577dbe92843db67203ac\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:31:\"tm-woocommerce-compare-wishlist\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"1.1.4\";i:54;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:2:{i:0;i:1635396;i:1;i:1635400;}}}}}s:24:\"import_plugin:wptelegram\";a:1:{s:32:\"b48ff72b24a93ec3c05396a96a04c4c7\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:10:\"wptelegram\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635397;}}}}}s:31:\"import_plugin:new-photo-gallery\";a:1:{s:32:\"437b0563d302b1b5a0507e989d869716\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:17:\"new-photo-gallery\";s:12:\"tags_touched\";a:2:{i:0;s:5:\"0.2.5\";i:2;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:3:{i:0;i:1635398;i:1;i:1635399;i:2;i:1635401;}}}}}s:36:\"import_plugin:dynamic-user-directory\";a:1:{s:32:\"cacb60129db43046003b6edd378ca0eb\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;a:6:{s:6:\"plugin\";s:22:\"dynamic-user-directory\";s:12:\"tags_touched\";a:1:{i:0;s:5:\"trunk\";}s:14:\"readme_touched\";b:1;s:12:\"code_touched\";b:1;s:14:\"assets_touched\";b:0;s:9:\"revisions\";a:1:{i:0;i:1635402;}}}}}}i:1492449218;a:1:{s:25:\"plugin_directory_svn_sync\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"every_30s\";s:4:\"args\";a:0:{}s:8:\"interval\";i:30;}}}i:1492450568;a:2:{s:26:\"plugin_directory_meta_sync\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:33:\"plugin_directory_update_api_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1492450775;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1492451692;a:1:{s:24:\"akismet_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;}}}i:1492479857;a:1:{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;}}}i:1492480130;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1492481211;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:1492501189;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1492501194;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'), (115,'current_theme','WordPress.org Plugins','yes'), (117,'theme_switched','','yes'), (118,'theme_switched_via_customizer','','yes'), (119,'post_count','0','yes'), (120,'recently_activated','a:1:{s:21:\"wp-sweep/wp-sweep.php\";i:1491727123;}','yes'), (135,'widget_ratings','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (136,'theme_mods_pub/wporg-plugins','a:2:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;}','yes'), (145,'db_upgraded','','yes'), (147,'blog_upload_space','','yes'), (154,'category_children','a:0:{}','yes'), (176,'widget_blog_subscription','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (177,'widget_facebook-likebox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (178,'widget_wpcom-goodreads','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (179,'widget_grofile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (180,'widget_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (181,'widget_rss_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (182,'widget_wpcom_social_media_icons_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (183,'widget_twitter_timeline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (184,'widget_jetpack_display_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (190,'stb_enabled','1','yes'), (191,'stc_enabled','1','yes'), (192,'gravatar_disable_hovercards','enabled','yes'), (211,'subscription_options','a:2:{s:10:\"invitation\";s:226:\"Howdy.\r\n\r\nYou recently followed this blog\'s posts. This means you will receive each new post by email.\r\n\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.\";s:14:\"comment_follow\";s:239:\"Howdy.\r\n\r\nYou recently followed one of my posts. This means you will receive an email when new comments are posted.\r\n\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.\";}','yes'), (263,'widget_plugin_metadata','a:2:{i:2;N;s:12:\"_multiwidget\";i:1;}','yes'), (264,'widget_plugin_ratings','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'), (265,'widget_plugin_support','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'), (270,'new_admin_email','cabal@wordpress.org','yes'), (271,'widget_plugin_meta','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'), (283,'plugin_tag_children','a:0:{}','yes'), (320,'plugin_special_cat_children','a:0:{}','yes'), (340,'plugin_category_children','a:0:{}','yes'), (344,'widget_plugin_donate','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (367,'plugin_section_children','a:0:{}','yes'), (510,'widget_plugin_commit_subscriptions','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (749,'do_activate','0','yes'), (715560,'plugin_built_for_children','a:0:{}','yes'), (715563,'plugin_business_model_children','a:0:{}','yes'), (897644,'widget_plugin_committers','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (897645,'widget_plugin_contributors','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (897646,'widget_plugin_review','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (3190627,'fresh_site','0','yes'), (4700976,'plugin_last_review_sync','2017-04-07 12:26:24','no'), (4952978,'plugin_last_tested_sync','8e2921b42372eb0fb9e90f91f00276fe','yes'), (6528637,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:0:{}s:6:\"custom\";a:0:{}}}','yes'), (6528639,'post_by_email_address71962','NULL','yes'), (6961029,'post_by_email_address196012','NULL','yes'), (6961030,'monitor_receive_notifications','1','yes'), (8091624,'svn_rev_last_processed','1635402','yes'), (12618686,'post_by_email_address148148','NULL','yes'), (24889943,'rewrite_rules','a:116:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:26:\"^browse/favorites/([^/]+)$\";s:53:\"index.php?browse=favorites&favorites_user=$matches[1]\";s:18:\"^search/([^/]+)/?$\";s:23:\"index.php?s=$matches[1]\";s:20:\"^([^/]+)/advanced/?$\";s:44:\"index.php?name=$matches[1]&plugin_advanced=1\";s:81:\"^([^/]+)/(installation|faq|screenshots|changelog|stats|developers|other_notes)/?$\";s:69:\"index.php?redirect_plugin=$matches[1]&redirect_plugin_tab=$matches[2]\";s:18:\"^([^/]+)/\\#(.*)/?$\";s:26:\"index.php?name=$matches[1]\";s:54:\"post-categories/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:49:\"post-categories/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:30:\"post-categories/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:42:\"post-categories/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:24:\"post-categories/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:50:\"post-tags/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:45:\"post-tags/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:26:\"post-tags/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:38:\"post-tags/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:20:\"post-tags/([^/]+)/?$\";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:47:\"xposts/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?xposts=$matches[1]&feed=$matches[2]\";s:42:\"xposts/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?xposts=$matches[1]&feed=$matches[2]\";s:23:\"xposts/([^/]+)/embed/?$\";s:39:\"index.php?xposts=$matches[1]&embed=true\";s:35:\"xposts/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?xposts=$matches[1]&paged=$matches[2]\";s:17:\"xposts/([^/]+)/?$\";s:28:\"index.php?xposts=$matches[1]\";s:49:\"category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?plugin_category=$matches[1]&feed=$matches[2]\";s:44:\"category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?plugin_category=$matches[1]&feed=$matches[2]\";s:25:\"category/([^/]+)/embed/?$\";s:48:\"index.php?plugin_category=$matches[1]&embed=true\";s:37:\"category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?plugin_category=$matches[1]&paged=$matches[2]\";s:19:\"category/([^/]+)/?$\";s:37:\"index.php?plugin_category=$matches[1]\";s:45:\"tags/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?plugin_tags=$matches[1]&feed=$matches[2]\";s:40:\"tags/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?plugin_tags=$matches[1]&feed=$matches[2]\";s:21:\"tags/([^/]+)/embed/?$\";s:44:\"index.php?plugin_tags=$matches[1]&embed=true\";s:33:\"tags/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?plugin_tags=$matches[1]&paged=$matches[2]\";s:15:\"tags/([^/]+)/?$\";s:33:\"index.php?plugin_tags=$matches[1]\";s:77:\"browse/(featured|popular|beta|new|favorites)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?browse=$matches[1]&feed=$matches[2]\";s:72:\"browse/(featured|popular|beta|new|favorites)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?browse=$matches[1]&feed=$matches[2]\";s:53:\"browse/(featured|popular|beta|new|favorites)/embed/?$\";s:39:\"index.php?browse=$matches[1]&embed=true\";s:65:\"browse/(featured|popular|beta|new|favorites)/page/?([0-9]{1,})/?$\";s:46:\"index.php?browse=$matches[1]&paged=$matches[2]\";s:47:\"browse/(featured|popular|beta|new|favorites)/?$\";s:28:\"index.php?browse=$matches[1]\";s:49:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:44:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:25:\"mentions/([^/]+)/embed/?$\";s:41:\"index.php?mentions=$matches[1]&embed=true\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'), (26414311,'wpcom_publish_posts_with_markdown','1','yes'), (26414325,'jetpack_sync_settings_disable','0','yes'), (26414326,'jetpack_options','a:4:{s:7:\"version\";s:16:\"4.8.1:1491572500\";s:11:\"old_version\";s:16:\"4.8.1:1491572500\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;}','yes'), (26414328,'jetpack_testimonial','0','yes'), (26414329,'jetpack_available_modules','a:1:{s:5:\"4.8.1\";a:40:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"omnisearch\";s:3:\"2.3\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'), (26414330,'jetpack_activated','2','yes'); /*!40000 ALTER TABLE `wporg_367_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_367_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_367_postmeta`; CREATE TABLE `wporg_367_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_367_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_367_postmeta` DISABLE KEYS */; INSERT INTO `wporg_367_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (9,8,'_wp_page_template','default'), (12,10,'_wp_page_template','default'), (298,40,'tested','4.6.4'), (299,40,'requires','4.6-alpha'), (300,40,'stable_tag','trunk'), (301,40,'donate_link',''), (302,40,'upgrade_notice','a:0:{}'), (305,40,'screenshots','a:2:{i:1;s:69:\"Existing plugin install process, showing The Bleak Screen of Sadness.\";i:2;s:52:\"Plugin install process with Shiny Updates activated.\";}'), (306,40,'header_name','Shiny Updates'), (307,40,'header_plugin_uri','https://github.com/obenland/shiny-updates'), (308,40,'version','3-20160927'), (309,40,'header_author','the WordPress team'), (310,40,'header_author_uri','https://github.com/obenland/shiny-updates'), (311,40,'header_textdomain',''), (312,40,'sections','a:1:{i:0;s:11:\"description\";}'), (343,43,'tested','4.7.3'), (344,43,'requires','4.5'), (345,43,'stable_tag','0.7.1'), (346,43,'donate_link',''), (347,43,'upgrade_notice','a:2:{s:5:\"0.4.0\";s:188:\"

We've removed the compatibility shim for the placeholder attribute argument. You should register a placeholder for your field using the meta argument.

\";s:5:\"0.3.0\";s:236:\"

We've removed the compatibility shim for the magical content attribute. If you were using this to support editing inner content, you'll need to change your UI registration to use inner_content.

\";}'), (350,43,'screenshots','a:4:{i:1;s:48:\"Without Shortcake, shortcodes have a minimal UI.\";i:2;s:72:\"But with Shortcake, TinyMCE will render the shortcode in a TinyMCE view.\";i:3;s:68:\"And add a user-friendly UI to edit shortcode content and attributes.\";i:4;s:52:\"Add new shortcodes to your post through \"Add Media\".\";}'), (351,43,'header_name','Shortcake (Shortcode UI)'), (352,43,'header_plugin_uri',''), (353,43,'version','0.7.1'), (354,43,'header_author','Fusion Engineering and community'), (355,43,'header_author_uri','http://next.fusion.net/tag/shortcode-ui/'), (356,43,'header_textdomain','shortcode-ui'), (357,43,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (358,44,'tested','4.7.3'), (359,44,'requires','4.6'), (360,44,'stable_tag','2.2.1'), (361,44,'donate_link','https://iseulde.com/donate'), (362,44,'upgrade_notice','a:0:{}'), (365,44,'screenshots','a:0:{}'), (366,44,'header_name','Front-end Editor'), (367,44,'header_plugin_uri','https://wordpress.org/plugins/wp-front-end-editor/'), (368,44,'version','2.2.1'), (369,44,'header_author','Ella Iseulde Van Dorpe'), (370,44,'header_author_uri','https://iseulde.com'), (371,44,'header_textdomain','wp-front-end-editor'), (372,44,'sections','a:1:{i:0;s:11:\"description\";}'), (403,47,'tested','4.8-trunk'), (404,47,'requires','4.7'), (405,47,'stable_tag','trunk'), (406,47,'donate_link',''), (407,47,'upgrade_notice','a:4:{s:3:\"0.3\";s:108:\"
    \n
  • Remove the Better Contrast and Focus component (added to WordPress core in version 4.7).
  • \n
\";s:3:\"0.2\";s:98:\"
    \n
  • Remove the Device Previews component (added to WordPress core in version 4.5).
  • \n
\";s:3:\"0.1\";s:100:\"
    \n
  • Added the Device Previews component and the Better Contrast and Focus component.
  • \n
\";s:3:\"0.0\";s:35:\"
    \n
  • Initial commit.
  • \n
\";}'), (410,47,'screenshots','a:1:{i:1;s:50:\"Adaptive width component on a ~2100px wide screen.\";}'), (411,47,'header_name','Customizer UI Experiments'), (412,47,'header_plugin_uri','http://wordpress.org/plugins/customizer-ui-experiments'), (413,47,'version','0.3'), (414,47,'header_author','The Customizer Team'), (415,47,'header_author_uri','https://wordpress.slack.com/messages/core-customize/'), (416,47,'header_textdomain',''), (417,47,'sections','a:3:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:9:\"changelog\";}'), (418,48,'tested','4.7.3'), (419,48,'requires','4.3-beta3'), (420,48,'stable_tag','trunk'), (421,48,'donate_link',''), (422,48,'upgrade_notice','a:3:{s:3:\"1.1\";s:60:\"
    \n
  • Fixes for recent WordPress core changes.
  • \n
\";s:3:\"1.0\";s:41:\"
    \n
  • Fix setting handling.
  • \n
\";s:3:\"0.9\";s:35:\"
    \n
  • Initial commit.
  • \n
\";}'), (425,48,'screenshots','a:1:{i:1;s:49:\"New cropping step when adding a background image.\";}'), (426,48,'header_name','Background Image Cropper'), (427,48,'header_plugin_uri','https://core.trac.wordpress.org/ticket/32403'), (428,48,'version','1.1'), (429,48,'header_author','Nick Halsey'), (430,48,'header_author_uri','http://nick.halsey.co/'), (431,48,'header_textdomain',''), (432,48,'sections','a:3:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:9:\"changelog\";}'), (433,49,'tested','4.7.3'), (434,49,'requires','4.3'), (435,49,'stable_tag','trunk'), (436,49,'donate_link',''), (437,49,'upgrade_notice','a:0:{}'), (440,49,'screenshots','a:0:{}'), (441,49,'header_name','Two Factor'), (442,49,'header_plugin_uri','http://github.com/georgestephanis/two-factor/'), (443,49,'version','0.1-dev-20170331'), (444,49,'header_author','George Stephanis'), (445,49,'header_author_uri','http://stephanis.info'), (446,49,'header_textdomain','two-factor'), (447,49,'sections','a:2:{i:0;s:11:\"description\";i:1;s:9:\"changelog\";}'), (448,50,'tested','4.6.4'), (449,50,'requires','3.0'), (450,50,'stable_tag','0.6.3'), (451,50,'donate_link',''), (452,50,'upgrade_notice','a:5:{s:3:\"0.6\";s:46:\"

Support for exports from WordPress 3.4.

\";s:5:\"0.5.2\";s:78:\"

Fix incorrect error message when the export file could not be uploaded.

\";s:3:\"0.5\";s:69:\"

Import comment meta and other minor bugfixes and enhancements.

\";s:3:\"0.4\";s:71:\"

Bug fixes for attachment importing and other small enhancements.

\";s:3:\"0.3\";s:137:\"

Upgrade for a more robust and reliable experience when importing WordPress export files, and for compatibility with WordPress 3.1.

\";}'), (455,50,'screenshots','a:0:{}'), (456,50,'header_name','WordPress Importer'), (457,50,'header_plugin_uri','http://wordpress.org/extend/plugins/wordpress-importer/'), (458,50,'version','0.6.3'), (459,50,'header_author','wordpressdotorg'), (460,50,'header_author_uri','http://wordpress.org/'), (461,50,'header_textdomain','wordpress-importer'), (462,50,'sections','a:3:{i:0;s:11:\"description\";i:1;s:3:\"faq\";i:2;s:9:\"changelog\";}'), (480,40,'assets_screenshots','a:2:{s:16:\"screenshot-1.gif\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.gif\";s:8:\"revision\";s:7:\"1327799\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.gif\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.gif\";s:8:\"revision\";s:7:\"1327799\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}}'), (481,40,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1327674\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1327674\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (482,40,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1327674\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1327674\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (489,43,'assets_screenshots','a:4:{s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1615947\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1615947\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1615947\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1615947\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"plugin\";}}'), (490,43,'assets_icons','a:3:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1130575\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1130575\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:7:\"1130575\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (491,43,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1115398\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1115398\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (492,44,'assets_screenshots','a:0:{}'), (493,44,'assets_icons','a:1:{s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1471446\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (494,44,'assets_banners','a:1:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1471446\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}}'), (501,47,'assets_screenshots','a:2:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1198516\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1199787\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}}'), (502,47,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1198518\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1198516\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (503,47,'assets_banners','a:0:{}'), (504,48,'assets_screenshots','a:1:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1198515\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}}'), (505,48,'assets_icons','a:1:{s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:7:\"1198489\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (506,48,'assets_banners','a:0:{}'), (507,49,'assets_screenshots','a:0:{}'), (508,49,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1627029\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1627029\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (509,49,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1627029\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1627029\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (510,50,'assets_screenshots','a:0:{}'), (511,50,'assets_icons','a:0:{}'), (512,50,'assets_banners','a:1:{s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"547654\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (521,40,'assets_banners_color','1ea998'), (524,43,'assets_banners_color','153b46'), (525,44,'assets_banners_color','ffffff'), (528,47,'assets_banners_color',''), (529,48,'assets_banners_color',''), (530,49,'assets_banners_color','5fa4c5'), (531,50,'assets_banners_color','5696b3'), (608,85,'tested','4.7.3'), (609,85,'requires','4.6'), (610,85,'stable_tag','4.8.1'), (611,85,'donate_link',''), (612,85,'upgrade_notice','a:0:{}'), (615,85,'screenshots','a:5:{i:1;s:68:\"Dashboard: Bird?s eye view of your site stats, status, and health.\";i:2;s:67:\"Safety: Protect your site and data with powerful security services.\";i:3;s:53:\"Engagement: Social sharing, likes, and related posts.\";i:4;s:54:\"Analytics: Actionable site stats and traffic insights.\";i:5;s:58:\"Traffic: SEO Tools for Google, Twitter, Facebook and more.\";}'), (616,85,'header_name','Jetpack by WordPress.com'), (617,85,'header_plugin_uri','http://jetpack.com'), (618,85,'version','4.8.1'), (619,85,'header_author','Automattic'), (620,85,'header_author_uri','http://jetpack.com'), (621,85,'header_textdomain','jetpack'), (622,85,'sections','a:3:{i:0;s:11:\"description\";i:1;s:3:\"faq\";i:2;s:9:\"changelog\";}'), (623,85,'assets_screenshots','a:5:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1594422\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1594422\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1594422\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1594422\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1594422\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}}'), (624,85,'assets_icons','a:3:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:6:\"969908\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:6:\"969908\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:6:\"969908\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (625,85,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1173629\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1173629\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (626,85,'assets_banners_color','8cc258'), (776,113,'tested','4.7.3'), (777,113,'requires','3.7'), (778,113,'stable_tag','3.3'), (779,113,'donate_link',''), (780,113,'upgrade_notice','a:0:{}'), (783,113,'screenshots','a:0:{}'), (784,113,'header_name','Akismet Anti-Spam'), (785,113,'header_plugin_uri','https://akismet.com/'), (786,113,'version','3.3'), (787,113,'header_author','Automattic'), (788,113,'header_author_uri','https://automattic.com/wordpress-plugins/'), (789,113,'header_textdomain','akismet'), (790,113,'sections','a:3:{i:0;s:11:\"description\";i:1;s:9:\"changelog\";i:2;s:3:\"faq\";}'), (791,113,'assets_screenshots','a:0:{}'), (792,113,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:6:\"969272\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:6:\"969272\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (793,113,'assets_banners','a:1:{s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:6:\"479904\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (794,113,'assets_banners_color','5b8813'), (799,113,'note',''), (881,158,'tested','4.7.3'), (882,158,'requires','4.6'), (883,158,'stable_tag','4.7'), (884,158,'donate_link','https://contactform7.com/donate/'), (885,158,'upgrade_notice','a:0:{}'), (887,158,'screenshots','a:1:{i:1;s:16:\"screenshot-1.png\";}'), (888,158,'header_name','Contact Form 7'), (889,158,'header_plugin_uri','https://contactform7.com/'), (890,158,'version','4.7'), (891,158,'header_author','Takayuki Miyoshi'), (892,158,'header_author_uri','http://ideasilo.wordpress.com/'), (893,158,'header_textdomain','contact-form-7'), (894,158,'sections','a:3:{i:0;s:11:\"description\";i:1;s:3:\"faq\";i:2;s:9:\"changelog\";}'), (895,158,'assets_screenshots','a:1:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1176454\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}}'), (896,158,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:6:\"984007\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:6:\"984007\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (897,158,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:6:\"860901\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"880427\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (898,158,'assets_banners_color','989f85'), (899,159,'tested','4.7.3'), (900,159,'requires','4.6'), (901,159,'stable_tag','4.5'), (902,159,'donate_link','https://yoast.com/'), (903,159,'upgrade_notice','a:0:{}'), (905,159,'screenshots','a:6:{i:1;s:114:\"The Yoast SEO plugin general meta box. You\'ll see this on edit post pages, for posts, pages and custom post types.\";i:2;s:49:\"The fully configurable XML sitemap for Yoast SEO.\";i:3;s:100:\"Easily import SEO data from other SEO plugins like All In One SEO pack, HeadSpace2 SEO and wpSEO.de.\";i:4;s:42:\"Example of the SEO analysis functionality.\";i:5;s:50:\"Example of the readability analysis functionality.\";i:6;s:47:\"The advanced section of the Yoast SEO meta box.\";}'), (906,159,'header_name','Yoast SEO'), (907,159,'header_plugin_uri','https://yoast.com/wordpress/plugins/seo/#utm_source=wpadmin&utm_medium=plugin&utm_campaign=wpseoplugin'), (908,159,'version','4.5'), (909,159,'header_author','Team Yoast'), (910,159,'header_author_uri','https://yoast.com/'), (911,159,'header_textdomain','wordpress-seo'), (912,159,'sections','a:3:{i:0;s:11:\"description\";i:1;s:3:\"faq\";i:2;s:9:\"changelog\";}'), (913,159,'assets_screenshots','a:6:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1550389\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1550389\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1550389\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1550389\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1550389\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:7:\"1550389\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}}'), (914,159,'assets_icons','a:3:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1550389\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1550389\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:7:\"1203032\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (915,159,'assets_banners','a:3:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1550389\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:19:\"banner-1800x690.png\";a:4:{s:8:\"filename\";s:19:\"banner-1800x690.png\";s:8:\"revision\";s:7:\"1550389\";s:10:\"resolution\";s:8:\"1800x690\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1550389\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (916,159,'assets_banners_color','afb8b6'), (917,160,'tested','4.7.3'), (918,160,'requires','4.0'), (919,160,'stable_tag','2.3.12.2.1'), (920,160,'donate_link','https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtorbert%40gmail%2ecom&item_name=All%20In%20One%20SEO%20Pack&item_number=Support%20Open%20Source&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8'), (921,160,'upgrade_notice','a:6:{s:3:\"2.3\";s:198:\"

-Various under the hood improvements\n-Increased WooCommerce support, especially in pro version\n-New SEO data importer\n-New custom roles and capabilities for multi-user sites\n-API improvements

\";s:9:\"2.2.7.6.2\";s:38:\"

-Additional WooCommerce support

\";s:9:\"2.2.7.6.1\";s:253:\"

-New Indonesian translation ? Thanks to Rio Bermano\n-Updated translations files (57 total languages!)\n-Improved support for WooCommerce when the Home page is also set as the Shop page\n-Social Meta Module ? Update for Facebook?s Admin App ID

\";s:9:\"2.2.7.6 -\";s:288:\"

-Social Meta Module ? Added support for Facebook App ID\n-Added a warning message when Search Engine Visibility is enabled in WordPress Reading Settings\n-Various under-the-hood code improvements\n-Changed when Noindex Settings are displayed in relation to Custom Post Type Settings

\";s:7:\"2.2.7.5\";s:292:\"

-fixes:\n-category capitalization fixes

\n\n

enhancements:\n-futureproofing the performance function for PHP7,8\n-futureproofing the open graph and social meta function for PHP7,8\n-futureproofing the file editor function for PHP7,8\n-futureproofing the import-export function for PHP7,8

\";s:7:\"2.2.7.4\";s:310:\"

-Update for WordPress 4.4\n-CSS fixes\n-Important localization improvements\n-Update for Social Meta Module - Photo Twitter Card\n-Add support for the full set of Twitter meta tags (https://dev.twitter.com/cards/markup)\n-Bugfix for issue with Nonindex options for post types\n-Bugfix for schema.org OG markup

\";}'), (923,160,'screenshots','a:8:{i:1;s:249:\"XML Sitemaps - Out of the box support for XML sitemaps for all major search engines, with automatic submission to ensure search engines can easily crawl your site. Choose between dynamic or static sitemaps for increased performance.\";i:2;s:151:\"SEO Modules Enable or Disable any advanced SEO modules as desired. Our team is constantly adding new SEO modules, so check back often.\";i:3;s:199:\"Extensive support Read our Quickstart Beginner\'s Guide, Advanced User Guide, Access our Premium Support Forums with a full-time support staff, and watch our excellent video tutorials\";i:4;s:215:\"Custom Post Types Support Out of the box support for ALL Custom Post Types. This is especially handy if you use any forum or e-commerce software, or have had any other custom work done on your site.\";i:5;s:181:\"Easily Access SEO content Comprehensive overview of SEO Title, Description, and Keywords for the entire post/content type. Edit it all from one screen to save time.\";i:6;s:265:\"Additional Pages for XML Sitemap You can easily configure any additional pages to be added to the sitemap in addition to the dynamically generated WordPress pages. This ensures that search engines like Google will see ALL of your website\'s content.\";i:7;s:127:\"Quick-Edit Quickly edit your WordPress SEO data without having to go back and forth between different screens.\";i:8;s:137:\"SEO Menu All in One offers an extensive array of premium SEO features for free. Perfect for the novice or advanced user.\";}'), (924,160,'header_name','All In One SEO Pack'), (925,160,'header_plugin_uri','https://semperplugins.com/all-in-one-seo-pack-pro-version/'), (926,160,'version','2.3.12.2.1'), (927,160,'header_author','Michael Torbert'), (928,160,'header_author_uri','https://semperplugins.com/all-in-one-seo-pack-pro-version/'), (929,160,'header_textdomain','all-in-one-seo-pack'), (930,160,'sections','a:3:{i:0;s:11:\"description\";i:1;s:3:\"faq\";i:2;s:9:\"changelog\";}'), (931,160,'assets_screenshots','a:8:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1456084\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1456084\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1456084\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1456084\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1456084\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:7:\"1456084\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-7.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-7.png\";s:8:\"revision\";s:7:\"1456084\";s:10:\"resolution\";s:1:\"7\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-8.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-8.png\";s:8:\"revision\";s:7:\"1456084\";s:10:\"resolution\";s:1:\"8\";s:8:\"location\";s:6:\"assets\";}}'), (932,160,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:6:\"979908\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:6:\"979908\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (933,160,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1354894\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1354894\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (934,160,'assets_banners_color','afcec1'), (935,161,'tested','4.7.3'), (936,161,'requires','3.3'), (937,161,'stable_tag','4.0.8'), (938,161,'donate_link','http://www.arnebrachhold.de/redir/sitemap-paypal'), (939,161,'upgrade_notice','a:0:{}'), (941,161,'screenshots','a:3:{i:1;s:19:\"Plugin options page\";i:2;s:61:\"Sample XML sitemap (with a stylesheet for making it readable)\";i:3;s:39:\"Sample XML sitemap (without stylesheet)\";}'), (942,161,'header_name','Google XML Sitemaps'), (943,161,'header_plugin_uri','http://www.arnebrachhold.de/redir/sitemap-home/'), (944,161,'version','4.0.8'), (945,161,'header_author','Arne Brachhold'), (946,161,'header_author_uri','http://www.arnebrachhold.de/'), (947,161,'header_textdomain','sitemap'), (948,161,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (949,161,'assets_screenshots','a:3:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:6:\"937346\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:6:\"937346\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:6:\"937346\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}}'), (950,161,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:6:\"976338\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:6:\"976338\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (951,161,'assets_banners','a:1:{s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"586957\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (952,161,'assets_banners_color','e1eef5'), (953,162,'tested','3.3.2'), (954,162,'requires','2.8'), (955,162,'stable_tag','1.7.1'), (956,162,'donate_link',''), (957,162,'upgrade_notice','a:1:{s:5:\"1.7.1\";s:256:\"

Users of version 1.6.2 and 1.7.0 should upgrade immediately. There was a problem with "auth cookie" lockout enforcement. Lockout of normal password login attempts still worked as it should. Please see plugin Changelog for more information.

\";}'), (959,162,'screenshots','a:3:{i:1;s:53:\"Loginscreen after failed login with retries remaining\";i:2;s:26:\"Loginscreen during lockout\";i:3;s:43:\"Administration interface in WordPress 3.0.4\";}'), (960,162,'header_name','Limit Login Attempts'), (961,162,'header_plugin_uri','http://devel.kostdoktorn.se/limit-login-attempts'), (962,162,'version','1.7.1'), (963,162,'header_author','Johan Eenfeldt'), (964,162,'header_author_uri','http://devel.kostdoktorn.se'), (965,162,'header_textdomain','limit-login-attempts'), (966,162,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (967,162,'assets_screenshots','a:3:{s:16:\"screenshot-2.gif\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.gif\";s:8:\"revision\";s:7:\"1559359\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-3.gif\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.gif\";s:8:\"revision\";s:7:\"1559359\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-1.gif\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.gif\";s:8:\"revision\";s:7:\"1559359\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"plugin\";}}'), (968,162,'assets_icons','a:0:{}'), (969,162,'assets_banners','a:0:{}'), (970,162,'assets_banners_color',''), (971,163,'tested','4.7.3'), (972,163,'requires','4.4'), (973,163,'stable_tag','3.0.1'), (974,163,'donate_link',''), (975,163,'upgrade_notice','a:1:{s:5:\"3.0.1\";s:137:\"

3.0 is a major update. It is important that you make backups and ensure themes and extensions are 3.0 compatible before upgrading.

\";}'), (977,163,'screenshots','a:6:{i:1;s:37:\"The slick WooCommerce settings panel.\";i:2;s:27:\"WooCommerce products admin.\";i:3;s:19:\"Product data panel.\";i:4;s:26:\"WooCommerce sales reports.\";i:5;s:22:\"A single product page.\";i:6;s:25:\"A product archive (grid).\";}'), (978,163,'header_name','WooCommerce'), (979,163,'header_plugin_uri','https://woocommerce.com/'), (980,163,'version','3.0.1'), (981,163,'header_author','Automattic'), (982,163,'header_author_uri','https://woocommerce.com'), (983,163,'header_textdomain','woocommerce'), (984,163,'sections','a:3:{i:0;s:11:\"description\";i:1;s:3:\"faq\";i:2;s:9:\"changelog\";}'), (985,163,'assets_screenshots','a:6:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1063946\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1063946\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1063946\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1063946\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1087192\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:7:\"1087192\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}}'), (986,163,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1440831\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1440831\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (987,163,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1629184\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1629184\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (988,163,'assets_banners_color','e1e1e1'), (989,164,'tested','4.7.3'), (990,164,'requires','3.0'), (991,164,'stable_tag','1.4.9'), (992,164,'donate_link',''), (993,164,'upgrade_notice','a:1:{s:5:\"1.4.9\";s:146:\"

Fixed XSS on the settings page, settings page updates, file locking fixes and PHP 7.1 fix, caching fixes on static homepage blogs and more.

\";}'), (995,164,'screenshots','a:0:{}'), (996,164,'header_name','WP Super Cache'), (997,164,'header_plugin_uri','https://wordpress.org/plugins/wp-super-cache/'), (998,164,'version','1.4.9'), (999,164,'header_author','Automattic'), (1000,164,'header_author_uri','https://automattic.com/'), (1001,164,'header_textdomain','wp-super-cache'), (1002,164,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1003,164,'assets_screenshots','a:0:{}'), (1004,164,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1095422\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1095422\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1005,164,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1082414\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1082414\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1006,164,'assets_banners_color','262c32'), (1007,165,'tested','4.7.3'), (1008,165,'requires','4.7'), (1009,165,'stable_tag','4.4.3'), (1010,165,'donate_link',''), (1011,165,'upgrade_notice','a:3:{s:5:\"4.2.3\";s:51:\"

Updated for WordPress 4.3 and TinyMCE 4.2.3.

\";s:5:\"4.1.9\";s:51:\"

Updated for WordPress 4.2 and TinyMCE 4.1.9.

\";s:3:\"4.1\";s:201:\"

Includes the 'textpattern' plugin that supports some of the markdown syntax while typing, and the updated 'table' plugin that supports background and border color for tables.

\";}'), (1013,165,'screenshots','a:5:{i:1;s:76:\"The WordPress editor after installing this plugin (default plugin settings).\";i:2;s:53:\"The TinyMCE Advanced settings page, toolbars options.\";i:3;s:49:\"The TinyMCE Advanced settings page, user options.\";i:4;s:53:\"The TinyMCE Advanced settings page, advanced options.\";i:5;s:50:\"The TinyMCE Advanced settings page, admin options.\";}'), (1014,165,'header_name','TinyMCE Advanced'), (1015,165,'header_plugin_uri','http://www.laptoptips.ca/projects/tinymce-advanced/'), (1016,165,'version','4.4.3'), (1017,165,'header_author','Andrew Ozz'), (1018,165,'header_author_uri','http://www.laptoptips.ca/'), (1019,165,'header_textdomain','tinymce-advanced'), (1020,165,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1021,165,'assets_screenshots','a:5:{s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1552191\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1552191\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1552191\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1552191\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1552191\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"plugin\";}}'), (1022,165,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:6:\"971511\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:6:\"971511\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1023,165,'assets_banners','a:2:{s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"894078\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-940x300.png\";a:4:{s:8:\"filename\";s:18:\"banner-940x300.png\";s:8:\"revision\";s:7:\"1551695\";s:10:\"resolution\";s:7:\"940x300\";s:8:\"location\";s:6:\"assets\";}}'), (1024,165,'assets_banners_color','f9f9f9'), (1025,166,'tested','4.7.3'), (1026,166,'requires','3.9'), (1027,166,'stable_tag','6.3.6'), (1028,166,'donate_link',''), (1029,166,'upgrade_notice','a:5:{s:5:\"3.1.1\";s:98:\"

Upgrade immediately. Fixes bug introduced in last release that broke permenent IP blocking.

\";s:5:\"3.0.9\";s:135:\"

Upgrade immediately. Fixes two security critical bugs: Could not get admin ID bug and permanent IP blocks not staying permanent.

\";s:5:\"3.0.6\";s:94:\"

Upgrade immediately. Improves malware URL detection by 20% or more to improve security.

\";s:5:\"3.0.3\";s:289:\"

Upgrade immediately. This release fixes an issue that caused Wordfence Security to show all your core files\nmissing under certain conditions. It was usually caused by high load on our scanning server and the\nplugin not handling an error condition halfway through the scan correctly.

\";s:5:\"3.0.2\";s:461:\"

Upgrade immediately. This release drastically reduces memory, reduces new DB connections created by \nWordfence Security to zero (we simply reuse the WordPress DB handle), reduces the number of DB queries to \nabout 1% of the previous version by removing unneeded status messages and fixes a bug that \ncould cause Wordfence Security to launch multiple concurrent scans that can put high load on your system.\nThis is a critical release. Upgrade immediately.

\";}'), (1031,166,'screenshots','a:7:{i:1;s:132:\"The dashboard gives you an overview of your site\'s security including notifications, attack statistics and Wordfence feature status.\";i:2;s:112:\"The Web Application Firewall protects your site from common types of attacks and known security vulnerabilities.\";i:3;s:144:\"The Wordfence Malware Scanner lets you know if your site has been compromised and alerts you to other security issues that need to be addressed.\";i:4;s:126:\"The Wordfence Security Live Traffic view shows you real-time activity on your site including bot traffic and exploit attempts.\";i:5;s:139:\"Block IPs that are known to be malicious, manage IPs that have been locked out and see recently throttled IPs that violated security rules.\";i:6;s:113:\"The Wordfence Options page is where you manage high-level Wordfence features and upgrade your license to Premium.\";i:7;s:92:\"The Advanced Options page allows technically-minded users fine-tune their security settings.\";}'), (1032,166,'header_name','Wordfence Security'), (1033,166,'header_plugin_uri','http://www.wordfence.com/'), (1034,166,'version','6.3.6'), (1035,166,'header_author','Wordfence'), (1036,166,'header_author_uri','http://www.wordfence.com/'), (1037,166,'header_textdomain',''), (1038,166,'sections','a:3:{i:0;s:11:\"description\";i:1;s:3:\"faq\";i:2;s:9:\"changelog\";}'), (1039,166,'assets_screenshots','a:7:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1591261\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1591261\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1591261\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1591279\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1591261\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:7:\"1591261\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-7.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-7.png\";s:8:\"revision\";s:7:\"1591261\";s:10:\"resolution\";s:1:\"7\";s:8:\"location\";s:6:\"assets\";}}'), (1040,166,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1457724\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1457724\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1041,166,'assets_banners','a:1:{s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1630456\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1042,166,'assets_banners_color','a0a2a4'), (1043,167,'tested','4.7.4'), (1044,167,'requires','3.9'), (1045,167,'stable_tag','6.1.6'), (1046,167,'donate_link','http://www.wpbeginner.com/wpbeginner-needs-your-help/'), (1047,167,'upgrade_notice','a:1:{s:5:\"6.0.0\";s:74:\"

This is a major release. Please back up your site before upgrading.

\";}'), (1049,167,'screenshots','a:5:{i:1;s:14:\"Reporting area\";i:2;s:28:\"Google Authentication wizard\";i:3;s:13:\"Settings page\";i:4;s:33:\"Custom Dimensions (a Pro feature)\";i:5;s:34:\"eCommerce Tracking (a Pro feature)\";}'), (1050,167,'header_name','Google Analytics for WordPress by MonsterInsights'), (1051,167,'header_plugin_uri','https://www.monsterinsights.com/?utm_source=wordpress&utm_medium=plugin&utm_campaign=wpmipluginpro&utm_content=v600'), (1052,167,'version','6.1.6'), (1053,167,'header_author','MonsterInsights'), (1054,167,'header_author_uri','https://www.monsterinsights.com/'), (1055,167,'header_textdomain','google-analytics-for-wordpress'), (1056,167,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1057,167,'assets_screenshots','a:5:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1598927\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1598927\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1598927\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1598927\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1598927\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}}'), (1058,167,'assets_icons','a:3:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1598927\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1598927\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:7:\"1598927\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (1059,167,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1598927\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1598927\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1060,167,'assets_banners_color','98a0ca'), (1061,168,'tested','4.5.7'), (1062,168,'requires','4.4'), (1063,168,'stable_tag','1.9'), (1064,168,'donate_link','http://contactform7.com/donate/'), (1065,168,'upgrade_notice','a:0:{}'), (1067,168,'screenshots','a:1:{i:1;s:16:\"screenshot-1.png\";}'), (1068,168,'header_name','Really Simple CAPTCHA'), (1069,168,'header_plugin_uri','http://contactform7.com/captcha/'), (1070,168,'version','1.9'), (1071,168,'header_author','Takayuki Miyoshi'), (1072,168,'header_author_uri','http://ideasilo.wordpress.com/'), (1073,168,'header_textdomain','really-simple-captcha'), (1074,168,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1075,168,'assets_screenshots','a:1:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:6:\"880406\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}}'), (1076,168,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1047241\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1047241\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1077,168,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:6:\"880406\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"880406\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1078,168,'assets_banners_color','9f895c'), (1079,169,'tested','4.7.3'), (1080,169,'requires','4.0.0'), (1081,169,'stable_tag','2.2.3'), (1082,169,'donate_link',''), (1083,169,'upgrade_notice','a:1:{s:5:\"1.5.5\";s:104:\"
    \n
  • Compatibility issue for post thumbnails with WP2.9 and WP3.0. No Database changes...
  • \n
\";}'), (1085,169,'screenshots','a:9:{i:1;s:25:\"NextGEN Thumbnail Gallery\";i:2;s:25:\"NextGEN Slideshow Gallery\";i:3;s:28:\"NextGEN Imagebrowser Gallery\";i:4;s:37:\"NextGEN Central Gallery Settings Page\";i:5;s:41:\"NextGEN Other Options Page - Watermarking\";i:6;s:45:\"NextGEN Manage Gallery Page - Edit Thumbnails\";i:7;s:45:\"NextGEN Manage Gallery Page - Edit Image Tags\";i:8;s:56:\"NextGEN Interface for Adding Galleries to a Page or Post\";i:9;s:61:\"NextGEN NextGEN Placeholder Image When Editing a Page or Post\";}'), (1086,169,'header_name','NextGEN Gallery'), (1087,169,'header_plugin_uri','https://www.imagely.com/wordpress-gallery-plugin/nextgen-gallery/'), (1088,169,'version','2.2.3'), (1089,169,'header_author','Imagely'), (1090,169,'header_author_uri','https://www.imagely.com'), (1091,169,'header_textdomain','nggallery'), (1092,169,'sections','a:3:{i:0;s:11:\"description\";i:1;s:3:\"faq\";i:2;s:9:\"changelog\";}'), (1093,169,'assets_screenshots','a:9:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:6:\"991849\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:6:\"991849\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:6:\"991849\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:6:\"991849\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:6:\"991849\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:6:\"991849\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-7.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-7.png\";s:8:\"revision\";s:6:\"991849\";s:10:\"resolution\";s:1:\"7\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-8.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-8.png\";s:8:\"revision\";s:6:\"991849\";s:10:\"resolution\";s:1:\"8\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-9.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-9.png\";s:8:\"revision\";s:6:\"991849\";s:10:\"resolution\";s:1:\"9\";s:8:\"location\";s:6:\"assets\";}}'), (1094,169,'assets_icons','a:3:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1537920\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1537920\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:7:\"1537920\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (1095,169,'assets_banners','a:1:{s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"667493\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1096,169,'assets_banners_color','777352'), (1097,170,'tested','4.7.0'), (1098,170,'requires','3.5.0'), (1099,170,'stable_tag','4.4.11'), (1100,170,'donate_link',''), (1101,170,'upgrade_notice','a:2:{s:5:\"3.0.0\";s:53:\"
    \n
  • Editor is broken in WordPress 3.3
  • \n
\";s:5:\"2.1.4\";s:60:\"
    \n
  • Adds post_id column back into acf_values
  • \n
\";}'), (1103,170,'screenshots','a:4:{i:1;s:42:\"

Creating the Advanced Custom Fields

\";i:2;s:75:\"

Adding the Custom Fields to a page and hiding the default meta boxes

\";i:3;s:69:\"

The Page edit screen after creating the Advanced Custom Fields

\";i:4;s:106:\"

Simple and intuitive API. Read the documentation at: http://www.advancedcustomfields.com/resources/

\";}'), (1104,170,'header_name','Advanced Custom Fields'), (1105,170,'header_plugin_uri','http://www.advancedcustomfields.com/'), (1106,170,'version','4.4.11'), (1107,170,'header_author','Elliot Condon'), (1108,170,'header_author_uri','http://www.elliotcondon.com/'), (1109,170,'header_textdomain',''), (1110,170,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1111,170,'assets_screenshots','a:4:{s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1539894\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1539894\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1539894\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1539894\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"plugin\";}}'), (1112,170,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1082746\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1082746\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1113,170,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:6:\"640972\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"640972\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1114,170,'assets_banners_color','daf2eb'), (1115,171,'tested','4.6.4'), (1116,171,'requires','2.8'), (1117,171,'stable_tag','trunk'), (1118,171,'donate_link','http://www.viper007bond.com/donate/'), (1119,171,'upgrade_notice','a:4:{s:5:\"2.2.4\";s:131:\"

Better AJAX response error handling in the JavaScript. This should fix a long-standing bug in this plugin. Props Hew Sutton.

\";s:5:\"2.2.3\";s:170:\"

Make the capability required to use this plugin filterable so themes and other plugins can change it. Props Jackson Whelan.

\";s:5:\"2.2.2\";s:82:\"

Fixes lots of "Are you sure you want to do this?" error messages.

\";s:5:\"2.2.1\";s:85:\"

Fix the bottom bulk action dropdown. Thanks Stefan for pointing out the issue!

\";}'), (1121,171,'screenshots','a:3:{i:1;s:42:\"The plugin at work regenerating thumbnails\";i:2;s:76:\"You can resize single images by hovering over their row in the Media Library\";i:3;s:93:\"You can resize specific multiples images using the checkboxes and the \"Bulk Actions\" dropdown\";}'), (1122,171,'header_name','Regenerate Thumbnails'), (1123,171,'header_plugin_uri','http://www.viper007bond.com/wordpress-plugins/regenerate-thumbnails/'), (1124,171,'version','2.2.6'), (1125,171,'header_author','Alex Mills (Viper007Bond)'), (1126,171,'header_author_uri','http://www.viper007bond.com/'), (1127,171,'header_textdomain','regenerate-thumbnails'), (1128,171,'sections','a:3:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:9:\"changelog\";}'), (1129,171,'assets_screenshots','a:3:{s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1539894\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1539894\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1539894\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"plugin\";}}'), (1130,171,'assets_icons','a:0:{}'), (1131,171,'assets_banners','a:0:{}'), (1132,171,'assets_banners_color',''), (1133,172,'tested','4.7.3'), (1134,172,'requires','3.6'), (1135,172,'stable_tag','3.2'), (1136,172,'donate_link','https://duplicate-post.lopo.it/'), (1137,172,'upgrade_notice','a:20:{s:3:\"3.2\";s:55:\"

new website + WPML compatibility + various fixes

\";s:5:\"3.1.2\";s:43:\"

Fixes the problem with custom fields

\";s:5:\"3.1.1\";s:90:\"

Bulk clone + custom field wildcards + other features + bugfixes + fix for nasty nag

\";s:3:\"3.1\";s:70:\"

Bulk clone + custom field wildcards + other features + bugfixes

\";s:5:\"3.0.3\";s:45:\"

Notices + small fixes and improvements

\";s:5:\"3.0.2\";s:56:\"

Small bugfixes: check the changelog for more info

\";s:5:\"3.0.1\";s:57:\"

Recommended if you have 3.0: fixes the upgrade bug

\";s:3:\"3.0\";s:132:\"

Major redesign of the settings page + fine-tune options (what to copy, custom post types, etc.) + bugfixes and XSS prevention

\";s:3:\"2.6\";s:97:\"

PHP 5.4 (Strict Standards) compatible + Fixed possible XSS and SQL injections + other bugs

\";s:5:\"2.4.1\";s:72:\"

Fixes a couple of bug. Recommended if you have problems with v2.4

\";s:3:\"2.4\";s:72:\"

Copy child pages + a couple of bugfixes + licence switch to GPLv2

\";s:3:\"2.3\";s:81:\"

Fixes a bunch of bugs + copy attachments + choose where to show the links.

\";s:3:\"2.2\";s:112:\"

VERY IMPORTANT UPGRADE to get rid of problems with complex custom fields, afflicting both 2.1.* releases.

\";s:5:\"2.1.1\";s:30:\"

Fix for upgrade problem

\";s:3:\"2.1\";s:72:\"

Copy from admin bar + user levels out, roles and capabilities in.

\";s:5:\"2.0.2\";s:56:\"

Fixed permalink bug + double choice on posts list

\";s:5:\"2.0.1\";s:27:\"

Bug fix + new option

\";s:3:\"2.0\";s:78:\"

Several improvements and new features, see changelog. Requires WP 3.0+.

\";s:5:\"1.1.1\";s:131:\"

Some users have experienced a fatal error when upgrading to v1.1: this may fix it, if it's caused by a plugin conflict.

\";s:3:\"1.1\";s:136:\"

New features and customization, WP 3.0 compatibility: you should upgrade if you want to copy Custom Posts with Custom Taxonomies.

\";}'), (1139,172,'screenshots','a:6:{i:1;s:57:\"Here you can copy the post you\'re editing to a new draft.\";i:2;s:92:\"By clicking on \"Clone\" the post is cloned immediately. \"New draft\" leads to the edit screen.\";i:3;s:17:\"The options page.\";i:4;s:168:\"The template tag manually added to Twenty Ten theme. Click on the \"Copy to a new draft\" link and you\'re redirected to the edit screen for a new draft copy of your post.\";i:5;s:19:\"The admin bar link.\";i:6;s:18:\"Bulk clone action.\";}'), (1140,172,'header_name','Duplicate Post'), (1141,172,'header_plugin_uri','https://duplicate-post.lopo.it/'), (1142,172,'version','3.2'), (1143,172,'header_author','Enrico Battocchi'), (1144,172,'header_author_uri','https://lopo.it'), (1145,172,'header_textdomain','duplicate-post'), (1146,172,'sections','a:3:{i:0;s:11:\"description\";i:1;s:3:\"faq\";i:2;s:9:\"changelog\";}'), (1147,172,'assets_screenshots','a:6:{s:16:\"screenshot-1.jpg\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.jpg\";s:8:\"revision\";s:7:\"1511207\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.jpg\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.jpg\";s:8:\"revision\";s:7:\"1511207\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.jpg\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.jpg\";s:8:\"revision\";s:7:\"1511207\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.jpg\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.jpg\";s:8:\"revision\";s:7:\"1511144\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.jpg\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.jpg\";s:8:\"revision\";s:7:\"1511207\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.jpg\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.jpg\";s:8:\"revision\";s:7:\"1553197\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}}'), (1148,172,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1612753\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1612753\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1149,172,'assets_banners','a:1:{s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1612986\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1150,172,'assets_banners_color','acaead'), (1151,173,'tested','4.7.3'), (1152,173,'requires','3.2'), (1153,173,'stable_tag','0.9.5.2'), (1154,173,'donate_link',''), (1155,173,'upgrade_notice','a:8:{s:7:\"0.9.5.2\";s:151:\"

Thanks for using W3 Total Cache! This release includes security fixes that have been reported. In addition, numerous improvements are now yours.

\";s:7:\"0.9.5.1\";s:151:\"

Thanks for using W3 Total Cache! This release includes security fixes that have been reported. In addition, numerous improvements are now yours.

\";s:5:\"0.9.5\";s:182:\"

Thanks for using W3 Total Cache! This release includes fixes for recent XSS security issues that have been reported. In addition, hundreds of other improvements are now yours.

\";s:5:\"0.9.4\";s:301:\"

Thanks for using W3 Total Cache! This release introduces hundreds of well-tested stability fixes since the last release as well as a new mode called "edge mode," which allows us to make releases more often containing new features that are still undergoing testing or active iteration.

\";s:8:\"0.9.2.11\";s:320:\"

Thanks for using W3 Total Cache! This release includes various fixes for MaxCDN and minify users. As always there are general stability / compatibility improvements. Make sure to test in a sandbox or staging environment and report any issues via the bug submission form available on the support tab of the plugin.

\";s:8:\"0.9.2.10\";s:253:\"

Thanks for using W3 Total Cache! This release includes performance improvements for every type of caching and numerous bug fixes and stability / compatbility improvements. Make sure to keep W3TC updated to ensure optimal reliability and security.

\";s:7:\"0.9.2.9\";s:410:\"

Thanks for using W3 Total Cache! This release addresses security issues for Cloudflare users as well as users that implement fragment caching via the mfunc functionality. For those using mfunc, temporarily disable page caching to allow yourself time to check the FAQ tab for new usage instructions; if you have a staging environment, that is the most convenient way to test prior to production roll out.

\";s:7:\"0.9.2.8\";s:625:\"

Thanks for using W3 Total Cache! The recent releases attempted to use WordPress' built in support for managing files and folders and clearly has not worked. Since W3TC is a caching plugin, file management is a critical issue that will cause lots of issues if it doesn't work perfectly. This release is hopefully the last attempt to restore file management back to the reliability of previous versions (0.9.2.4 etc). We realize that having any problems is not acceptable, but caching means changing server behavior, so while this plugin is still in pre-release we're trying to focus on learning.

\";}'), (1157,173,'screenshots','a:0:{}'), (1158,173,'header_name','W3 Total Cache'), (1159,173,'header_plugin_uri','https://www.w3-edge.com/wordpress-plugins/w3-total-cache/'), (1160,173,'version','0.9.5.2'), (1161,173,'header_author','Frederick Townes'), (1162,173,'header_author_uri','http://www.linkedin.com/in/fredericktownes'), (1163,173,'header_textdomain',''), (1164,173,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1165,173,'assets_screenshots','a:0:{}'), (1166,173,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1041806\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1041806\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1167,173,'assets_banners','a:1:{s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:7:\"1041806\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1168,173,'assets_banners_color','a5cfd0'), (1169,174,'tested','4.7.3'), (1170,174,'requires','3.2'), (1171,174,'stable_tag','2.91'), (1172,174,'donate_link','https://lesterchan.net/site/donation/'), (1173,174,'upgrade_notice','a:0:{}'), (1175,174,'screenshots','a:2:{i:1;s:19:\"With Custom Styling\";i:2;s:20:\"Admin - Options Page\";}'), (1176,174,'header_name','WP-PageNavi'), (1177,174,'header_plugin_uri','http://lesterchan.net/portfolio/programming/php/'), (1178,174,'version','2.91'), (1179,174,'header_author','Lester \'GaMerZ\' Chan'), (1180,174,'header_author_uri','http://lesterchan.net'), (1181,174,'header_textdomain','wp-pagenavi'), (1182,174,'sections','a:3:{i:0;s:11:\"description\";i:1;s:3:\"faq\";i:2;s:9:\"changelog\";}'), (1183,174,'assets_screenshots','a:2:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1206758\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1206758\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}}'), (1184,174,'assets_icons','a:1:{s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:6:\"977997\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (1185,174,'assets_banners','a:2:{s:19:\"banner-1544x500.jpg\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.jpg\";s:8:\"revision\";s:7:\"1206758\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:7:\"1206758\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1186,174,'assets_banners_color','e9eaec'), (1187,175,'tested','4.7.3'), (1188,175,'requires','4.0'), (1189,175,'stable_tag','2.4.25'), (1190,175,'donate_link','https://siteorigin.com/downloads/contribution/'), (1191,175,'upgrade_notice','a:1:{s:0:\"\";s:217:\"

Page Builder 2.0 is a major update. Please ensure that you backup your database before updating from a 1.x version. Updating from 1.x to 2.0 is a smooth transition, but it's always better to have a backup.

\";}'), (1193,175,'screenshots','a:5:{i:1;s:27:\"The page builder interface.\";i:2;s:53:\"Powerful widget insert dialog with groups and search.\";i:3;s:59:\"Live Editor that lets you change your content in real time.\";i:4;s:38:\"Undo changes with the History Browser.\";i:5;s:45:\"Row Builder that gives unlimited flexibility.\";}'), (1194,175,'header_name','Page Builder by SiteOrigin'), (1195,175,'header_plugin_uri','https://siteorigin.com/page-builder/'), (1196,175,'version','2.4.25'), (1197,175,'header_author','SiteOrigin'), (1198,175,'header_author_uri','https://siteorigin.com'), (1199,175,'header_textdomain',''), (1200,175,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1201,175,'assets_screenshots','a:5:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1044755\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1044755\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1395033\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1044755\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1044755\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}}'), (1202,175,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1044755\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1044755\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1203,175,'assets_banners','a:1:{s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:7:\"1044755\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1204,175,'assets_banners_color','98a1a8'), (1205,176,'tested','4.7.3'), (1206,176,'requires','4.0'), (1207,176,'stable_tag','trunk'), (1208,176,'donate_link','http://www.rayofsolaris.net/donate/'), (1209,176,'upgrade_notice','a:0:{}'), (1211,176,'screenshots','a:0:{}'), (1212,176,'header_name','Disable Comments'), (1213,176,'header_plugin_uri','https://wordpress.org/plugins/disable-comments/'), (1214,176,'version','1.6'), (1215,176,'header_author','Samir Shah'), (1216,176,'header_author_uri','http://www.rayofsolaris.net/'), (1217,176,'header_textdomain','disable-comments'), (1218,176,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1219,176,'assets_screenshots','a:0:{}'), (1220,176,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:6:\"971176\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:6:\"971176\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1221,176,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:6:\"892141\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"892141\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1222,176,'assets_banners_color','000000'), (1223,177,'tested','4.7.3'), (1224,177,'requires','4.5'), (1225,177,'stable_tag','2.8.1'), (1226,177,'donate_link',''), (1227,177,'upgrade_notice','a:0:{}'), (1229,177,'screenshots','a:0:{}'), (1230,177,'header_name','WP Multibyte Patch'), (1231,177,'header_plugin_uri','http://eastcoder.com/code/wp-multibyte-patch/'), (1232,177,'version','2.8.1'), (1233,177,'header_author','Seisuke Kuraishi'), (1234,177,'header_author_uri','http://tinybit.co.jp/'), (1235,177,'header_textdomain','wp-multibyte-patch'), (1236,177,'sections','a:2:{i:0;s:11:\"description\";i:1;s:12:\"installation\";}'), (1237,177,'assets_screenshots','a:0:{}'), (1238,177,'assets_icons','a:0:{}'), (1239,177,'assets_banners','a:0:{}'), (1240,177,'assets_banners_color',''), (1241,178,'tested','4.7.3'), (1242,178,'requires','3.1'), (1243,178,'stable_tag','2.3.1'), (1244,178,'donate_link','http://www.blackstudio.it/en/wordpress-plugins/black-studio-tinymce-widget/'), (1245,178,'upgrade_notice','a:1:{s:5:\"2.3.1\";s:131:\"

Version 2.x is a major update. If you are upgrading from version 1.x please ensure to backup your database before upgrading.

\";}'), (1247,178,'screenshots','a:3:{i:1;s:42:\"Black Studio TinyMCE Widget in Visual mode\";i:2;s:40:\"Black Studio TinyMCE Widget in HTML mode\";i:3;s:56:\"Black Studio TinyMCE Widget combined with WP Edit plugin\";}'), (1248,178,'header_name','Black Studio TinyMCE Widget'), (1249,178,'header_plugin_uri','https://wordpress.org/plugins/black-studio-tinymce-widget/'), (1250,178,'version','2.3.1'), (1251,178,'header_author','Black Studio'), (1252,178,'header_author_uri','http://www.blackstudio.it'), (1253,178,'header_textdomain','black-studio-tinymce-widget'), (1254,178,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1255,178,'assets_screenshots','a:3:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1002774\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1002774\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1002774\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}}'), (1256,178,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1002774\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1002774\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1257,178,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1002774\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1002774\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1258,178,'assets_banners_color','dac9de'), (1259,179,'tested','4.7.3'), (1260,179,'requires','3.5'), (1261,179,'stable_tag','4.9.6.2'), (1262,179,'donate_link','https://deconf.com/donate/'), (1263,179,'upgrade_notice','a:0:{}'), (1265,179,'screenshots','a:9:{i:1;s:44:\"Google Analytics Dashboard for WP Blue Color\";i:2;s:43:\"Google Analytics Dashboard for WP Real-Time\";i:3;s:57:\"Google Analytics Dashboard for WP reports per Posts/Pages\";i:4;s:41:\"Google Analytics Dashboard for WP Geo Map\";i:5;s:75:\"Google Analytics Dashboard for WP Top Pages, Top Referrers and Top Searches\";i:6;s:50:\"Google Analytics Dashboard for WP Traffic Overview\";i:7;s:65:\"Google Analytics Dashboard for WP statistics per page on Frontend\";i:8;s:54:\"Google Analytics Dashboard for WP cities on region map\";i:9;s:40:\"Google Analytics Dashboard for WP Widget\";}'), (1266,179,'header_name','Google Analytics Dashboard for WP'), (1267,179,'header_plugin_uri','https://deconf.com'), (1268,179,'version','4.9.6.2'), (1269,179,'header_author','Alin Marcu'), (1270,179,'header_author_uri','https://deconf.com'), (1271,179,'header_textdomain','google-analytics-dashboard-for-wp'), (1272,179,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1273,179,'assets_screenshots','a:9:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1064664\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1064664\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1132560\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1064664\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1064664\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:7:\"1064664\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-7.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-7.png\";s:8:\"revision\";s:7:\"1180614\";s:10:\"resolution\";s:1:\"7\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-8.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-8.png\";s:8:\"revision\";s:7:\"1064664\";s:10:\"resolution\";s:1:\"8\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-9.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-9.png\";s:8:\"revision\";s:6:\"887611\";s:10:\"resolution\";s:1:\"9\";s:8:\"location\";s:6:\"assets\";}}'), (1274,179,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:6:\"970326\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:6:\"970326\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1275,179,'assets_banners','a:1:{s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1064664\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1276,179,'assets_banners_color','dee7ef'), (1277,180,'tested','4.7.3'), (1278,180,'requires','4.5'), (1279,180,'stable_tag','6.2.1'), (1280,180,'donate_link',''), (1281,180,'upgrade_notice','a:1:{s:5:\"6.2.1\";s:83:\"

Version 6.2.1 contains important bug fixes. It is recommended for all users.

\";}'), (1283,180,'screenshots','a:5:{i:1;s:72:\"WordPress security settings are organized into an easy-to-use dashboard.\";i:2;s:44:\"Settings can also be managed in a list view.\";i:3;s:63:\"Settings are easily configured and explained with descriptions.\";i:4;s:90:\"Advanced WordPress security settings let you make more complex modifications to your site.\";i:5;s:46:\"Free malware scan powered by Sucuri SiteCheck.\";}'), (1284,180,'header_name','iThemes Security'), (1285,180,'header_plugin_uri','https://ithemes.com/security'), (1286,180,'version','6.2.1'), (1287,180,'header_author','iThemes'), (1288,180,'header_author_uri','https://ithemes.com'), (1289,180,'header_textdomain','better-wp-security'), (1290,180,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1291,180,'assets_screenshots','a:5:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1423604\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1423604\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1423604\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1423604\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1423604\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}}'), (1292,180,'assets_icons','a:3:{s:16:\"icon-128x128.jpg\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.jpg\";s:8:\"revision\";s:6:\"969999\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.jpg\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.jpg\";s:8:\"revision\";s:6:\"969999\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:6:\"970042\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (1293,180,'assets_banners','a:2:{s:19:\"banner-1554x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1554x500.png\";s:8:\"revision\";s:6:\"881897\";s:10:\"resolution\";s:8:\"1554x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"881897\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1294,180,'assets_banners_color','3c484f'), (1313,182,'tested','4.7.3'), (1314,182,'requires','3.2'), (1315,182,'stable_tag','1.12.40'), (1316,182,'donate_link','https://david.dw-perspective.org.uk/donate'), (1317,182,'upgrade_notice','a:1:{s:0:\"\";s:193:\"
    \n
  • 1.12.40: The free version of 1.12.37/38 in some circumstances could fail to complete Dropbox authentication; and for new users, the Google Drive settings might fail to show.
  • \n
\";}'), (1319,182,'screenshots','a:4:{i:1;s:134:\"

Main dashboard - screenshots are from UpdraftPlus Premium, so may reference some features that are not part of the free version

\";i:2;s:31:\"

Configuring your backups

\";i:3;s:30:\"

Restoring from a backup

\";i:4;s:42:\"

Showing and downloading backup sets

\";}'), (1320,182,'header_name','UpdraftPlus - Backup/Restore'), (1321,182,'header_plugin_uri','https://updraftplus.com'), (1322,182,'version','1.12.40'), (1323,182,'header_author','UpdraftPlus.Com, DavidAnderson'), (1324,182,'header_author_uri','https://updraftplus.com'), (1325,182,'header_textdomain','updraftplus'), (1326,182,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1327,182,'assets_screenshots','a:4:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1038142\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1038142\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:6:\"929531\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1038142\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}}'), (1328,182,'assets_icons','a:2:{s:16:\"icon-128x128.jpg\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.jpg\";s:8:\"revision\";s:7:\"1113966\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.jpg\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.jpg\";s:8:\"revision\";s:7:\"1113966\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1329,182,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:6:\"998768\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"998604\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1330,182,'assets_banners_color','ebbca2'), (1331,183,'tested','4.7.3'), (1332,183,'requires','4.0'), (1333,183,'stable_tag','1.2.2'), (1334,183,'donate_link','http://www.lifeinthegrid.com/partner'), (1335,183,'upgrade_notice','a:1:{s:0:\"\";s:100:\"

Please use our ticketing system when submitting your logs. Please do not post to the forums.

\";}'), (1337,183,'screenshots','a:5:{i:1;s:31:\"Main Interface for all Packages\";i:2;s:21:\"Create Package Step 1\";i:3;s:21:\"Create Package Step 2\";i:4;s:13:\"Build Process\";i:5;s:16:\"Installer Screen\";}'), (1338,183,'header_name','Duplicator'), (1339,183,'header_plugin_uri','http://www.lifeinthegrid.com/duplicator/'), (1340,183,'version','1.2.2'), (1341,183,'header_author','Snap Creek'), (1342,183,'header_author_uri','http://www.snapcreek.com/duplicator/'), (1343,183,'header_textdomain','duplicator'), (1344,183,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1345,183,'assets_screenshots','a:5:{s:16:\"screenshot-1.jpg\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.jpg\";s:8:\"revision\";s:7:\"1542809\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.jpg\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.jpg\";s:8:\"revision\";s:7:\"1542809\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.jpg\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.jpg\";s:8:\"revision\";s:7:\"1542809\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.jpg\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.jpg\";s:8:\"revision\";s:7:\"1542809\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.jpg\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.jpg\";s:8:\"revision\";s:7:\"1542809\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}}'), (1346,183,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1298463\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1298463\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1347,183,'assets_banners','a:1:{s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1542753\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1348,183,'assets_banners_color','858585'), (1349,184,'tested','4.7.3'), (1350,184,'requires','3.5'), (1351,184,'stable_tag','3.5'), (1352,184,'donate_link','https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CQ84KC4X8YKW8'), (1353,184,'upgrade_notice','a:0:{}'), (1355,184,'screenshots','a:6:{i:1;s:69:\"Meta Slider - for live demos see https://www.metaslider.com/examples/\";i:2;s:19:\"Nivo Slider example\";i:3;s:19:\"Coin Slider example\";i:4;s:19:\"Flex Slider example\";i:5;s:16:\"Carousel Example\";i:6;s:39:\"Administration panel - selecting slides\";}'), (1356,184,'header_name','Meta Slider'), (1357,184,'header_plugin_uri','https://www.metaslider.com'), (1358,184,'version','3.5'), (1359,184,'header_author','Matcha Labs'), (1360,184,'header_author_uri','https://www.metaslider.com'), (1361,184,'header_textdomain','ml-slider'), (1362,184,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1363,184,'assets_screenshots','a:6:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:6:\"823806\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:6:\"699157\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:6:\"699157\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:6:\"699157\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:6:\"699157\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:6:\"699157\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}}'), (1364,184,'assets_icons','a:3:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1000654\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1000654\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:7:\"1000654\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (1365,184,'assets_banners','a:1:{s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"743338\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1366,184,'assets_banners_color','47aed6'), (1367,185,'tested','4.7.3'), (1368,185,'requires','3.8'), (1369,185,'stable_tag','2.1.3'), (1370,185,'donate_link',''), (1371,185,'upgrade_notice','a:0:{}'), (1373,185,'screenshots','a:6:{i:1;s:61:\"Overall site performance - the past 7 days vs previous 7 days\";i:2;s:45:\"The top 5 traffic sources for the past 7 days\";i:3;s:75:\"Directly authenticate Google Analytics, and exclude sets of logged in users\";i:4;s:74:\"Just click to authenticate, then copy the API key and add it to the plugin\";i:5;s:83:\"View different time ranges and key metrics in the Wordpress Google Analytics widget\";i:6;s:82:\"Trending Content shows a list of alerts, article URLs, pageviews and time notified\";}'), (1374,185,'header_name','Google Analytics'), (1375,185,'header_plugin_uri','http://wordpress.org/extend/plugins/googleanalytics/'), (1376,185,'version','2.1.3'), (1377,185,'header_author','ShareThis'), (1378,185,'header_author_uri','http://sharethis.com'), (1379,185,'header_textdomain',''), (1380,185,'sections','a:3:{i:0;s:11:\"description\";i:1;s:3:\"faq\";i:2;s:9:\"changelog\";}'), (1381,185,'assets_screenshots','a:6:{s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1630414\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1630414\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:7:\"1630414\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1630414\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1630414\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1630414\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"plugin\";}}'), (1382,185,'assets_icons','a:1:{s:16:\"icon-256x256.jpg\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.jpg\";s:8:\"revision\";s:7:\"1568571\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1383,185,'assets_banners','a:1:{s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:7:\"1568571\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1384,185,'assets_banners_color','b8e236'), (1385,186,'tested','5'), (1386,186,'requires','3.5'), (1387,186,'stable_tag','trunk'), (1388,186,'donate_link','https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MMA2VA7JDXWDY'), (1389,186,'upgrade_notice','a:1:{s:0:\"\";s:23:\"

Upgrade normally

\";}'), (1391,186,'screenshots','a:5:{i:1;s:16:\"Generator button\";i:2;s:19:\"Shortcode Generator\";i:3;s:68:\"Super powerful buttons. Unlimited colors, sizes, icons and much more\";i:4;s:49:\"Tabs, spoilers, quotes/testimonials, boxes, notes\";i:5;s:49:\"Touch-enabled slider and carousel, custom gallery\";}'), (1392,186,'header_name','Shortcodes Ultimate'), (1393,186,'header_plugin_uri','http://gndev.info/shortcodes-ultimate/'), (1394,186,'version','4.9.9'), (1395,186,'header_author','Vladimir Anokhin'), (1396,186,'header_author_uri','http://gndev.info/'), (1397,186,'header_textdomain','shortcodes-ultimate'), (1398,186,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1399,186,'assets_screenshots','a:5:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1128398\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1128398\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:6:\"802469\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:6:\"802469\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:6:\"802469\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}}'), (1400,186,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1356270\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1356270\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1401,186,'assets_banners','a:3:{s:19:\"banner-1544x500.jpg\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.jpg\";s:8:\"revision\";s:7:\"1359331\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:19:\"banner-1554x500.jpg\";a:4:{s:8:\"filename\";s:19:\"banner-1554x500.jpg\";s:8:\"revision\";s:7:\"1128374\";s:10:\"resolution\";s:8:\"1554x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:7:\"1359331\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1402,186,'assets_banners_color','f8f8f8'), (1403,187,'tested','4.7.3'), (1404,187,'requires','4.2'), (1405,187,'stable_tag','2.5'), (1406,187,'donate_link','http://urbangiraffe.com/about/'), (1407,187,'upgrade_notice','a:2:{s:5:\"2.3.3\";s:123:\"
    \n
  • Full WordPress 3.5+ compatibility! Note that this contains database changes so please backup your data.
  • \n
\";s:3:\"2.4\";s:68:\"
    \n
  • Another database change. Please backup your data
  • \n
\";}'), (1409,187,'screenshots','a:0:{}'), (1410,187,'header_name','Redirection'), (1411,187,'header_plugin_uri','http://urbangiraffe.com/plugins/redirection/'), (1412,187,'version','2.5'), (1413,187,'header_author','John Godley'), (1414,187,'header_author_uri','http://urbangiraffe.com'), (1415,187,'header_textdomain','redirection'), (1416,187,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1417,187,'assets_screenshots','a:2:{s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1552195\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1552195\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"plugin\";}}'), (1418,187,'assets_icons','a:2:{s:16:\"icon-128x128.jpg\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.jpg\";s:8:\"revision\";s:6:\"983640\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.jpg\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.jpg\";s:8:\"revision\";s:6:\"983639\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1419,187,'assets_banners','a:2:{s:19:\"banner-1544x500.jpg\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.jpg\";s:8:\"revision\";s:6:\"983641\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:6:\"983642\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1420,187,'assets_banners_color','7c7f47'), (1421,188,'tested','4.7.3'), (1422,188,'requires','4.2'), (1423,188,'stable_tag','1.8.2'), (1424,188,'donate_link','https://siteorigin.com/downloads/contribution/'), (1425,188,'upgrade_notice','a:0:{}'), (1427,188,'screenshots','a:3:{i:1;s:50:\"Manage which widgets you want enabled or disabled.\";i:2;s:74:\"The button widget shows the clean, standard interface all the widgets use.\";i:3;s:32:\"An example of the button widget.\";}'), (1428,188,'header_name','SiteOrigin Widgets Bundle'), (1429,188,'header_plugin_uri','https://siteorigin.com/widgets-bundle/'), (1430,188,'version','1.8.2'), (1431,188,'header_author','SiteOrigin'), (1432,188,'header_author_uri','https://siteorigin.com'), (1433,188,'header_textdomain','so-widgets-bundle'), (1434,188,'sections','a:2:{i:0;s:11:\"description\";i:1;s:9:\"changelog\";}'), (1435,188,'assets_screenshots','a:3:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1044942\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1044942\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:6:\"924734\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}}'), (1436,188,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1044942\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1044942\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1437,188,'assets_banners','a:1:{s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:7:\"1044942\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1438,188,'assets_banners_color','8a8984'), (1439,189,'tested','4.7.3'), (1440,189,'requires','4.4'), (1441,189,'stable_tag','5.6.0'), (1442,189,'donate_link','https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted'), (1443,189,'upgrade_notice','a:3:{s:5:\"5.6.0\";s:210:\"

This version requires PHP5.3 or newer. This version introduces a new 4th optional parameter to bcn_display() and bcn_display_list() that bypasses the internal caching mechanism.

\";s:5:\"5.5.0\";s:129:\"

This version requires PHP5.3 or newer. This version introduces contextually aware taxonomy selection for post hierarchies.

\";s:5:\"5.4.0\";s:190:\"

This version requires PHP5.3 or newer. This version introduces three new filters: bcn_post_terms, bcn_add_post_type_arg, and bcn_pick_post_term.

\";}'), (1445,189,'screenshots','a:6:{i:1;s:87:\"This screenshot shows 5 different examples of breadcrumbs generated by Breadcrumb NavXT\";i:2;s:52:\"A screenshot of the General tab of the settings page\";i:3;s:55:\"A screenshot of the Post Types tab of the settings page\";i:4;s:55:\"A screenshot of the Taxonomies tab of the settings page\";i:5;s:58:\"A screenshot of the Miscellaneous tab of the settings page\";i:6;s:73:\"A screenshot of the Settings Import/Export/Reset form under the Help menu\";}'), (1446,189,'header_name','Breadcrumb NavXT'), (1447,189,'header_plugin_uri','http://mtekk.us/code/breadcrumb-navxt/'), (1448,189,'version','5.6.0'), (1449,189,'header_author','John Havlik'), (1450,189,'header_author_uri','http://mtekk.us/'), (1451,189,'header_textdomain','breadcrumb-navxt'), (1452,189,'sections','a:3:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:9:\"changelog\";}'), (1453,189,'assets_screenshots','a:6:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1058520\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1058103\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1058103\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1058103\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1058103\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:7:\"1058520\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}}'), (1454,189,'assets_icons','a:3:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:6:\"971477\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:6:\"971477\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:6:\"971477\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (1455,189,'assets_banners','a:1:{s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:6:\"479408\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1456,189,'assets_banners_color','ffffff'), (1457,190,'tested','4.7.3'), (1458,190,'requires','3.8'), (1459,190,'stable_tag','2.1.1'), (1460,190,'donate_link','https://david.dw-perspective.org.uk/donate'), (1461,190,'upgrade_notice','a:1:{s:0:\"\";s:149:\"
    \n
  • 2.1.1: Integrate easy pre-optimize backups with UpdraftPlus; reduce scope for optimization timeouts; other small tweaks and fixes
  • \n
\";}'), (1463,190,'screenshots','a:4:{i:1;s:25:\"The main optimizer Screen\";i:2;s:60:\"UpdraftPlus running a backup before an optimization proceeds\";i:3;s:12:\"Table Report\";i:4;s:8:\"Settings\";}'), (1464,190,'header_name','WP-Optimize'), (1465,190,'header_plugin_uri','http://updraftplus.com'), (1466,190,'version','2.1.1'), (1467,190,'header_author','David Anderson, Ruhani Rabin, Team Updraft'), (1468,190,'header_author_uri','https://updraftplus.com'), (1469,190,'header_textdomain','wp-optimize'), (1470,190,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1471,190,'assets_screenshots','a:4:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1605518\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1605518\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1605518\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1605518\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}}'), (1472,190,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1552899\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1552899\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1473,190,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1552899\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1552899\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1474,190,'assets_banners_color','a88f7f'), (1493,192,'tested','4.7.3'), (1494,192,'requires','4.1'), (1495,192,'stable_tag','4.1.0'), (1496,192,'donate_link','https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=donate-link'), (1497,192,'upgrade_notice','a:1:{s:5:\"3.0.3\";s:79:\"

Minor improvements and re-added support for Goodbye Captcha integration.

\";}'), (1499,192,'screenshots','a:6:{i:1;s:65:\"A static sign-up form in the sidebar of the Twenty Fifteen theme.\";i:2;s:87:\"Highly effective 1-click subscribe option in your comment, registration or other forms.\";i:3;s:45:\"Use your own fields or use our Field Builder.\";i:4;s:38:\"Integrations for many popular plugins.\";i:5;s:112:\"Don\'t know CSS? No worries, our Styles Builder will do the heavy lifting for you! (Pro Feature)\";i:6;s:104:\"Detailed statistics on which methods are generating the most subscribers. (Pro Feature)\";}'), (1500,192,'header_name','MailChimp for WordPress'), (1501,192,'header_plugin_uri','https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page'), (1502,192,'version','4.1.0'), (1503,192,'header_author','ibericode'), (1504,192,'header_author_uri','https://ibericode.com/'), (1505,192,'header_textdomain','mailchimp-for-wp'), (1506,192,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1507,192,'assets_screenshots','a:6:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1224548\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1224548\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1224548\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1224548\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1224548\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:7:\"1224548\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}}'), (1508,192,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1224577\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1224577\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1509,192,'assets_banners','a:2:{s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:6:\"739013\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1184706\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1510,192,'assets_banners_color','ceeefa'), (1511,193,'tested','4.7.3'), (1512,193,'requires','2.7'), (1513,193,'stable_tag','0.10.1'), (1514,193,'donate_link','http://www.callum-macdonald.com/code/donate/'), (1515,193,'upgrade_notice','a:14:{s:6:\"0.10.1\";s:54:\"

Addition of Pepipost and cleanup of admin page.

\";s:6:\"0.10.0\";s:54:\"

Addition of Pepipost and cleanup of admin page.

\";s:5:\"0.9.6\";s:55:\"

Minor security fix, sanitize test email address.

\";s:5:\"0.9.5\";s:45:\"

Minor security fix, hat tip JD Grimes.

\";s:5:\"0.9.4\";s:72:\"

Improvement to the test email function, very low priority update.

\";s:5:\"0.9.3\";s:55:\"

Fixing reported issue with passing by reference.

\";s:5:\"0.9.2\";s:39:\"

Removing the deprecation notice.

\";s:5:\"0.9.1\";s:74:\"

Test mail functionality was broken on upgrade to 3.2, now restored.

\";s:5:\"0.9.0\";s:73:\"

Low priority upgrade. Improves the appearance of the options page.

\";s:5:\"0.8.7\";s:92:\"

Very low priority update. Fixes a bug that causes a spurious error during activation.

\";s:5:\"0.8.6\";s:72:\"

Low priority update. The Settings link was still broken in 0.8.5.

\";s:5:\"0.8.5\";s:99:\"

Minor bugfix correcting the Settings link bug introduced in 0.8.4. Very low priority update.

\";s:5:\"0.8.4\";s:114:\"

Minor bugfix for users using constants. Another very low priority upgrade. Apologies for the version creep.

\";s:5:\"0.8.3\";s:73:\"

Minor bugfix for users using constants. Very low priority upgrade.

\";}'), (1517,193,'screenshots','a:4:{i:1;s:22:\"Advanced Email Options\";i:2;s:12:\"SMTP Options\";i:3;s:21:\"Pepipost SMTP Options\";i:4;s:17:\"Send a Test Email\";}'), (1518,193,'header_name','WP-Mail-SMTP'), (1519,193,'header_plugin_uri','http://www.callum-macdonald.com/code/wp-mail-smtp/'), (1520,193,'version','0.10.1'), (1521,193,'header_author','Callum Macdonald'), (1522,193,'header_author_uri','http://www.callum-macdonald.com/'), (1523,193,'header_textdomain',''), (1524,193,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1525,193,'assets_screenshots','a:4:{s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1614976\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1614976\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1614976\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1614976\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"plugin\";}}'), (1526,193,'assets_icons','a:0:{}'), (1527,193,'assets_banners','a:0:{}'), (1528,193,'assets_banners_color',''), (1529,194,'tested','4.4.8'), (1530,194,'requires','3.5'), (1531,194,'stable_tag','4.3.1'), (1532,194,'donate_link','https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4BSPTNFFY6AL6'), (1533,194,'upgrade_notice','a:1:{s:3:\"4.0\";s:495:\"

Please be advised that this is a significant upgrade. You should definitely back up your database before updating in case your existing image widgets have any problems.

\n\n

Also, several languages will no longer be supported until new translations are submitted. Currently, we have support for Italian, Dutch, and Swedish. If you would like to contribute your own language files, please post links here:

\n\n

http://wordpress.org/support/topic/image-widget-40-translations-needed-2

\";}'), (1535,194,'screenshots','a:3:{i:1;s:26:\"Image Widget admin screen.\";i:2;s:26:\"Media manager integration.\";i:3;s:55:\"Image Widget on the front of a plain WordPress install.\";}'), (1536,194,'header_name','Image Widget'), (1537,194,'header_plugin_uri','http://wordpress.org/plugins/image-widget/'), (1538,194,'version','4.3.1'), (1539,194,'header_author','Modern Tribe, Inc.'), (1540,194,'header_author_uri','http://m.tri.be/26'), (1541,194,'header_textdomain','image-widget'), (1542,194,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1543,194,'assets_screenshots','a:3:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1593338\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1593338\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1593338\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}}'), (1544,194,'assets_icons','a:2:{s:16:\"icon-128x128.jpg\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.jpg\";s:8:\"revision\";s:6:\"985707\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.jpg\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.jpg\";s:8:\"revision\";s:6:\"985707\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1545,194,'assets_banners','a:2:{s:19:\"banner-1544x500.jpg\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.jpg\";s:8:\"revision\";s:6:\"593018\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"517739\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1546,194,'assets_banners_color','dac6b7'), (1547,195,'tested','4.7.3'), (1548,195,'requires','3.9'), (1549,195,'stable_tag','3.3.7'), (1550,195,'donate_link',''), (1551,195,'upgrade_notice','a:0:{}'), (1553,195,'screenshots','a:5:{i:1;s:29:\"Working job and jobs overview\";i:2;s:17:\"Job creation/edit\";i:3;s:15:\"Displaying logs\";i:4;s:22:\"Manage backup archives\";i:5;s:9:\"Dashboard\";}'), (1554,195,'header_name','BackWPup'), (1555,195,'header_plugin_uri','http://backwpup.com'), (1556,195,'version','3.3.7'), (1557,195,'header_author','Inpsyde GmbH'), (1558,195,'header_author_uri','http://inpsyde.com'), (1559,195,'header_textdomain','backwpup'), (1560,195,'sections','a:3:{i:0;s:11:\"description\";i:1;s:3:\"faq\";i:2;s:9:\"changelog\";}'), (1561,195,'assets_screenshots','a:5:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1422084\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1422084\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1422084\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1422084\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1422084\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}}'), (1562,195,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1422084\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1422084\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1563,195,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1422084\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1422084\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1564,195,'assets_banners_color','d8e8be'), (1565,196,'tested','4.4.8'), (1566,196,'requires','3.2'), (1567,196,'stable_tag','1.11.2'), (1568,196,'donate_link',''), (1569,196,'upgrade_notice','a:5:{s:6:\"1.10.5\";s:42:\"

Fixes a significant security issue.

\";s:5:\"1.9.2\";s:96:\"

Fixes UI issues related to the new WP 3.8 admin style and a few security vulnerabilities.

\";s:5:\"1.6.2\";s:181:\"

Attempts to fix the "database not up to date" bug that some users are still experiencing with 1.6.1. If you have not encountered this bug, you can skip this update.

\";s:3:\"1.4\";s:180:\"

Adds an option to send post authors notifications about broken links in their posts and the the ability to sort links by URL, as well as a number of other updates and fixes.

\";s:7:\"0.9.4.2\";s:179:\"

Fixes a major PHP4 compatibility problem introduced in version 0.9.4 and adds a notification bubble with the current broken link count to the "Broken Links" menu.

\";}'), (1571,196,'screenshots','a:0:{}'), (1572,196,'header_name','Broken Link Checker'), (1573,196,'header_plugin_uri','http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/'), (1574,196,'version','1.11.2'), (1575,196,'header_author','Janis Elsts, Vladimir Prelovac'), (1576,196,'header_author_uri','http://w-shadow.com/'), (1577,196,'header_textdomain','broken-link-checker'), (1578,196,'sections','a:3:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:9:\"changelog\";}'), (1579,196,'assets_screenshots','a:0:{}'), (1580,196,'assets_icons','a:0:{}'), (1581,196,'assets_banners','a:2:{s:19:\"banner-1255x500.jpg\";a:4:{s:8:\"filename\";s:19:\"banner-1255x500.jpg\";s:8:\"revision\";s:7:\"1268512\";s:10:\"resolution\";s:8:\"1255x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:7:\"1268512\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1582,196,'assets_banners_color','bdc7cb'), (1583,197,'tested','4.7.3'), (1584,197,'requires','4.5'), (1585,197,'stable_tag','3.0.31'), (1586,197,'donate_link',''), (1587,197,'upgrade_notice','a:1:{s:22:\"3.0.31 (07 March 2017)\";s:544:\"

Bugs:

\n\n
    \n
  • Confirmed password fields should work properly.
  • \n
  • Fixed a bug with List Fields that caused the Import button to overlap the Add New button.
  • \n
  • Closed a possible security vulnerability by escaping HTML in the builder.
  • \n
  • CSV files should now be deleted from the server after they are emailed when attached to an email action.
  • \n
\n\n

Changes:

\n\n
    \n
  • Added a filter so that add-ons and custom code can add forms to the templates section of the New Form builder.
  • \n
\";}'), (1589,197,'screenshots','a:5:{i:1;s:57:\"The most intuitive and beautiful form building experience\";i:2;s:13:\"Field Options\";i:3;s:18:\"Emails and Actions\";i:4;s:17:\"Advanced Settings\";i:5;s:26:\"Beatiful Forms Every Time!\";}'), (1590,197,'header_name','Ninja Forms'), (1591,197,'header_plugin_uri','http://ninjaforms.com/'), (1592,197,'version','3.0.31'), (1593,197,'header_author','The WP Ninjas'), (1594,197,'header_author_uri','http://ninjaforms.com'), (1595,197,'header_textdomain','ninja-forms'), (1596,197,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1597,197,'assets_screenshots','a:4:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1495254\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1495254\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1495254\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1495254\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}}'), (1598,197,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:6:\"970770\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:6:\"970770\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1599,197,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1262610\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1262610\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1600,197,'assets_banners_color','f9b5b6'), (1637,200,'tested','4.7.3'), (1638,200,'requires','4.7'), (1639,200,'stable_tag','1.8'), (1640,200,'donate_link','https://tablepress.org/donate/'), (1641,200,'upgrade_notice','a:13:{s:3:\"1.8\";s:99:\"

This update is a stability, maintenance, and compatibility release. Updating is recommended.

\";s:3:\"1.7\";s:99:\"

This update is a stability, maintenance, and compatibility release. Updating is recommended.

\";s:5:\"1.6.1\";s:97:\"

This update fixes an issue with the JavaScript features after the update to WordPress 4.3.

\";s:3:\"1.6\";s:99:\"

This update is a stability, maintenance, and compatibility release. Updating is recommended.

\";s:5:\"1.5.1\";s:102:\"

This update includes several new features, enhancements, and bugfixes. Updating is recommended.

\";s:3:\"1.5\";s:102:\"

This update includes several new features, enhancements, and bugfixes. Updating is recommended.

\";s:3:\"1.4\";s:99:\"

This update is a stability, maintenance, and compatibility release. Updating is recommended.

\";s:3:\"1.3\";s:99:\"

This update is a stability, maintenance, and compatibility release. Updating is recommended.

\";s:3:\"1.2\";s:99:\"

This update is a stability, maintenance, and compatibility release. Updating is recommended.

\";s:5:\"1.1.1\";s:120:\"

This upgrade includes several new features, enhancements, and bugfixes, and is a recommended maintenance release.

\";s:3:\"1.1\";s:120:\"

This upgrade includes several new features, enhancements, and bugfixes, and is a recommended maintenance release.

\";s:3:\"1.0\";s:113:\"

This release contains a few bug fixed and many enhancements and new features, and is a recommended update.

\";s:6:\"0.9-RC\";s:61:\"

This release contains many enhancements and bug fixes.

\";}'), (1643,200,'screenshots','a:8:{i:1;s:19:\"\"All Tables\" screen\";i:2;s:13:\"\"Edit\" screen\";i:3;s:22:\"\"Add new Table\" screen\";i:4;s:15:\"\"Import\" screen\";i:5;s:15:\"\"Export\" screen\";i:6;s:23:\"\"Plugin Options\" screen\";i:7;s:14:\"\"About\" screen\";i:8;s:105:\"An example table (as it can be seen on the TablePress website)\";}'), (1644,200,'header_name','TablePress'), (1645,200,'header_plugin_uri','https://tablepress.org/'), (1646,200,'version','1.8'), (1647,200,'header_author','Tobias Bäthge'), (1648,200,'header_author_uri','https://tobias.baethge.com/'), (1649,200,'header_textdomain','tablepress'), (1650,200,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1651,200,'assets_screenshots','a:8:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1064192\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1064192\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1064192\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1064192\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1064192\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:7:\"1064192\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-7.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-7.png\";s:8:\"revision\";s:7:\"1064192\";s:10:\"resolution\";s:1:\"7\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-8.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-8.png\";s:8:\"revision\";s:7:\"1064192\";s:10:\"resolution\";s:1:\"8\";s:8:\"location\";s:6:\"assets\";}}'), (1652,200,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1064192\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1064192\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1653,200,'assets_banners','a:4:{s:23:\"banner-1544x500-rtl.png\";a:4:{s:8:\"filename\";s:23:\"banner-1544x500-rtl.png\";s:8:\"revision\";s:7:\"1275767\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1275767\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:22:\"banner-772x250-rtl.png\";a:4:{s:8:\"filename\";s:22:\"banner-772x250-rtl.png\";s:8:\"revision\";s:7:\"1275767\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1275767\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1654,200,'assets_banners_color','e0dfdd'), (1673,202,'tested','4.7.3'), (1674,202,'requires','3.5'), (1675,202,'stable_tag','2.6.2'), (1676,202,'donate_link',''), (1677,202,'upgrade_notice','a:1:{s:0:\"\";s:147:\"

Yahoo's Smush.it API is gone forever. So WPMU DEV built our own free API that is faster, more reliable, and more powerful. Upgrade now!

\";}'), (1679,202,'screenshots','a:3:{i:1;s:71:\"Watch as your image library is processed ? up to 50 images at a time.\";i:2;s:73:\"Set automatic smush to resize and optomize every image as it is uploaded.\";i:3;s:44:\"Smush will find and optimize images for you.\";}'), (1680,202,'header_name','WP Smush'), (1681,202,'header_plugin_uri','http://wordpress.org/extend/plugins/wp-smushit/'), (1682,202,'version','2.6.2'), (1683,202,'header_author','WPMU DEV'), (1684,202,'header_author_uri','http://premium.wpmudev.org/'), (1685,202,'header_textdomain','wp-smushit'), (1686,202,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1687,202,'assets_screenshots','a:3:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1513048\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1513048\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1513048\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}}'), (1688,202,'assets_icons','a:2:{s:16:\"icon-128x128.jpg\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.jpg\";s:8:\"revision\";s:7:\"1513049\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.jpg\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.jpg\";s:8:\"revision\";s:7:\"1513049\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1689,202,'assets_banners','a:3:{s:19:\"banner-1544x500.jpg\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.jpg\";s:8:\"revision\";s:7:\"1554990\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:19:\"banner-1800x690.jpg\";a:4:{s:8:\"filename\";s:19:\"banner-1800x690.jpg\";s:8:\"revision\";s:7:\"1546704\";s:10:\"resolution\";s:8:\"1800x690\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:7:\"1554989\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1690,202,'assets_banners_color','147075'), (1691,203,'tested','4.7.3'), (1692,203,'requires','3.9'), (1693,203,'stable_tag','4.4.5'), (1694,203,'donate_link','http://m.tri.be/29'), (1695,203,'upgrade_notice','a:1:{s:5:\"[4.3]\";s:158:\"

Please see the changelog for the complete list of changes in this release. Remember to always make a backup of your database and files before updating!

\";}'), (1697,203,'screenshots','a:12:{i:1;s:21:\"Month View with Hover\";i:2;s:10:\"Month View\";i:3;s:9:\"List View\";i:4;s:8:\"Day View\";i:5;s:12:\"Single Event\";i:6;s:12:\"Event Editor\";i:7;s:20:\"Events Admin Listing\";i:8;s:16:\"General Settings\";i:9;s:16:\"Display Settings\";i:10;s:18:\"Events List Widget\";i:11;s:17:\"Mobile Month View\";i:12;s:12:\"CSV Importer\";}'), (1698,203,'header_name','The Events Calendar'), (1699,203,'header_plugin_uri',''), (1700,203,'version','4.4.5'), (1701,203,'header_author','Modern Tribe, Inc.'), (1702,203,'header_author_uri','http://m.tri.be/1x'), (1703,203,'header_textdomain','the-events-calendar'), (1704,203,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1705,203,'assets_screenshots','a:12:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1449388\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:17:\"screenshot-10.png\";a:4:{s:8:\"filename\";s:17:\"screenshot-10.png\";s:8:\"revision\";s:7:\"1449388\";s:10:\"resolution\";s:2:\"10\";s:8:\"location\";s:6:\"assets\";}s:17:\"screenshot-11.png\";a:4:{s:8:\"filename\";s:17:\"screenshot-11.png\";s:8:\"revision\";s:7:\"1449388\";s:10:\"resolution\";s:2:\"11\";s:8:\"location\";s:6:\"assets\";}s:17:\"screenshot-12.png\";a:4:{s:8:\"filename\";s:17:\"screenshot-12.png\";s:8:\"revision\";s:7:\"1449388\";s:10:\"resolution\";s:2:\"12\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1449388\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1449388\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1449388\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1449388\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:7:\"1449388\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-7.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-7.png\";s:8:\"revision\";s:7:\"1449388\";s:10:\"resolution\";s:1:\"7\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-8.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-8.png\";s:8:\"revision\";s:7:\"1449388\";s:10:\"resolution\";s:1:\"8\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-9.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-9.png\";s:8:\"revision\";s:7:\"1449388\";s:10:\"resolution\";s:1:\"9\";s:8:\"location\";s:6:\"assets\";}}'), (1706,203,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1342379\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1342379\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1707,203,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1342379\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1342379\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1708,203,'assets_banners_color','1584af'), (1727,205,'tested','4.7.3'), (1728,205,'requires','3.5'), (1729,205,'stable_tag','trunk'), (1730,205,'donate_link',''), (1731,205,'upgrade_notice','a:0:{}'), (1733,205,'screenshots','a:6:{i:1;s:24:\"Maintenance Mode example\";i:2;s:27:\"Maintenance Mode example #2\";i:3;s:12:\"Contact form\";i:4;s:26:\"Dashboard General settings\";i:5;s:25:\"Dashboard Design settings\";i:6;s:26:\"Dashboard Modules settings\";}'), (1734,205,'header_name','WP Maintenance Mode'), (1735,205,'header_plugin_uri','http://designmodo.com/'), (1736,205,'version','2.0.9'), (1737,205,'header_author','Designmodo'), (1738,205,'header_author_uri','http://designmodo.com/'), (1739,205,'header_textdomain','wp-maintenance-mode'), (1740,205,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1741,205,'assets_screenshots','a:6:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:6:\"976658\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:6:\"976658\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:6:\"976658\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:6:\"976658\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:6:\"976658\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:6:\"976658\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}}'), (1742,205,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:6:\"978503\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:6:\"978485\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1743,205,'assets_banners','a:1:{s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"976666\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1744,205,'assets_banners_color','8b9a9f'), (1781,208,'tested','4.7.3'), (1782,208,'requires','3.5'), (1783,208,'stable_tag','trunk'), (1784,208,'donate_link','https://www.tipsandtricks-hq.com'), (1785,208,'upgrade_notice','a:1:{s:0:\"\";s:11:\"

None

\";}'), (1787,208,'screenshots','a:0:{}'), (1788,208,'header_name','All In One WP Security'), (1789,208,'header_plugin_uri','https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin'), (1790,208,'version','4.2.6'), (1791,208,'header_author','Tips and Tricks HQ, Peter, Ruhul, Ivy'), (1792,208,'header_author_uri','https://www.tipsandtricks-hq.com/'), (1793,208,'header_textdomain',''), (1794,208,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1795,208,'assets_screenshots','a:0:{}'), (1796,208,'assets_icons','a:1:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1232826\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}}'), (1797,208,'assets_banners','a:1:{s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1232826\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1798,208,'assets_banners_color','f9eedc'), (1871,213,'tested','4.7.3'), (1872,213,'requires','4.7'), (1873,213,'stable_tag','2.5.12'), (1874,213,'donate_link',''), (1875,213,'upgrade_notice','a:0:{}'), (1877,213,'screenshots','a:0:{}'), (1878,213,'header_name','bbPress'), (1879,213,'header_plugin_uri','https://bbpress.org'), (1880,213,'version','2.5.12'), (1881,213,'header_author','The bbPress Community'), (1882,213,'header_author_uri','https://bbpress.org'), (1883,213,'header_textdomain','bbpress'), (1884,213,'sections','a:3:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:9:\"changelog\";}'), (1885,213,'assets_screenshots','a:7:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:6:\"872931\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:6:\"872931\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:6:\"872931\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:6:\"872931\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:6:\"872931\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:6:\"872931\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-7.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-7.png\";s:8:\"revision\";s:6:\"872931\";s:10:\"resolution\";s:1:\"7\";s:8:\"location\";s:6:\"assets\";}}'), (1886,213,'assets_icons','a:3:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1534011\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1534011\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:6:\"978290\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (1887,213,'assets_banners','a:4:{s:23:\"banner-1544x500-rtl.png\";a:4:{s:8:\"filename\";s:23:\"banner-1544x500-rtl.png\";s:8:\"revision\";s:7:\"1534011\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:6:\"567403\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:22:\"banner-772x250-rtl.png\";a:4:{s:8:\"filename\";s:22:\"banner-772x250-rtl.png\";s:8:\"revision\";s:7:\"1534011\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"478663\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1888,213,'assets_banners_color','cae8be'), (1925,216,'tested','4.7.3'), (1926,216,'requires','4.4'), (1927,216,'stable_tag','3.2.7'), (1928,216,'donate_link','https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MKMQKCBFFG3WW'), (1929,216,'upgrade_notice','a:5:{s:5:\"3.2.3\";s:387:\"
    \n
  • The bulk scanner will now attempt to auto-detect how much memory is available to avoid exceeding memory limits within PHP. Some webhosts do not allow the ini_get() function, so the plugin will fall back to the current memory usage plug 16MB. If you need to set the memory limit for EWWW IO manually, you can do so with the EWWW_MEMORY_LIMIT constant in wp-config.php.
  • \n
\";s:5:\"2.9.0\";s:371:\"
    \n
  • changed: JPG quality setting applies to conversion AND image editing (but not regular optimization), so that you can override the WP default of 82 (it is NOT recommended to increase the quality)
  • \n
  • added: parallel optimization for Media uploads (original and resizes are done concurrently), turn off under Advanced if it affects site performance
  • \n
\";s:5:\"2.8.4\";s:85:\"
    \n
  • security fix: remote command execution, please update immediately
  • \n
\";s:5:\"2.8.1\";s:276:\"
    \n
  • KeyCDN added support for WebP images generated by EWWW I.O. into the Cache Enabler plugin. If you are using Cache Enabler, you may wish to use their WebP option instead of Alt WebP Rewriting. Works very nicely with CDNs and is a nice simple caching plugin.
  • \n
\";s:5:\"2.8.0\";s:233:\"
    \n
  • added: resizing for uploaded images, set max width and height and optionally resize all existing images
  • \n
  • changed: settings have been revamped, please check to make sure your settings were migrated properly
  • \n
\";}'), (1931,216,'screenshots','a:3:{i:1;s:21:\"Plugin settings page.\";i:2;s:153:\"Additional optimize column added to media listing. You can see your savings, manually optimize individual images, and restore originals (converted only).\";i:3;s:170:\"Bulk optimization page. You can optimize all your images at once and resume a previous bulk optimization. This is very useful for existing blogs that have lots of images.\";}'), (1932,216,'header_name','EWWW Image Optimizer'), (1933,216,'header_plugin_uri','https://wordpress.org/plugins/ewww-image-optimizer/'), (1934,216,'version','3.2.7'), (1935,216,'header_author','Shane Bishop'), (1936,216,'header_author_uri','https://ewww.io/'), (1937,216,'header_textdomain','ewww-image-optimizer'), (1938,216,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (1939,216,'assets_screenshots','a:3:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1557839\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1557839\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1557839\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}}'), (1940,216,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1582276\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1582276\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1941,216,'assets_banners','a:2:{s:19:\"banner-1544x500.jpg\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.jpg\";s:8:\"revision\";s:7:\"1582276\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:7:\"1582276\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1942,216,'assets_banners_color','b5c8d7'), (1961,218,'tested','4.0.16'), (1962,218,'requires','2.8'), (1963,218,'stable_tag','trunk'), (1964,218,'donate_link',''), (1965,218,'upgrade_notice','a:0:{}'), (1967,218,'screenshots','a:2:{i:1;s:42:\"The plugin at work regenerating thumbnails\";i:2;s:93:\"You can resize specific multiples images using the checkboxes and the \"Bulk Actions\" dropdown\";}'), (1968,218,'header_name','Force Regenerate Thumbnails'), (1969,218,'header_plugin_uri','http://pedroelsner.com/2012/08/forcando-a-atualizacao-de-thumbnails-no-wordpress'), (1970,218,'version','2.0.6'), (1971,218,'header_author','Pedro Elsner'), (1972,218,'header_author_uri','http://www.pedroelsner.com/'), (1973,218,'header_textdomain',''), (1974,218,'sections','a:3:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:9:\"changelog\";}'), (1975,218,'assets_screenshots','a:2:{s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1538829\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1538829\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"plugin\";}}'), (1976,218,'assets_icons','a:0:{}'), (1977,218,'assets_banners','a:0:{}'), (1978,218,'assets_banners_color',''), (2807,265,'tested','4.7.3'), (2808,265,'requires','4.3'), (2809,265,'stable_tag','2.8.2'), (2810,265,'donate_link',''), (2811,265,'upgrade_notice','a:2:{s:5:\"2.8.2\";s:64:\"

See: https://codex.buddypress.org/releases/version-2-8-2/

\";s:5:\"2.8.1\";s:64:\"

See: https://codex.buddypress.org/releases/version-2-8-1/

\";}'), (2813,265,'screenshots','a:8:{i:1;s:204:\"Activity Streams - Global, personal, and group activity streams with threaded commenting, direct posting, favoriting and @mentions. All with full RSS feeds and email notification support.\";i:2;s:184:\"Extended Profiles - Fully editable profile fields allow you to define the fields users can fill in to describe themselves. Tailor profile fields to suit your audience.\";i:3;s:194:\"User Settings - Give your users complete control over profile and notification settings. Settings are fully integrated into your theme, and can be disabled by the administrator.\";i:4;s:221:\"Extensible Groups - Powerful public, private or hidden groups allow your users to break the discussion down into specific topics. Extend groups with your own custom features using the group extension API.\";i:5;s:172:\"Friend Connections - Let your users make connections so they can track the activity of others, or filter to show only those users they care about the most.\";i:6;s:220:\"Private Messaging - Private messaging will allow your users to talk to each other directly and in private. Not just limited to one-on-one discussions, your users can send messages to multiple recipients.\";i:7;s:161:\"Site Tracking - Track posts and comments in the activity stream, and allow your users to add their own blogs using WordPress\' Multisite feature.\";i:8;s:121:\"Notifications - Keep your members up-to-date with relevant activity via toolbar and email notifications.\";}'), (2814,265,'header_name','BuddyPress'), (2815,265,'header_plugin_uri','https://buddypress.org/'), (2816,265,'version','2.8.2'), (2817,265,'header_author','The BuddyPress Community'), (2818,265,'header_author_uri','https://buddypress.org/'), (2819,265,'header_textdomain','buddypress'), (2820,265,'sections','a:4:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:3:\"faq\";i:3;s:9:\"changelog\";}'), (2821,265,'assets_screenshots','a:8:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1534012\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1534012\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1534012\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1534012\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1534012\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:7:\"1534012\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-7.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-7.png\";s:8:\"revision\";s:7:\"1534012\";s:10:\"resolution\";s:1:\"7\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-8.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-8.png\";s:8:\"revision\";s:7:\"1534012\";s:10:\"resolution\";s:1:\"8\";s:8:\"location\";s:6:\"assets\";}}'), (2822,265,'assets_icons','a:3:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1309232\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1309232\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:6:\"977480\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (2823,265,'assets_banners','a:4:{s:23:\"banner-1544x500-rtl.png\";a:4:{s:8:\"filename\";s:23:\"banner-1544x500-rtl.png\";s:8:\"revision\";s:7:\"1534012\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1534012\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:22:\"banner-772x250-rtl.png\";a:4:{s:8:\"filename\";s:22:\"banner-772x250-rtl.png\";s:8:\"revision\";s:7:\"1534012\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1309232\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (2824,265,'assets_banners_color','be3631'), (4571,363,'tested','4.5.7'), (4572,363,'requires','3.7'), (4573,363,'stable_tag','20160523.1'), (4574,363,'donate_link',''), (4575,363,'upgrade_notice','a:0:{}'), (4577,363,'screenshots','a:0:{}'), (4578,363,'header_name','Theme Check'), (4579,363,'header_plugin_uri','http://ottopress.com/wordpress-plugins/theme-check/'), (4580,363,'version','20160523.1'), (4581,363,'header_author','Otto42, pross'), (4582,363,'header_author_uri','http://ottopress.com'), (4583,363,'header_textdomain','theme-check'), (4584,363,'sections','a:3:{i:0;s:11:\"description\";i:1;s:3:\"faq\";i:2;s:9:\"changelog\";}'), (4585,363,'assets_screenshots','a:0:{}'), (4586,363,'assets_icons','a:1:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:6:\"972579\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}}'), (4587,363,'assets_banners','a:2:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:6:\"904294\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"904294\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (4588,363,'assets_banners_color','952109'), (4607,365,'tested','4.7.3'), (4608,365,'requires','3.0'), (4609,365,'stable_tag','1.3.4'), (4610,365,'donate_link',''), (4611,365,'upgrade_notice','a:0:{}'), (4613,365,'screenshots','a:3:{i:1;s:26:\"Login Failed Error message\";i:2;s:24:\"Loginizer Dashboard page\";i:3;s:35:\"Loginizer Brute Force Settings page\";}'), (4614,365,'header_name','Loginizer'), (4615,365,'header_plugin_uri','http://wordpress.org/extend/plugins/loginizer/'), (4616,365,'version','1.3.4'), (4617,365,'header_author','Raj Kothari'), (4618,365,'header_author_uri','http://www.loginizer.com'), (4619,365,'header_textdomain',''), (4620,365,'sections','a:3:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:9:\"changelog\";}'), (4621,365,'assets_screenshots','a:3:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1616139\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1616139\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"plugin\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1616139\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"plugin\";}}'), (4622,365,'assets_icons','a:2:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1381093\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1381093\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (4623,365,'assets_banners','a:2:{s:19:\"banner-1544x500.jpg\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.jpg\";s:8:\"revision\";s:7:\"1517954\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.jpg\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.jpg\";s:8:\"revision\";s:7:\"1517954\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (4624,365,'assets_banners_color','2a1b16'), (23669,113,'active_installs','3000000'), (23670,113,'usage','a:6:{s:3:\"2.5\";s:3:\"6.2\";s:3:\"3.0\";s:4:\"5.16\";s:3:\"3.1\";s:5:\"24.45\";s:3:\"3.2\";s:5:\"26.21\";s:3:\"3.3\";s:4:\"36.2\";s:5:\"other\";s:4:\"1.77\";}'), (23679,164,'active_installs','1000000'), (23680,164,'usage','a:2:{s:3:\"1.4\";s:5:\"96.08\";s:5:\"other\";s:4:\"3.92\";}'), (23683,174,'active_installs','1000000'), (23684,174,'usage','a:5:{s:4:\"2.83\";s:4:\"6.17\";s:4:\"2.87\";s:4:\"7.68\";s:4:\"2.89\";s:4:\"8.02\";s:4:\"2.91\";s:5:\"55.87\";s:5:\"other\";s:5:\"22.26\";}'), (23685,160,'active_installs','3000000'), (23686,160,'usage','a:4:{s:3:\"1.6\";s:3:\"7.5\";s:3:\"2.2\";s:5:\"18.66\";s:3:\"2.3\";s:5:\"67.31\";s:5:\"other\";s:4:\"6.53\";}'), (23687,158,'active_installs','3000000'), (23688,158,'usage','a:6:{s:3:\"4.3\";s:4:\"7.03\";s:3:\"4.4\";s:5:\"13.47\";s:3:\"4.5\";s:5:\"13.25\";s:3:\"4.6\";s:5:\"21.45\";s:3:\"4.7\";s:5:\"26.27\";s:5:\"other\";s:5:\"18.53\";}'), (23693,161,'active_installs','2000000'), (23694,161,'usage','a:3:{s:3:\"3.2\";s:3:\"9.4\";s:3:\"4.0\";s:5:\"86.42\";s:5:\"other\";s:4:\"4.18\";}'), (23695,187,'active_installs','700000'), (23696,187,'usage','a:4:{s:3:\"2.3\";s:4:\"9.47\";s:3:\"2.4\";s:5:\"28.51\";s:3:\"2.5\";s:5:\"58.72\";s:5:\"other\";s:3:\"3.3\";}'), (23699,169,'active_installs','1000000'), (23700,169,'usage','a:5:{s:3:\"1.9\";s:5:\"11.32\";s:3:\"2.0\";s:4:\"14.3\";s:3:\"2.1\";s:5:\"50.71\";s:3:\"2.2\";s:5:\"17.65\";s:5:\"other\";s:4:\"6.01\";}'), (23709,190,'active_installs','600000'), (23710,190,'usage','a:4:{s:3:\"1.8\";s:5:\"18.95\";s:3:\"1.9\";s:5:\"15.28\";s:3:\"2.1\";s:5:\"60.26\";s:5:\"other\";s:4:\"5.51\";}'), (23739,173,'active_installs','1000000'), (23740,173,'usage','a:2:{s:3:\"0.9\";s:5:\"99.97\";s:3:\"0.8\";s:4:\"0.03\";}'), (23749,193,'active_installs','600000'), (23750,193,'usage','a:3:{s:4:\"0.10\";s:5:\"46.27\";s:3:\"0.9\";s:5:\"53.28\";s:5:\"other\";s:4:\"0.45\";}'), (23751,265,'active_installs','200000'), (23752,265,'usage','a:5:{s:3:\"2.5\";s:4:\"8.16\";s:3:\"2.6\";s:5:\"11.08\";s:3:\"2.7\";s:5:\"23.86\";s:3:\"2.8\";s:5:\"38.73\";s:5:\"other\";s:5:\"18.18\";}'), (23763,168,'active_installs','1000000'), (23764,168,'usage','a:3:{s:3:\"1.8\";s:5:\"32.38\";s:3:\"1.9\";s:5:\"56.58\";s:5:\"other\";s:5:\"11.05\";}'), (23765,185,'active_installs','700000'), (23766,185,'usage','a:4:{s:3:\"1.0\";s:5:\"50.48\";s:3:\"2.0\";s:5:\"10.64\";s:3:\"2.1\";s:5:\"38.86\";s:5:\"other\";s:4:\"0.01\";}'), (23777,167,'active_installs','1000000'), (23778,167,'usage','a:6:{s:3:\"4.3\";s:4:\"6.07\";s:3:\"5.4\";s:5:\"16.13\";s:3:\"5.5\";s:5:\"32.21\";s:3:\"6.0\";s:4:\"14.4\";s:3:\"6.1\";s:5:\"22.24\";s:5:\"other\";s:4:\"8.95\";}'), (23783,50,'active_installs','3000000'), (23784,50,'usage','a:2:{s:3:\"0.6\";s:5:\"98.92\";s:5:\"other\";s:4:\"1.08\";}'), (23787,202,'active_installs','700000'), (23788,202,'usage','a:4:{s:3:\"2.4\";s:4:\"9.04\";s:3:\"2.5\";s:5:\"29.64\";s:3:\"2.6\";s:5:\"43.48\";s:5:\"other\";s:5:\"17.84\";}'), (23803,159,'active_installs','3000000'), (23804,159,'usage','a:5:{s:3:\"4.0\";s:4:\"5.61\";s:3:\"4.2\";s:4:\"5.04\";s:3:\"4.4\";s:4:\"11.9\";s:3:\"4.5\";s:5:\"22.84\";s:5:\"other\";s:5:\"54.61\";}'), (23813,165,'active_installs','2000000'), (23814,165,'usage','a:5:{s:3:\"4.1\";s:4:\"8.97\";s:3:\"4.2\";s:5:\"11.94\";s:3:\"4.3\";s:3:\"9.3\";s:3:\"4.4\";s:5:\"59.09\";s:5:\"other\";s:5:\"10.69\";}'), (23873,189,'active_installs','600000'), (23874,189,'usage','a:6:{s:3:\"5.2\";s:5:\"10.21\";s:3:\"5.3\";s:4:\"6.94\";s:3:\"5.4\";s:5:\"12.04\";s:3:\"5.5\";s:5:\"16.77\";s:3:\"5.6\";s:5:\"46.61\";s:5:\"other\";s:4:\"7.44\";}'), (23875,172,'active_installs','1000000'), (23876,172,'usage','a:5:{s:3:\"2.6\";s:5:\"36.48\";s:3:\"3.0\";s:4:\"9.16\";s:3:\"3.1\";s:5:\"44.49\";s:3:\"3.2\";s:4:\"7.44\";s:5:\"other\";s:4:\"2.42\";}'), (23911,196,'active_installs','500000'), (23912,196,'usage','a:3:{s:4:\"1.10\";s:5:\"12.38\";s:4:\"1.11\";s:5:\"80.41\";s:5:\"other\";s:4:\"7.21\";}'), (23915,171,'active_installs','1000000'), (23916,171,'usage','a:2:{s:3:\"2.2\";s:5:\"99.88\";s:5:\"other\";s:4:\"0.12\";}'), (23919,162,'active_installs','2000000'), (23920,162,'usage','a:2:{s:3:\"1.7\";s:5:\"99.92\";s:5:\"other\";s:4:\"0.08\";}'), (24081,205,'active_installs','400000'), (24082,205,'usage','a:2:{s:3:\"2.0\";s:5:\"95.92\";s:5:\"other\";s:4:\"4.08\";}'), (24115,203,'active_installs','500000'), (24116,203,'usage','a:6:{s:3:\"4.0\";s:4:\"5.11\";s:3:\"4.1\";s:4:\"6.91\";s:3:\"4.2\";s:5:\"11.65\";s:3:\"4.3\";s:5:\"12.13\";s:3:\"4.4\";s:4:\"50.7\";s:5:\"other\";s:4:\"13.5\";}'), (24299,195,'active_installs','500000'), (24300,195,'usage','a:4:{s:3:\"3.1\";s:4:\"11.2\";s:3:\"3.2\";s:4:\"7.45\";s:3:\"3.3\";s:5:\"78.63\";s:5:\"other\";s:4:\"2.73\";}'), (24335,194,'active_installs','500000'), (24336,194,'usage','a:5:{s:3:\"4.0\";s:4:\"5.38\";s:3:\"4.1\";s:5:\"14.93\";s:3:\"4.2\";s:5:\"40.44\";s:3:\"4.3\";s:5:\"36.36\";s:5:\"other\";s:4:\"2.89\";}'), (24437,180,'active_installs','800000'), (24438,180,'usage','a:6:{s:3:\"5.3\";s:4:\"6.29\";s:3:\"5.6\";s:5:\"10.91\";s:3:\"6.0\";s:4:\"8.92\";s:3:\"6.1\";s:5:\"14.84\";s:3:\"6.2\";s:5:\"29.85\";s:5:\"other\";s:5:\"29.19\";}'), (24591,363,'active_installs','100000'), (24592,363,'usage','a:4:{s:10:\"20141222.1\";s:4:\"5.65\";s:10:\"20151211.1\";s:4:\"9.25\";s:10:\"20160523.1\";s:5:\"77.02\";s:5:\"other\";s:4:\"8.07\";}'), (24597,213,'active_installs','300000'), (24598,213,'usage','a:2:{s:3:\"2.5\";s:4:\"97.5\";s:5:\"other\";s:3:\"2.5\";}'), (24607,85,'active_installs','3000000'), (24608,85,'usage','a:7:{s:3:\"3.9\";s:4:\"7.75\";s:3:\"4.3\";s:4:\"6.19\";s:3:\"4.4\";s:4:\"7.65\";s:3:\"4.6\";s:4:\"9.29\";s:3:\"4.7\";s:5:\"18.54\";s:3:\"4.8\";s:5:\"21.36\";s:5:\"other\";s:5:\"29.22\";}'), (24611,163,'active_installs','3000000'), (24612,163,'usage','a:5:{s:3:\"2.4\";s:4:\"5.44\";s:3:\"2.5\";s:4:\"10.7\";s:3:\"2.6\";s:5:\"66.32\";s:3:\"3.0\";s:4:\"8.79\";s:5:\"other\";s:4:\"8.75\";}'), (24621,216,'active_installs','400000'), (24622,216,'usage','a:5:{s:3:\"2.5\";s:4:\"7.92\";s:3:\"2.9\";s:4:\"7.84\";s:3:\"3.1\";s:4:\"7.91\";s:3:\"3.2\";s:5:\"63.51\";s:5:\"other\";s:5:\"12.83\";}'), (24631,166,'active_installs','2000000'), (24632,166,'usage','a:5:{s:3:\"6.0\";s:4:\"5.57\";s:3:\"6.1\";s:4:\"6.42\";s:3:\"6.2\";s:4:\"8.77\";s:3:\"6.3\";s:5:\"76.77\";s:5:\"other\";s:4:\"2.47\";}'), (24643,177,'active_installs','900000'), (24644,177,'usage','a:6:{s:3:\"2.3\";s:4:\"5.11\";s:3:\"2.4\";s:4:\"6.23\";s:3:\"2.5\";s:3:\"7.8\";s:3:\"2.6\";s:4:\"7.73\";s:3:\"2.8\";s:4:\"44.1\";s:5:\"other\";s:5:\"29.03\";}'), (24685,208,'active_installs','500000'), (24686,208,'usage','a:4:{s:3:\"4.0\";s:5:\"11.91\";s:3:\"4.1\";s:5:\"14.74\";s:3:\"4.2\";s:5:\"65.43\";s:5:\"other\";s:4:\"7.93\";}'), (24691,186,'active_installs','600000'), (24692,186,'usage','a:2:{s:3:\"4.9\";s:5:\"96.96\";s:5:\"other\";s:4:\"3.04\";}'), (24701,178,'active_installs','900000'), (24702,178,'usage','a:3:{s:3:\"2.2\";s:5:\"41.52\";s:3:\"2.3\";s:5:\"54.66\";s:5:\"other\";s:4:\"3.82\";}'), (24721,176,'active_installs','900000'), (24722,176,'usage','a:5:{s:3:\"1.3\";s:5:\"11.52\";s:3:\"1.4\";s:4:\"7.19\";s:3:\"1.5\";s:5:\"27.45\";s:3:\"1.6\";s:5:\"41.45\";s:5:\"other\";s:5:\"12.39\";}'), (24733,182,'active_installs','1000000'), (24734,182,'usage','a:3:{s:4:\"1.11\";s:4:\"6.89\";s:4:\"1.12\";s:5:\"86.09\";s:5:\"other\";s:4:\"7.01\";}'), (24757,192,'active_installs','800000'), (24758,192,'usage','a:5:{s:3:\"2.3\";s:4:\"8.03\";s:3:\"3.1\";s:5:\"16.96\";s:3:\"4.0\";s:5:\"41.34\";s:3:\"4.1\";s:5:\"28.15\";s:5:\"other\";s:4:\"5.52\";}'), (24781,170,'active_installs','1000000'), (24782,170,'usage','a:3:{s:3:\"4.3\";s:4:\"8.75\";s:3:\"4.4\";s:5:\"87.65\";s:5:\"other\";s:3:\"3.6\";}'), (24787,175,'active_installs','1000000'), (24788,175,'usage','a:3:{s:3:\"2.2\";s:4:\"5.53\";s:3:\"2.4\";s:5:\"83.08\";s:5:\"other\";s:5:\"11.39\";}'), (24799,184,'active_installs','800000'), (24800,184,'usage','a:4:{s:3:\"3.3\";s:4:\"46.3\";s:3:\"3.4\";s:5:\"21.45\";s:3:\"3.5\";s:5:\"23.32\";s:5:\"other\";s:4:\"8.93\";}'), (24803,179,'active_installs','900000'), (24804,179,'usage','a:3:{s:3:\"4.8\";s:4:\"5.04\";s:3:\"4.9\";s:5:\"88.88\";s:5:\"other\";s:4:\"6.08\";}'), (24813,200,'active_installs','500000'), (24814,200,'usage','a:4:{s:3:\"1.6\";s:3:\"6.8\";s:3:\"1.7\";s:5:\"46.52\";s:3:\"1.8\";s:5:\"36.08\";s:5:\"other\";s:4:\"10.6\";}'), (24823,197,'active_installs','800000'), (24824,197,'usage','a:3:{s:3:\"2.9\";s:5:\"29.16\";s:3:\"3.0\";s:5:\"68.36\";s:5:\"other\";s:4:\"2.48\";}'), (24921,183,'active_installs','900000'), (24922,183,'usage','a:4:{s:3:\"0.5\";s:5:\"13.78\";s:3:\"1.1\";s:5:\"68.74\";s:3:\"1.2\";s:5:\"15.83\";s:5:\"other\";s:4:\"1.65\";}'), (25111,218,'active_installs','500000'), (25112,218,'usage','a:2:{s:3:\"2.0\";s:5:\"99.56\";s:5:\"other\";s:4:\"0.44\";}'), (25453,188,'active_installs','900000'), (25454,188,'usage','a:5:{s:3:\"1.5\";s:5:\"14.58\";s:3:\"1.6\";s:4:\"9.61\";s:3:\"1.7\";s:5:\"22.66\";s:3:\"1.8\";s:5:\"49.08\";s:5:\"other\";s:4:\"4.07\";}'), (25673,44,'active_installs','2000'), (25674,44,'usage','a:4:{s:3:\"1.0\";s:5:\"21.33\";s:3:\"1.1\";s:5:\"14.97\";s:3:\"2.2\";s:5:\"56.22\";s:5:\"other\";s:4:\"7.47\";}'), (26045,40,'support_threads','0'), (26046,40,'support_threads_resolved','0'), (26051,43,'support_threads','2'), (26052,43,'support_threads_resolved','1'), (26053,44,'support_threads','4'), (26054,44,'support_threads_resolved','0'), (26059,47,'support_threads','0'), (26060,47,'support_threads_resolved','0'), (26061,48,'support_threads','0'), (26062,48,'support_threads_resolved','0'), (26063,49,'support_threads','4'), (26064,49,'support_threads_resolved','1'), (26065,50,'support_threads','5'), (26066,50,'support_threads_resolved','0'), (26071,85,'support_threads','337'), (26072,85,'support_threads_resolved','229'), (26079,113,'support_threads','15'), (26080,113,'support_threads_resolved','8'), (26083,158,'support_threads','687'), (26084,158,'support_threads_resolved','122'), (26085,159,'support_threads','422'), (26086,159,'support_threads_resolved','185'), (26087,160,'support_threads','67'), (26088,160,'support_threads_resolved','65'), (26089,161,'support_threads','26'), (26090,161,'support_threads_resolved','0'), (26091,162,'support_threads','3'), (26092,162,'support_threads_resolved','0'), (26093,163,'support_threads','1567'), (26094,163,'support_threads_resolved','289'), (26095,164,'support_threads','120'), (26096,164,'support_threads_resolved','12'), (26097,165,'support_threads','15'), (26098,165,'support_threads_resolved','2'), (26099,166,'support_threads','396'), (26100,166,'support_threads_resolved','111'), (26101,167,'support_threads','108'), (26102,167,'support_threads_resolved','97'), (26103,168,'support_threads','5'), (26104,168,'support_threads_resolved','1'), (26105,169,'support_threads','128'), (26106,169,'support_threads_resolved','66'), (26107,170,'support_threads','10'), (26108,170,'support_threads_resolved','0'), (26109,171,'support_threads','6'), (26110,171,'support_threads_resolved','0'), (26111,172,'support_threads','17'), (26112,172,'support_threads_resolved','13'), (26113,173,'support_threads','193'), (26114,173,'support_threads_resolved','1'), (26115,174,'support_threads','13'), (26116,174,'support_threads_resolved','7'), (26117,175,'support_threads','35'), (26118,175,'support_threads_resolved','2'), (26119,176,'support_threads','3'), (26120,176,'support_threads_resolved','1'), (26121,177,'support_threads','0'), (26122,177,'support_threads_resolved','0'), (26123,178,'support_threads','3'), (26124,178,'support_threads_resolved','1'), (26125,179,'support_threads','38'), (26126,179,'support_threads_resolved','26'), (26127,180,'support_threads','115'), (26128,180,'support_threads_resolved','13'), (26131,182,'support_threads','95'), (26132,182,'support_threads_resolved','64'), (26133,183,'support_threads','76'), (26134,183,'support_threads_resolved','68'), (26135,184,'support_threads','66'), (26136,184,'support_threads_resolved','18'), (26137,185,'support_threads','11'), (26138,185,'support_threads_resolved','1'), (26139,186,'support_threads','96'), (26140,186,'support_threads_resolved','10'), (26141,187,'support_threads','51'), (26142,187,'support_threads_resolved','2'), (26143,188,'support_threads','5'), (26144,188,'support_threads_resolved','0'), (26145,189,'support_threads','27'), (26146,189,'support_threads_resolved','6'), (26147,190,'support_threads','16'), (26148,190,'support_threads_resolved','10'), (26151,192,'support_threads','98'), (26152,192,'support_threads_resolved','63'), (26153,193,'support_threads','26'), (26154,193,'support_threads_resolved','17'), (26155,194,'support_threads','7'), (26156,194,'support_threads_resolved','3'), (26157,195,'support_threads','74'), (26158,195,'support_threads_resolved','18'), (26159,196,'support_threads','14'), (26160,196,'support_threads_resolved','1'), (26161,197,'support_threads','57'), (26162,197,'support_threads_resolved','56'), (26167,200,'support_threads','347'), (26168,200,'support_threads_resolved','321'), (26171,202,'support_threads','22'), (26172,202,'support_threads_resolved','21'), (26173,203,'support_threads','326'), (26174,203,'support_threads_resolved','51'), (26177,205,'support_threads','20'), (26178,205,'support_threads_resolved','13'), (26183,208,'support_threads','111'), (26184,208,'support_threads_resolved','39'), (26193,213,'support_threads','0'), (26194,213,'support_threads_resolved','0'), (26199,216,'support_threads','41'), (26200,216,'support_threads_resolved','24'), (26203,218,'support_threads','3'), (26204,218,'support_threads_resolved','1'), (26297,265,'support_threads','0'), (26298,265,'support_threads_resolved','0'), (26493,363,'support_threads','6'), (26494,363,'support_threads_resolved','2'), (26497,365,'support_threads','10'), (26498,365,'support_threads_resolved','3'), (28750,43,'active_installs','10000'), (28751,43,'usage','a:3:{s:3:\"0.6\";s:5:\"20.79\";s:3:\"0.7\";s:5:\"76.57\";s:5:\"other\";s:4:\"2.64\";}'), (28790,48,'active_installs','400'), (28791,48,'usage','a:2:{s:3:\"1.0\";s:4:\"28.9\";s:3:\"1.1\";s:4:\"71.1\";}'), (28794,47,'active_installs','200'), (28795,47,'usage','a:3:{s:3:\"0.1\";s:5:\"68.06\";s:3:\"0.2\";s:3:\"8.8\";s:3:\"0.3\";s:5:\"23.15\";}'), (28798,49,'active_installs','900'), (28799,49,'usage','a:6:{s:16:\"0.1-dev-20161216\";s:4:\"14.6\";s:16:\"0.1-dev-20170301\";s:4:\"13.5\";s:16:\"0.1-dev-20170320\";s:4:\"9.96\";s:16:\"0.1-dev-20170328\";s:4:\"6.86\";s:16:\"0.1-dev-20170331\";s:4:\"41.7\";s:5:\"other\";s:5:\"13.38\";}'), (28820,40,'active_installs','800'), (28821,40,'usage','a:3:{s:10:\"2-20160618\";s:4:\"6.12\";s:10:\"3-20160927\";s:5:\"84.57\";s:5:\"other\";s:4:\"9.31\";}'), (28824,365,'active_installs','400000'), (28825,365,'usage','a:3:{s:3:\"1.2\";s:5:\"12.27\";s:3:\"1.3\";s:5:\"80.04\";s:5:\"other\";s:4:\"7.69\";}'), (28838,40,'tagged_versions','a:0:{}'), (28840,43,'tagged_versions','a:12:{i:0;s:5:\"0.2.0\";i:1;s:5:\"0.2.1\";i:2;s:5:\"0.2.2\";i:3;s:5:\"0.2.3\";i:4;s:5:\"0.3.0\";i:5;s:5:\"0.4.0\";i:6;s:5:\"0.5.0\";i:7;s:5:\"0.6.0\";i:8;s:5:\"0.6.1\";i:9;s:5:\"0.6.2\";i:10;s:5:\"0.7.0\";i:11;s:5:\"0.7.1\";}'), (28841,44,'tagged_versions','a:52:{i:0;s:4:\"0.10\";i:1;s:3:\"0.2\";i:2;s:3:\"0.3\";i:3;s:5:\"0.3.1\";i:4;s:5:\"0.3.2\";i:5;s:3:\"0.4\";i:6;s:5:\"0.4.1\";i:7;s:5:\"0.4.2\";i:8;s:5:\"0.4.3\";i:9;s:5:\"0.4.4\";i:10;s:5:\"0.4.5\";i:11;s:5:\"0.4.6\";i:12;s:7:\"0.4.6.1\";i:13;s:3:\"0.5\";i:14;s:5:\"0.5.1\";i:15;s:3:\"0.6\";i:16;s:5:\"0.6.1\";i:17;s:5:\"0.6.2\";i:18;s:5:\"0.6.3\";i:19;s:3:\"0.7\";i:20;s:5:\"0.7.1\";i:21;s:6:\"0.7.10\";i:22;s:8:\"0.7.10.1\";i:23;s:5:\"0.7.2\";i:24;s:5:\"0.7.3\";i:25;s:5:\"0.7.4\";i:26;s:5:\"0.7.5\";i:27;s:5:\"0.7.6\";i:28;s:5:\"0.7.7\";i:29;s:5:\"0.7.8\";i:30;s:5:\"0.7.9\";i:31;s:7:\"0.7.9.1\";i:32;s:7:\"0.7.9.2\";i:33;s:3:\"0.8\";i:34;s:5:\"0.8.1\";i:35;s:5:\"0.8.2\";i:36;s:5:\"0.8.3\";i:37;s:5:\"0.8.4\";i:38;s:5:\"0.8.5\";i:39;s:5:\"0.9.0\";i:40;s:5:\"0.9.1\";i:41;s:11:\"1.0.0-beta1\";i:42;s:13:\"1.0.0-beta1.2\";i:43;s:5:\"1.0.3\";i:44;s:5:\"1.0.4\";i:45;s:5:\"1.1.0\";i:46;s:11:\"2.0.0-beta1\";i:47;s:5:\"2.0.1\";i:48;s:5:\"2.1.0\";i:49;s:5:\"2.2.0\";i:50;s:5:\"2.2.1\";i:51;s:5:\"trunk\";}'), (28844,47,'tagged_versions','a:0:{}'), (28845,48,'tagged_versions','a:0:{}'), (28846,49,'tagged_versions','a:0:{}'), (28847,50,'tagged_versions','a:9:{i:0;s:3:\"0.2\";i:1;s:3:\"0.3\";i:2;s:3:\"0.4\";i:3;s:3:\"0.5\";i:4;s:5:\"0.5.2\";i:5;s:3:\"0.6\";i:6;s:5:\"0.6.1\";i:7;s:5:\"0.6.2\";i:8;s:5:\"0.6.3\";}'), (28850,85,'tagged_versions','a:39:{i:0;s:5:\"2.0.7\";i:1;s:5:\"2.1.5\";i:2;s:5:\"2.2.8\";i:3;s:5:\"2.3.8\";i:4;s:5:\"2.4.5\";i:5;s:5:\"2.5.3\";i:6;s:5:\"2.6.4\";i:7;s:5:\"2.7.3\";i:8;s:5:\"2.8.3\";i:9;s:5:\"2.9.4\";i:10;s:5:\"3.0.4\";i:11;s:5:\"3.1.3\";i:12;s:5:\"3.2.3\";i:13;s:5:\"3.3.4\";i:14;s:5:\"3.4.4\";i:15;s:5:\"3.5.4\";i:16;s:5:\"3.6.2\";i:17;s:5:\"3.7.3\";i:18;s:5:\"3.8.3\";i:19;s:5:\"3.9.7\";i:20;s:5:\"4.0.4\";i:21;s:5:\"4.1.1\";i:22;s:3:\"4.2\";i:23;s:5:\"4.2.1\";i:24;s:5:\"4.2.2\";i:25;s:3:\"4.3\";i:26;s:5:\"4.3.1\";i:27;s:5:\"4.3.2\";i:28;s:3:\"4.4\";i:29;s:5:\"4.4.1\";i:30;s:5:\"4.4.2\";i:31;s:3:\"4.5\";i:32;s:3:\"4.6\";i:33;s:3:\"4.7\";i:34;s:5:\"4.7.1\";i:35;s:3:\"4.8\";i:36;s:9:\"4.8-beta1\";i:37;s:9:\"4.8-beta2\";i:38;s:5:\"4.8.1\";}'), (28854,113,'tagged_versions','a:42:{i:0;s:5:\"2.2.5\";i:1;s:5:\"2.2.6\";i:2;s:5:\"2.2.7\";i:3;s:5:\"2.2.8\";i:4;s:5:\"2.2.9\";i:5;s:5:\"2.3.0\";i:6;s:5:\"2.4.0\";i:7;s:5:\"2.4.1\";i:8;s:5:\"2.5.0\";i:9;s:5:\"2.5.1\";i:10;s:6:\"2.5.10\";i:11;s:5:\"2.5.2\";i:12;s:5:\"2.5.3\";i:13;s:5:\"2.5.4\";i:14;s:5:\"2.5.5\";i:15;s:5:\"2.5.6\";i:16;s:5:\"2.5.7\";i:17;s:5:\"2.5.8\";i:18;s:5:\"2.5.9\";i:19;s:5:\"2.6.0\";i:20;s:5:\"2.6.1\";i:21;s:5:\"3.0.0\";i:22;s:9:\"3.0.0-RC1\";i:23;s:5:\"3.0.1\";i:24;s:5:\"3.0.2\";i:25;s:5:\"3.0.3\";i:26;s:5:\"3.0.4\";i:27;s:5:\"3.0.5\";i:28;s:3:\"3.1\";i:29;s:5:\"3.1.1\";i:30;s:6:\"3.1.10\";i:31;s:6:\"3.1.11\";i:32;s:5:\"3.1.2\";i:33;s:5:\"3.1.3\";i:34;s:5:\"3.1.4\";i:35;s:5:\"3.1.5\";i:36;s:5:\"3.1.6\";i:37;s:5:\"3.1.7\";i:38;s:5:\"3.1.8\";i:39;s:5:\"3.1.9\";i:40;s:3:\"3.2\";i:41;s:3:\"3.3\";}'), (28855,158,'tagged_versions','a:120:{i:0;s:3:\"1.1\";i:1;s:4:\"1.10\";i:2;s:8:\"1.10.0.1\";i:3;s:6:\"1.10.1\";i:4;s:3:\"1.2\";i:5;s:3:\"1.3\";i:6;s:5:\"1.3.1\";i:7;s:5:\"1.3.2\";i:8;s:3:\"1.4\";i:9;s:5:\"1.4.1\";i:10;s:5:\"1.4.2\";i:11;s:5:\"1.4.3\";i:12;s:5:\"1.4.4\";i:13;s:3:\"1.5\";i:14;s:3:\"1.6\";i:15;s:5:\"1.6.1\";i:16;s:3:\"1.7\";i:17;s:5:\"1.7.1\";i:18;s:5:\"1.7.2\";i:19;s:5:\"1.7.4\";i:20;s:5:\"1.7.5\";i:21;s:5:\"1.7.6\";i:22;s:7:\"1.7.6.1\";i:23;s:5:\"1.7.7\";i:24;s:7:\"1.7.7.1\";i:25;s:5:\"1.7.8\";i:26;s:3:\"1.8\";i:27;s:7:\"1.8.0.1\";i:28;s:7:\"1.8.0.2\";i:29;s:7:\"1.8.0.3\";i:30;s:7:\"1.8.0.4\";i:31;s:5:\"1.8.1\";i:32;s:7:\"1.8.1.1\";i:33;s:3:\"1.9\";i:34;s:5:\"1.9.1\";i:35;s:5:\"1.9.2\";i:36;s:7:\"1.9.2.1\";i:37;s:7:\"1.9.2.2\";i:38;s:5:\"1.9.3\";i:39;s:5:\"1.9.4\";i:40;s:5:\"1.9.5\";i:41;s:7:\"1.9.5.1\";i:42;s:3:\"2.0\";i:43;s:8:\"2.0-beta\";i:44;s:5:\"2.0.1\";i:45;s:5:\"2.0.2\";i:46;s:5:\"2.0.3\";i:47;s:5:\"2.0.4\";i:48;s:5:\"2.0.5\";i:49;s:5:\"2.0.6\";i:50;s:5:\"2.0.7\";i:51;s:3:\"2.1\";i:52;s:5:\"2.1.1\";i:53;s:5:\"2.1.2\";i:54;s:3:\"2.2\";i:55;s:5:\"2.2.1\";i:56;s:3:\"2.3\";i:57;s:5:\"2.3.1\";i:58;s:3:\"2.4\";i:59;s:5:\"2.4.1\";i:60;s:5:\"2.4.2\";i:61;s:5:\"2.4.3\";i:62;s:5:\"2.4.4\";i:63;s:5:\"2.4.5\";i:64;s:5:\"2.4.6\";i:65;s:3:\"3.0\";i:66;s:8:\"3.0-beta\";i:67;s:5:\"3.0.1\";i:68;s:5:\"3.0.2\";i:69;s:7:\"3.0.2.1\";i:70;s:3:\"3.1\";i:71;s:5:\"3.1.1\";i:72;s:5:\"3.1.2\";i:73;s:3:\"3.2\";i:74;s:5:\"3.2.1\";i:75;s:3:\"3.3\";i:76;s:5:\"3.3.1\";i:77;s:5:\"3.3.2\";i:78;s:5:\"3.3.3\";i:79;s:3:\"3.4\";i:80;s:5:\"3.4.1\";i:81;s:5:\"3.4.2\";i:82;s:3:\"3.5\";i:83;s:5:\"3.5.1\";i:84;s:5:\"3.5.2\";i:85;s:5:\"3.5.3\";i:86;s:5:\"3.5.4\";i:87;s:3:\"3.6\";i:88;s:3:\"3.7\";i:89;s:5:\"3.7.1\";i:90;s:5:\"3.7.2\";i:91;s:3:\"3.8\";i:92;s:5:\"3.8.1\";i:93;s:3:\"3.9\";i:94;s:8:\"3.9-beta\";i:95;s:5:\"3.9.1\";i:96;s:5:\"3.9.2\";i:97;s:5:\"3.9.3\";i:98;s:3:\"4.0\";i:99;s:5:\"4.0.1\";i:100;s:5:\"4.0.2\";i:101;s:5:\"4.0.3\";i:102;s:3:\"4.1\";i:103;s:8:\"4.1-beta\";i:104;s:5:\"4.1.1\";i:105;s:5:\"4.1.2\";i:106;s:3:\"4.2\";i:107;s:8:\"4.2-beta\";i:108;s:5:\"4.2.1\";i:109;s:5:\"4.2.2\";i:110;s:3:\"4.3\";i:111;s:5:\"4.3.1\";i:112;s:3:\"4.4\";i:113;s:5:\"4.4.1\";i:114;s:5:\"4.4.2\";i:115;s:3:\"4.5\";i:116;s:5:\"4.5.1\";i:117;s:3:\"4.6\";i:118;s:5:\"4.6.1\";i:119;s:3:\"4.7\";}'), (28856,159,'tagged_versions','a:52:{i:0;s:3:\"2.0\";i:1;s:5:\"2.0.1\";i:2;s:3:\"2.1\";i:3;s:5:\"2.1.1\";i:4;s:3:\"2.2\";i:5;s:5:\"2.2.1\";i:6;s:3:\"2.3\";i:7;s:5:\"2.3.1\";i:8;s:5:\"2.3.2\";i:9;s:5:\"2.3.3\";i:10;s:5:\"2.3.4\";i:11;s:5:\"2.3.5\";i:12;s:3:\"3.0\";i:13;s:5:\"3.0.1\";i:14;s:5:\"3.0.2\";i:15;s:5:\"3.0.3\";i:16;s:5:\"3.0.4\";i:17;s:5:\"3.0.5\";i:18;s:5:\"3.0.6\";i:19;s:5:\"3.0.7\";i:20;s:3:\"3.1\";i:21;s:5:\"3.1.1\";i:22;s:5:\"3.1.2\";i:23;s:3:\"3.2\";i:24;s:5:\"3.2.1\";i:25;s:5:\"3.2.2\";i:26;s:5:\"3.2.3\";i:27;s:5:\"3.2.4\";i:28;s:5:\"3.2.5\";i:29;s:5:\"3.3.0\";i:30;s:5:\"3.3.1\";i:31;s:5:\"3.3.2\";i:32;s:5:\"3.3.3\";i:33;s:5:\"3.3.4\";i:34;s:3:\"3.4\";i:35;s:5:\"3.4.1\";i:36;s:5:\"3.4.2\";i:37;s:3:\"3.5\";i:38;s:3:\"3.6\";i:39;s:5:\"3.6.1\";i:40;s:5:\"3.7.0\";i:41;s:5:\"3.7.1\";i:42;s:3:\"3.8\";i:43;s:3:\"3.9\";i:44;s:3:\"4.0\";i:45;s:5:\"4.0.2\";i:46;s:3:\"4.1\";i:47;s:3:\"4.2\";i:48;s:5:\"4.2.1\";i:49;s:3:\"4.3\";i:50;s:3:\"4.4\";i:51;s:3:\"4.5\";}'), (28857,160,'tagged_versions','a:279:{i:0;s:7:\"0.6.2.6\";i:1;s:7:\"0.6.2.7\";i:2;s:7:\"0.6.2.8\";i:3;s:5:\"0.6.3\";i:4;s:7:\"0.6.3.1\";i:5;s:7:\"0.6.3.2\";i:6;s:7:\"0.6.3.3\";i:7;s:7:\"0.6.3.5\";i:8;s:7:\"0.6.3.6\";i:9;s:3:\"1.0\";i:10;s:3:\"1.1\";i:11;s:3:\"1.2\";i:12;s:5:\"1.2.1\";i:13;s:7:\"1.2.1.1\";i:14;s:7:\"1.2.1.2\";i:15;s:7:\"1.2.1.3\";i:16;s:7:\"1.2.1.4\";i:17;s:5:\"1.2.2\";i:18;s:5:\"1.2.3\";i:19;s:7:\"1.2.3.1\";i:20;s:7:\"1.2.3.2\";i:21;s:7:\"1.2.3.5\";i:22;s:7:\"1.2.3.6\";i:23;s:7:\"1.2.3.7\";i:24;s:7:\"1.2.3.8\";i:25;s:7:\"1.2.3.9\";i:26;s:5:\"1.2.4\";i:27;s:5:\"1.2.5\";i:28;s:7:\"1.2.5.1\";i:29;s:7:\"1.2.5.2\";i:30;s:7:\"1.2.5.3\";i:31;s:7:\"1.2.5.4\";i:32;s:7:\"1.2.5.5\";i:33;s:7:\"1.2.5.6\";i:34;s:7:\"1.2.5.7\";i:35;s:7:\"1.2.5.8\";i:36;s:7:\"1.2.5.9\";i:37;s:5:\"1.2.6\";i:38;s:7:\"1.2.6.1\";i:39;s:7:\"1.2.6.2\";i:40;s:7:\"1.2.6.3\";i:41;s:7:\"1.2.6.4\";i:42;s:7:\"1.2.6.6\";i:43;s:7:\"1.2.6.8\";i:44;s:7:\"1.2.7.1\";i:45;s:7:\"1.2.7.2\";i:46;s:7:\"1.2.7.3\";i:47;s:7:\"1.2.7.4\";i:48;s:7:\"1.2.7.5\";i:49;s:7:\"1.2.7.6\";i:50;s:7:\"1.2.7.7\";i:51;s:7:\"1.2.7.8\";i:52;s:7:\"1.2.7.9\";i:53;s:5:\"1.2.8\";i:54;s:7:\"1.2.8.1\";i:55;s:7:\"1.2.8.2\";i:56;s:7:\"1.2.8.3\";i:57;s:7:\"1.2.8.4\";i:58;s:7:\"1.2.8.5\";i:59;s:7:\"1.2.8.6\";i:60;s:7:\"1.2.8.7\";i:61;s:7:\"1.2.8.8\";i:62;s:7:\"1.2.8.9\";i:63;s:5:\"1.2.9\";i:64;s:7:\"1.2.9.1\";i:65;s:7:\"1.2.9.2\";i:66;s:7:\"1.2.9.3\";i:67;s:7:\"1.2.9.5\";i:68;s:7:\"1.2.9.6\";i:69;s:7:\"1.2.9.7\";i:70;s:7:\"1.2.9.8\";i:71;s:7:\"1.2.9.9\";i:72;s:3:\"1.3\";i:73;s:5:\"1.3.1\";i:74;s:5:\"1.3.3\";i:75;s:5:\"1.3.4\";i:76;s:7:\"1.3.5.1\";i:77;s:7:\"1.3.5.2\";i:78;s:7:\"1.3.5.3\";i:79;s:7:\"1.3.5.4\";i:80;s:7:\"1.3.5.5\";i:81;s:7:\"1.3.5.6\";i:82;s:7:\"1.3.5.7\";i:83;s:7:\"1.3.5.8\";i:84;s:7:\"1.3.5.9\";i:85;s:5:\"1.3.6\";i:86;s:7:\"1.3.6.1\";i:87;s:7:\"1.3.6.2\";i:88;s:7:\"1.3.6.3\";i:89;s:7:\"1.3.6.4\";i:90;s:7:\"1.3.6.5\";i:91;s:7:\"1.3.6.6\";i:92;s:7:\"1.3.6.7\";i:93;s:7:\"1.3.6.8\";i:94;s:7:\"1.3.6.9\";i:95;s:5:\"1.3.7\";i:96;s:7:\"1.3.7.1\";i:97;s:7:\"1.3.7.2\";i:98;s:7:\"1.3.7.3\";i:99;s:7:\"1.3.7.4\";i:100;s:7:\"1.3.7.5\";i:101;s:7:\"1.3.7.7\";i:102;s:7:\"1.3.7.8\";i:103;s:7:\"1.3.7.9\";i:104;s:5:\"1.3.8\";i:105;s:7:\"1.3.8.1\";i:106;s:7:\"1.3.8.3\";i:107;s:7:\"1.3.8.4\";i:108;s:7:\"1.3.8.5\";i:109;s:7:\"1.3.8.6\";i:110;s:7:\"1.3.8.7\";i:111;s:7:\"1.3.8.8\";i:112;s:7:\"1.3.8.9\";i:113;s:3:\"1.4\";i:114;s:5:\"1.4.1\";i:115;s:5:\"1.4.2\";i:116;s:5:\"1.4.3\";i:117;s:7:\"1.4.3.1\";i:118;s:7:\"1.4.3.2\";i:119;s:7:\"1.4.3.3\";i:120;s:7:\"1.4.3.4\";i:121;s:7:\"1.4.3.5\";i:122;s:7:\"1.4.3.6\";i:123;s:7:\"1.4.3.7\";i:124;s:7:\"1.4.3.8\";i:125;s:7:\"1.4.3.9\";i:126;s:5:\"1.4.4\";i:127;s:5:\"1.4.5\";i:128;s:7:\"1.4.5.2\";i:129;s:7:\"1.4.5.3\";i:130;s:7:\"1.4.5.4\";i:132;s:7:\"1.4.5.5\";i:133;s:7:\"1.4.5.7\";i:134;s:7:\"1.4.5.8\";i:135;s:7:\"1.4.5.9\";i:136;s:5:\"1.4.6\";i:137;s:7:\"1.4.6.1\";i:138;s:8:\"1.4.6.10\";i:139;s:8:\"1.4.6.11\";i:140;s:8:\"1.4.6.12\";i:141;s:8:\"1.4.6.13\";i:142;s:8:\"1.4.6.15\";i:143;s:8:\"1.4.6.16\";i:144;s:7:\"1.4.6.3\";i:145;s:7:\"1.4.6.4\";i:146;s:7:\"1.4.6.5\";i:147;s:7:\"1.4.6.6\";i:148;s:7:\"1.4.6.7\";i:149;s:7:\"1.4.6.8\";i:150;s:5:\"1.4.7\";i:151;s:7:\"1.4.7.1\";i:152;s:7:\"1.4.7.2\";i:153;s:7:\"1.4.7.3\";i:154;s:7:\"1.4.7.4\";i:155;s:5:\"1.4.8\";i:156;s:5:\"1.4.9\";i:157;s:6:\"1.4.91\";i:158;s:3:\"1.5\";i:159;s:5:\"1.5.1\";i:160;s:5:\"1.5.2\";i:161;s:5:\"1.5.3\";i:162;s:5:\"1.5.4\";i:163;s:5:\"1.5.5\";i:164;s:5:\"1.5.6\";i:165;s:5:\"1.5.7\";i:166;s:3:\"1.6\";i:167;s:5:\"1.6.1\";i:168;s:6:\"1.6.10\";i:169;s:8:\"1.6.10.1\";i:170;s:8:\"1.6.10.2\";i:171;s:8:\"1.6.10.3\";i:172;s:6:\"1.6.11\";i:173;s:8:\"1.6.11.1\";i:174;s:6:\"1.6.12\";i:175;s:8:\"1.6.12.1\";i:176;s:8:\"1.6.12.2\";i:177;s:6:\"1.6.13\";i:178;s:8:\"1.6.13.1\";i:179;s:8:\"1.6.13.2\";i:180;s:8:\"1.6.13.3\";i:181;s:8:\"1.6.13.4\";i:182;s:8:\"1.6.13.5\";i:183;s:8:\"1.6.13.6\";i:184;s:8:\"1.6.13.7\";i:185;s:8:\"1.6.13.8\";i:186;s:6:\"1.6.14\";i:187;s:8:\"1.6.14.1\";i:188;s:8:\"1.6.14.2\";i:189;s:8:\"1.6.14.3\";i:190;s:8:\"1.6.14.4\";i:191;s:8:\"1.6.14.5\";i:192;s:8:\"1.6.14.6\";i:193;s:6:\"1.6.15\";i:194;s:8:\"1.6.15.1\";i:195;s:8:\"1.6.15.2\";i:196;s:8:\"1.6.15.3\";i:197;s:5:\"1.6.2\";i:198;s:5:\"1.6.3\";i:199;s:5:\"1.6.4\";i:200;s:7:\"1.6.4.1\";i:201;s:5:\"1.6.5\";i:202;s:5:\"1.6.6\";i:203;s:7:\"1.6.6.1\";i:204;s:7:\"1.6.6.2\";i:205;s:5:\"1.6.7\";i:206;s:5:\"1.6.8\";i:207;s:7:\"1.6.8.1\";i:208;s:7:\"1.6.8.2\";i:209;s:5:\"1.6.9\";i:210;s:3:\"2.0\";i:211;s:5:\"2.0.1\";i:212;s:5:\"2.0.2\";i:213;s:5:\"2.0.3\";i:214;s:7:\"2.0.3.1\";i:215;s:5:\"2.0.4\";i:216;s:7:\"2.0.4.1\";i:217;s:3:\"2.1\";i:218;s:5:\"2.1.1\";i:219;s:5:\"2.1.2\";i:220;s:5:\"2.1.3\";i:221;s:5:\"2.1.4\";i:222;s:5:\"2.1.5\";i:223;s:7:\"2.1.5.1\";i:224;s:5:\"2.1.6\";i:225;s:5:\"2.1.7\";i:226;s:3:\"2.2\";i:227;s:5:\"2.2.1\";i:228;s:5:\"2.2.2\";i:229;s:5:\"2.2.3\";i:230;s:7:\"2.2.3.1\";i:231;s:5:\"2.2.4\";i:232;s:7:\"2.2.4.1\";i:233;s:7:\"2.2.4.2\";i:234;s:5:\"2.2.5\";i:235;s:7:\"2.2.5.1\";i:236;s:5:\"2.2.6\";i:237;s:7:\"2.2.6.1\";i:238;s:7:\"2.2.6.2\";i:239;s:5:\"2.2.7\";i:240;s:7:\"2.2.7.1\";i:241;s:7:\"2.2.7.2\";i:242;s:7:\"2.2.7.3\";i:243;s:7:\"2.2.7.4\";i:244;s:7:\"2.2.7.5\";i:245;s:9:\"2.2.7.6.1\";i:246;s:9:\"2.2.7.6.2\";i:247;s:3:\"2.3\";i:248;s:5:\"2.3.1\";i:249;s:6:\"2.3.10\";i:250;s:8:\"2.3.10.1\";i:251;s:8:\"2.3.10.2\";i:252;s:6:\"2.3.11\";i:253;s:8:\"2.3.11.1\";i:254;s:8:\"2.3.11.2\";i:255;s:8:\"2.3.11.3\";i:256;s:8:\"2.3.11.4\";i:257;s:6:\"2.3.12\";i:258;s:8:\"2.3.12.1\";i:259;s:8:\"2.3.12.2\";i:260;s:10:\"2.3.12.2.1\";i:261;s:5:\"2.3.2\";i:262;s:7:\"2.3.2.1\";i:263;s:7:\"2.3.2.2\";i:264;s:7:\"2.3.2.3\";i:265;s:5:\"2.3.3\";i:266;s:7:\"2.3.3.1\";i:267;s:7:\"2.3.3.2\";i:268;s:5:\"2.3.4\";i:269;s:7:\"2.3.4.1\";i:270;s:7:\"2.3.4.2\";i:271;s:5:\"2.3.5\";i:272;s:7:\"2.3.5.1\";i:273;s:5:\"2.3.6\";i:274;s:7:\"2.3.6.1\";i:275;s:5:\"2.3.7\";i:276;s:5:\"2.3.8\";i:277;s:5:\"2.3.9\";i:278;s:7:\"2.3.9.1\";i:279;s:7:\"2.3.9.2\";}'), (28858,161,'tagged_versions','a:46:{i:0;s:3:\"2.5\";i:1;s:3:\"2.6\";i:2;s:3:\"2.7\";i:3;s:5:\"2.7.1\";i:4;s:3:\"3.0\";i:5;s:5:\"3.0.1\";i:6;s:5:\"3.0.2\";i:7;s:7:\"3.0.2.1\";i:8;s:5:\"3.0.3\";i:9;s:7:\"3.0.3.1\";i:10;s:7:\"3.0.3.2\";i:11;s:7:\"3.0.3.3\";i:12;s:3:\"3.1\";i:13;s:7:\"3.1.0.1\";i:14;s:5:\"3.1.1\";i:15;s:5:\"3.1.2\";i:16;s:5:\"3.1.3\";i:17;s:5:\"3.1.4\";i:18;s:5:\"3.1.5\";i:19;s:5:\"3.1.6\";i:20;s:5:\"3.1.7\";i:21;s:5:\"3.1.8\";i:22;s:5:\"3.1.9\";i:23;s:3:\"3.2\";i:24;s:5:\"3.2.1\";i:25;s:5:\"3.2.2\";i:26;s:5:\"3.2.3\";i:27;s:5:\"3.2.4\";i:28;s:5:\"3.2.5\";i:29;s:5:\"3.2.6\";i:30;s:5:\"3.2.7\";i:31;s:5:\"3.2.8\";i:32;s:5:\"3.2.9\";i:33;s:3:\"3.3\";i:34;s:5:\"3.3.1\";i:35;s:5:\"3.4.1\";i:36;s:3:\"4.0\";i:37;s:5:\"4.0.1\";i:38;s:5:\"4.0.2\";i:39;s:5:\"4.0.3\";i:40;s:5:\"4.0.4\";i:41;s:5:\"4.0.5\";i:42;s:5:\"4.0.6\";i:43;s:5:\"4.0.7\";i:44;s:7:\"4.0.7.1\";i:45;s:5:\"4.0.8\";}'), (28859,162,'tagged_versions','a:19:{i:0;s:3:\"1.0\";i:1;s:3:\"1.1\";i:2;s:3:\"1.2\";i:3;s:3:\"1.3\";i:4;s:5:\"1.3.1\";i:5;s:5:\"1.3.2\";i:6;s:3:\"1.4\";i:7;s:5:\"1.4.1\";i:8;s:3:\"1.5\";i:9;s:5:\"1.5.1\";i:10;s:5:\"1.5.2\";i:11;s:5:\"1.6.0\";i:12;s:5:\"1.6.1\";i:13;s:5:\"1.6.2\";i:14;s:5:\"1.7.0\";i:15;s:5:\"1.7.1\";i:16;s:8:\"2.0beta1\";i:17;s:8:\"2.0beta2\";i:18;s:8:\"2.0beta3\";}'), (28860,163,'tagged_versions','a:78:{i:0;s:5:\"1.6.6\";i:1;s:6:\"2.0.20\";i:2;s:5:\"2.1.0\";i:3;s:5:\"2.1.1\";i:4;s:6:\"2.1.10\";i:5;s:6:\"2.1.11\";i:6;s:6:\"2.1.12\";i:7;s:5:\"2.1.2\";i:8;s:5:\"2.1.3\";i:9;s:5:\"2.1.4\";i:10;s:5:\"2.1.5\";i:11;s:5:\"2.1.6\";i:12;s:5:\"2.1.7\";i:13;s:5:\"2.1.8\";i:14;s:5:\"2.1.9\";i:15;s:5:\"2.2.0\";i:16;s:5:\"2.2.1\";i:17;s:6:\"2.2.10\";i:18;s:6:\"2.2.11\";i:19;s:5:\"2.2.2\";i:20;s:5:\"2.2.3\";i:21;s:5:\"2.2.4\";i:22;s:5:\"2.2.5\";i:23;s:5:\"2.2.6\";i:24;s:5:\"2.2.7\";i:25;s:5:\"2.2.8\";i:26;s:5:\"2.2.9\";i:27;s:5:\"2.3.0\";i:28;s:5:\"2.3.1\";i:29;s:6:\"2.3.10\";i:30;s:6:\"2.3.11\";i:31;s:6:\"2.3.12\";i:32;s:6:\"2.3.13\";i:33;s:5:\"2.3.2\";i:34;s:5:\"2.3.3\";i:35;s:5:\"2.3.4\";i:36;s:5:\"2.3.5\";i:37;s:5:\"2.3.6\";i:38;s:5:\"2.3.7\";i:39;s:5:\"2.3.8\";i:40;s:5:\"2.3.9\";i:41;s:5:\"2.4.0\";i:42;s:5:\"2.4.1\";i:43;s:6:\"2.4.10\";i:44;s:6:\"2.4.11\";i:45;s:6:\"2.4.12\";i:46;s:6:\"2.4.13\";i:47;s:5:\"2.4.2\";i:48;s:5:\"2.4.3\";i:49;s:5:\"2.4.4\";i:50;s:5:\"2.4.5\";i:51;s:5:\"2.4.6\";i:52;s:5:\"2.4.7\";i:53;s:5:\"2.4.8\";i:54;s:5:\"2.4.9\";i:55;s:5:\"2.5.0\";i:56;s:5:\"2.5.1\";i:57;s:5:\"2.5.2\";i:58;s:5:\"2.5.3\";i:59;s:5:\"2.5.4\";i:60;s:5:\"2.5.5\";i:61;s:5:\"2.6.0\";i:62;s:5:\"2.6.1\";i:63;s:6:\"2.6.10\";i:64;s:6:\"2.6.11\";i:65;s:6:\"2.6.12\";i:66;s:6:\"2.6.13\";i:67;s:6:\"2.6.14\";i:68;s:5:\"2.6.2\";i:69;s:5:\"2.6.3\";i:70;s:5:\"2.6.4\";i:71;s:5:\"2.6.5\";i:72;s:5:\"2.6.6\";i:73;s:5:\"2.6.7\";i:74;s:5:\"2.6.8\";i:75;s:5:\"2.6.9\";i:76;s:5:\"3.0.0\";i:77;s:5:\"3.0.1\";}'), (28861,164,'tagged_versions','a:72:{i:0;s:3:\"0.1\";i:1;s:3:\"0.2\";i:2;s:3:\"0.3\";i:3;s:5:\"0.3.1\";i:4;s:3:\"0.4\";i:5;s:3:\"0.5\";i:6;s:5:\"0.5.1\";i:7;s:5:\"0.5.2\";i:8;s:5:\"0.5.3\";i:9;s:5:\"0.6.2\";i:10;s:5:\"0.6.3\";i:11;s:5:\"0.6.4\";i:12;s:5:\"0.6.5\";i:13;s:5:\"0.6.6\";i:14;s:5:\"0.6.7\";i:15;s:5:\"0.6.8\";i:16;s:3:\"0.7\";i:17;s:5:\"0.7.1\";i:18;s:3:\"0.8\";i:19;s:5:\"0.8.1\";i:20;s:5:\"0.8.2\";i:21;s:5:\"0.8.3\";i:22;s:5:\"0.8.4\";i:23;s:5:\"0.8.5\";i:24;s:5:\"0.8.6\";i:25;s:5:\"0.8.7\";i:26;s:5:\"0.8.8\";i:27;s:5:\"0.8.9\";i:28;s:3:\"0.9\";i:29;s:5:\"0.9.1\";i:30;s:5:\"0.9.2\";i:31;s:5:\"0.9.3\";i:32;s:7:\"0.9.3.1\";i:33;s:5:\"0.9.4\";i:34;s:7:\"0.9.4.1\";i:35;s:7:\"0.9.4.2\";i:36;s:7:\"0.9.4.3\";i:37;s:5:\"0.9.5\";i:38;s:5:\"0.9.6\";i:39;s:7:\"0.9.6.1\";i:40;s:5:\"0.9.7\";i:41;s:5:\"0.9.8\";i:42;s:5:\"0.9.9\";i:43;s:7:\"0.9.9.1\";i:44;s:7:\"0.9.9.2\";i:45;s:7:\"0.9.9.3\";i:46;s:7:\"0.9.9.4\";i:47;s:7:\"0.9.9.5\";i:48;s:7:\"0.9.9.6\";i:49;s:7:\"0.9.9.7\";i:50;s:7:\"0.9.9.8\";i:51;s:7:\"0.9.9.9\";i:52;s:3:\"1.0\";i:53;s:5:\"1.0.1\";i:54;s:3:\"1.1\";i:55;s:5:\"1.1.1\";i:56;s:3:\"1.2\";i:57;s:5:\"1.2.1\";i:58;s:3:\"1.3\";i:59;s:5:\"1.3.1\";i:60;s:5:\"1.3.2\";i:61;s:5:\"1.3.3\";i:62;s:3:\"1.4\";i:63;s:5:\"1.4.1\";i:64;s:5:\"1.4.2\";i:65;s:5:\"1.4.3\";i:66;s:5:\"1.4.4\";i:67;s:5:\"1.4.5\";i:68;s:5:\"1.4.6\";i:69;s:5:\"1.4.7\";i:70;s:5:\"1.4.8\";i:71;s:5:\"1.4.9\";}'), (28862,165,'tagged_versions','a:37:{i:0;s:3:\"1.0\";i:1;s:5:\"1.0.1\";i:2;s:3:\"2.0\";i:3;s:3:\"2.2\";i:4;s:3:\"3.0\";i:5;s:5:\"3.0.1\";i:6;s:3:\"3.1\";i:7;s:3:\"3.2\";i:8;s:5:\"3.2.4\";i:9;s:5:\"3.2.7\";i:10;s:5:\"3.3.9\";i:11;s:7:\"3.3.9.1\";i:12;s:7:\"3.3.9.2\";i:13;s:5:\"3.4.2\";i:14;s:7:\"3.4.2.1\";i:15;s:5:\"3.4.5\";i:16;s:7:\"3.4.5.1\";i:17;s:5:\"3.4.9\";i:18;s:5:\"3.5.8\";i:19;s:5:\"3.5.9\";i:20;s:7:\"3.5.9.1\";i:21;s:3:\"4.0\";i:22;s:5:\"4.0.1\";i:23;s:5:\"4.0.2\";i:24;s:3:\"4.1\";i:25;s:5:\"4.1.1\";i:26;s:5:\"4.1.7\";i:27;s:5:\"4.1.9\";i:28;s:5:\"4.2.3\";i:29;s:7:\"4.2.3.1\";i:30;s:5:\"4.2.5\";i:31;s:5:\"4.2.8\";i:32;s:6:\"4.3.10\";i:33;s:8:\"4.3.10.1\";i:34;s:5:\"4.3.8\";i:35;s:5:\"4.4.1\";i:36;s:5:\"4.4.3\";}'), (28863,166,'tagged_versions','a:181:{i:0;s:3:\"1.1\";i:1;s:3:\"1.2\";i:2;s:3:\"1.3\";i:3;s:5:\"1.3.1\";i:4;s:5:\"1.3.2\";i:5;s:5:\"1.3.3\";i:6;s:5:\"1.4.2\";i:7;s:5:\"1.4.3\";i:8;s:5:\"1.4.4\";i:9;s:5:\"1.4.5\";i:10;s:5:\"1.4.6\";i:11;s:5:\"1.4.7\";i:12;s:5:\"1.4.8\";i:13;s:5:\"1.5.1\";i:14;s:5:\"1.5.2\";i:15;s:5:\"1.5.3\";i:16;s:5:\"1.5.4\";i:17;s:5:\"1.5.5\";i:18;s:5:\"1.5.6\";i:19;s:5:\"2.0.1\";i:20;s:5:\"2.0.2\";i:21;s:5:\"2.0.3\";i:22;s:5:\"2.0.5\";i:23;s:5:\"2.0.6\";i:24;s:5:\"2.0.7\";i:25;s:5:\"2.1.0\";i:26;s:5:\"2.1.1\";i:27;s:5:\"2.1.2\";i:28;s:5:\"2.1.3\";i:29;s:5:\"2.1.4\";i:30;s:5:\"2.1.5\";i:31;s:5:\"3.0.2\";i:32;s:5:\"3.0.3\";i:33;s:5:\"3.0.4\";i:34;s:5:\"3.0.5\";i:35;s:5:\"3.0.6\";i:36;s:5:\"3.0.7\";i:37;s:5:\"3.0.8\";i:38;s:5:\"3.0.9\";i:39;s:5:\"3.1.0\";i:40;s:5:\"3.1.1\";i:41;s:5:\"3.1.2\";i:42;s:5:\"3.1.4\";i:43;s:5:\"3.1.6\";i:44;s:5:\"3.2.1\";i:45;s:5:\"3.2.3\";i:46;s:5:\"3.2.4\";i:47;s:5:\"3.2.5\";i:48;s:5:\"3.2.6\";i:49;s:5:\"3.2.7\";i:50;s:5:\"3.3.2\";i:51;s:5:\"3.3.3\";i:52;s:5:\"3.3.4\";i:53;s:5:\"3.3.5\";i:54;s:5:\"3.3.6\";i:55;s:5:\"3.3.7\";i:56;s:5:\"3.4.1\";i:57;s:5:\"3.4.4\";i:58;s:5:\"3.4.5\";i:59;s:5:\"3.5.1\";i:60;s:5:\"3.5.2\";i:61;s:5:\"3.6.1\";i:62;s:5:\"3.6.3\";i:63;s:5:\"3.6.4\";i:64;s:5:\"3.6.5\";i:65;s:5:\"3.6.6\";i:66;s:5:\"3.6.7\";i:67;s:5:\"3.6.8\";i:68;s:5:\"3.6.9\";i:69;s:5:\"3.7.1\";i:70;s:5:\"3.7.2\";i:71;s:5:\"3.8.1\";i:72;s:5:\"3.8.2\";i:73;s:5:\"3.8.3\";i:74;s:5:\"3.8.4\";i:75;s:5:\"3.8.5\";i:76;s:5:\"3.8.6\";i:77;s:5:\"3.8.7\";i:78;s:5:\"3.8.8\";i:79;s:5:\"3.8.9\";i:80;s:5:\"3.9.1\";i:81;s:5:\"4.0.1\";i:82;s:5:\"4.0.2\";i:83;s:5:\"4.0.3\";i:84;s:5:\"5.0.1\";i:85;s:5:\"5.0.2\";i:86;s:5:\"5.0.3\";i:87;s:5:\"5.0.4\";i:88;s:5:\"5.0.5\";i:89;s:5:\"5.0.6\";i:90;s:5:\"5.0.7\";i:91;s:5:\"5.0.8\";i:92;s:5:\"5.0.9\";i:93;s:5:\"5.1.1\";i:94;s:5:\"5.1.2\";i:95;s:5:\"5.1.4\";i:96;s:5:\"5.1.5\";i:97;s:5:\"5.1.6\";i:98;s:5:\"5.1.7\";i:99;s:5:\"5.1.8\";i:100;s:5:\"5.1.9\";i:101;s:5:\"5.2.1\";i:102;s:5:\"5.2.2\";i:103;s:5:\"5.2.3\";i:104;s:5:\"5.2.4\";i:105;s:5:\"5.2.5\";i:106;s:5:\"5.2.6\";i:107;s:5:\"5.2.7\";i:108;s:5:\"5.2.8\";i:109;s:5:\"5.2.9\";i:110;s:5:\"5.3.1\";i:111;s:6:\"5.3.10\";i:112;s:6:\"5.3.11\";i:113;s:6:\"5.3.12\";i:114;s:5:\"5.3.2\";i:115;s:5:\"5.3.3\";i:116;s:5:\"5.3.4\";i:117;s:5:\"5.3.5\";i:118;s:5:\"5.3.6\";i:119;s:5:\"5.3.7\";i:120;s:5:\"5.3.8\";i:121;s:5:\"5.3.9\";i:122;s:5:\"6.0.1\";i:123;s:6:\"6.0.10\";i:124;s:6:\"6.0.11\";i:125;s:6:\"6.0.12\";i:126;s:6:\"6.0.14\";i:127;s:6:\"6.0.15\";i:128;s:6:\"6.0.16\";i:129;s:6:\"6.0.17\";i:130;s:6:\"6.0.18\";i:131;s:6:\"6.0.19\";i:132;s:5:\"6.0.2\";i:133;s:6:\"6.0.20\";i:134;s:6:\"6.0.21\";i:135;s:6:\"6.0.22\";i:136;s:6:\"6.0.23\";i:137;s:6:\"6.0.24\";i:138;s:6:\"6.0.25\";i:139;s:5:\"6.0.3\";i:140;s:5:\"6.0.4\";i:141;s:5:\"6.0.5\";i:142;s:5:\"6.0.6\";i:143;s:5:\"6.0.7\";i:144;s:5:\"6.0.8\";i:145;s:5:\"6.0.9\";i:146;s:5:\"6.1.1\";i:147;s:6:\"6.1.10\";i:148;s:6:\"6.1.11\";i:149;s:6:\"6.1.12\";i:150;s:6:\"6.1.14\";i:151;s:6:\"6.1.15\";i:152;s:6:\"6.1.16\";i:153;s:6:\"6.1.17\";i:154;s:5:\"6.1.2\";i:155;s:5:\"6.1.3\";i:156;s:5:\"6.1.4\";i:157;s:5:\"6.1.5\";i:158;s:5:\"6.1.6\";i:159;s:5:\"6.1.7\";i:160;s:5:\"6.1.8\";i:161;s:5:\"6.1.9\";i:162;s:5:\"6.2.0\";i:163;s:5:\"6.2.1\";i:164;s:6:\"6.2.10\";i:165;s:5:\"6.2.2\";i:166;s:5:\"6.2.3\";i:167;s:5:\"6.2.4\";i:168;s:5:\"6.2.5\";i:169;s:5:\"6.2.6\";i:170;s:5:\"6.2.7\";i:171;s:5:\"6.2.8\";i:172;s:5:\"6.2.9\";i:173;s:5:\"6.3.0\";i:174;s:5:\"6.3.1\";i:175;s:5:\"6.3.2\";i:176;s:5:\"6.3.3\";i:177;s:5:\"6.3.4\";i:178;s:5:\"6.3.5\";i:179;s:5:\"6.3.6\";i:180;s:6:\"v1.4.1\";}'), (28864,167,'tagged_versions','a:134:{i:0;s:3:\"1.0\";i:1;s:3:\"1.1\";i:2;s:3:\"1.2\";i:3;s:5:\"1.2.1\";i:4;s:3:\"1.3\";i:5;s:3:\"1.4\";i:6;s:3:\"1.5\";i:7;s:3:\"1.6\";i:8;s:3:\"2.0\";i:9;s:3:\"2.1\";i:10;s:3:\"2.2\";i:11;s:3:\"2.3\";i:12;s:3:\"2.4\";i:13;s:5:\"2.4.1\";i:14;s:3:\"2.5\";i:15;s:5:\"2.5.1\";i:16;s:5:\"2.5.2\";i:17;s:5:\"2.5.3\";i:18;s:5:\"2.5.4\";i:19;s:5:\"2.5.5\";i:20;s:5:\"2.5.6\";i:21;s:3:\"2.6\";i:22;s:5:\"2.6.1\";i:23;s:5:\"2.6.2\";i:24;s:5:\"2.6.3\";i:25;s:5:\"2.6.4\";i:26;s:5:\"2.6.5\";i:27;s:5:\"2.6.6\";i:28;s:5:\"2.6.7\";i:29;s:3:\"2.7\";i:30;s:3:\"2.8\";i:31;s:3:\"2.9\";i:32;s:5:\"2.9.1\";i:33;s:5:\"2.9.2\";i:34;s:5:\"2.9.3\";i:35;s:5:\"2.9.4\";i:36;s:5:\"2.9.5\";i:37;s:3:\"3.0\";i:38;s:5:\"3.0.1\";i:39;s:3:\"3.1\";i:40;s:5:\"3.1.1\";i:41;s:3:\"3.2\";i:42;s:5:\"3.2.1\";i:43;s:5:\"3.2.2\";i:44;s:5:\"3.2.3\";i:45;s:5:\"3.2.4\";i:46;s:5:\"3.2.5\";i:47;s:3:\"4.0\";i:48;s:5:\"4.0.1\";i:49;s:6:\"4.0.10\";i:50;s:6:\"4.0.12\";i:51;s:6:\"4.0.13\";i:52;s:5:\"4.0.2\";i:53;s:5:\"4.0.3\";i:54;s:5:\"4.0.4\";i:55;s:5:\"4.0.5\";i:56;s:5:\"4.0.6\";i:57;s:5:\"4.0.7\";i:58;s:5:\"4.0.8\";i:59;s:5:\"4.0.9\";i:60;s:3:\"4.1\";i:61;s:5:\"4.1.1\";i:62;s:5:\"4.1.2\";i:63;s:5:\"4.1.3\";i:64;s:3:\"4.2\";i:65;s:5:\"4.2.1\";i:66;s:5:\"4.2.2\";i:67;s:5:\"4.2.3\";i:68;s:5:\"4.2.4\";i:69;s:5:\"4.2.5\";i:70;s:5:\"4.2.6\";i:71;s:5:\"4.2.7\";i:72;s:5:\"4.2.8\";i:73;s:3:\"4.3\";i:74;s:5:\"4.3.1\";i:75;s:5:\"4.3.2\";i:76;s:5:\"4.3.3\";i:77;s:5:\"4.3.4\";i:78;s:5:\"4.3.5\";i:79;s:3:\"5.0\";i:80;s:5:\"5.0.1\";i:81;s:5:\"5.0.2\";i:82;s:5:\"5.0.3\";i:83;s:5:\"5.0.4\";i:84;s:5:\"5.0.5\";i:85;s:5:\"5.0.6\";i:86;s:5:\"5.0.7\";i:87;s:3:\"5.1\";i:88;s:5:\"5.1.1\";i:89;s:5:\"5.1.2\";i:90;s:5:\"5.1.3\";i:91;s:5:\"5.1.4\";i:92;s:3:\"5.2\";i:93;s:5:\"5.2.1\";i:94;s:5:\"5.2.2\";i:95;s:5:\"5.2.3\";i:96;s:5:\"5.2.4\";i:97;s:5:\"5.2.6\";i:98;s:5:\"5.2.7\";i:99;s:5:\"5.2.8\";i:100;s:3:\"5.3\";i:101;s:5:\"5.3.1\";i:102;s:5:\"5.3.2\";i:103;s:5:\"5.3.3\";i:104;s:3:\"5.4\";i:105;s:5:\"5.4.1\";i:106;s:5:\"5.4.2\";i:107;s:5:\"5.4.3\";i:108;s:5:\"5.4.4\";i:109;s:5:\"5.4.5\";i:110;s:5:\"5.4.6\";i:111;s:5:\"5.4.9\";i:112;s:3:\"5.5\";i:113;s:5:\"5.5.2\";i:114;s:5:\"5.5.3\";i:115;s:5:\"5.5.4\";i:116;s:5:\"6.0.0\";i:117;s:5:\"6.0.1\";i:118;s:6:\"6.0.11\";i:119;s:6:\"6.0.12\";i:120;s:6:\"6.0.13\";i:121;s:6:\"6.0.14\";i:122;s:6:\"6.0.15\";i:123;s:6:\"6.0.16\";i:124;s:5:\"6.0.2\";i:125;s:5:\"6.0.3\";i:126;s:5:\"6.0.4\";i:127;s:5:\"6.1.0\";i:128;s:5:\"6.1.1\";i:129;s:5:\"6.1.2\";i:130;s:5:\"6.1.3\";i:131;s:5:\"6.1.4\";i:132;s:5:\"6.1.5\";i:133;s:5:\"6.1.6\";}'), (28865,168,'tagged_versions','a:11:{i:0;s:3:\"1.0\";i:1;s:3:\"1.1\";i:2;s:3:\"1.2\";i:3;s:3:\"1.3\";i:4;s:3:\"1.4\";i:5;s:3:\"1.5\";i:6;s:3:\"1.6\";i:7;s:3:\"1.7\";i:8;s:3:\"1.8\";i:9;s:7:\"1.8.0.1\";i:10;s:3:\"1.9\";}'), (28866,169,'tagged_versions','a:148:{i:0;s:4:\"0.37\";i:1;s:4:\"0.38\";i:2;s:4:\"0.39\";i:3;s:4:\"0.40\";i:4;s:4:\"0.41\";i:5;s:4:\"0.42\";i:6;s:4:\"0.43\";i:7;s:4:\"0.50\";i:8;s:4:\"0.51\";i:9;s:4:\"0.52\";i:10;s:4:\"0.60\";i:11;s:4:\"0.61\";i:12;s:4:\"0.62\";i:13;s:4:\"0.63\";i:14;s:4:\"0.64\";i:15;s:4:\"0.70\";i:16;s:4:\"0.71\";i:17;s:4:\"0.73\";i:18;s:4:\"0.74\";i:19;s:4:\"0.80\";i:20;s:4:\"0.81\";i:21;s:4:\"0.83\";i:22;s:4:\"0.90\";i:23;s:4:\"0.91\";i:24;s:4:\"0.92\";i:25;s:4:\"0.93\";i:26;s:4:\"0.94\";i:27;s:4:\"0.95\";i:28;s:4:\"0.96\";i:29;s:4:\"0.97\";i:30;s:4:\"0.99\";i:31;s:6:\"0.99.1\";i:32;s:5:\"1.0.0\";i:33;s:5:\"1.0.1\";i:34;s:5:\"1.0.2\";i:35;s:5:\"1.1.0\";i:36;s:5:\"1.2.0\";i:37;s:5:\"1.2.1\";i:38;s:5:\"1.3.0\";i:39;s:5:\"1.3.1\";i:40;s:5:\"1.3.2\";i:41;s:5:\"1.3.3\";i:42;s:5:\"1.3.4\";i:43;s:5:\"1.3.5\";i:44;s:5:\"1.3.6\";i:45;s:5:\"1.4.0\";i:46;s:5:\"1.4.1\";i:47;s:5:\"1.4.2\";i:48;s:5:\"1.4.3\";i:49;s:5:\"1.5.0\";i:50;s:5:\"1.5.1\";i:51;s:5:\"1.5.2\";i:52;s:5:\"1.5.3\";i:53;s:5:\"1.5.4\";i:54;s:5:\"1.5.5\";i:55;s:5:\"1.6.0\";i:56;s:5:\"1.6.1\";i:57;s:5:\"1.6.2\";i:58;s:5:\"1.7.0\";i:59;s:5:\"1.7.1\";i:60;s:5:\"1.7.2\";i:61;s:5:\"1.7.3\";i:62;s:5:\"1.7.4\";i:63;s:5:\"1.8.0\";i:64;s:5:\"1.8.1\";i:65;s:5:\"1.8.2\";i:66;s:5:\"1.8.3\";i:67;s:5:\"1.8.4\";i:68;s:5:\"1.9.0\";i:69;s:5:\"1.9.1\";i:70;s:6:\"1.9.10\";i:71;s:6:\"1.9.11\";i:72;s:6:\"1.9.12\";i:73;s:6:\"1.9.13\";i:74;s:5:\"1.9.2\";i:75;s:5:\"1.9.3\";i:76;s:5:\"1.9.5\";i:77;s:5:\"1.9.6\";i:78;s:5:\"1.9.7\";i:79;s:5:\"1.9.8\";i:80;s:5:\"1.9.9\";i:81;s:5:\"2.0.0\";i:82;s:6:\"2.0.11\";i:83;s:6:\"2.0.14\";i:84;s:6:\"2.0.17\";i:85;s:6:\"2.0.21\";i:86;s:6:\"2.0.23\";i:87;s:6:\"2.0.24\";i:88;s:6:\"2.0.25\";i:89;s:6:\"2.0.27\";i:90;s:6:\"2.0.30\";i:91;s:6:\"2.0.31\";i:92;s:6:\"2.0.33\";i:93;s:6:\"2.0.40\";i:94;s:6:\"2.0.57\";i:95;s:6:\"2.0.58\";i:96;s:6:\"2.0.59\";i:97;s:6:\"2.0.61\";i:98;s:6:\"2.0.63\";i:99;s:6:\"2.0.65\";i:100;s:6:\"2.0.66\";i:101;s:9:\"2.0.66.16\";i:102;s:9:\"2.0.66.17\";i:103;s:9:\"2.0.66.26\";i:104;s:9:\"2.0.66.27\";i:105;s:9:\"2.0.66.29\";i:106;s:9:\"2.0.66.31\";i:107;s:9:\"2.0.66.33\";i:108;s:9:\"2.0.66.37\";i:109;s:5:\"2.0.7\";i:110;s:6:\"2.0.71\";i:111;s:6:\"2.0.74\";i:112;s:6:\"2.0.76\";i:113;s:6:\"2.0.77\";i:114;s:8:\"2.0.77.3\";i:115;s:6:\"2.0.79\";i:116;s:5:\"2.1.0\";i:117;s:6:\"2.1.10\";i:118;s:6:\"2.1.15\";i:119;s:6:\"2.1.18\";i:120;s:6:\"2.1.19\";i:121;s:5:\"2.1.2\";i:122;s:6:\"2.1.20\";i:123;s:6:\"2.1.23\";i:124;s:6:\"2.1.26\";i:125;s:6:\"2.1.31\";i:126;s:6:\"2.1.43\";i:127;s:6:\"2.1.44\";i:128;s:6:\"2.1.45\";i:129;s:6:\"2.1.46\";i:130;s:6:\"2.1.49\";i:131;s:6:\"2.1.50\";i:132;s:6:\"2.1.54\";i:133;s:6:\"2.1.56\";i:134;s:6:\"2.1.57\";i:135;s:6:\"2.1.59\";i:136;s:6:\"2.1.60\";i:137;s:6:\"2.1.61\";i:138;s:6:\"2.1.62\";i:139;s:6:\"2.1.68\";i:140;s:6:\"2.1.69\";i:141;s:5:\"2.1.7\";i:142;s:6:\"2.1.77\";i:143;s:6:\"2.1.79\";i:144;s:5:\"2.1.9\";i:145;s:5:\"2.2.1\";i:146;s:5:\"2.2.2\";i:147;s:5:\"2.2.3\";}'), (28867,170,'tagged_versions','a:104:{i:0;s:5:\"1.0.0\";i:1;s:5:\"1.0.2\";i:2;s:5:\"1.0.3\";i:3;s:5:\"1.0.5\";i:4;s:5:\"1.1.0\";i:5;s:5:\"1.1.1\";i:6;s:5:\"1.1.2\";i:7;s:5:\"1.1.3\";i:8;s:5:\"1.1.4\";i:9;s:5:\"2.0.0\";i:10;s:5:\"2.0.1\";i:11;s:5:\"2.0.2\";i:12;s:5:\"2.0.3\";i:13;s:5:\"2.0.4\";i:14;s:5:\"2.0.5\";i:15;s:5:\"2.1.1\";i:16;s:5:\"2.1.3\";i:17;s:5:\"2.1.4\";i:18;s:5:\"3.0.0\";i:19;s:5:\"3.0.1\";i:20;s:5:\"3.0.2\";i:21;s:5:\"3.0.3\";i:22;s:5:\"3.0.4\";i:23;s:5:\"3.0.6\";i:24;s:5:\"3.0.7\";i:25;s:5:\"3.1.0\";i:26;s:5:\"3.1.1\";i:27;s:5:\"3.1.2\";i:28;s:5:\"3.1.3\";i:29;s:5:\"3.1.4\";i:30;s:5:\"3.1.5\";i:31;s:5:\"3.1.6\";i:32;s:5:\"3.1.7\";i:33;s:5:\"3.1.8\";i:34;s:5:\"3.1.9\";i:35;s:5:\"3.2.0\";i:36;s:5:\"3.2.2\";i:37;s:5:\"3.2.3\";i:38;s:5:\"3.2.4\";i:39;s:5:\"3.2.5\";i:40;s:5:\"3.2.6\";i:41;s:5:\"3.2.7\";i:42;s:5:\"3.2.8\";i:43;s:5:\"3.2.9\";i:44;s:5:\"3.3.0\";i:45;s:5:\"3.3.1\";i:46;s:5:\"3.3.2\";i:47;s:5:\"3.3.3\";i:48;s:5:\"3.3.4\";i:49;s:5:\"3.3.5\";i:50;s:5:\"3.3.6\";i:51;s:5:\"3.3.7\";i:52;s:5:\"3.3.8\";i:53;s:5:\"3.3.9\";i:54;s:5:\"3.4.0\";i:55;s:5:\"3.4.1\";i:56;s:5:\"3.4.2\";i:57;s:5:\"3.4.3\";i:58;s:5:\"3.5.0\";i:59;s:5:\"3.5.1\";i:60;s:5:\"3.5.2\";i:61;s:5:\"3.5.3\";i:62;s:5:\"3.5.4\";i:63;s:5:\"3.5.5\";i:64;s:5:\"3.5.6\";i:65;s:5:\"3.5.7\";i:66;s:5:\"3.5.8\";i:67;s:5:\"4.0.0\";i:68;s:5:\"4.0.1\";i:69;s:5:\"4.0.2\";i:70;s:5:\"4.0.3\";i:71;s:5:\"4.1.0\";i:72;s:5:\"4.1.1\";i:73;s:5:\"4.1.2\";i:74;s:5:\"4.1.3\";i:75;s:5:\"4.1.4\";i:76;s:5:\"4.1.5\";i:77;s:5:\"4.1.6\";i:78;s:5:\"4.1.8\";i:79;s:5:\"4.2.0\";i:80;s:5:\"4.2.1\";i:81;s:5:\"4.2.2\";i:82;s:5:\"4.3.0\";i:83;s:5:\"4.3.1\";i:84;s:5:\"4.3.2\";i:85;s:5:\"4.3.3\";i:86;s:5:\"4.3.4\";i:87;s:5:\"4.3.5\";i:88;s:5:\"4.3.6\";i:89;s:5:\"4.3.7\";i:90;s:5:\"4.3.8\";i:91;s:5:\"4.3.9\";i:92;s:5:\"4.4.0\";i:93;s:5:\"4.4.1\";i:94;s:6:\"4.4.10\";i:95;s:6:\"4.4.11\";i:96;s:5:\"4.4.2\";i:97;s:5:\"4.4.3\";i:98;s:5:\"4.4.4\";i:99;s:5:\"4.4.5\";i:100;s:5:\"4.4.6\";i:101;s:5:\"4.4.7\";i:102;s:5:\"4.4.8\";i:103;s:5:\"4.4.9\";}'), (28868,171,'tagged_versions','a:10:{i:0;s:5:\"1.0.0\";i:1;s:5:\"1.1.0\";i:2;s:5:\"2.0.0\";i:3;s:5:\"2.1.0\";i:4;s:5:\"2.1.2\";i:5;s:5:\"2.2.0\";i:6;s:5:\"2.2.3\";i:7;s:5:\"2.2.4\";i:8;s:5:\"2.2.5\";i:9;s:5:\"2.2.6\";}'), (28869,172,'tagged_versions','a:28:{i:0;s:3:\"0.3\";i:1;s:3:\"0.4\";i:2;s:3:\"0.5\";i:3;s:3:\"0.6\";i:4;s:5:\"0.6.1\";i:5;s:3:\"1.0\";i:6;s:3:\"1.1\";i:7;s:5:\"1.1.1\";i:8;s:5:\"1.1.2\";i:9;s:3:\"2.0\";i:10;s:5:\"2.0.1\";i:11;s:5:\"2.0.2\";i:12;s:3:\"2.1\";i:13;s:5:\"2.1.1\";i:14;s:3:\"2.2\";i:15;s:3:\"2.3\";i:16;s:3:\"2.4\";i:17;s:5:\"2.4.1\";i:18;s:3:\"2.5\";i:19;s:3:\"2.6\";i:20;s:3:\"3.0\";i:21;s:5:\"3.0.1\";i:22;s:5:\"3.0.2\";i:23;s:5:\"3.0.3\";i:24;s:3:\"3.1\";i:25;s:5:\"3.1.1\";i:26;s:5:\"3.1.2\";i:27;s:3:\"3.2\";}'), (28870,173,'tagged_versions','a:33:{i:0;s:3:\"0.5\";i:1;s:3:\"0.6\";i:2;s:3:\"0.7\";i:3;s:5:\"0.7.5\";i:4;s:7:\"0.7.5.1\";i:5;s:7:\"0.7.5.2\";i:6;s:3:\"0.8\";i:7;s:5:\"0.8.5\";i:8;s:7:\"0.8.5.1\";i:9;s:7:\"0.8.5.2\";i:10;s:5:\"0.9.0\";i:11;s:5:\"0.9.1\";i:12;s:7:\"0.9.1.1\";i:13;s:7:\"0.9.1.2\";i:14;s:7:\"0.9.1.3\";i:15;s:5:\"0.9.2\";i:16;s:7:\"0.9.2.1\";i:17;s:8:\"0.9.2.10\";i:18;s:8:\"0.9.2.11\";i:19;s:7:\"0.9.2.2\";i:20;s:7:\"0.9.2.3\";i:21;s:7:\"0.9.2.4\";i:22;s:7:\"0.9.2.5\";i:23;s:7:\"0.9.2.6\";i:24;s:7:\"0.9.2.7\";i:25;s:7:\"0.9.2.8\";i:26;s:7:\"0.9.2.9\";i:27;s:5:\"0.9.3\";i:28;s:5:\"0.9.4\";i:29;s:7:\"0.9.4.1\";i:30;s:5:\"0.9.5\";i:31;s:7:\"0.9.5.1\";i:32;s:7:\"0.9.5.2\";}'), (28871,174,'tagged_versions','a:28:{i:0;s:4:\"1.00\";i:1;s:4:\"2.00\";i:2;s:4:\"2.01\";i:3;s:4:\"2.02\";i:4;s:4:\"2.03\";i:5;s:4:\"2.10\";i:6;s:4:\"2.11\";i:7;s:4:\"2.20\";i:8;s:4:\"2.30\";i:9;s:4:\"2.31\";i:10;s:4:\"2.40\";i:11;s:4:\"2.50\";i:12;s:4:\"2.61\";i:13;s:4:\"2.72\";i:14;s:4:\"2.73\";i:15;s:4:\"2.74\";i:16;s:4:\"2.80\";i:17;s:4:\"2.81\";i:18;s:4:\"2.82\";i:19;s:4:\"2.83\";i:20;s:4:\"2.85\";i:21;s:4:\"2.86\";i:22;s:4:\"2.87\";i:23;s:4:\"2.88\";i:24;s:4:\"2.89\";i:25;s:6:\"2.89.1\";i:26;s:4:\"2.90\";i:27;s:4:\"2.91\";}'), (28872,175,'tagged_versions','a:28:{i:0;s:3:\"2.3\";i:1;s:5:\"2.3.1\";i:2;s:5:\"2.3.2\";i:3;s:3:\"2.4\";i:4;s:5:\"2.4.1\";i:5;s:6:\"2.4.10\";i:6;s:6:\"2.4.11\";i:7;s:6:\"2.4.12\";i:8;s:6:\"2.4.13\";i:9;s:6:\"2.4.14\";i:10;s:6:\"2.4.15\";i:11;s:6:\"2.4.16\";i:12;s:6:\"2.4.17\";i:13;s:6:\"2.4.18\";i:14;s:6:\"2.4.19\";i:15;s:5:\"2.4.2\";i:16;s:6:\"2.4.20\";i:17;s:6:\"2.4.21\";i:18;s:6:\"2.4.22\";i:19;s:6:\"2.4.23\";i:20;s:6:\"2.4.24\";i:21;s:6:\"2.4.25\";i:22;s:5:\"2.4.3\";i:23;s:5:\"2.4.4\";i:24;s:5:\"2.4.5\";i:25;s:5:\"2.4.6\";i:26;s:5:\"2.4.8\";i:27;s:5:\"2.4.9\";}'), (28873,176,'tagged_versions','a:33:{i:0;s:3:\"0.1\";i:1;s:3:\"0.2\";i:2;s:5:\"0.2.1\";i:3;s:3:\"0.3\";i:4;s:5:\"0.3.1\";i:5;s:5:\"0.3.2\";i:6;s:5:\"0.3.3\";i:7;s:5:\"0.3.4\";i:8;s:5:\"0.3.5\";i:9;s:3:\"0.4\";i:10;s:3:\"0.5\";i:11;s:3:\"0.6\";i:12;s:3:\"0.7\";i:13;s:3:\"0.8\";i:14;s:3:\"0.9\";i:15;s:5:\"0.9.2\";i:16;s:5:\"1.0.1\";i:17;s:5:\"1.0.2\";i:18;s:5:\"1.0.3\";i:19;s:5:\"1.0.4\";i:20;s:3:\"1.1\";i:21;s:5:\"1.1.1\";i:22;s:3:\"1.2\";i:23;s:3:\"1.3\";i:24;s:5:\"1.3.1\";i:25;s:5:\"1.3.2\";i:26;s:3:\"1.4\";i:27;s:5:\"1.4.1\";i:28;s:5:\"1.4.2\";i:29;s:3:\"1.5\";i:30;s:5:\"1.5.1\";i:31;s:5:\"1.5.2\";i:32;s:3:\"2.6\";}'), (28874,177,'tagged_versions','a:22:{i:0;s:5:\"1.4.2\";i:1;s:3:\"1.5\";i:2;s:5:\"1.5.1\";i:3;s:3:\"1.6\";i:4;s:5:\"1.6.1\";i:5;s:5:\"1.6.2\";i:6;s:5:\"1.6.3\";i:7;s:5:\"1.6.4\";i:8;s:3:\"1.7\";i:9;s:3:\"1.8\";i:10;s:3:\"1.9\";i:11;s:3:\"2.0\";i:12;s:5:\"2.1.1\";i:13;s:3:\"2.2\";i:14;s:3:\"2.3\";i:15;s:5:\"2.3.1\";i:16;s:3:\"2.4\";i:17;s:3:\"2.5\";i:18;s:3:\"2.6\";i:19;s:3:\"2.7\";i:20;s:3:\"2.8\";i:21;s:5:\"2.8.1\";}'), (28875,178,'tagged_versions','a:61:{i:0;s:3:\"0.5\";i:1;s:3:\"0.6\";i:2;s:5:\"0.6.1\";i:3;s:5:\"0.6.2\";i:4;s:5:\"0.6.3\";i:5;s:5:\"0.6.4\";i:6;s:5:\"0.6.5\";i:7;s:3:\"0.7\";i:8;s:3:\"0.8\";i:9;s:5:\"0.8.1\";i:10;s:5:\"0.8.2\";i:11;s:3:\"0.9\";i:12;s:5:\"0.9.1\";i:13;s:5:\"0.9.2\";i:14;s:5:\"0.9.3\";i:15;s:5:\"0.9.4\";i:16;s:5:\"0.9.5\";i:17;s:5:\"1.0.0\";i:18;s:5:\"1.1.0\";i:19;s:5:\"1.1.1\";i:20;s:5:\"1.2.0\";i:21;s:5:\"1.3.0\";i:22;s:5:\"1.3.1\";i:23;s:5:\"1.3.2\";i:24;s:5:\"1.3.3\";i:25;s:3:\"1.4\";i:26;s:5:\"1.4.1\";i:27;s:5:\"1.4.2\";i:28;s:5:\"1.4.3\";i:29;s:5:\"1.4.4\";i:30;s:5:\"1.4.5\";i:31;s:5:\"1.4.6\";i:32;s:5:\"1.4.7\";i:33;s:5:\"1.4.8\";i:34;s:5:\"2.0.0\";i:35;s:5:\"2.0.1\";i:36;s:5:\"2.0.2\";i:37;s:5:\"2.0.3\";i:38;s:5:\"2.0.4\";i:39;s:5:\"2.1.0\";i:40;s:5:\"2.1.1\";i:41;s:5:\"2.1.2\";i:42;s:5:\"2.1.3\";i:43;s:5:\"2.1.4\";i:44;s:5:\"2.1.5\";i:45;s:5:\"2.1.6\";i:46;s:5:\"2.2.0\";i:47;s:5:\"2.2.1\";i:48;s:6:\"2.2.10\";i:49;s:6:\"2.2.11\";i:50;s:6:\"2.2.12\";i:51;s:5:\"2.2.2\";i:52;s:5:\"2.2.3\";i:53;s:5:\"2.2.4\";i:54;s:5:\"2.2.5\";i:55;s:5:\"2.2.6\";i:56;s:5:\"2.2.7\";i:57;s:5:\"2.2.8\";i:58;s:5:\"2.2.9\";i:59;s:5:\"2.3.0\";i:60;s:5:\"2.3.1\";}'), (28876,179,'tagged_versions','a:37:{i:0;s:3:\"4.4\";i:1;s:5:\"4.4.1\";i:2;s:5:\"4.4.2\";i:3;s:5:\"4.4.3\";i:4;s:5:\"4.4.4\";i:5;s:5:\"4.4.5\";i:6;s:5:\"4.4.6\";i:7;s:5:\"4.4.7\";i:8;s:3:\"4.5\";i:9;s:5:\"4.5.1\";i:10;s:3:\"4.6\";i:11;s:3:\"4.7\";i:12;s:5:\"4.7.1\";i:13;s:5:\"4.7.2\";i:14;s:5:\"4.7.3\";i:15;s:5:\"4.7.4\";i:16;s:5:\"4.7.5\";i:17;s:3:\"4.8\";i:18;s:5:\"4.8.1\";i:19;s:7:\"4.8.1.2\";i:20;s:7:\"4.8.1.3\";i:21;s:5:\"4.8.2\";i:22;s:7:\"4.8.2.1\";i:23;s:5:\"4.8.3\";i:24;s:3:\"4.9\";i:25;s:7:\"4.9.0.1\";i:26;s:5:\"4.9.1\";i:27;s:7:\"4.9.1.1\";i:28;s:7:\"4.9.1.2\";i:29;s:8:\"4.9.1.2b\";i:30;s:5:\"4.9.2\";i:31;s:7:\"4.9.3.1\";i:32;s:7:\"4.9.3.2\";i:33;s:5:\"4.9.4\";i:34;s:5:\"4.9.5\";i:35;s:7:\"4.9.6.1\";i:36;s:7:\"4.9.6.2\";}'), (28877,180,'tagged_versions','a:21:{i:0;s:5:\"5.0.1\";i:1;s:5:\"5.1.1\";i:2;s:5:\"5.2.1\";i:3;s:5:\"5.3.7\";i:4;s:5:\"5.4.5\";i:5;s:5:\"5.5.0\";i:6;s:5:\"5.6.0\";i:7;s:5:\"5.6.1\";i:8;s:5:\"5.6.2\";i:9;s:5:\"5.6.3\";i:10;s:5:\"5.6.4\";i:11;s:5:\"5.7.0\";i:12;s:5:\"5.7.1\";i:13;s:5:\"5.8.0\";i:14;s:5:\"5.8.1\";i:15;s:5:\"5.9.0\";i:16;s:5:\"6.0.0\";i:17;s:5:\"6.1.0\";i:18;s:5:\"6.1.1\";i:19;s:5:\"6.2.0\";i:20;s:5:\"6.2.1\";}'), (28879,182,'tagged_versions','a:223:{i:0;s:5:\"0.7.4\";i:1;s:5:\"0.7.7\";i:2;s:6:\"0.8.28\";i:3;s:6:\"0.8.29\";i:4;s:6:\"0.8.30\";i:5;s:6:\"0.8.31\";i:6;s:6:\"0.8.32\";i:7;s:6:\"0.8.33\";i:8;s:6:\"0.8.36\";i:9;s:6:\"0.8.37\";i:10;s:6:\"0.8.50\";i:11;s:6:\"0.8.51\";i:12;s:5:\"0.9.1\";i:13;s:6:\"0.9.10\";i:14;s:6:\"0.9.11\";i:15;s:6:\"0.9.12\";i:16;s:5:\"0.9.2\";i:17;s:6:\"0.9.20\";i:18;s:6:\"0.9.21\";i:19;s:6:\"0.9.22\";i:20;s:6:\"1.0.10\";i:21;s:6:\"1.0.11\";i:22;s:6:\"1.0.12\";i:23;s:6:\"1.0.15\";i:24;s:6:\"1.0.16\";i:25;s:6:\"1.0.18\";i:26;s:6:\"1.0.20\";i:27;s:5:\"1.0.3\";i:28;s:5:\"1.0.4\";i:29;s:5:\"1.0.5\";i:30;s:5:\"1.0.6\";i:31;s:5:\"1.0.7\";i:32;s:5:\"1.0.8\";i:33;s:5:\"1.0.9\";i:34;s:5:\"1.1.0\";i:35;s:6:\"1.1.10\";i:36;s:6:\"1.1.11\";i:37;s:6:\"1.1.12\";i:38;s:6:\"1.1.13\";i:39;s:6:\"1.1.14\";i:40;s:6:\"1.1.15\";i:41;s:6:\"1.1.16\";i:42;s:6:\"1.1.17\";i:43;s:5:\"1.1.2\";i:44;s:5:\"1.1.3\";i:45;s:5:\"1.1.5\";i:46;s:5:\"1.1.6\";i:47;s:5:\"1.1.8\";i:48;s:5:\"1.1.9\";i:49;s:6:\"1.10.1\";i:50;s:6:\"1.10.3\";i:51;s:6:\"1.11.1\";i:52;s:7:\"1.11.12\";i:53;s:7:\"1.11.15\";i:54;s:7:\"1.11.17\";i:55;s:7:\"1.11.18\";i:56;s:6:\"1.11.2\";i:57;s:7:\"1.11.20\";i:58;s:7:\"1.11.23\";i:59;s:7:\"1.11.24\";i:60;s:7:\"1.11.25\";i:61;s:7:\"1.11.26\";i:62;s:7:\"1.11.27\";i:63;s:7:\"1.11.28\";i:64;s:6:\"1.11.3\";i:65;s:6:\"1.11.4\";i:66;s:6:\"1.11.5\";i:67;s:6:\"1.11.8\";i:68;s:6:\"1.11.9\";i:69;s:6:\"1.12.0\";i:70;s:6:\"1.12.1\";i:71;s:7:\"1.12.12\";i:72;s:7:\"1.12.13\";i:73;s:7:\"1.12.15\";i:74;s:7:\"1.12.17\";i:75;s:6:\"1.12.2\";i:76;s:7:\"1.12.20\";i:77;s:7:\"1.12.23\";i:78;s:7:\"1.12.24\";i:79;s:7:\"1.12.25\";i:80;s:7:\"1.12.28\";i:81;s:7:\"1.12.29\";i:82;s:7:\"1.12.30\";i:83;s:7:\"1.12.32\";i:84;s:7:\"1.12.34\";i:85;s:7:\"1.12.35\";i:86;s:7:\"1.12.37\";i:87;s:7:\"1.12.39\";i:88;s:6:\"1.12.4\";i:89;s:7:\"1.12.40\";i:90;s:6:\"1.12.6\";i:91;s:5:\"1.2.0\";i:92;s:5:\"1.2.1\";i:93;s:6:\"1.2.10\";i:94;s:6:\"1.2.11\";i:95;s:6:\"1.2.12\";i:96;s:6:\"1.2.14\";i:97;s:6:\"1.2.15\";i:98;s:6:\"1.2.16\";i:99;s:6:\"1.2.17\";i:100;s:6:\"1.2.19\";i:101;s:5:\"1.2.2\";i:102;s:6:\"1.2.20\";i:103;s:6:\"1.2.24\";i:104;s:6:\"1.2.25\";i:105;s:6:\"1.2.26\";i:106;s:6:\"1.2.27\";i:107;s:6:\"1.2.28\";i:108;s:6:\"1.2.29\";i:109;s:5:\"1.2.3\";i:110;s:6:\"1.2.30\";i:111;s:6:\"1.2.31\";i:112;s:6:\"1.2.33\";i:113;s:6:\"1.2.35\";i:114;s:6:\"1.2.36\";i:115;s:6:\"1.2.38\";i:116;s:6:\"1.2.39\";i:117;s:5:\"1.2.4\";i:118;s:6:\"1.2.40\";i:119;s:6:\"1.2.41\";i:120;s:6:\"1.2.42\";i:121;s:6:\"1.2.43\";i:122;s:6:\"1.2.44\";i:123;s:6:\"1.2.45\";i:124;s:6:\"1.2.46\";i:125;s:5:\"1.2.5\";i:126;s:5:\"1.2.7\";i:127;s:5:\"1.2.8\";i:128;s:5:\"1.2.9\";i:129;s:6:\"1.3.10\";i:130;s:6:\"1.3.11\";i:131;s:6:\"1.3.12\";i:132;s:6:\"1.3.14\";i:133;s:6:\"1.3.15\";i:134;s:6:\"1.3.17\";i:135;s:6:\"1.3.18\";i:136;s:6:\"1.3.19\";i:137;s:5:\"1.3.2\";i:138;s:6:\"1.3.20\";i:139;s:6:\"1.3.22\";i:140;s:6:\"1.3.23\";i:141;s:6:\"1.3.24\";i:142;s:6:\"1.3.25\";i:143;s:5:\"1.3.3\";i:144;s:5:\"1.3.4\";i:145;s:5:\"1.3.6\";i:146;s:5:\"1.3.7\";i:147;s:5:\"1.3.8\";i:148;s:5:\"1.3.9\";i:149;s:5:\"1.4.0\";i:150;s:6:\"1.4.10\";i:151;s:6:\"1.4.11\";i:152;s:6:\"1.4.12\";i:153;s:6:\"1.4.13\";i:154;s:6:\"1.4.14\";i:155;s:6:\"1.4.15\";i:156;s:5:\"1.4.2\";i:157;s:6:\"1.4.27\";i:158;s:6:\"1.4.28\";i:159;s:6:\"1.4.29\";i:160;s:6:\"1.4.30\";i:161;s:5:\"1.4.4\";i:162;s:6:\"1.4.48\";i:163;s:5:\"1.4.5\";i:164;s:5:\"1.4.6\";i:165;s:5:\"1.4.7\";i:166;s:5:\"1.4.8\";i:167;s:5:\"1.4.9\";i:168;s:6:\"1.5.16\";i:169;s:6:\"1.5.20\";i:170;s:6:\"1.5.21\";i:171;s:6:\"1.5.22\";i:172;s:5:\"1.5.5\";i:173;s:5:\"1.5.6\";i:174;s:5:\"1.5.7\";i:175;s:5:\"1.5.8\";i:176;s:5:\"1.5.9\";i:177;s:5:\"1.6.1\";i:178;s:6:\"1.6.17\";i:179;s:5:\"1.6.2\";i:180;s:6:\"1.6.46\";i:181;s:5:\"1.7.0\";i:182;s:5:\"1.7.1\";i:183;s:6:\"1.7.18\";i:184;s:6:\"1.7.20\";i:185;s:5:\"1.7.3\";i:186;s:6:\"1.7.34\";i:187;s:6:\"1.7.35\";i:188;s:6:\"1.7.39\";i:189;s:6:\"1.7.40\";i:190;s:6:\"1.7.41\";i:191;s:5:\"1.8.1\";i:192;s:6:\"1.8.11\";i:193;s:6:\"1.8.12\";i:194;s:6:\"1.8.13\";i:195;s:5:\"1.8.2\";i:196;s:5:\"1.8.5\";i:197;s:5:\"1.8.8\";i:198;s:5:\"1.9.0\";i:199;s:6:\"1.9.13\";i:200;s:6:\"1.9.15\";i:201;s:6:\"1.9.17\";i:202;s:6:\"1.9.19\";i:203;s:6:\"1.9.25\";i:204;s:6:\"1.9.26\";i:205;s:6:\"1.9.30\";i:206;s:6:\"1.9.31\";i:207;s:6:\"1.9.32\";i:208;s:5:\"1.9.4\";i:209;s:6:\"1.9.40\";i:210;s:6:\"1.9.41\";i:211;s:6:\"1.9.42\";i:212;s:6:\"1.9.43\";i:213;s:6:\"1.9.44\";i:214;s:6:\"1.9.45\";i:215;s:6:\"1.9.46\";i:216;s:5:\"1.9.5\";i:217;s:6:\"1.9.50\";i:218;s:6:\"1.9.51\";i:219;s:6:\"1.9.60\";i:220;s:6:\"1.9.62\";i:221;s:6:\"1.9.63\";i:222;s:6:\"1.9.64\";}'), (28880,183,'tagged_versions','a:40:{i:0;s:5:\"0.4.6\";i:1;s:5:\"0.5.0\";i:2;s:5:\"0.5.1\";i:3;s:6:\"0.5.10\";i:4;s:6:\"0.5.12\";i:5;s:6:\"0.5.14\";i:6;s:6:\"0.5.16\";i:7;s:6:\"0.5.18\";i:8;s:5:\"0.5.2\";i:9;s:6:\"0.5.20\";i:10;s:6:\"0.5.22\";i:11;s:6:\"0.5.24\";i:12;s:6:\"0.5.26\";i:13;s:6:\"0.5.28\";i:14;s:6:\"0.5.30\";i:15;s:6:\"0.5.32\";i:16;s:6:\"0.5.34\";i:17;s:5:\"0.5.4\";i:18;s:5:\"0.5.6\";i:19;s:5:\"0.5.8\";i:20;s:5:\"1.1.0\";i:21;s:6:\"1.1.10\";i:22;s:6:\"1.1.12\";i:23;s:6:\"1.1.14\";i:24;s:6:\"1.1.16\";i:25;s:6:\"1.1.18\";i:26;s:5:\"1.1.2\";i:27;s:6:\"1.1.20\";i:28;s:6:\"1.1.22\";i:29;s:6:\"1.1.24\";i:30;s:6:\"1.1.26\";i:31;s:6:\"1.1.28\";i:32;s:6:\"1.1.30\";i:33;s:6:\"1.1.32\";i:34;s:6:\"1.1.34\";i:35;s:5:\"1.1.4\";i:36;s:5:\"1.1.6\";i:37;s:5:\"1.1.8\";i:38;s:5:\"1.2.0\";i:39;s:5:\"1.2.2\";}'), (28881,184,'tagged_versions','a:31:{i:0;s:3:\"1.0\";i:1;s:5:\"1.0.1\";i:2;s:3:\"1.1\";i:3;s:5:\"1.2.1\";i:4;s:3:\"1.3\";i:5;s:5:\"2.0.2\";i:6;s:5:\"2.1.6\";i:7;s:5:\"2.2.2\";i:8;s:3:\"2.3\";i:9;s:5:\"2.4.2\";i:10;s:5:\"2.5.1\";i:11;s:5:\"2.6.3\";i:12;s:5:\"2.7.2\";i:13;s:5:\"2.8.1\";i:14;s:5:\"2.9.1\";i:15;s:5:\"3.0.1\";i:16;s:5:\"3.1.1\";i:17;s:5:\"3.2.1\";i:18;s:5:\"3.3.1\";i:19;s:5:\"3.3.2\";i:20;s:5:\"3.3.3\";i:21;s:5:\"3.3.4\";i:22;s:7:\"3.3.4.1\";i:23;s:5:\"3.3.5\";i:24;s:5:\"3.3.6\";i:25;s:5:\"3.3.7\";i:26;s:3:\"3.4\";i:27;s:5:\"3.4.1\";i:28;s:5:\"3.4.2\";i:29;s:5:\"3.4.3\";i:30;s:3:\"3.5\";}'), (28882,185,'tagged_versions','a:10:{i:0;s:5:\"1.0.7\";i:1;s:5:\"2.0.0\";i:2;s:5:\"2.0.1\";i:3;s:5:\"2.0.2\";i:4;s:5:\"2.0.3\";i:5;s:5:\"2.0.4\";i:6;s:5:\"2.0.5\";i:7;s:3:\"2.1\";i:8;s:5:\"2.1.2\";i:9;s:5:\"2.1.3\";}'), (28883,186,'tagged_versions','a:120:{i:0;s:5:\"1.0.0\";i:1;s:5:\"1.1.0\";i:2;s:5:\"1.1.1\";i:3;s:5:\"1.2.0\";i:4;s:5:\"1.3.0\";i:5;s:5:\"1.4.0\";i:6;s:5:\"1.4.1\";i:7;s:5:\"1.5.0\";i:8;s:5:\"1.6.0\";i:9;s:5:\"1.6.1\";i:10;s:5:\"1.7.0\";i:11;s:5:\"1.8.0\";i:12;s:5:\"1.8.1\";i:13;s:5:\"1.8.2\";i:14;s:5:\"1.8.3\";i:15;s:5:\"1.9.0\";i:16;s:5:\"2.0.0\";i:17;s:5:\"2.0.1\";i:18;s:5:\"2.1.0\";i:19;s:5:\"2.2.0\";i:20;s:5:\"2.2.1\";i:21;s:5:\"2.2.2\";i:22;s:5:\"2.2.3\";i:23;s:5:\"2.2.4\";i:24;s:5:\"2.2.5\";i:25;s:5:\"2.2.6\";i:26;s:5:\"2.2.7\";i:27;s:5:\"2.3.0\";i:28;s:5:\"2.4.0\";i:29;s:5:\"2.5.0\";i:30;s:5:\"2.5.1\";i:31;s:5:\"2.5.2\";i:32;s:5:\"2.5.3\";i:33;s:5:\"2.5.4\";i:34;s:5:\"2.5.5\";i:35;s:5:\"2.6.0\";i:36;s:5:\"2.7.0\";i:37;s:5:\"3.0.0\";i:38;s:5:\"3.0.1\";i:39;s:5:\"3.0.2\";i:40;s:5:\"3.1.0\";i:41;s:5:\"3.1.1\";i:42;s:5:\"3.1.2\";i:43;s:5:\"3.2.0\";i:44;s:5:\"3.2.1\";i:45;s:5:\"3.3.0\";i:46;s:5:\"3.3.1\";i:47;s:5:\"3.4.0\";i:48;s:5:\"3.5.0\";i:49;s:5:\"3.6.0\";i:50;s:5:\"3.6.1\";i:51;s:5:\"3.7.0\";i:52;s:5:\"3.8.0\";i:53;s:5:\"3.8.1\";i:54;s:5:\"3.8.2\";i:55;s:5:\"3.8.3\";i:56;s:5:\"3.9.0\";i:57;s:5:\"3.9.1\";i:58;s:5:\"3.9.2\";i:59;s:5:\"3.9.3\";i:60;s:5:\"3.9.4\";i:61;s:5:\"3.9.5\";i:62;s:14:\"3.9.5.noupdate\";i:63;s:5:\"4.0.0\";i:64;s:5:\"4.0.1\";i:65;s:5:\"4.0.3\";i:66;s:5:\"4.0.4\";i:67;s:5:\"4.0.5\";i:68;s:5:\"4.0.6\";i:69;s:5:\"4.0.7\";i:70;s:5:\"4.0.8\";i:71;s:5:\"4.0.9\";i:72;s:5:\"4.1.0\";i:73;s:5:\"4.1.1\";i:74;s:5:\"4.1.2\";i:75;s:5:\"4.1.3\";i:76;s:5:\"4.1.4\";i:77;s:5:\"4.1.5\";i:78;s:5:\"4.1.6\";i:79;s:5:\"4.1.7\";i:80;s:5:\"4.1.8\";i:81;s:5:\"4.1.9\";i:82;s:5:\"4.2.0\";i:83;s:5:\"4.2.1\";i:84;s:5:\"4.2.2\";i:85;s:5:\"4.2.3\";i:86;s:5:\"4.3.0\";i:87;s:5:\"4.3.1\";i:88;s:5:\"4.3.2\";i:89;s:5:\"4.4.0\";i:90;s:5:\"4.4.1\";i:91;s:5:\"4.4.2\";i:92;s:5:\"4.4.3\";i:93;s:5:\"4.4.4\";i:94;s:5:\"4.4.5\";i:95;s:5:\"4.4.6\";i:96;s:5:\"4.5.0\";i:97;s:5:\"4.5.1\";i:98;s:5:\"4.5.2\";i:99;s:5:\"4.5.3\";i:100;s:5:\"4.6.0\";i:101;s:5:\"4.6.1\";i:102;s:5:\"4.6.2\";i:103;s:5:\"4.6.3\";i:104;s:5:\"4.7.0\";i:105;s:5:\"4.7.1\";i:106;s:5:\"4.7.2\";i:107;s:5:\"4.8.0\";i:108;s:5:\"4.8.1\";i:109;s:5:\"4.9.0\";i:110;s:5:\"4.9.1\";i:111;s:5:\"4.9.2\";i:112;s:5:\"4.9.3\";i:113;s:5:\"4.9.4\";i:114;s:5:\"4.9.5\";i:115;s:5:\"4.9.6\";i:116;s:5:\"4.9.7\";i:117;s:5:\"4.9.8\";i:118;s:7:\"4.9.8.1\";i:119;s:5:\"4.9.9\";}'), (28884,187,'tagged_versions','a:30:{i:0;s:6:\"2.1.29\";i:1;s:6:\"2.2.10\";i:2;s:6:\"2.2.11\";i:3;s:6:\"2.2.12\";i:4;s:6:\"2.2.13\";i:5;s:6:\"2.2.14\";i:6;s:5:\"2.2.2\";i:7;s:5:\"2.2.7\";i:8;s:5:\"2.2.8\";i:9;s:5:\"2.2.9\";i:10;s:6:\"2.3.10\";i:11;s:6:\"2.3.11\";i:12;s:6:\"2.3.12\";i:13;s:6:\"2.3.13\";i:14;s:6:\"2.3.14\";i:15;s:6:\"2.3.15\";i:16;s:6:\"2.3.16\";i:17;s:5:\"2.3.2\";i:18;s:5:\"2.3.3\";i:19;s:5:\"2.3.4\";i:20;s:5:\"2.3.5\";i:21;s:5:\"2.3.6\";i:22;s:5:\"2.3.8\";i:23;s:5:\"2.3.9\";i:24;s:3:\"2.4\";i:25;s:5:\"2.4.2\";i:26;s:5:\"2.4.3\";i:27;s:5:\"2.4.4\";i:28;s:5:\"2.4.5\";i:29;s:3:\"2.5\";}'), (28885,188,'tagged_versions','a:28:{i:0;s:3:\"1.4\";i:1;s:5:\"1.4.1\";i:2;s:5:\"1.4.2\";i:3;s:5:\"1.4.3\";i:4;s:5:\"1.4.4\";i:5;s:3:\"1.5\";i:6;s:5:\"1.5.1\";i:7;s:6:\"1.5.10\";i:8;s:6:\"1.5.11\";i:9;s:5:\"1.5.2\";i:10;s:5:\"1.5.3\";i:11;s:5:\"1.5.4\";i:12;s:5:\"1.5.6\";i:13;s:5:\"1.5.7\";i:14;s:5:\"1.5.8\";i:15;s:5:\"1.5.9\";i:16;s:3:\"1.6\";i:17;s:5:\"1.6.1\";i:18;s:5:\"1.6.2\";i:19;s:5:\"1.6.3\";i:20;s:5:\"1.6.4\";i:21;s:5:\"1.6.5\";i:22;s:3:\"1.7\";i:23;s:5:\"1.7.1\";i:24;s:5:\"1.7.2\";i:25;s:3:\"1.8\";i:26;s:5:\"1.8.1\";i:27;s:5:\"1.8.2\";}'), (28886,189,'tagged_versions','a:50:{i:0;s:5:\"2.0.0\";i:1;s:5:\"2.0.1\";i:2;s:5:\"2.0.2\";i:3;s:5:\"2.0.3\";i:4;s:5:\"2.0.4\";i:5;s:5:\"2.1.0\";i:6;s:5:\"2.1.1\";i:7;s:5:\"2.1.2\";i:8;s:5:\"2.1.3\";i:9;s:5:\"2.1.4\";i:10;s:11:\"2.2.0-Beta1\";i:11;s:11:\"2.2.0-Beta2\";i:12;s:5:\"3.0.0\";i:13;s:5:\"3.0.1\";i:14;s:5:\"3.0.2\";i:15;s:5:\"3.1.0\";i:16;s:5:\"3.2.0\";i:17;s:5:\"3.2.1\";i:18;s:5:\"3.3.0\";i:19;s:5:\"3.4.0\";i:20;s:5:\"3.4.1\";i:21;s:5:\"3.5.0\";i:22;s:5:\"3.5.1\";i:23;s:5:\"3.6.0\";i:24;s:5:\"3.7.0\";i:25;s:5:\"3.8.0\";i:26;s:5:\"3.8.1\";i:27;s:5:\"3.9.0\";i:28;s:5:\"4.0.0\";i:29;s:11:\"4.0.0-Beta1\";i:30;s:5:\"4.0.1\";i:31;s:5:\"4.0.2\";i:32;s:5:\"4.1.0\";i:33;s:5:\"4.2.0\";i:34;s:5:\"4.3.0\";i:35;s:5:\"4.4.0\";i:36;s:5:\"5.0.0\";i:37;s:5:\"5.0.1\";i:38;s:5:\"5.1.0\";i:39;s:5:\"5.1.1\";i:40;s:5:\"5.2.0\";i:41;s:5:\"5.2.1\";i:42;s:5:\"5.2.2\";i:43;s:5:\"5.3.0\";i:44;s:5:\"5.3.1\";i:45;s:5:\"5.4.0\";i:46;s:5:\"5.5.0\";i:47;s:5:\"5.5.1\";i:48;s:5:\"5.5.2\";i:49;s:5:\"5.6.0\";}'), (28887,190,'tagged_versions','a:10:{i:0;s:5:\"0.7.0\";i:1;s:8:\"1.8.9.10\";i:2;s:7:\"1.8.9.7\";i:3;s:7:\"1.8.9.8\";i:4;s:7:\"1.8.9.9\";i:5;s:3:\"1.9\";i:6;s:5:\"1.9.1\";i:7;s:5:\"2.0.1\";i:8;s:5:\"2.1.0\";i:9;s:5:\"2.1.1\";}'), (28889,192,'tagged_versions','a:106:{i:0;s:5:\"1.1.5\";i:1;s:5:\"1.2.1\";i:2;s:5:\"1.2.3\";i:3;s:5:\"1.2.4\";i:4;s:5:\"1.2.5\";i:5;s:3:\"1.3\";i:6;s:5:\"1.3.1\";i:7;s:3:\"1.4\";i:8;s:5:\"1.4.1\";i:9;s:5:\"1.4.2\";i:10;s:5:\"1.4.3\";i:11;s:5:\"1.4.4\";i:12;s:5:\"1.4.5\";i:13;s:5:\"1.4.6\";i:14;s:5:\"1.4.7\";i:15;s:5:\"1.4.8\";i:16;s:3:\"1.5\";i:17;s:5:\"1.5.1\";i:18;s:5:\"1.5.2\";i:19;s:5:\"1.5.3\";i:20;s:5:\"1.5.4\";i:21;s:5:\"1.5.5\";i:22;s:5:\"1.5.6\";i:23;s:5:\"1.5.7\";i:24;s:5:\"1.5.8\";i:25;s:3:\"2.0\";i:26;s:5:\"2.0.1\";i:27;s:5:\"2.0.2\";i:28;s:5:\"2.0.3\";i:29;s:5:\"2.0.4\";i:30;s:5:\"2.0.5\";i:31;s:3:\"2.1\";i:32;s:5:\"2.1.1\";i:33;s:5:\"2.1.2\";i:34;s:5:\"2.1.3\";i:35;s:5:\"2.1.4\";i:36;s:5:\"2.1.5\";i:37;s:5:\"2.1.6\";i:38;s:5:\"2.1.7\";i:39;s:3:\"2.2\";i:40;s:5:\"2.2.1\";i:41;s:5:\"2.2.2\";i:42;s:5:\"2.2.3\";i:43;s:5:\"2.2.4\";i:44;s:5:\"2.2.5\";i:45;s:5:\"2.2.6\";i:46;s:5:\"2.2.7\";i:47;s:5:\"2.2.8\";i:48;s:5:\"2.2.9\";i:49;s:3:\"2.3\";i:50;s:5:\"2.3.1\";i:51;s:6:\"2.3.10\";i:52;s:6:\"2.3.11\";i:53;s:6:\"2.3.12\";i:54;s:6:\"2.3.13\";i:55;s:6:\"2.3.14\";i:56;s:6:\"2.3.15\";i:57;s:6:\"2.3.16\";i:58;s:6:\"2.3.17\";i:59;s:6:\"2.3.18\";i:60;s:5:\"2.3.2\";i:61;s:5:\"2.3.3\";i:62;s:5:\"2.3.4\";i:63;s:5:\"2.3.5\";i:64;s:5:\"2.3.6\";i:65;s:5:\"2.3.7\";i:66;s:5:\"2.3.8\";i:67;s:6:\"3.0.10\";i:68;s:6:\"3.0.11\";i:69;s:6:\"3.0.12\";i:70;s:5:\"3.0.2\";i:71;s:5:\"3.0.3\";i:72;s:5:\"3.0.4\";i:73;s:5:\"3.0.5\";i:74;s:5:\"3.0.6\";i:75;s:5:\"3.0.7\";i:76;s:5:\"3.0.8\";i:77;s:5:\"3.0.9\";i:78;s:3:\"3.1\";i:79;s:5:\"3.1.1\";i:80;s:6:\"3.1.10\";i:81;s:6:\"3.1.11\";i:82;s:6:\"3.1.12\";i:83;s:5:\"3.1.2\";i:84;s:5:\"3.1.3\";i:85;s:5:\"3.1.4\";i:86;s:5:\"3.1.5\";i:87;s:5:\"3.1.6\";i:88;s:5:\"3.1.7\";i:89;s:5:\"3.1.8\";i:90;s:5:\"3.1.9\";i:91;s:3:\"4.0\";i:92;s:5:\"4.0.1\";i:93;s:6:\"4.0.10\";i:94;s:6:\"4.0.11\";i:95;s:6:\"4.0.12\";i:96;s:6:\"4.0.13\";i:97;s:5:\"4.0.2\";i:98;s:5:\"4.0.3\";i:99;s:5:\"4.0.4\";i:100;s:5:\"4.0.5\";i:101;s:5:\"4.0.6\";i:102;s:5:\"4.0.7\";i:103;s:5:\"4.0.8\";i:104;s:5:\"4.0.9\";i:105;s:5:\"4.1.0\";}'), (28890,193,'tagged_versions','a:26:{i:0;s:6:\"0.10.0\";i:1;s:6:\"0.10.1\";i:2;s:5:\"0.3.1\";i:3;s:5:\"0.3.2\";i:4;s:3:\"0.4\";i:5;s:5:\"0.4.1\";i:6;s:5:\"0.4.2\";i:7;s:5:\"0.5.0\";i:8;s:5:\"0.5.1\";i:9;s:5:\"0.5.2\";i:10;s:3:\"0.6\";i:11;s:3:\"0.7\";i:12;s:3:\"0.8\";i:13;s:5:\"0.8.2\";i:14;s:5:\"0.8.3\";i:15;s:5:\"0.8.4\";i:16;s:5:\"0.8.5\";i:17;s:5:\"0.8.6\";i:18;s:5:\"0.8.7\";i:19;s:5:\"0.9.0\";i:20;s:5:\"0.9.1\";i:21;s:5:\"0.9.2\";i:22;s:5:\"0.9.3\";i:23;s:5:\"0.9.4\";i:24;s:5:\"0.9.5\";i:25;s:5:\"0.9.6\";}'), (28891,194,'tagged_versions','a:60:{i:0;s:3:\"1.0\";i:1;s:3:\"2.0\";i:2;s:3:\"2.1\";i:3;s:3:\"2.2\";i:4;s:5:\"2.2.1\";i:5;s:5:\"2.2.2\";i:6;s:3:\"3.0\";i:7;s:5:\"3.0.1\";i:8;s:5:\"3.0.2\";i:9;s:5:\"3.0.3\";i:10;s:5:\"3.0.4\";i:11;s:5:\"3.0.5\";i:12;s:5:\"3.0.6\";i:13;s:5:\"3.0.7\";i:14;s:5:\"3.0.8\";i:15;s:5:\"3.0.9\";i:16;s:3:\"3.1\";i:17;s:5:\"3.1.1\";i:18;s:5:\"3.1.2\";i:19;s:5:\"3.1.3\";i:20;s:5:\"3.1.4\";i:21;s:5:\"3.1.5\";i:22;s:5:\"3.1.6\";i:23;s:3:\"3.2\";i:24;s:5:\"3.2.1\";i:25;s:6:\"3.2.10\";i:26;s:6:\"3.2.11\";i:27;s:5:\"3.2.2\";i:28;s:5:\"3.2.3\";i:29;s:5:\"3.2.4\";i:30;s:5:\"3.2.5\";i:31;s:5:\"3.2.7\";i:32;s:5:\"3.2.8\";i:33;s:5:\"3.2.9\";i:34;s:3:\"3.3\";i:35;s:5:\"3.3.1\";i:36;s:5:\"3.3.2\";i:37;s:5:\"3.3.3\";i:38;s:5:\"3.3.4\";i:39;s:5:\"3.3.5\";i:40;s:5:\"3.3.6\";i:41;s:5:\"3.3.7\";i:42;s:3:\"4.0\";i:43;s:5:\"4.0.1\";i:44;s:5:\"4.0.2\";i:45;s:5:\"4.0.3\";i:46;s:5:\"4.0.4\";i:47;s:5:\"4.0.5\";i:48;s:5:\"4.0.6\";i:49;s:5:\"4.0.7\";i:50;s:5:\"4.0.8\";i:51;s:5:\"4.0.9\";i:52;s:3:\"4.1\";i:53;s:5:\"4.1.1\";i:54;s:5:\"4.1.2\";i:55;s:3:\"4.2\";i:56;s:5:\"4.2.1\";i:57;s:5:\"4.2.2\";i:58;s:3:\"4.3\";i:59;s:5:\"4.3.1\";}'), (28892,195,'tagged_versions','a:103:{i:0;s:5:\"0.5.0\";i:1;s:5:\"0.5.5\";i:2;s:5:\"0.6.0\";i:3;s:5:\"0.6.1\";i:4;s:5:\"0.6.2\";i:5;s:5:\"0.6.3\";i:6;s:5:\"0.6.4\";i:7;s:5:\"0.6.5\";i:8;s:5:\"0.7.0\";i:9;s:5:\"0.7.2\";i:10;s:5:\"0.8.0\";i:11;s:5:\"0.8.1\";i:12;s:5:\"1.0.0\";i:13;s:5:\"1.0.1\";i:14;s:5:\"1.0.2\";i:15;s:5:\"1.0.3\";i:16;s:5:\"1.0.4\";i:17;s:5:\"1.0.5\";i:18;s:5:\"1.0.6\";i:19;s:5:\"1.0.7\";i:20;s:5:\"1.0.8\";i:21;s:5:\"1.0.9\";i:22;s:5:\"1.1.0\";i:23;s:5:\"1.1.1\";i:24;s:5:\"1.2.0\";i:25;s:5:\"1.2.1\";i:26;s:5:\"1.3.0\";i:27;s:5:\"1.3.1\";i:28;s:5:\"1.3.2\";i:29;s:5:\"1.3.3\";i:30;s:5:\"1.3.4\";i:31;s:5:\"1.3.5\";i:32;s:5:\"1.3.6\";i:33;s:5:\"1.4.1\";i:34;s:5:\"1.5.0\";i:35;s:5:\"1.5.1\";i:36;s:5:\"1.5.2\";i:37;s:5:\"1.5.5\";i:38;s:5:\"1.6.0\";i:39;s:5:\"1.6.1\";i:40;s:5:\"1.6.2\";i:41;s:5:\"1.7.0\";i:42;s:5:\"1.7.1\";i:43;s:5:\"1.7.2\";i:44;s:5:\"1.7.3\";i:45;s:5:\"1.7.4\";i:46;s:5:\"1.7.5\";i:47;s:5:\"1.7.6\";i:48;s:5:\"1.7.7\";i:49;s:5:\"1.7.8\";i:50;s:5:\"2.0.0\";i:51;s:5:\"2.0.1\";i:52;s:5:\"2.0.2\";i:53;s:5:\"2.0.3\";i:54;s:5:\"2.1.0\";i:55;s:5:\"2.1.1\";i:56;s:6:\"2.1.10\";i:57;s:6:\"2.1.11\";i:58;s:6:\"2.1.12\";i:59;s:6:\"2.1.13\";i:60;s:6:\"2.1.14\";i:61;s:6:\"2.1.15\";i:62;s:6:\"2.1.16\";i:63;s:6:\"2.1.17\";i:64;s:5:\"2.1.2\";i:65;s:5:\"2.1.3\";i:66;s:5:\"2.1.4\";i:67;s:5:\"2.1.5\";i:68;s:5:\"2.1.6\";i:69;s:5:\"2.1.7\";i:70;s:5:\"2.1.8\";i:71;s:5:\"2.1.9\";i:72;s:5:\"3.0.1\";i:73;s:6:\"3.0.10\";i:74;s:6:\"3.0.11\";i:75;s:6:\"3.0.12\";i:76;s:6:\"3.0.13\";i:77;s:5:\"3.0.2\";i:78;s:5:\"3.0.3\";i:79;s:5:\"3.0.4\";i:80;s:5:\"3.0.5\";i:81;s:5:\"3.0.6\";i:82;s:5:\"3.0.7\";i:83;s:5:\"3.0.8\";i:84;s:5:\"3.0.9\";i:85;s:3:\"3.1\";i:86;s:5:\"3.1.1\";i:87;s:5:\"3.1.2\";i:88;s:5:\"3.1.3\";i:89;s:5:\"3.1.4\";i:90;s:5:\"3.2.0\";i:91;s:5:\"3.2.1\";i:92;s:5:\"3.2.2\";i:93;s:5:\"3.2.3\";i:94;s:5:\"3.2.4\";i:95;s:5:\"3.2.5\";i:96;s:3:\"3.3\";i:97;s:5:\"3.3.1\";i:98;s:5:\"3.3.2\";i:99;s:5:\"3.3.3\";i:100;s:5:\"3.3.4\";i:101;s:5:\"3.3.6\";i:102;s:5:\"3.3.7\";}'), (28893,196,'tagged_versions','a:127:{i:0;s:3:\"0.1\";i:1;s:3:\"0.2\";i:2;s:5:\"0.2.2\";i:3;s:7:\"0.2.2.1\";i:4;s:5:\"0.2.3\";i:5;s:5:\"0.2.4\";i:6;s:5:\"0.2.5\";i:7;s:3:\"0.3\";i:8;s:5:\"0.3.1\";i:9;s:5:\"0.3.2\";i:10;s:5:\"0.3.3\";i:11;s:5:\"0.3.4\";i:12;s:5:\"0.3.5\";i:13;s:5:\"0.3.6\";i:14;s:5:\"0.3.7\";i:15;s:5:\"0.3.8\";i:16;s:5:\"0.3.9\";i:17;s:3:\"0.4\";i:18;s:7:\"0.4-i8n\";i:19;s:5:\"0.4.1\";i:20;s:6:\"0.4.10\";i:21;s:6:\"0.4.11\";i:22;s:6:\"0.4.12\";i:23;s:6:\"0.4.13\";i:24;s:6:\"0.4.14\";i:25;s:5:\"0.4.2\";i:26;s:5:\"0.4.3\";i:27;s:5:\"0.4.4\";i:28;s:5:\"0.4.5\";i:29;s:5:\"0.4.6\";i:30;s:5:\"0.4.7\";i:31;s:5:\"0.4.8\";i:32;s:5:\"0.4.9\";i:33;s:3:\"0.5\";i:34;s:5:\"0.5.1\";i:35;s:6:\"0.5.10\";i:36;s:8:\"0.5.10.1\";i:37;s:6:\"0.5.11\";i:38;s:6:\"0.5.12\";i:39;s:6:\"0.5.13\";i:40;s:6:\"0.5.14\";i:41;s:6:\"0.5.15\";i:42;s:6:\"0.5.16\";i:43;s:8:\"0.5.16.1\";i:44;s:6:\"0.5.17\";i:45;s:6:\"0.5.18\";i:46;s:5:\"0.5.2\";i:47;s:5:\"0.5.3\";i:48;s:5:\"0.5.4\";i:49;s:5:\"0.5.5\";i:50;s:5:\"0.5.6\";i:51;s:5:\"0.5.7\";i:52;s:5:\"0.5.8\";i:53;s:7:\"0.5.8.1\";i:54;s:5:\"0.5.9\";i:55;s:3:\"0.6\";i:56;s:5:\"0.6.1\";i:57;s:5:\"0.6.2\";i:58;s:5:\"0.6.3\";i:59;s:5:\"0.6.4\";i:60;s:5:\"0.6.5\";i:61;s:3:\"0.7\";i:62;s:5:\"0.7.1\";i:63;s:5:\"0.7.2\";i:64;s:5:\"0.7.3\";i:65;s:5:\"0.7.4\";i:66;s:3:\"0.8\";i:67;s:5:\"0.8.1\";i:68;s:3:\"0.9\";i:69;s:5:\"0.9.1\";i:70;s:5:\"0.9.2\";i:71;s:5:\"0.9.3\";i:72;s:5:\"0.9.4\";i:73;s:7:\"0.9.4.1\";i:74;s:7:\"0.9.4.2\";i:75;s:7:\"0.9.4.3\";i:76;s:7:\"0.9.4.4\";i:77;s:24:\"0.9.4.4-last-non-modular\";i:78;s:5:\"0.9.5\";i:79;s:5:\"0.9.6\";i:80;s:5:\"0.9.7\";i:81;s:7:\"0.9.7.1\";i:82;s:7:\"0.9.7.2\";i:83;s:4:\"1.10\";i:84;s:6:\"1.10.1\";i:85;s:7:\"1.10.10\";i:86;s:7:\"1.10.11\";i:87;s:6:\"1.10.2\";i:88;s:6:\"1.10.3\";i:89;s:6:\"1.10.4\";i:90;s:6:\"1.10.5\";i:91;s:6:\"1.10.6\";i:92;s:6:\"1.10.7\";i:93;s:6:\"1.10.8\";i:94;s:6:\"1.10.9\";i:95;s:6:\"1.11.1\";i:96;s:6:\"1.11.2\";i:97;s:5:\"1.2.2\";i:98;s:5:\"1.2.3\";i:99;s:5:\"1.2.4\";i:100;s:5:\"1.2.5\";i:101;s:3:\"1.3\";i:102;s:5:\"1.3.1\";i:103;s:3:\"1.4\";i:104;s:3:\"1.5\";i:105;s:5:\"1.5.1\";i:106;s:5:\"1.5.2\";i:107;s:5:\"1.5.3\";i:108;s:5:\"1.5.4\";i:109;s:5:\"1.5.5\";i:110;s:3:\"1.6\";i:111;s:5:\"1.6.1\";i:112;s:5:\"1.6.2\";i:113;s:3:\"1.7\";i:114;s:5:\"1.7.1\";i:115;s:3:\"1.8\";i:116;s:5:\"1.8.1\";i:117;s:5:\"1.8.2\";i:118;s:5:\"1.8.3\";i:119;s:3:\"1.9\";i:120;s:5:\"1.9.1\";i:121;s:5:\"1.9.2\";i:122;s:5:\"1.9.3\";i:123;s:5:\"1.9.4\";i:124;s:7:\"1.9.4.1\";i:125;s:7:\"1.9.4.2\";i:126;s:5:\"1.9.5\";}'), (28894,197,'tagged_versions','a:46:{i:0;s:5:\"1.2.4\";i:1;s:7:\"1.2.9.2\";i:2;s:5:\"1.3.5\";i:3;s:5:\"2.0.9\";i:4;s:5:\"2.1.9\";i:5;s:6:\"2.2.56\";i:6;s:5:\"2.2.9\";i:7;s:5:\"2.3.8\";i:8;s:5:\"2.4.2\";i:9;s:5:\"2.5.3\";i:10;s:5:\"2.6.5\";i:11;s:5:\"2.7.8\";i:12;s:6:\"2.8.14\";i:13;s:6:\"2.9.58\";i:14;s:3:\"3.0\";i:15;s:5:\"3.0.1\";i:16;s:6:\"3.0.17\";i:17;s:6:\"3.0.18\";i:18;s:6:\"3.0.19\";i:19;s:5:\"3.0.2\";i:20;s:6:\"3.0.20\";i:21;s:6:\"3.0.21\";i:22;s:6:\"3.0.22\";i:23;s:6:\"3.0.23\";i:24;s:6:\"3.0.24\";i:25;s:6:\"3.0.25\";i:26;s:6:\"3.0.26\";i:27;s:6:\"3.0.27\";i:28;s:6:\"3.0.28\";i:29;s:6:\"3.0.29\";i:30;s:5:\"3.0.3\";i:31;s:6:\"3.0.30\";i:32;s:6:\"3.0.31\";i:33;s:5:\"3.0.4\";i:34;s:5:\"3.0.5\";i:35;s:5:\"3.0.6\";i:36;s:5:\"3.0.7\";i:37;s:7:\"v3.0.10\";i:38;s:7:\"v3.0.11\";i:39;s:7:\"v3.0.12\";i:40;s:7:\"v3.0.13\";i:41;s:7:\"v3.0.14\";i:42;s:7:\"v3.0.15\";i:43;s:7:\"v3.0.16\";i:44;s:6:\"v3.0.8\";i:45;s:6:\"v3.0.9\";}'), (28897,200,'tagged_versions','a:14:{i:0;s:10:\"0.8.1-beta\";i:1;s:6:\"0.9-RC\";i:2;s:3:\"1.0\";i:3;s:3:\"1.1\";i:4;s:5:\"1.1.1\";i:5;s:3:\"1.2\";i:6;s:3:\"1.3\";i:7;s:3:\"1.4\";i:8;s:3:\"1.5\";i:9;s:5:\"1.5.1\";i:10;s:3:\"1.6\";i:11;s:5:\"1.6.1\";i:12;s:3:\"1.7\";i:13;s:3:\"1.8\";}'), (28899,202,'tagged_versions','a:71:{i:0;s:5:\"1.0.0\";i:1;s:5:\"1.0.1\";i:2;s:5:\"1.0.2\";i:3;s:3:\"1.1\";i:4;s:5:\"1.1.1\";i:5;s:5:\"1.1.2\";i:6;s:5:\"1.1.3\";i:7;s:3:\"1.2\";i:8;s:5:\"1.2.1\";i:9;s:6:\"1.2.10\";i:10;s:5:\"1.2.2\";i:11;s:5:\"1.2.3\";i:12;s:5:\"1.2.4\";i:13;s:5:\"1.2.5\";i:14;s:5:\"1.2.6\";i:15;s:5:\"1.2.7\";i:16;s:5:\"1.2.8\";i:17;s:5:\"1.2.9\";i:18;s:5:\"1.3.1\";i:19;s:5:\"1.3.2\";i:20;s:5:\"1.3.3\";i:21;s:5:\"1.3.4\";i:22;s:5:\"1.4.0\";i:23;s:5:\"1.4.1\";i:24;s:5:\"1.4.2\";i:25;s:5:\"1.4.3\";i:26;s:5:\"1.5.0\";i:27;s:5:\"1.6.0\";i:28;s:5:\"1.6.1\";i:29;s:5:\"1.6.2\";i:30;s:5:\"1.6.3\";i:31;s:5:\"1.6.4\";i:32;s:5:\"1.6.5\";i:33;s:7:\"1.6.5.1\";i:34;s:7:\"1.6.5.2\";i:35;s:7:\"1.6.5.3\";i:36;s:7:\"1.6.5.4\";i:37;s:3:\"1.7\";i:38;s:5:\"1.7.1\";i:39;s:7:\"1.7.1.1\";i:40;s:3:\"2.0\";i:41;s:5:\"2.0.1\";i:42;s:5:\"2.0.3\";i:43;s:5:\"2.0.4\";i:44;s:5:\"2.0.5\";i:45;s:5:\"2.0.6\";i:46;s:7:\"2.0.6.2\";i:47;s:7:\"2.0.6.3\";i:48;s:7:\"2.0.6.5\";i:49;s:5:\"2.0.7\";i:50;s:7:\"2.0.7.1\";i:51;s:3:\"2.1\";i:52;s:5:\"2.1.1\";i:53;s:5:\"2.1.2\";i:54;s:5:\"2.1.3\";i:55;s:5:\"2.1.4\";i:56;s:5:\"2.1.5\";i:57;s:3:\"2.2\";i:58;s:5:\"2.2.1\";i:59;s:5:\"2.2.2\";i:60;s:3:\"2.3\";i:61;s:5:\"2.3.1\";i:62;s:3:\"2.4\";i:63;s:5:\"2.4.2\";i:64;s:5:\"2.4.3\";i:65;s:5:\"2.4.4\";i:66;s:5:\"2.4.5\";i:67;s:5:\"2.5.2\";i:68;s:5:\"2.5.3\";i:69;s:5:\"2.6.1\";i:70;s:5:\"2.6.2\";}'), (28900,203,'tagged_versions','a:100:{i:0;s:3:\"1.5\";i:1;s:5:\"1.5.1\";i:2;s:5:\"1.5.2\";i:3;s:5:\"1.5.3\";i:4;s:5:\"1.5.4\";i:5;s:5:\"1.5.5\";i:6;s:5:\"1.5.6\";i:7;s:3:\"1.6\";i:8;s:5:\"1.6.1\";i:9;s:5:\"1.6.2\";i:10;s:5:\"1.6.3\";i:11;s:5:\"1.6.4\";i:12;s:5:\"1.6.5\";i:13;s:3:\"2.0\";i:14;s:5:\"2.0.1\";i:15;s:6:\"2.0.10\";i:16;s:6:\"2.0.11\";i:17;s:5:\"2.0.2\";i:18;s:5:\"2.0.3\";i:19;s:5:\"2.0.4\";i:20;s:5:\"2.0.5\";i:21;s:5:\"2.0.6\";i:22;s:5:\"2.0.7\";i:23;s:5:\"2.0.8\";i:24;s:5:\"2.0.9\";i:25;s:3:\"3.0\";i:26;s:5:\"3.0.1\";i:27;s:5:\"3.0.2\";i:28;s:5:\"3.0.3\";i:29;s:3:\"3.1\";i:30;s:4:\"3.10\";i:31;s:6:\"3.10.1\";i:32;s:4:\"3.11\";i:33;s:6:\"3.11.1\";i:34;s:6:\"3.11.2\";i:35;s:4:\"3.12\";i:36;s:6:\"3.12.1\";i:37;s:6:\"3.12.2\";i:38;s:6:\"3.12.3\";i:39;s:6:\"3.12.4\";i:40;s:6:\"3.12.5\";i:41;s:6:\"3.12.6\";i:42;s:3:\"3.2\";i:43;s:3:\"3.3\";i:44;s:5:\"3.3.1\";i:45;s:3:\"3.4\";i:46;s:5:\"3.4.1\";i:47;s:3:\"3.5\";i:48;s:5:\"3.5.1\";i:49;s:3:\"3.6\";i:50;s:5:\"3.6.1\";i:51;s:3:\"3.7\";i:52;s:3:\"3.8\";i:53;s:5:\"3.8.1\";i:54;s:3:\"3.9\";i:55;s:5:\"3.9.1\";i:56;s:5:\"3.9.2\";i:57;s:5:\"3.9.3\";i:58;s:3:\"4.0\";i:59;s:5:\"4.0.1\";i:60;s:5:\"4.0.2\";i:61;s:5:\"4.0.3\";i:62;s:5:\"4.0.4\";i:63;s:5:\"4.0.5\";i:64;s:5:\"4.0.6\";i:65;s:5:\"4.0.7\";i:66;s:3:\"4.1\";i:67;s:7:\"4.1.0.1\";i:68;s:5:\"4.1.1\";i:69;s:7:\"4.1.1.1\";i:70;s:5:\"4.1.2\";i:71;s:5:\"4.1.3\";i:72;s:5:\"4.1.4\";i:73;s:3:\"4.2\";i:74;s:5:\"4.2.1\";i:75;s:7:\"4.2.1.1\";i:76;s:5:\"4.2.2\";i:77;s:5:\"4.2.3\";i:78;s:5:\"4.2.4\";i:79;s:5:\"4.2.5\";i:80;s:5:\"4.2.6\";i:81;s:5:\"4.2.7\";i:82;s:3:\"4.3\";i:83;s:7:\"4.3.0.1\";i:84;s:5:\"4.3.1\";i:85;s:7:\"4.3.1.1\";i:86;s:5:\"4.3.2\";i:87;s:5:\"4.3.3\";i:88;s:5:\"4.3.4\";i:89;s:7:\"4.3.4.1\";i:90;s:7:\"4.3.4.2\";i:91;s:5:\"4.3.5\";i:92;s:3:\"4.4\";i:93;s:7:\"4.4.0.1\";i:94;s:5:\"4.4.1\";i:95;s:7:\"4.4.1.1\";i:96;s:5:\"4.4.2\";i:97;s:5:\"4.4.3\";i:98;s:5:\"4.4.4\";i:99;s:5:\"4.4.5\";}'), (28902,205,'tagged_versions','a:33:{i:0;s:3:\"1.3\";i:1;s:5:\"1.5.3\";i:2;s:6:\"1.6.10\";i:3;s:5:\"1.6.5\";i:4;s:5:\"1.6.6\";i:5;s:5:\"1.6.7\";i:6;s:5:\"1.6.8\";i:7;s:5:\"1.6.9\";i:8;s:5:\"1.7.0\";i:9;s:5:\"1.7.1\";i:10;s:5:\"1.8.0\";i:11;s:5:\"1.8.1\";i:12;s:6:\"1.8.10\";i:13;s:6:\"1.8.11\";i:14;s:5:\"1.8.2\";i:15;s:5:\"1.8.3\";i:16;s:5:\"1.8.4\";i:17;s:5:\"1.8.5\";i:18;s:5:\"1.8.6\";i:19;s:5:\"1.8.7\";i:20;s:5:\"1.8.8\";i:21;s:5:\"1.8.9\";i:22;s:5:\"2.0.0\";i:23;s:5:\"2.0.1\";i:24;s:5:\"2.0.2\";i:25;s:5:\"2.0.3\";i:26;s:5:\"2.0.4\";i:27;s:5:\"2.0.5\";i:28;s:5:\"2.0.6\";i:29;s:5:\"2.0.7\";i:30;s:5:\"2.0.8\";i:31;s:5:\"2.0.9\";i:32;s:9:\"psd-files\";}'), (28905,208,'tagged_versions','a:46:{i:0;s:3:\"1.0\";i:1;s:3:\"1.1\";i:2;s:3:\"1.2\";i:3;s:3:\"1.3\";i:4;s:3:\"1.4\";i:5;s:3:\"1.5\";i:6;s:3:\"1.6\";i:7;s:3:\"1.7\";i:8;s:3:\"1.8\";i:9;s:3:\"1.9\";i:10;s:3:\"2.0\";i:11;s:5:\"2.1.1\";i:12;s:3:\"2.2\";i:13;s:3:\"2.3\";i:14;s:3:\"2.4\";i:15;s:3:\"2.5\";i:16;s:3:\"2.6\";i:17;s:3:\"2.7\";i:18;s:3:\"2.8\";i:19;s:5:\"2.8.1\";i:20;s:3:\"2.9\";i:21;s:3:\"3.0\";i:22;s:3:\"3.1\";i:23;s:3:\"3.2\";i:24;s:3:\"3.3\";i:25;s:3:\"3.4\";i:26;s:5:\"3.5.1\";i:27;s:3:\"3.6\";i:28;s:5:\"3.7.1\";i:29;s:5:\"3.7.3\";i:30;s:5:\"3.7.5\";i:31;s:5:\"3.7.6\";i:32;s:5:\"3.7.7\";i:33;s:5:\"3.8.7\";i:34;s:5:\"3.9.5\";i:35;s:5:\"3.9.6\";i:36;s:5:\"3.9.9\";i:37;s:5:\"4.0.1\";i:38;s:5:\"4.0.3\";i:39;s:5:\"4.0.7\";i:40;s:5:\"4.0.8\";i:41;s:5:\"4.0.9\";i:42;s:5:\"4.1.0\";i:43;s:5:\"4.1.4\";i:44;s:5:\"4.1.7\";i:45;s:5:\"4.2.2\";}'), (28910,213,'tagged_versions','a:47:{i:0;s:3:\"2.0\";i:1;s:10:\"2.0-beta-1\";i:2;s:11:\"2.0-beta-2b\";i:3;s:10:\"2.0-beta-3\";i:4;s:11:\"2.0-beta-3b\";i:5;s:8:\"2.0-rc-2\";i:6;s:8:\"2.0-rc-3\";i:7;s:8:\"2.0-rc-4\";i:8;s:8:\"2.0-rc-5\";i:9;s:5:\"2.0.1\";i:10;s:5:\"2.0.2\";i:11;s:5:\"2.0.3\";i:12;s:3:\"2.1\";i:13;s:10:\"2.1-beta-1\";i:14;s:7:\"2.1-rc1\";i:15;s:7:\"2.1-rc2\";i:16;s:7:\"2.1-rc3\";i:17;s:7:\"2.1-rc4\";i:18;s:5:\"2.1.1\";i:19;s:5:\"2.1.2\";i:20;s:5:\"2.1.3\";i:21;s:3:\"2.2\";i:22;s:5:\"2.2.1\";i:23;s:5:\"2.2.2\";i:24;s:5:\"2.2.3\";i:25;s:5:\"2.2.4\";i:26;s:3:\"2.3\";i:27;s:9:\"2.3-beta1\";i:28;s:5:\"2.3.1\";i:29;s:5:\"2.3.2\";i:30;s:3:\"2.4\";i:31;s:5:\"2.4.1\";i:32;s:3:\"2.5\";i:33;s:5:\"2.5.1\";i:34;s:6:\"2.5.10\";i:35;s:6:\"2.5.11\";i:36;s:6:\"2.5.12\";i:37;s:5:\"2.5.2\";i:38;s:5:\"2.5.3\";i:39;s:5:\"2.5.4\";i:40;s:5:\"2.5.5\";i:41;s:5:\"2.5.6\";i:42;s:5:\"2.5.7\";i:43;s:5:\"2.5.8\";i:44;s:5:\"2.5.9\";i:45;s:10:\"2.6-beta-1\";i:46;s:10:\"2.6-beta-2\";}'), (28913,216,'tagged_versions','a:12:{i:0;s:5:\"2.8.5\";i:1;s:5:\"2.9.9\";i:2;s:5:\"3.0.2\";i:3;s:5:\"3.1.3\";i:4;s:5:\"3.2.0\";i:5;s:5:\"3.2.1\";i:6;s:5:\"3.2.2\";i:7;s:5:\"3.2.3\";i:8;s:5:\"3.2.4\";i:9;s:5:\"3.2.5\";i:10;s:5:\"3.2.6\";i:11;s:5:\"3.2.7\";}'), (28915,218,'tagged_versions','a:16:{i:0;s:3:\"1.0\";i:1;s:3:\"1.1\";i:2;s:3:\"1.2\";i:3;s:3:\"1.3\";i:4;s:3:\"1.4\";i:5;s:3:\"1.5\";i:6;s:3:\"1.6\";i:7;s:3:\"1.7\";i:8;s:3:\"1.8\";i:9;s:5:\"2.0.0\";i:10;s:5:\"2.0.1\";i:11;s:5:\"2.0.2\";i:12;s:5:\"2.0.3\";i:13;s:5:\"2.0.4\";i:14;s:5:\"2.0.5\";i:15;s:5:\"2.0.6\";}'), (28962,265,'tagged_versions','a:136:{i:0;s:3:\"1.0\";i:1;s:5:\"1.0.1\";i:2;s:5:\"1.0.2\";i:3;s:5:\"1.0.3\";i:4;s:3:\"1.1\";i:5;s:5:\"1.1.1\";i:6;s:5:\"1.1.2\";i:7;s:5:\"1.1.3\";i:8;s:3:\"1.2\";i:9;s:5:\"1.2.1\";i:10;s:6:\"1.2.10\";i:11;s:5:\"1.2.2\";i:12;s:7:\"1.2.2.1\";i:13;s:5:\"1.2.3\";i:14;s:5:\"1.2.4\";i:15;s:7:\"1.2.4.1\";i:16;s:5:\"1.2.5\";i:17;s:7:\"1.2.5.1\";i:18;s:7:\"1.2.5.2\";i:19;s:5:\"1.2.6\";i:20;s:5:\"1.2.7\";i:21;s:5:\"1.2.8\";i:22;s:5:\"1.2.9\";i:23;s:3:\"1.5\";i:24;s:5:\"1.5.1\";i:25;s:5:\"1.5.2\";i:26;s:5:\"1.5.3\";i:27;s:7:\"1.5.3.1\";i:28;s:5:\"1.5.4\";i:29;s:5:\"1.5.5\";i:30;s:5:\"1.5.6\";i:31;s:5:\"1.5.7\";i:32;s:3:\"1.6\";i:33;s:7:\"1.6-RC1\";i:34;s:7:\"1.6-RC2\";i:35;s:9:\"1.6-beta1\";i:36;s:9:\"1.6-beta2\";i:37;s:5:\"1.6.1\";i:38;s:5:\"1.6.2\";i:39;s:5:\"1.6.3\";i:40;s:5:\"1.6.4\";i:41;s:5:\"1.6.5\";i:42;s:3:\"1.7\";i:43;s:5:\"1.7.1\";i:44;s:5:\"1.7.2\";i:45;s:5:\"1.7.3\";i:46;s:3:\"1.8\";i:47;s:7:\"1.8-RC1\";i:48;s:9:\"1.8-beta1\";i:49;s:9:\"1.8-beta2\";i:50;s:5:\"1.8.1\";i:51;s:3:\"1.9\";i:52;s:9:\"1.9-beta1\";i:53;s:9:\"1.9-beta2\";i:54;s:5:\"1.9.1\";i:55;s:5:\"1.9.2\";i:56;s:3:\"2.0\";i:57;s:7:\"2.0-RC1\";i:58;s:9:\"2.0-beta1\";i:59;s:9:\"2.0-beta2\";i:60;s:5:\"2.0.1\";i:61;s:5:\"2.0.2\";i:62;s:5:\"2.0.3\";i:63;s:5:\"2.0.4\";i:64;s:5:\"2.0.5\";i:65;s:5:\"2.0.6\";i:66;s:3:\"2.1\";i:67;s:7:\"2.1-RC1\";i:68;s:9:\"2.1-beta1\";i:69;s:5:\"2.1.1\";i:70;s:5:\"2.1.2\";i:71;s:5:\"2.1.3\";i:72;s:5:\"2.1.4\";i:73;s:9:\"2.2-beta1\";i:74;s:9:\"2.2-beta2\";i:75;s:7:\"2.2-rc1\";i:76;s:7:\"2.2-rc2\";i:77;s:5:\"2.2.0\";i:78;s:5:\"2.2.1\";i:79;s:5:\"2.2.2\";i:80;s:7:\"2.2.2.1\";i:81;s:5:\"2.2.3\";i:82;s:7:\"2.2.3.1\";i:83;s:5:\"2.2.4\";i:84;s:5:\"2.2.5\";i:85;s:5:\"2.2.6\";i:86;s:5:\"2.3.0\";i:87;s:12:\"2.3.0-beta-2\";i:88;s:11:\"2.3.0-beta1\";i:89;s:9:\"2.3.0-rc1\";i:90;s:5:\"2.3.1\";i:91;s:5:\"2.3.2\";i:92;s:7:\"2.3.2.1\";i:93;s:5:\"2.3.3\";i:94;s:5:\"2.3.4\";i:95;s:5:\"2.3.5\";i:96;s:5:\"2.3.6\";i:97;s:5:\"2.3.7\";i:98;s:5:\"2.4.0\";i:99;s:11:\"2.4.0-beta1\";i:100;s:11:\"2.4.0-beta2\";i:101;s:9:\"2.4.0-rc1\";i:102;s:5:\"2.4.2\";i:103;s:5:\"2.4.3\";i:104;s:5:\"2.4.4\";i:105;s:5:\"2.4.5\";i:106;s:5:\"2.5.0\";i:107;s:11:\"2.5.0-beta1\";i:108;s:9:\"2.5.0-rc1\";i:109;s:5:\"2.5.1\";i:110;s:5:\"2.5.2\";i:111;s:5:\"2.5.3\";i:112;s:5:\"2.5.4\";i:113;s:5:\"2.5.5\";i:114;s:5:\"2.6.0\";i:115;s:11:\"2.6.0-beta1\";i:116;s:9:\"2.6.0-rc1\";i:117;s:5:\"2.6.1\";i:118;s:7:\"2.6.1.1\";i:119;s:5:\"2.6.2\";i:120;s:5:\"2.6.3\";i:121;s:5:\"2.6.4\";i:122;s:5:\"2.7.0\";i:123;s:11:\"2.7.0-beta1\";i:124;s:9:\"2.7.0-rc1\";i:125;s:9:\"2.7.0-rc2\";i:126;s:5:\"2.7.1\";i:127;s:5:\"2.7.2\";i:128;s:5:\"2.7.3\";i:129;s:5:\"2.7.4\";i:130;s:5:\"2.7.5\";i:131;s:5:\"2.8.0\";i:132;s:9:\"2.8.0-RC1\";i:133;s:11:\"2.8.0-beta1\";i:134;s:5:\"2.8.1\";i:135;s:5:\"2.8.2\";}'), (29060,363,'tagged_versions','a:9:{i:0;s:8:\"20120613\";i:1;s:8:\"20120823\";i:2;s:10:\"20121211.1\";i:3;s:10:\"20131213.1\";i:4;s:10:\"20140929.1\";i:5;s:10:\"20141222.1\";i:6;s:10:\"20150818.1\";i:7;s:10:\"20151211.1\";i:8;s:10:\"20160523.1\";}'), (29062,365,'tagged_versions','a:11:{i:0;s:3:\"1.0\";i:1;s:5:\"1.0.1\";i:2;s:5:\"1.0.2\";i:3;s:5:\"1.1.0\";i:4;s:5:\"1.1.1\";i:5;s:5:\"1.2.0\";i:6;s:5:\"1.3.0\";i:7;s:5:\"1.3.1\";i:8;s:5:\"1.3.2\";i:9;s:5:\"1.3.3\";i:10;s:5:\"1.3.4\";}'), (614607,30184,'tested','4.7.0'), (614609,30184,'requires','4.5.0'), (614611,30184,'stable_tag','0.8.5'), (614614,30184,'donate_link',''), (614617,30184,'upgrade_notice','a:0:{}'), (614620,30184,'screenshots','a:7:{i:1;s:238:\"[0.7.0] Select2 dropdown in a post type\'s panel allows all posts of that type to be searched, including trashes. Selecting a post here causes its section to be added and expanded, with the preview then navigating to the URL for that post.\";i:2;s:129:\"[0.7.0] Post status control is now accompanied by a post date control. A Move to Trash link also appears with the status control.\";i:3;s:178:\"[0.7.0] Selecting a future date switches status form published to scheduled, and a countdown for when the post will be scheduled is available along with the timezone information.\";i:4;s:221:\"[0.7.0] Clicking the date reset link causes the setting\'s date to be emptied, with the control\'s inputs then receiving the current date/time as placeholders which update each minute to correspond to the current date/time.\";i:5;s:141:\"[0.8.0] Integration with dropdown-pages controls. Buttons to add and edit posts appear next to the page on front and page for posts controls.\";i:6;s:79:\"[0.8.0] Edit post button appears in nav menu items that link to a post or page.\";i:7;s:49:\"[0.8.0] Post parent and basic menu order control.\";}'), (614621,30184,'header_name','Customize Posts'), (614622,30184,'header_plugin_uri','https://github.com/xwp/wp-customize-posts/'), (614623,30184,'version','0.8.5'), (614624,30184,'header_author','XWP'), (614625,30184,'header_author_uri','https://make.xwp.co/'), (614626,30184,'header_textdomain','customize-posts'), (614627,30184,'tagged_versions','a:18:{i:0;s:5:\"0.2.1\";i:1;s:5:\"0.2.2\";i:2;s:5:\"0.2.3\";i:3;s:5:\"0.2.4\";i:4;s:5:\"0.3.0\";i:5;s:5:\"0.4.0\";i:6;s:5:\"0.4.1\";i:7;s:5:\"0.4.2\";i:8;s:5:\"0.5.0\";i:9;s:5:\"0.6.0\";i:10;s:5:\"0.6.1\";i:11;s:5:\"0.7.0\";i:12;s:5:\"0.8.0\";i:13;s:5:\"0.8.1\";i:14;s:5:\"0.8.2\";i:15;s:5:\"0.8.3\";i:16;s:5:\"0.8.4\";i:17;s:5:\"0.8.5\";}'), (614628,30184,'sections','a:2:{i:0;s:11:\"description\";i:1;s:9:\"changelog\";}'), (614629,30184,'assets_screenshots','a:7:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1469293\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1469293\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-3.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-3.png\";s:8:\"revision\";s:7:\"1469293\";s:10:\"resolution\";s:1:\"3\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-4.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-4.png\";s:8:\"revision\";s:7:\"1469293\";s:10:\"resolution\";s:1:\"4\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-5.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-5.png\";s:8:\"revision\";s:7:\"1500566\";s:10:\"resolution\";s:1:\"5\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-6.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-6.png\";s:8:\"revision\";s:7:\"1500566\";s:10:\"resolution\";s:1:\"6\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-7.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-7.png\";s:8:\"revision\";s:7:\"1500566\";s:10:\"resolution\";s:1:\"7\";s:8:\"location\";s:6:\"assets\";}}'), (614630,30184,'assets_icons','a:3:{s:16:\"icon-128x128.png\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.png\";s:8:\"revision\";s:7:\"1500566\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.png\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.png\";s:8:\"revision\";s:7:\"1500566\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:7:\"1406938\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (614631,30184,'assets_banners','a:3:{s:19:\"banner-1544x500.png\";a:4:{s:8:\"filename\";s:19:\"banner-1544x500.png\";s:8:\"revision\";s:7:\"1500566\";s:10:\"resolution\";s:8:\"1544x500\";s:8:\"location\";s:6:\"assets\";}s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:7:\"1500566\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}s:10:\"banner.svg\";a:4:{s:8:\"filename\";s:10:\"banner.svg\";s:8:\"revision\";s:7:\"1406938\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (614651,30184,'assets_banners_color','8bc1d6'), (834324,41744,'tested','4.5.7'), (834325,41744,'requires','4.4'), (834326,41744,'stable_tag','trunk'), (834327,41744,'donate_link',''), (834328,41744,'upgrade_notice','a:0:{}'), (834330,41744,'screenshots','a:2:{i:1;s:101:\"In your user profile screen, by default it will just be a field to create a new Application Password.\";i:2;s:154:\"After at least one Application Password for you account exists, you\'ll see a table displaying them, allowing you to view usage and revoke them as desired.\";}'), (834331,41744,'header_name','Application Passwords'), (834332,41744,'header_plugin_uri','http://github.com/georgestephanis/application-passwords/'), (834333,41744,'version','0.1-dev'), (834334,41744,'header_author','George Stephanis'), (834335,41744,'header_author_uri','http://stephanis.info'), (834336,41744,'header_textdomain',''), (834337,41744,'tagged_versions','a:0:{}'), (834338,41744,'sections','a:2:{i:0;s:11:\"description\";i:1;s:12:\"installation\";}'), (834339,41744,'assets_screenshots','a:2:{s:16:\"screenshot-1.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-1.png\";s:8:\"revision\";s:7:\"1603273\";s:10:\"resolution\";s:1:\"1\";s:8:\"location\";s:6:\"assets\";}s:16:\"screenshot-2.png\";a:4:{s:8:\"filename\";s:16:\"screenshot-2.png\";s:8:\"revision\";s:7:\"1603273\";s:10:\"resolution\";s:1:\"2\";s:8:\"location\";s:6:\"assets\";}}'), (834340,41744,'assets_icons','a:0:{}'), (834341,41744,'assets_banners','a:0:{}'), (834342,41744,'assets_banners_color',''), (846960,42409,'tested','4.5-trunk'), (846961,42409,'requires','4.4'), (846962,42409,'stable_tag','trunk'), (846963,42409,'donate_link',''), (846964,42409,'upgrade_notice','a:0:{}'), (846966,42409,'screenshots','a:0:{}'), (846967,42409,'header_name','React'), (846968,42409,'header_plugin_uri',''), (846969,42409,'version','0.1-20160329'), (846970,42409,'header_author',''), (846971,42409,'header_author_uri',''), (846972,42409,'header_textdomain','react'), (846973,42409,'tagged_versions','a:0:{}'), (846974,42409,'sections','a:2:{i:0;s:11:\"description\";i:1;s:9:\"changelog\";}'), (846975,42409,'assets_screenshots','a:0:{}'), (846976,42409,'assets_icons','a:0:{}'), (846977,42409,'assets_banners','a:0:{}'), (846978,42409,'assets_banners_color',''), (890244,30184,'active_installs','400'), (890245,30184,'usage','a:2:{s:3:\"0.8\";s:5:\"91.56\";s:5:\"other\";s:4:\"8.44\";}'), (911966,41744,'active_installs','1000'), (911967,41744,'usage','a:1:{s:7:\"0.1-dev\";s:3:\"100\";}'), (912826,42409,'active_installs','30'), (912827,42409,'usage','a:1:{s:12:\"0.1-20160329\";s:3:\"100\";}'), (914734,30184,'support_threads','3'), (914735,30184,'support_threads_resolved','2'), (976990,41744,'support_threads','1'), (976991,41744,'support_threads_resolved','0'), (978284,42409,'support_threads','0'), (978285,42409,'support_threads_resolved','0'), (1093251,48978,'_wp_attached_file','2016/06/readme.txt'), (1134958,49158,'tested','4.6.4'), (1134959,49158,'requires','3.0'), (1134960,49158,'donate_link',''), (1134961,49158,'upgrade_notice','a:0:{}'), (1134963,49158,'screenshots','a:0:{}'), (1134964,49158,'header_name','Hello Dolly'), (1134965,49158,'header_plugin_uri','https://wordpress.org/plugins/hello-dolly/'), (1134966,49158,'version','1.6'), (1134967,49158,'header_author','Matt Mullenweg'), (1134968,49158,'header_author_uri','http://ma.tt/'), (1134969,49158,'header_textdomain',''), (1134970,49158,'tagged_versions','a:2:{i:0;s:3:\"1.5\";i:1;s:3:\"1.6\";}'), (1134971,49158,'sections','a:1:{i:0;s:11:\"description\";}'), (1134972,49158,'assets_screenshots','a:0:{}'), (1134973,49158,'assets_icons','a:2:{s:16:\"icon-128x128.jpg\";a:4:{s:8:\"filename\";s:16:\"icon-128x128.jpg\";s:8:\"revision\";s:6:\"969907\";s:10:\"resolution\";s:7:\"128x128\";s:8:\"location\";s:6:\"assets\";}s:16:\"icon-256x256.jpg\";a:4:{s:8:\"filename\";s:16:\"icon-256x256.jpg\";s:8:\"revision\";s:6:\"969907\";s:10:\"resolution\";s:7:\"256x256\";s:8:\"location\";s:6:\"assets\";}}'), (1134974,49158,'assets_banners','a:1:{s:18:\"banner-772x250.png\";a:4:{s:8:\"filename\";s:18:\"banner-772x250.png\";s:8:\"revision\";s:6:\"478342\";s:10:\"resolution\";s:7:\"772x250\";s:8:\"location\";s:6:\"assets\";}}'), (1134975,49158,'assets_banners_color','7d7d7d'), (1134976,49158,'stable_tag','1.6'), (1134978,49158,'support_threads','0'), (1134979,49158,'support_threads_resolved','0'), (1135121,183,'last_updated','2017-04-04 14:45:28'), (1135218,85,'last_updated','2017-04-05 19:59:54'), (1135219,85,'plugin_status','publish'), (1135231,50,'last_updated','2016-08-19 13:31:38'), (1135232,50,'plugin_status','publish'), (1135233,113,'last_updated','2017-02-23 17:23:55'), (1135234,113,'plugin_status','publish'), (1135235,158,'last_updated','2017-03-03 19:28:31'), (1135236,158,'plugin_status','publish'), (1135237,159,'last_updated','2017-03-21 10:57:40'), (1135238,159,'plugin_status','publish'), (1135239,160,'last_updated','2017-04-06 17:16:45'), (1135240,160,'plugin_status','publish'), (1135241,163,'last_updated','2017-04-06 22:46:45'), (1135242,163,'plugin_status','publish'), (1135243,162,'last_updated','2012-06-01 17:25:45'), (1135244,162,'plugin_status','publish'), (1135245,161,'last_updated','2016-04-29 13:57:38'), (1135246,161,'plugin_status','publish'), (1135247,165,'last_updated','2016-12-08 01:13:03'), (1135248,165,'plugin_status','publish'), (1135249,164,'last_updated','2017-02-03 17:17:25'), (1135250,164,'plugin_status','publish'), (1135251,168,'last_updated','2016-04-29 18:03:33'), (1135252,168,'plugin_status','publish'), (1135253,166,'last_updated','2017-04-05 19:04:53'), (1135254,166,'plugin_status','publish'), (1135255,167,'last_updated','2017-03-29 15:46:34'), (1135256,167,'plugin_status','publish'), (1135257,170,'last_updated','2016-10-23 22:37:59'), (1135258,170,'plugin_status','publish'), (1135259,172,'last_updated','2017-04-04 23:48:56'), (1135260,172,'plugin_status','publish'), (1135261,171,'last_updated','2016-07-29 00:41:13'), (1135262,171,'plugin_status','publish'), (1135263,173,'last_updated','2017-01-17 18:36:10'), (1135264,173,'plugin_status','publish'), (1135265,169,'last_updated','2017-04-05 17:04:53'), (1135266,169,'plugin_status','publish'), (1135267,174,'last_updated','2016-12-08 03:35:34'), (1135268,174,'plugin_status','publish'), (1135269,175,'last_updated','2017-02-21 13:01:56'), (1135270,175,'plugin_status','publish'), (1135271,176,'last_updated','2016-12-07 04:11:45'), (1135272,176,'plugin_status','publish'), (1135273,177,'last_updated','2016-12-06 19:33:29'), (1135274,177,'plugin_status','publish'), (1135275,179,'last_updated','2017-02-19 09:54:55'), (1135276,179,'plugin_status','publish'), (1135277,178,'last_updated','2016-11-18 10:37:51'), (1135278,178,'plugin_status','publish'), (1135279,182,'last_updated','2017-04-02 00:05:34'), (1135280,182,'plugin_status','publish'), (1135283,183,'plugin_status','publish'), (1135284,180,'last_updated','2017-03-23 20:37:40'), (1135285,180,'plugin_status','publish'), (1135286,184,'last_updated','2017-03-14 10:37:40'), (1135287,184,'plugin_status','publish'), (1135288,185,'last_updated','2017-04-05 16:44:53'), (1135289,185,'plugin_status','publish'), (1135290,188,'last_updated','2017-04-01 15:18:03'), (1135291,188,'plugin_status','publish'), (1135292,192,'last_updated','2017-03-14 12:19:41'), (1135293,192,'plugin_status','publish'), (1135294,186,'last_updated','2016-08-11 01:52:04'), (1135295,186,'plugin_status','publish'), (1135296,197,'last_updated','2017-03-08 05:03:41'), (1135297,197,'plugin_status','publish'), (1135298,187,'last_updated','2016-12-11 10:40:06'), (1135299,187,'plugin_status','publish'), (1135300,189,'last_updated','2016-12-26 20:04:19'), (1135301,189,'plugin_status','publish'), (1135302,193,'last_updated','2016-12-20 10:36:59'), (1135303,193,'plugin_status','publish'), (1135304,190,'last_updated','2017-02-28 13:38:02'), (1135305,190,'plugin_status','publish'), (1135306,195,'last_updated','2017-03-06 17:57:00'), (1135307,195,'plugin_status','publish'), (1135308,194,'last_updated','2017-03-20 13:55:40'), (1135309,194,'plugin_status','publish'), (1135312,196,'last_updated','2016-03-31 15:25:29'), (1135313,196,'plugin_status','publish'), (1135314,202,'last_updated','2017-04-03 06:28:34'), (1135315,202,'plugin_status','publish'), (1135322,200,'last_updated','2017-02-27 05:47:57'), (1135323,200,'plugin_status','publish'), (1135324,203,'last_updated','2017-03-23 21:32:11'), (1135325,203,'plugin_status','publish'), (1135326,205,'last_updated','2016-12-07 00:25:17'), (1135327,205,'plugin_status','publish'), (1135328,208,'last_updated','2017-03-24 07:41:11'), (1135329,208,'plugin_status','publish'), (1135344,216,'last_updated','2017-02-27 18:43:31'), (1135345,216,'plugin_status','publish'), (1135346,218,'last_updated','2016-09-05 22:59:04'), (1135347,218,'plugin_status','publish'), (1135348,213,'last_updated','2016-12-09 07:46:58'), (1135349,213,'plugin_status','publish'), (1135459,265,'last_updated','2017-03-10 16:09:12'), (1135460,265,'plugin_status','publish'), (1135509,365,'last_updated','2017-03-17 08:21:10'), (1135510,365,'plugin_status','publish'), (1135653,363,'last_updated','2016-12-04 21:19:00'), (1135654,363,'plugin_status','publish'), (1139723,43,'last_updated','2017-03-16 20:28:10'), (1139724,43,'plugin_status','publish'), (1144642,44,'last_updated','2016-08-23 18:34:23'), (1144643,44,'plugin_status','publish'), (1150113,40,'last_updated','2016-09-27 13:24:14'), (1150114,40,'plugin_status','publish'), (1160118,41744,'last_updated','2016-02-03 21:51:10'), (1160119,41744,'plugin_status','publish'), (1167197,49158,'active_installs','1000000'), (1167198,49158,'usage','a:2:{s:3:\"1.6\";s:5:\"99.16\";s:3:\"1.5\";s:4:\"0.84\";}'), (1167299,49,'last_updated','2017-03-31 15:32:35'), (1167300,49,'plugin_status','publish'), (1167916,47,'last_updated','2016-12-06 01:34:16'), (1167917,47,'plugin_status','publish'), (1171126,30184,'last_updated','2017-01-03 19:18:10'), (1171127,30184,'plugin_status','publish'), (1173453,49158,'last_updated','2016-11-21 02:48:25'), (1173454,49158,'plugin_status','publish'), (1177810,48,'last_updated','2016-12-09 05:17:06'), (1177811,48,'plugin_status','publish'), (1202255,42409,'last_updated','2015-03-29 02:37:35'), (1202256,42409,'plugin_status','publish'), (1274473,50,'license','GPLv2 or later'), (1274474,50,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274475,158,'license','GPLv2 or later'), (1274476,158,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274477,113,'license','GPLv2 or later'), (1274478,113,'license_uri',''), (1274479,159,'license','GPLv3'), (1274480,159,'license_uri','http://www.gnu.org/licenses/gpl.html'), (1274481,85,'license',''), (1274482,85,'license_uri',''), (1274483,161,'license','GPLv2'), (1274484,161,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274485,160,'license','GPLv2 or later'), (1274486,160,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274487,163,'license','GPLv3'), (1274488,163,'license_uri','https://www.gnu.org/licenses/gpl-3.0.html'), (1274489,162,'license',''), (1274490,162,'license_uri',''), (1274491,165,'license','GPLv2'), (1274492,165,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274493,164,'license',''), (1274494,164,'license_uri',''), (1274495,167,'license','GPL v3'), (1274496,167,'license_uri',''), (1274497,49158,'license',''), (1274498,49158,'license_uri',''), (1274499,166,'license',''), (1274500,166,'license_uri',''), (1274501,172,'license','GPLv2 or later'), (1274502,172,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274503,168,'license','GPLv2 or later'), (1274504,168,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274505,171,'license',''), (1274506,171,'license_uri',''), (1274507,170,'license','GPLv2 or later'), (1274508,170,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274509,173,'license','GPLv2 or later'), (1274510,173,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274511,174,'license','GPLv2 or later'), (1274512,174,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274513,169,'license','GPLv2'), (1274514,169,'license_uri',''), (1274515,176,'license',''), (1274516,176,'license_uri',''), (1274517,175,'license','GPLv3'), (1274518,175,'license_uri','http://www.gnu.org/licenses/gpl.html'), (1274519,177,'license',''), (1274520,177,'license_uri',''), (1274521,179,'license','GPLv2 or later'), (1274522,179,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274523,182,'license','GPLv3 or later'), (1274524,182,'license_uri',''), (1274527,178,'license','GPLv3'), (1274528,178,'license_uri','http://www.gnu.org/licenses/gpl.html'), (1274529,183,'license','GPLv2'), (1274530,183,'license_uri',''), (1274531,184,'license','GPLv2 or later'), (1274532,184,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274533,188,'license','GPLv3 or later'), (1274534,188,'license_uri',''), (1274535,180,'license','GPLv2 or later'), (1274536,180,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274537,192,'license','GPLv2 or later'), (1274538,192,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274539,185,'license',''), (1274540,185,'license_uri',''), (1274541,197,'license','GPLv2 or later'), (1274542,197,'license_uri',''), (1274543,187,'license',''), (1274544,187,'license_uri',''), (1274545,189,'license','GPLv2 or later'), (1274546,189,'license_uri',''), (1274547,186,'license','GPL'), (1274548,186,'license_uri',''), (1274549,193,'license',''), (1274550,193,'license_uri',''), (1274551,202,'license','GPL v2'), (1274552,202,'license_uri','http://www.gnu.org/licenses/old-licenses/gpl-2.0.html'), (1274553,190,'license','GPLv2+'), (1274554,190,'license_uri','https://www.gnu.org/licenses/gpl-2.0.html'), (1274555,195,'license','GPLv3'), (1274556,195,'license_uri','http://www.gnu.org/licenses/gpl-3.0.html'), (1274557,194,'license',''), (1274558,194,'license_uri',''), (1274559,196,'license',''), (1274560,196,'license_uri',''), (1274561,200,'license','GPLv2'), (1274562,200,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274571,203,'license','GPLv2 or later'), (1274572,203,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1274575,208,'license','GPLv3'), (1274576,208,'license_uri',''), (1274577,205,'license','GPL-2.0+'), (1274578,205,'license_uri',''), (1274583,218,'license',''), (1274584,218,'license_uri',''), (1274587,216,'license','GPLv3'), (1274588,216,'license_uri',''), (1274599,213,'license','GPLv2 or later'), (1274600,213,'license_uri','https://www.gnu.org/licenses/gpl-2.0.html'), (1274665,365,'license','GPLv3 or later'), (1274666,365,'license_uri','http://www.gnu.org/licenses/gpl.html'), (1274711,265,'license','GPLv2 or later'), (1274712,265,'license_uri','https://www.gnu.org/licenses/gpl-2.0.html'), (1274891,363,'license',''), (1274892,363,'license_uri',''), (1278733,43,'license','GPLv2 or later'), (1278734,43,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1284042,44,'license','GPL-2.0+'), (1284043,44,'license_uri',''), (1286456,40,'license','GPLv2 or later'), (1286457,40,'license_uri',''), (1289356,41744,'license','GPLv2 or later'), (1289357,41744,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1298495,49,'license',''), (1298496,49,'license_uri',''), (1301285,30184,'license','GPLv2 or later'), (1301286,30184,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1306156,47,'license','GPLv2'), (1306157,47,'license_uri',''), (1308078,48,'license','GPLv2'), (1308079,48,'license_uri',''), (1337086,42409,'license','GPLv2 or later'), (1337087,42409,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1406343,40,'downloads','15133'), (1406346,43,'downloads','64880'), (1406347,44,'downloads','76675'), (1406350,47,'downloads','2132'), (1406351,48,'downloads','3839'), (1406352,49,'downloads','8130'), (1406353,50,'downloads','17198692'), (1406357,85,'downloads','35787898'), (1406361,113,'downloads','57030084'), (1406363,158,'downloads','49372742'), (1406364,159,'downloads','42050846'), (1406365,160,'downloads','33159747'), (1406366,161,'downloads','19310443'), (1406367,162,'downloads','1311956'), (1406368,163,'downloads','22040651'), (1406369,164,'downloads','12297063'), (1406370,165,'downloads','9789315'), (1406371,166,'downloads','27739478'), (1406372,167,'downloads','14254166'), (1406373,168,'downloads','4818067'), (1406374,169,'downloads','17373104'), (1406375,170,'downloads','6983390'), (1406376,171,'downloads','4544724'), (1406377,172,'downloads','3852154'), (1406378,173,'downloads','7780734'); INSERT INTO `wporg_367_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1406379,174,'downloads','7781949'), (1406380,175,'downloads','7592727'), (1406381,176,'downloads','3684165'), (1406382,177,'downloads','2932249'), (1406383,178,'downloads','4473663'), (1406384,179,'downloads','7296884'), (1406385,180,'downloads','9496727'), (1406387,182,'downloads','8035884'), (1406388,183,'downloads','5586217'), (1406389,184,'downloads','4601516'), (1406390,185,'downloads','2826971'), (1406391,186,'downloads','2786870'), (1406392,187,'downloads','4323263'), (1406393,188,'downloads','3977952'), (1406394,189,'downloads','4043943'), (1406395,190,'downloads','3373606'), (1406397,192,'downloads','6274127'), (1406398,193,'downloads','2025431'), (1406399,194,'downloads','2482840'), (1406400,195,'downloads','3953613'), (1406401,196,'downloads','4748835'), (1406402,197,'downloads','4896234'), (1406405,200,'downloads','2022708'), (1406407,202,'downloads','5088316'), (1406408,203,'downloads','5850571'), (1406410,205,'downloads','2953918'), (1406413,208,'downloads','3475814'), (1406418,213,'downloads','3784723'), (1406421,216,'downloads','4551937'), (1406423,218,'downloads','1404451'), (1406470,265,'downloads','5458105'), (1406568,363,'downloads','1229575'), (1406570,365,'downloads','929127'), (1436322,30184,'downloads','6686'), (1447882,41744,'downloads','4051'), (1448547,42409,'downloads','1322'), (1455040,48978,'downloads','144'), (1455180,49158,'downloads','631496'), (1458246,85,'title_ro_RO','Jetpack de WordPress.com'), (1458247,85,'excerpt_ro_RO','Cu Jetpack î?i m?re?ti traficul, î?i vizualizezi statisticile, î?i cre?ti viteza sitului ?i e?ti protejat de hackeri.'), (1458248,85,'content_ro_RO','\n

Jetpack simplific? gestionarea siturilor WordPress dându-?i statistici despre vizitatori, servicii de securitate, accelerarea utiliz?rii imaginilor ?i ajutor în a ob?ine mai mult trafic. Jetpack e un modul gratuit.

\n\n

Cre?terea traficului ?i informa?ii

\n\n

Jetpack î?i spune câte vizite a primit situl t?u ?i te ajut? s? ai mai mult trafic folosind unelte ca Articole similare, Publicitate, Distribu?ie îmbun?t??it? sau Partajare.

\n\n

Securitate

\n\n

Jetpack î?i protejeaz? situl împotriva atacurilor cu for?? brut? sau autentific?ri neautorizate. Î?i monitoriz?m de asemenea situl pentru c?deri ?i-?i men?inem modulele actualizate.

\n\n

Performan?? imagine

\n\n

Jetpack optimizeaz? ?i accelereaz? automat utilizarea imaginilor folosind re?eaua de distribu?ie de con?inut (CDN - content delivery network) a WordPress.com. Po?i face astfel economii la costurile de g?zduire prin reducerea l??imii de band?.

\n\n

Management centralizat

\n\n

Cu Jetpack vine ?i un panou de control centralizat pe WordPress.com. Gestiunea modulelor ?i meniurilor, articolelor publicate ?i statistici de sit îmbun?t??ite pentru toate siturile tale.

\n\n

Înc? câteva lucruri ce le plac utilizatorilor no?tri

\n\n

Jetpack include ?i alte func?ionalit??i ce te ajut? s?-?i personalizezi situl, cum ar fi CSS personalizat, Formulare de contact, Galerii ?i Carusele, Notific?ri ?i Abon?ri, Piese configurabile ?i multe altele.

\n\n

Suport dedicat

\n\n

We have an entire team of happiness engineers ready to help you. Ask your questions in the support forum, or contact us directly.

\n\n

Contribu?ii la Jetpack

\n\n

Jetpack este open-source iar noi încuraj?m activ contribu?iile comunit??ii: fie c? sunt un compliment, semnalarea unei erori, cod, sau o idee, le întâmpin?m pe toate cu bra?ele deschise! Afl? mai multe despre cum s? contribui sau gânde?te-te s? te al?turi programului nostru beta.

\n\n\n

Instaleaz? Jetpack de pe situl nostru introducând adresa sitului t?u.

\n\n

Alternativ, po?i instala Jetpack via directorul de module, sau înc?rcând manual fi?ierele pe serverul t?u. Dup? ce ai activat Jetpack, conecteaz?-te la WordPress.com pentru a valida func?ionalit??ile lui Jetpack.

\n\n

Dac? ai nevoie de ajutor suplimentar cite?te instruc?iunile noastre detaliate (inclusiv un video de prezentare).

\n\n\n
\n
Este Jetpack gratuit?
\n

Yes! The core features of Jetpack are and always will be free. Jetpack also integrates with paid services like Akismet (anti-spam), VaultPress (backups), and VideoPress (video hosting) but these are not required for Jetpack to function.

\n
De ce am nevoie de un cont WordPress.com?
\n

Multe din facilit??ile de baz? (cum ar fi Foton, Statistici ?i Protec?ie) folosesc norul WordPress.com. Pentru ca aceasta s? se întâmple Jetpack necesit? un cont (gratuit) WordPress.com. Dac? nu ai deja unul po?i s? ?i-l creezi cu u?urin?? în timpul procesului de conectare al Jetpack.

\n
Am deja un cont WordPress, dar ei nu func?ioneaz?. Ce se întâmpl??
\n

A WordPress.com account is different to the one you use to log into your self-hosted WordPress. If you can log into https://wordpress.com then you already have a WordPress.com account. If you can\'t, you can easily create one during Jetpack\'s connection process.

\n
Cum pot s?-mi v?d statisticile?
\n

Dup? ce ai instalat Jetpack statisticile tale vor fi disponibile la \"Statistici sit\", care apar în meniul Jetpack (sub meniul Panou control din WordPress).

\n
Cum pot s? contribui la Jetpack?
\n

Sunt oportunit??i pentru contribu?ii ale dezvoltatorilor la toate nivelurile. Afl? mai multe despre cum s? contribui la Jetpack sau gânde?te-te s? te al?turi programului nostru beta.

\n\n
\n\n\n

4.3.2

\n
    \n
  • Release date: October 13, 2016
  • \n
\n

Enhancements

\n
    \n
  • Unsaved changes were getting lost when users were navigating away from settings so we put in a confirmation message to prevent this from happening.
  • \n
  • We\'ve stopped counting carousel views in stats by default, you can use the jetpack_enable_carousel_stats filter to enable counting them again.
  • \n
  • Stats are now responding faster.
  • \n
  • There were several improvements and repairs made to sync including additional endpoints, performance enhancements, whitelisted data, better decision making around when to sync information, and more.
  • \n
  • Markdown now has a CSS class on footnotes.
  • \n
  • Site stats have been restored to the Jetpack submenu.
  • \n
\n

Improved Compatibility:

\n
    \n
  • We\'ve improved compatibility with Kinsta by automatically turning on Staging Mode for Jetpack when in a staging environment.
  • \n
\n

Corec?ii de erori:

\n
    \n
  • Several fixes have been made to sync to repair issues with Publicize, Notifications, and Subscriptions.
  • \n
  • We removed PHP warnings by checking to make sure json language files like jetpack-en_US.json are readable before we load them.
  • \n
  • We found an unused option in Gravatar Hovercard settings and removed it.
  • \n
  • The correct support link is now being used to make it easier for you to connect with the Jetpack team if you need us.
  • \n
  • The permissions check for plugin information retrieval was fixed as well.
  • \n
  • Some plugins were adding content on outbound http requests causing an infinite loop we fixed this right up.
  • \n
  • We removed some warnings that were occurring when translations didn\'t exist by adding a fallback.
  • \n
  • We\'ve added Moroccan Arabic translations, and switched to language packs for Croatian, Spanish (Chile) and Greek.
  • \n
  • Sync was running into issues so we\'ve limited dequeue time to 1/3 of PHP\'s max execution time, which has unclogged the problem.
  • \n
  • We\'re now sending full and incremental queues separately so that a failure in one doesn\'t block the other.
  • \n
  • There was a JavaScript enqueuing error with our Sharing feature that has been repaired.
  • \n
  • The Top Posts widget now includes the ability to list attachment (media) pages.
  • \n
  • We weren\'t building CPT links correctly resulting in bad navigation, which is now fixed.
  • \n
  • We removed the form legend for default Tiled Gallery settings as it doesn\'t relate.
  • \n
  • With shortcodes we now return early from processing them if no string is passed, as they are required.
  • \n
\n

4.3.1

\n
    \n
  • Release date: September 8, 2016
  • \n
\n

Support Enhancements

\n
    \n
  • We\'re now syncing data about hosts so that we can provide better support when needed.
  • \n
  • Minor update to inline docs to match version numbers.
  • \n
\n

Corec?ii de erori:

\n
    \n
  • Admin Page: fix error when Admin Page resources could not be fetched with wp_remote_get due to unique host configurations.
  • \n
  • Admin Page: fix error when Post By Email could not be enabled when the browser\'s dev console was enabled.
  • \n
  • Admin Page: make sure all translated strings are encoded properly.
  • \n
  • Admin Page: only use POST requests for updating the state of Jetpack, to avoid issues on servers not allowing PUT requests.
  • \n
  • Admin Page: search icon no longer overlaps the global notices.
  • \n
  • Admin Page: make sure that non-admins can also modify Spellchecking settings.
  • \n
  • General: Improve random number generation for compatibility with more hosts.
  • \n
  • General: Add deprecated PHP file (class.jetpack-landing-page.php) back as an empty file, to avoid generating fatal errors on sites with aggressive caching.
  • \n
  • General: Ensure concatenated CSS is generated for RTL languages.
  • \n
  • Security: Ensure that all options are included on the security tab.
  • \n
  • Stats: fix display for sites with pretty permalinks disabled.
  • \n
  • Subscriptions: ensure that no email is sent when updating a published post.
  • \n
  • Sync: To improve performance, add snapTW to the list of post meta data that won\'t be synchronized for each post.
  • \n
  • Sync: do not schedule a full sync after each import.
  • \n
  • Verification Tools: in the Settings card, use appropriate link for each service.
  • \n
\n

4.3

\n
    \n
  • Release date: September 6th, 2016
  • \n
\n

Exciting Performance and UI Improvements:

\n
    \n
  • We have launched the all new React powered interface, a year in the making, designed to give you better control of your favorite Jetpack features.
  • \n
\n

4.2.2

\n
    \n
  • Release date: August 19th, 2016
  • \n
\n

Corec?ii de erori:

\n
    \n
  • We fixed the code which displays the Facebook share count to accomodate Facebook\'s new data structure.
  • \n
  • We fixed an issue which caused PHP notices to get logged for users of the Twenty Fourteen theme.
  • \n
  • We fixed an issue with the Minileven mobile theme which was preventing it from loading.
  • \n
  • Improved Sync performance.
  • \n
  • Increase security by sanitizing a URL used in the SSO process.
  • \n
\n

4.2.1

\n
    \n
  • Release date: August 17th, 2016
  • \n
\n

Corec?ii de erori:

\n
    \n
  • We fixed a conflict between Jetpack and W3 Total Cache.
  • \n
  • We fixed some issues with Publicize and Custom Post Types.
  • \n
  • Very large Multisite networks with lots of users can now be synchronized with WordPress.com.
  • \n
  • We improved the synchronization process between your site and WordPress.com.
  • \n
\n

4.2

\n
    \n
  • Release date: August 10th, 2016
  • \n
\n

Îmbun?t??iri pentru performan??:

\n
    \n
  • We?ve improved Jetpack?s performance by making calls to the database more efficient; essentially, Jetpack is doing less on each page load, making things faster. #4281, #4316
  • \n
  • We?ve ensured that every feature uses information that is up to date by completely refactoring the way information was synchronized between your site and WordPress.com.
  • \n
  • We\'ve improved the way Jetpack queries for information about features, which results in less overall queries.
  • \n
\n

Exciting Feature and UI Improvements:

\n
    \n
  • We now track your visitor views of Carousel images in stats.
  • \n
  • You can now customize advanced typographic settings like ligatures in the Custom CSS editor with new support for the font-feature-settings property.
  • \n
  • We?ve improved the experience when you don?t actually have enough posts to Infinitely Scroll.
  • \n
  • Our Contact Info Widget allows you to enter a Google Maps API Key which is now required by Google if you want to display a map.
  • \n
\n

Security:

\n
    \n
  • We?re continuing our efforts to harden Jetpack security, by implementing the hash_equals() function to avoid timing attacks when comparing strings. We also improved security on CSVs exported from your contact form.
  • \n
\n

Slightly Less Exciting Feature Improvements:

\n
    \n
  • The Cartodb shortcode has been changed to match the new product name, Carto.
  • \n
  • The YouTube shortcode now uses the content width defined by the theme when available, even if an embed size was defined in an old version of WordPress.
  • \n
  • Breadcrumbs now support hierarchical post types and taxonomies.
  • \n
  • We?ve added the Portfolio Post Type to the WordPress.com REST API whitelist.
  • \n
  • There are a few new parameters for the Dailymotion shortcode.
  • \n
\n

Improved Compatibility:

\n
    \n
  • We now work well with WP Stagecoach staging sites, so you should not see any future impact on production sites.
  • \n
  • We had some PHP notices popping up in the WooCommerce plugin wizard screen, these are gone.
  • \n
\n

Corec?ii de erori:

\n
    \n
  • We stopped loading compatibility stylesheets on the default theme\'s singular views for Infinite Scroll.
  • \n
  • Debug tests forwarded through the contact form in the Jetpack Debug menu are now successfully sent to the support team.
  • \n
  • We?ve removed the PHP notices you might have seen when moderating comments.
  • \n
  • There are no longer PHP notices cropping up when publishing via Cron.
  • \n
  • We?ve fixed the official Sharing buttons so they now line up just right.
  • \n
  • The PHP warnings of Sitemaps stylesheets have been eliminated.
  • \n
  • We?ve done away with the warnings that appeared when Tonesque processes a file which claims to be one filetype, but is actually another.
  • \n
  • We?ve exterminated PHP notices that appeared when using Random Redirect, as well as when the author wasn\'t set.
  • \n
'), (1458249,85,'title_fa_IR','Jetpack ???? ?? WordPress.com'), (1458250,85,'excerpt_fa_IR','?????? ??????? ?????? ??????????? ???? ???? ? ??? ????? ??? ??????? ????? ?? ?????? Jetpack.'), (1458251,85,'content_fa_IR','\n

Jetpack simplifies managing WordPress sites by giving you visitor stats, security services, speeding up images, and helping you get more traffic. Jetpack is a free plugin.

\n\n

?????? ?????? & ?????

\n\n

Jetpack tells you how many visits your site gets and helps you get more traffic with tools like Related Posts, Publicize, Enhanced Distribution, and Sharing.

\n\n

?????

\n\n

Jetpack protects your site against brute force attacks and unauthorised logins. We also monitor your site for downtime and keep your plugins updated.

\n\n

?????? ?????

\n\n

Jetpack automatically optimizes and speeds up images using the global WordPress.com content delivery network. This saves you hosting costs by reducing bandwidth.

\n\n

?????? ??????

\n\n

With Jetpack comes a centralized dashboard on WordPress.com. Manage plugins and menus, publish posts, and view enhanced site stats for all of your sites.

\n\n

??????? ?? ??????? ?? ?????????

\n\n

Jetpack includes other features that help you customize your site including Custom CSS, Contact Forms, Galleries and Carousels, Notifications and Subscriptions, Configurable Widgets, and many more.

\n\n

???????? ???????

\n\n

We have an entire team of happiness engineers ready to help you. Ask your questions in the support forum, or contact us directly.

\n\n

?????? ?? Jetpack

\n\n

Jetpack is open-source and we actively encourage community contributions: whether it\'s a compliment, bug report, code, or an idea we welcome it with open arms! Learn about contributing or consider joining our beta program.

\n\n\n

??? ?????? ?? ???? ?? ?? ???? ???? ????.

\n\n

?? ?????? ?????? Jetpack ?? ?? ????????? ????????? ??? ???? ?? ???? ?? ???? ???????? ?????? ?? ???? ??? ????. ????????? ???? ?????? ???? ???????? ???????? ?? WordPress.com ???? ????.

\n\n

If you need additional help read our detailed instructions (including a video walkthrough).

\n\n\n
\n
??? ?????? Jetpack ????????
\n

Yes! The core features of Jetpack are and always will be free. Jetpack also integrates with paid services like Akismet (anti-spam), VaultPress (backups), and VideoPress (video hosting) but these are not required for Jetpack to function.

\n
??? ?? ?? ??????????? WordPress.com ???? ?????
\n

Many of our core features (like Photon, Stats, and Protect) make use of the WordPress.com cloud. For this to happen Jetpack requires a (free) WordPress.com account. If you don\'t have one already you can easily create one during Jetpack\'s connection process.

\n
I already have a WordPress account, but it\'s not working. What\'s going on?
\n

A WordPress.com account is different to the one you use to log into your self-hosted WordPress. If you can log into https://wordpress.com then you already have a WordPress.com account. If you can\'t, you can easily create one during Jetpack\'s connection process.

\n
How do I view my stats?
\n

Once you\'ve installed Jetpack your stats will be available via \"Site Stats\" which appears in the Jetpack menu (under your Dashboard menu within WordPress).

\n
???? ??????? ?? Jetpack ?????? ????
\n

There are opportunities for developers at all levels to contribute. Learn more about contributing to Jetpack or consider joining our beta program.

\n\n
\n\n'), (1458252,85,'title_sq','Jetpack nga WordPress.com'), (1458253,85,'excerpt_sq','Shtoni trafikun tuaj, shihni statistikat tuaja, bëjeni sajtin tuaj më të shpejtë, dhe mbroni veten nga hacker-ët, me Jetpack.'), (1458254,85,'content_sq','\n

Jetpack-u e thjeshtëzon administrimin e sajteve WordPress duke ju dhënë statistika vizitorësh, shërbime sigurie, përshpejtim të shërbimit të figurave, dhe duke ju ndihmuar të keni më tepër trafik. Jetpack-u është një shtojcë falas.

\n\n

Shtim & Tendenca Trafiku

\n\n

Jetpack-u ju tregon se sa vizita i vijnë sajtit tuaj dhe ju ndihmon të keni më tepër trafik, me mjete të tilla si Postime të Afërta, Publicizo, Shpërndarje e Zgjeruar, dhe Ndarje Me të Tjerë.

\n\n

Siguri

\n\n

Jetpack-u e mbron sajtin tuaj nga sulme brute force dhe hyrje të paautorizuara. Sajtin tuaj e mbajmë gjithashtu nën vëzhgim për kohë mospunimi dhe që shtojcat tuaja të jenë të përditësuara.

\n\n

Performancë Figurash

\n\n

Jetpack-u i optimizon dhe përshpjeton shërbimin e figurave vetvetiu, duke përdorur rrjetin global WordPress.com të shpërndarjes së lëndës. Kjo ju kursen kosto strehimi, duke ulur harxhimin e bandës.

\n\n

Administrim i Centralizuar

\n\n

Bashkë me Jetpack-un ju vjen një pult i centralizuar në WordPress.com. Administroni shtojca dhe menu, botoni postime, dhe shihni statistika të thelluara sajti, për krejt sajtet tuaj.

\n\n

Edhe pak gjëra të tjera që përdoruesit tanë i duan fort

\n\n

Jetpack përfshin veçori të tjera që ju ndihmojnë ta bëni sajtin si ta doni, përfshi CSS Vetjake, Formularë Kontaktesh, Galeri dhe Rrotullame, Njoftime dhe Pajtime, Widget-e të Formësueshëm, dhe mjaft të tjera.

\n\n

Asistencë e Përkushtuar

\n\n

We have an entire team of happiness engineers ready to help you. Ask your questions in the support forum, or contact us directly.

\n\n

Ndihmesë në Jetpack

\n\n

Jetpack-u është me burim të hapur dhe e nxisim vazhdimisht kontributin e bashkësisë: qoftë kur bëhet fjalë për një plotësim, njoftim të metash, kod, ose një ide, e presim me krahë hapur! Mësoni si të jepni ndihmesë ose shihni mundësinë e pjesëmarrjes në programin tonë beta.

\n\n\n

Instalojeni Jetpack-un prej sajtit tuaj duke shkruar adresën e tij

\n\n

Mënyrë tjetër, instalojeni Jetpack-un përmes listës së shtojcave, ose duke i ngarkuar kartelat dorazi te shërbyesi juaj. Pas aktivizimit të Jetpack-ut, lidhuni me WordPress.com-in që të aktivizoni veçoritë Jetpack.

\n\n

Nëse ju duhet ndihmë shtesë lexoni udhëzimet tona të hollësishme (përfshi një video ilustruese).

\n\n\n
\n
A është falas Jetpack-u?
\n

Po! Veçoritë bazë të Jetpack-ut janë dhe do të jenë përherë falas. Jetpack-u integrohet edhe me shërbime me pagesë, të tillë si Akismet (anti-mesazhe të padëshiruar), VaultPress (kopjeruajtje), dhe VideoPress (strehim videosh), por këto s?janë të domosdoshme për funksionimin e Jetpack-ut.

\n
Pse më duhet një llogari WordPress.com?
\n

Mjaft nga veçoritë toan bazë (si Photon, Statistika, dhe Protect) përdorin renë WordPress.com. Që të arrihet kjo Jetpack-u lyp një llogari (falas) WordPress.com. Nëse nuk keni një të tillë tashmë, mund të krijoni një lehtësisht gjatë procesit të lidhjes së Jetpack-ut.

\n
Kam tashmë një llogari WordPress, por nuk funksionon. Ç’po ndodh?
\n

A WordPress.com account is different to the one you use to log into your self-hosted WordPress. If you can log into https://wordpress.com then you already have a WordPress.com account. If you can\'t, you can easily create one during Jetpack\'s connection process.

\n
Si t?i shoh statistikat e mia?
\n

Pasi të keni instaluar Jetpack-un, statistikat tuaja do të gjenden te \"Statistika Sajti\" që duket te menuja Jetpack (nën menunë Pult, brenda WordPress-it).

\n
Si të kontribuoj te Jetpack-u?
\n

Ka mundësi pjesëmarrjeje për zhvilluesit e të gjitha niveleve. Mësoni më tepër rreth dhënies së ndihmesës në Jetpack ose shihni mundësinë e pjesëmarrjes në programin tonë beta.

\n\n
\n\n\n

4.3.2

\n
    \n
  • Release date: October 13, 2016
  • \n
\n

Enhancements

\n
    \n
  • Unsaved changes were getting lost when users were navigating away from settings so we put in a confirmation message to prevent this from happening.
  • \n
  • We\'ve stopped counting carousel views in stats by default, you can use the jetpack_enable_carousel_stats filter to enable counting them again.
  • \n
  • Stats are now responding faster.
  • \n
  • There were several improvements and repairs made to sync including additional endpoints, performance enhancements, whitelisted data, better decision making around when to sync information, and more.
  • \n
  • Markdown now has a CSS class on footnotes.
  • \n
  • Site stats have been restored to the Jetpack submenu.
  • \n
\n

Improved Compatibility:

\n
    \n
  • We\'ve improved compatibility with Kinsta by automatically turning on Staging Mode for Jetpack when in a staging environment.
  • \n
\n

Ndreqje të Metash:

\n
    \n
  • Several fixes have been made to sync to repair issues with Publicize, Notifications, and Subscriptions.
  • \n
  • We removed PHP warnings by checking to make sure json language files like jetpack-en_US.json are readable before we load them.
  • \n
  • We found an unused option in Gravatar Hovercard settings and removed it.
  • \n
  • The correct support link is now being used to make it easier for you to connect with the Jetpack team if you need us.
  • \n
  • The permissions check for plugin information retrieval was fixed as well.
  • \n
  • Some plugins were adding content on outbound http requests causing an infinite loop we fixed this right up.
  • \n
  • We removed some warnings that were occurring when translations didn\'t exist by adding a fallback.
  • \n
  • We\'ve added Moroccan Arabic translations, and switched to language packs for Croatian, Spanish (Chile) and Greek.
  • \n
  • Sync was running into issues so we\'ve limited dequeue time to 1/3 of PHP\'s max execution time, which has unclogged the problem.
  • \n
  • We\'re now sending full and incremental queues separately so that a failure in one doesn\'t block the other.
  • \n
  • There was a JavaScript enqueuing error with our Sharing feature that has been repaired.
  • \n
  • The Top Posts widget now includes the ability to list attachment (media) pages.
  • \n
  • We weren\'t building CPT links correctly resulting in bad navigation, which is now fixed.
  • \n
  • We removed the form legend for default Tiled Gallery settings as it doesn\'t relate.
  • \n
  • With shortcodes we now return early from processing them if no string is passed, as they are required.
  • \n
\n

4.3.1

\n
    \n
  • Release date: September 8, 2016
  • \n
\n

Support Enhancements

\n
    \n
  • We\'re now syncing data about hosts so that we can provide better support when needed.
  • \n
  • Minor update to inline docs to match version numbers.
  • \n
\n

Ndreqje të Metash:

\n
    \n
  • Admin Page: fix error when Admin Page resources could not be fetched with wp_remote_get due to unique host configurations.
  • \n
  • Admin Page: fix error when Post By Email could not be enabled when the browser\'s dev console was enabled.
  • \n
  • Admin Page: make sure all translated strings are encoded properly.
  • \n
  • Admin Page: only use POST requests for updating the state of Jetpack, to avoid issues on servers not allowing PUT requests.
  • \n
  • Admin Page: search icon no longer overlaps the global notices.
  • \n
  • Admin Page: make sure that non-admins can also modify Spellchecking settings.
  • \n
  • General: Improve random number generation for compatibility with more hosts.
  • \n
  • General: Add deprecated PHP file (class.jetpack-landing-page.php) back as an empty file, to avoid generating fatal errors on sites with aggressive caching.
  • \n
  • General: Ensure concatenated CSS is generated for RTL languages.
  • \n
  • Security: Ensure that all options are included on the security tab.
  • \n
  • Stats: fix display for sites with pretty permalinks disabled.
  • \n
  • Subscriptions: ensure that no email is sent when updating a published post.
  • \n
  • Sync: To improve performance, add snapTW to the list of post meta data that won\'t be synchronized for each post.
  • \n
  • Sync: do not schedule a full sync after each import.
  • \n
  • Verification Tools: in the Settings card, use appropriate link for each service.
  • \n
\n

4.3

\n
    \n
  • Release date: September 6th, 2016
  • \n
\n

Exciting Performance and UI Improvements:

\n
    \n
  • We have launched the all new React powered interface, a year in the making, designed to give you better control of your favorite Jetpack features.
  • \n
\n

4.2.2

\n
    \n
  • Release date: August 19th, 2016
  • \n
\n

Ndreqje të Metash:

\n
    \n
  • We fixed the code which displays the Facebook share count to accomodate Facebook\'s new data structure.
  • \n
  • We fixed an issue which caused PHP notices to get logged for users of the Twenty Fourteen theme.
  • \n
  • We fixed an issue with the Minileven mobile theme which was preventing it from loading.
  • \n
  • Improved Sync performance.
  • \n
  • Increase security by sanitizing a URL used in the SSO process.
  • \n
\n

4.2.1

\n
    \n
  • Release date: August 17th, 2016
  • \n
\n

Ndreqje të Metash:

\n
    \n
  • We fixed a conflict between Jetpack and W3 Total Cache.
  • \n
  • We fixed some issues with Publicize and Custom Post Types.
  • \n
  • Very large Multisite networks with lots of users can now be synchronized with WordPress.com.
  • \n
  • We improved the synchronization process between your site and WordPress.com.
  • \n
\n

4.2

\n
    \n
  • Release date: August 10th, 2016
  • \n
\n

Thellim Punimi:

\n
    \n
  • We?ve improved Jetpack?s performance by making calls to the database more efficient; essentially, Jetpack is doing less on each page load, making things faster. #4281, #4316
  • \n
  • We?ve ensured that every feature uses information that is up to date by completely refactoring the way information was synchronized between your site and WordPress.com.
  • \n
  • We\'ve improved the way Jetpack queries for information about features, which results in less overall queries.
  • \n
\n

Exciting Feature and UI Improvements:

\n
    \n
  • We now track your visitor views of Carousel images in stats.
  • \n
  • You can now customize advanced typographic settings like ligatures in the Custom CSS editor with new support for the font-feature-settings property.
  • \n
  • We?ve improved the experience when you don?t actually have enough posts to Infinitely Scroll.
  • \n
  • Our Contact Info Widget allows you to enter a Google Maps API Key which is now required by Google if you want to display a map.
  • \n
\n

Security:

\n
    \n
  • We?re continuing our efforts to harden Jetpack security, by implementing the hash_equals() function to avoid timing attacks when comparing strings. We also improved security on CSVs exported from your contact form.
  • \n
\n

Slightly Less Exciting Feature Improvements:

\n
    \n
  • The Cartodb shortcode has been changed to match the new product name, Carto.
  • \n
  • The YouTube shortcode now uses the content width defined by the theme when available, even if an embed size was defined in an old version of WordPress.
  • \n
  • Breadcrumbs now support hierarchical post types and taxonomies.
  • \n
  • We?ve added the Portfolio Post Type to the WordPress.com REST API whitelist.
  • \n
  • There are a few new parameters for the Dailymotion shortcode.
  • \n
\n

Improved Compatibility:

\n
    \n
  • We now work well with WP Stagecoach staging sites, so you should not see any future impact on production sites.
  • \n
  • We had some PHP notices popping up in the WooCommerce plugin wizard screen, these are gone.
  • \n
\n

Ndreqje të Metash:

\n
    \n
  • We stopped loading compatibility stylesheets on the default theme\'s singular views for Infinite Scroll.
  • \n
  • Debug tests forwarded through the contact form in the Jetpack Debug menu are now successfully sent to the support team.
  • \n
  • We?ve removed the PHP notices you might have seen when moderating comments.
  • \n
  • There are no longer PHP notices cropping up when publishing via Cron.
  • \n
  • We?ve fixed the official Sharing buttons so they now line up just right.
  • \n
  • The PHP warnings of Sitemaps stylesheets have been eliminated.
  • \n
  • We?ve done away with the warnings that appeared when Tonesque processes a file which claims to be one filetype, but is actually another.
  • \n
  • We?ve exterminated PHP notices that appeared when using Random Redirect, as well as when the author wasn\'t set.
  • \n
'), (1458255,85,'title_es_ES','Jetpack por WordPress.com'), (1458256,85,'excerpt_es_ES','Aumenta tu tráfico, mira tus estadísticas, aumenta la velocidad de tu sitio, y protégete de hackers con Jetpack'), (1458257,85,'content_es_ES','\n

Jetpack simplifica la gestión de sitios de WordPress porque aporta estadísticas de visitantes, servicios de seguridad, aceleración de imágenes y, además, te ayuda a conseguir un mayor tráfico. Jetpack es un plugin gratuito.

\n\n

Crecimiento del tráfico y análisis

\n\n

Jetpack te indica cuántas visitas recibe tu sitio y te ayuda a conseguir más tráfico mediante herramientas como Entradas relacionadas, Difundir, Distribución mejorada y Compartir.

\n\n

Seguridad

\n\n

Jetpack protege tu sitio frente a ataques de fuerza bruta y accesos no autorizados. También supervisamos los tiempos de inactividad de tu sitio y mantenemos los plugins actualizados.

\n\n

Rendimiento de la imagen

\n\n

Jetpack optimiza y acelera automáticamente las imágenes mediante la red de entrega de contenido global WordPress.com. De este modo, te ahorrarás los costes de alojamiento al reducir el ancho de banda.

\n\n

Gestión centralizada

\n\n

Con Jetpack se suministra un escritorio centralizado en WordPress.com. Gestiona plugins y menús, publica entradas y visualiza estadísticas mejoradas de todos tus sitios.

\n\n

Varias cosas más que les encantan a nuestros usuarios

\n\n

Jetpack incluye otras funciones que te ayudan a personalizar tu sitio, incluido CSS personalizados, formularios de contacto, galerías y carruseles, notificaciones y suscripciones, widgets configurables y mucho más.

\n\n

Ayuda específica

\n\n

We have an entire team of happiness engineers ready to help you. Ask your questions in the support forum, or contact us directly.

\n\n

Colaboración con Jetpack

\n\n

Jetpack es un plugin de código abierto; de modo que animamos a que se hagan aportaciones a la comunidad: tanto si se trata de cumplidos, como de informes de errores, códigos o ideas. Todas son recibidas con los brazos abiertos. Obtén información acerca de cómo participar o piensa en la posibilidad de unirte a nuestro programa beta.

\n\n\n

En nuestro sitio, podrás escribir la dirección del tuyo e instalar Jetpack.

\n\n

También puedes instalar Jetpack a través del directorio de plugins o cargando los archivos de forma manual en tu servidor. Tras activar Jetpack, conéctate a WordPress.com para habilitar las funciones de Jetpack.

\n\n

Si necesitas más ayuda, lee nuestras instrucciones detalladas (incluido un tutorial en vídeo).

\n\n\n
\n
¿Es Jetpack gratis?
\n

¡Sí! Las funcionalidades básicas de Jetpack son y siempre serán gratuitas. Jetpack también integra servicios de pago como Akismet (antispam), Vaultpress (copias de seguridad), y VideoPress(alojamiento de vídeos), pero no son necesarias para que Jetpack funcione.

\n
¿Por qué necesito una cuenta de WordPress.com?
\n

Muchos de nuestras funcionalidades principales (como Photon, estadísticas y Protect) hace uso de la la nube de WordPress.com. Por esa razón Jetpack necesita una cuenta (gratuita) de WordPress.com. Si no tienes ninguna todavía puedes crearla fácilmente durante el proceso de conexión de Jetpack.

\n
Ya tengo una cuenta de WordPress, pero no funciona. ¿Qué está pasando?
\n

A WordPress.com account is different to the one you use to log into your self-hosted WordPress. If you can log into https://wordpress.com then you already have a WordPress.com account. If you can\'t, you can easily create one during Jetpack\'s connection process.

\n
¿Cómo ver mis estadísticas?
\n

En cuanto instales Jetpack, tus estadísticas estarán disponibles a través de \"Estadísticas del sitio\", que aparece en el menú de Jetpack (en el menú del Escritorio de WordPress).

\n
¿Cómo puedo contribuir a Jetpack?
\n

Hay oportunidades para contribuir para desarrolladores a todos los niveles. Aprende cómo contribuir a Jetpack o considera unirte a nuestro programa beta.

\n\n
\n\n\n

4.4.1

\n\n
    \n
  • Release date: November 22, 2016
  • \n
\n\n

Bug Fixes

\n\n
    \n
  • Fixed an issue where some users with slower servers would get an error on the Jetpack dashboard when WP_DEBUG was enabled.
  • \n
  • Fixed an issue where users on a Jetpack Professional plan who were paying monthly (as opposed to annually) wouldn?t be able to enable SEO Tools.
  • \n
\n\n

4.4

\n\n
    \n
  • Release date: November 21, 2016
  • \n
  • Release post: http://wp.me/p1moTy-3FE
  • \n
\n\n

Enhancements

\n\n
    \n
  • Additional unit tests have been added to improve Jetpack\'s development process and stability.
  • \n
  • Custom post types have been added to the WP REST API output.
  • \n
  • Many of the screenshots throughout the plugin have been replaced by SVGs in order to make Jetpack smaller.
  • \n
  • New endpoints have been added to allow the installation of plugin and theme zip files via the API.
  • \n
  • Twelve new filters to make Jetpack more extensible! See: http://wp.me/p1moTy-3FE.
  • \n
  • New widget: \"Google Translate\" to allow users to translate your site into their own language.
  • \n
  • New widget: \"My Community\" where you can see who recently interacted with your site.
  • \n
  • One of the biggest issues facing Jetpack users for years now has been difficulties in moving sites from one domain name to another. This update makes strides towards improving that process.
  • \n
  • Photon now uses HTTPS by default. Secure all the things!
  • \n
  • There are now helpful hints throughout the admin interface to make Jetpack easier to use.
  • \n
  • We now allow you to embed pins, boards and profiles from Pinterest.
  • \n
  • We\'ve added a new feature: SEO Tools, available to Jetpack Professional subscribers. You can read more about our plans here: https://jetpack.com/features/
  • \n
  • We\'ve made numerous improvements to the data sync process.
  • \n
\n\n

Corrección de errores:

\n\n
    \n
  • Fixed link to Akismet settings.
  • \n
  • Improved compatibility between Infinite Scroll and WPML.
  • \n
  • Move email notification settings back with the other email settings in the Discussion Settings.
  • \n
  • Various minor performance/compatibility fixes.
  • \n
\n\n

4.3.2

\n\n
    \n
  • Release date: October 13, 2016
  • \n
\n\n

Enhancements

\n\n
    \n
  • Unsaved changes were getting lost when users were navigating away from settings so we put in a confirmation message to prevent this from happening.
  • \n
  • We\'ve stopped counting carousel views in stats by default, you can use the jetpack_enable_carousel_stats filter to enable counting them again.
  • \n
  • Stats are now responding faster.
  • \n
  • There were several improvements and repairs made to sync including additional endpoints, performance enhancements, whitelisted data, better decision making around when to sync information, and more.
  • \n
  • Markdown now has a CSS class on footnotes.
  • \n
\n\n

Improved Compatibility:

\n\n
    \n
  • We\'ve improved compatibility with Kinsta by automatically turning on Staging Mode for Jetpack when in a staging environment.
  • \n
\n\n

Corrección de errores:

\n\n
    \n
  • Several fixes have been made to sync to repair issues with Publicize, Notifications, and Subscriptions.
  • \n
  • We removed PHP warnings by checking to make sure json language files like jetpack-en_US.json are readable before we load them.
  • \n
  • We found an unused option in Gravatar Hovercard settings and removed it.
  • \n
  • The correct support link is now being used to make it easier for you to connect with the Jetpack team if you need us.
  • \n
  • The permissions check for plugin information retrieval was fixed as well.
  • \n
  • Some plugins were adding content on outbound http requests causing an infinite loop we fixed this right up.
  • \n
  • We removed some warnings that were occurring when translations didn\'t exist by adding a fallback.
  • \n
  • We\'ve added Moroccan Arabic translations, and switched to language packs for Croatian, Spanish (Chile) and Greek.
  • \n
  • Sync was running into issues so we\'ve limited dequeue time to 1/3 of PHP\'s max execution time, which has unclogged the problem.
  • \n
  • We\'re now sending full and incremental queues separately so that a failure in one doesn\'t block the other.
  • \n
  • There was a JavaScript enqueuing error with our Sharing feature that has been repaired.
  • \n
  • The Top Posts widget now includes the ability to list attachment (media) pages.
  • \n
  • We weren\'t building CPT links correctly resulting in bad navigation, which is now fixed.
  • \n
  • We removed the form legend for default Tiled Gallery settings as it doesn\'t relate.
  • \n
  • With shortcodes we now return early from processing them if no string is passed, as they are required.
  • \n
\n\n

4.3.1

\n\n
    \n
  • Release date: September 8, 2016
  • \n
\n\n

Support Enhancements

\n\n
    \n
  • We\'re now syncing data about hosts so that we can provide better support when needed.
  • \n
  • Minor update to inline docs to match version numbers.
  • \n
\n\n

Corrección de errores:

\n\n
    \n
  • Admin Page: fix error when Admin Page resources could not be fetched with wp_remote_get due to unique host configurations.
  • \n
  • Admin Page: fix error when Post By Email could not be enabled when the browser\'s dev console was enabled.
  • \n
  • Admin Page: make sure all translated strings are encoded properly.
  • \n
  • Admin Page: only use POST requests for updating the state of Jetpack, to avoid issues on servers not allowing PUT requests.
  • \n
  • Admin Page: search icon no longer overlaps the global notices.
  • \n
  • Admin Page: make sure that non-admins can also modify Spellchecking settings.
  • \n
  • General: Improve random number generation for compatibility with more hosts.
  • \n
  • General: Add deprecated PHP file (class.jetpack-landing-page.php) back as an empty file, to avoid generating fatal errors on sites with aggressive caching.
  • \n
  • General: Ensure concatenated CSS is generated for RTL languages.
  • \n
  • Security: Ensure that all options are included on the security tab.
  • \n
  • Stats: fix display for sites with pretty permalinks disabled.
  • \n
  • Subscriptions: ensure that no email is sent when updating a published post.
  • \n
  • Sync: To improve performance, add snapTW to the list of post meta data that won\'t be synchronized for each post.
  • \n
  • Sync: do not schedule a full sync after each import.
  • \n
  • Verification Tools: in the Settings card, use appropriate link for each service.
  • \n
\n\n

4.3

\n\n
    \n
  • Release date: September 6th, 2016
  • \n
\n\n

Exciting Performance and UI Improvements:

\n\n
    \n
  • We have launched the all new React powered interface, a year in the making, designed to give you better control of your favorite Jetpack features.
  • \n
\n\n

4.2.2

\n\n
    \n
  • Release date: August 19th, 2016
  • \n
\n\n

Corrección de errores:

\n\n
    \n
  • We fixed the code which displays the Facebook share count to accomodate Facebook\'s new data structure.
  • \n
  • We fixed an issue which caused PHP notices to get logged for users of the Twenty Fourteen theme.
  • \n
  • We fixed an issue with the Minileven mobile theme which was preventing it from loading.
  • \n
  • Improved Sync performance.
  • \n
  • Increase security by sanitizing a URL used in the SSO process.
  • \n
\n\n

4.2.1

\n\n
    \n
  • Release date: August 17th, 2016
  • \n
\n\n

Corrección de errores:

\n\n
    \n
  • We fixed a conflict between Jetpack and W3 Total Cache.
  • \n
  • We fixed some issues with Publicize and Custom Post Types.
  • \n
  • Very large Multisite networks with lots of users can now be synchronized with WordPress.com.
  • \n
  • We improved the synchronization process between your site and WordPress.com.
  • \n
\n\n

4.2

\n\n
    \n
  • Release date: August 10th, 2016
  • \n
\n\n

Mejoras en el rendimiento:

\n\n
    \n
  • We?ve improved Jetpack?s performance by making calls to the database more efficient; essentially, Jetpack is doing less on each page load, making things faster. #4281, #4316
  • \n
  • We?ve ensured that every feature uses information that is up to date by completely refactoring the way information was synchronized between your site and WordPress.com.
  • \n
  • We\'ve improved the way Jetpack queries for information about features, which results in less overall queries.
  • \n
\n\n

Exciting Feature and UI Improvements:

\n\n
    \n
  • We now track your visitor views of Carousel images in stats.
  • \n
  • You can now customize advanced typographic settings like ligatures in the Custom CSS editor with new support for the font-feature-settings property.
  • \n
  • We?ve improved the experience when you don?t actually have enough posts to Infinitely Scroll.
  • \n
  • Our Contact Info Widget allows you to enter a Google Maps API Key which is now required by Google if you want to display a map.
  • \n
\n\n

Security:

\n\n
    \n
  • We?re continuing our efforts to harden Jetpack security, by implementing the hash_equals() function to avoid timing attacks when comparing strings. We also improved security on CSVs exported from your contact form.
  • \n
\n\n

Slightly Less Exciting Feature Improvements:

\n\n
    \n
  • The Cartodb shortcode has been changed to match the new product name, Carto.
  • \n
  • The YouTube shortcode now uses the content width defined by the theme when available, even if an embed size was defined in an old version of WordPress.
  • \n
  • Breadcrumbs now support hierarchical post types and taxonomies.
  • \n
  • We?ve added the Portfolio Post Type to the WordPress.com REST API whitelist.
  • \n
  • There are a few new parameters for the Dailymotion shortcode.
  • \n
\n\n

Improved Compatibility:

\n\n
    \n
  • We now work well with WP Stagecoach staging sites, so you should not see any future impact on production sites.
  • \n
  • We had some PHP notices popping up in the WooCommerce plugin wizard screen, these are gone.
  • \n
\n\n

Corrección de errores:

\n\n
    \n
  • We stopped loading compatibility stylesheets on the default theme\'s singular views for Infinite Scroll.
  • \n
  • Debug tests forwarded through the contact form in the Jetpack Debug menu are now successfully sent to the support team.
  • \n
  • We?ve removed the PHP notices you might have seen when moderating comments.
  • \n
  • There are no longer PHP notices cropping up when publishing via Cron.
  • \n
  • We?ve fixed the official Sharing buttons so they now line up just right.
  • \n
  • The PHP warnings of Sitemaps stylesheets have been eliminated.
  • \n
  • We?ve done away with the warnings that appeared when Tonesque processes a file which claims to be one filetype, but is actually another.
  • \n
  • We?ve exterminated PHP notices that appeared when using Random Redirect, as well as when the author wasn\'t set.
  • \n
'), (1459596,170,'rating','4.9'), (1459597,170,'ratings','a:5:{i:1;s:2:\"12\";i:2;s:1:\"3\";i:3;s:1:\"3\";i:4;s:2:\"17\";i:5;s:3:\"913\";}'), (1460160,113,'rating','4.8'), (1460161,113,'ratings','a:5:{i:1;s:2:\"26\";i:2;s:1:\"7\";i:3;s:2:\"10\";i:4;s:2:\"38\";i:5;s:3:\"661\";}'), (1460268,160,'rating','4.5'), (1460269,160,'ratings','a:5:{i:1;s:2:\"40\";i:2;s:2:\"12\";i:3;s:2:\"10\";i:4;s:2:\"44\";i:5;s:3:\"401\";}'), (1460288,208,'rating','4.8'), (1460289,208,'ratings','a:5:{i:1;s:2:\"24\";i:2;s:1:\"6\";i:3;s:1:\"4\";i:4;s:2:\"28\";i:5;s:3:\"588\";}'), (1460878,41744,'rating','3'), (1460879,41744,'ratings','a:5:{i:1;s:1:\"1\";i:2;i:0;i:3;i:0;i:4;i:0;i:5;s:1:\"1\";}'), (1462034,48,'rating','5'), (1462035,48,'ratings','a:5:{i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:0;i:5;s:1:\"2\";}'), (1462094,195,'rating','4'), (1462095,195,'ratings','a:5:{i:1;s:2:\"73\";i:2;s:2:\"14\";i:3;s:1:\"8\";i:4;s:2:\"21\";i:5;s:3:\"254\";}'), (1462362,213,'rating','4.2'), (1462363,213,'ratings','a:5:{i:1;s:2:\"32\";i:2;s:2:\"16\";i:3;s:2:\"24\";i:4;s:2:\"36\";i:5;s:3:\"205\";}'), (1462844,180,'rating','4.7'), (1462845,180,'ratings','a:5:{i:1;s:3:\"206\";i:2;s:2:\"36\";i:3;s:2:\"35\";i:4;s:3:\"168\";i:5;s:4:\"3361\";}'), (1463088,178,'rating','4.8'), (1463089,178,'ratings','a:5:{i:1;s:1:\"5\";i:2;s:1:\"3\";i:3;s:1:\"2\";i:4;s:1:\"5\";i:5;s:3:\"160\";}'), (1463810,189,'rating','4.7'), (1463811,189,'ratings','a:5:{i:1;s:1:\"3\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"8\";i:5;s:2:\"90\";}'), (1463864,196,'rating','4.2'), (1463865,196,'ratings','a:5:{i:1;s:2:\"38\";i:2;s:2:\"18\";i:3;s:2:\"10\";i:4;s:2:\"26\";i:5;s:3:\"223\";}'), (1464026,265,'rating','4.4'), (1464027,265,'ratings','a:5:{i:1;s:2:\"28\";i:2;s:2:\"15\";i:3;s:2:\"13\";i:4;s:2:\"41\";i:5;s:3:\"257\";}'), (1466728,158,'rating','4.6'), (1466729,158,'ratings','a:5:{i:1;s:2:\"87\";i:2;s:2:\"22\";i:3;s:2:\"30\";i:4;s:3:\"105\";i:5;s:4:\"1050\";}'), (1468426,30184,'rating','4.8'), (1468427,30184,'ratings','a:5:{i:1;i:0;i:2;i:0;i:3;s:1:\"1\";i:4;s:1:\"1\";i:5;s:2:\"11\";}'), (1468468,47,'rating','5'), (1468469,47,'ratings','a:5:{i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:0;i:5;s:1:\"1\";}'), (1469282,176,'rating','4.9'), (1469283,176,'ratings','a:5:{i:1;s:1:\"2\";i:2;i:0;i:3;s:1:\"2\";i:4;s:1:\"3\";i:5;s:3:\"180\";}'), (1470016,172,'rating','4.9'), (1470017,172,'ratings','a:5:{i:1;s:1:\"7\";i:2;s:1:\"1\";i:3;s:1:\"1\";i:4;s:1:\"7\";i:5;s:3:\"286\";}'), (1470032,183,'rating','4.9'), (1470033,183,'ratings','a:5:{i:1;s:2:\"19\";i:2;s:1:\"6\";i:3;s:1:\"6\";i:4;s:2:\"30\";i:5;s:4:\"1134\";}'), (1472018,216,'rating','4.4'), (1472019,216,'ratings','a:5:{i:1;s:2:\"34\";i:2;s:1:\"4\";i:3;s:1:\"6\";i:4;s:2:\"15\";i:5;s:3:\"252\";}'), (1473834,218,'rating','4.7'), (1473835,218,'ratings','a:5:{i:1;s:1:\"5\";i:2;s:1:\"4\";i:3;i:0;i:4;s:1:\"4\";i:5;s:3:\"115\";}'), (1475452,179,'rating','4.5'), (1475453,179,'ratings','a:5:{i:1;s:2:\"29\";i:2;s:1:\"3\";i:3;s:1:\"5\";i:4;s:2:\"28\";i:5;s:3:\"244\";}'), (1475458,167,'rating','3.9'), (1475459,167,'ratings','a:5:{i:1;s:2:\"89\";i:2;s:2:\"25\";i:3;s:2:\"14\";i:4;s:2:\"27\";i:5;s:3:\"293\";}'), (1475740,161,'rating','4.9'), (1475741,161,'ratings','a:5:{i:1;s:2:\"35\";i:2;s:1:\"2\";i:3;s:1:\"9\";i:4;s:2:\"36\";i:5;s:4:\"1719\";}'), (1475794,185,'rating','3.3'), (1475795,185,'ratings','a:5:{i:1;s:2:\"32\";i:2;i:0;i:3;i:0;i:4;s:1:\"5\";i:5;s:2:\"43\";}'), (1476630,49158,'rating','2.6'), (1476631,49158,'ratings','a:5:{i:1;s:2:\"88\";i:2;s:1:\"5\";i:3;s:1:\"4\";i:4;s:1:\"6\";i:5;s:2:\"55\";}'), (1477748,194,'rating','4.9'), (1477749,194,'ratings','a:5:{i:1;s:1:\"3\";i:2;s:1:\"2\";i:3;s:1:\"2\";i:4;s:2:\"14\";i:5;s:3:\"266\";}'), (1478878,85,'rating','4.1'), (1478879,85,'ratings','a:5:{i:1;s:3:\"188\";i:2;s:2:\"47\";i:3;s:2:\"74\";i:4;s:3:\"125\";i:5;s:3:\"878\";}'), (1480404,162,'rating','4.6'), (1480405,162,'ratings','a:5:{i:1;s:2:\"11\";i:2;s:1:\"4\";i:3;s:1:\"3\";i:4;s:2:\"10\";i:5;s:3:\"160\";}'), (1481030,365,'rating','4.8'), (1481031,365,'ratings','a:5:{i:1;s:1:\"5\";i:2;i:0;i:3;s:1:\"3\";i:4;s:1:\"2\";i:5;s:3:\"153\";}'), (1481348,192,'rating','4.9'), (1481349,192,'ratings','a:5:{i:1;s:1:\"8\";i:2;s:1:\"2\";i:3;s:1:\"7\";i:4;s:2:\"14\";i:5;s:3:\"680\";}'), (1482658,184,'rating','4.7'), (1482659,184,'ratings','a:5:{i:1;s:1:\"9\";i:2;s:2:\"10\";i:3;s:1:\"9\";i:4;s:2:\"16\";i:5;s:3:\"337\";}'), (1484222,169,'rating','3.5'), (1484223,169,'ratings','a:5:{i:1;s:3:\"435\";i:2;s:2:\"52\";i:3;s:2:\"61\";i:4;s:3:\"124\";i:5;s:3:\"770\";}'), (1484414,197,'rating','4.4'), (1484415,197,'ratings','a:5:{i:1;s:2:\"71\";i:2;s:2:\"21\";i:3;s:2:\"20\";i:4;s:2:\"46\";i:5;s:3:\"628\";}'), (1489310,42409,'rating','3.8'), (1489311,42409,'ratings','a:5:{i:1;s:1:\"1\";i:2;i:0;i:3;i:0;i:4;s:1:\"1\";i:5;s:1:\"2\";}'), (1489434,168,'rating','4.4'), (1489435,168,'ratings','a:5:{i:1;s:2:\"12\";i:2;s:1:\"1\";i:3;i:0;i:4;s:2:\"15\";i:5;s:2:\"86\";}'), (1489696,187,'rating','4.2'), (1489697,187,'ratings','a:5:{i:1;s:2:\"40\";i:2;s:1:\"9\";i:3;s:1:\"7\";i:4;s:2:\"24\";i:5;s:3:\"201\";}'), (1489764,171,'rating','4.7'), (1489765,171,'ratings','a:5:{i:1;s:2:\"13\";i:2;s:1:\"3\";i:3;s:1:\"1\";i:4;s:2:\"15\";i:5;s:3:\"243\";}'), (1492462,40,'rating','4.8'), (1492463,40,'ratings','a:5:{i:1;i:0;i:2;i:0;i:3;s:1:\"1\";i:4;s:1:\"1\";i:5;s:2:\"11\";}'), (1492624,43,'rating','4.4'), (1492625,43,'ratings','a:5:{i:1;s:1:\"1\";i:2;s:1:\"1\";i:3;i:0;i:4;s:1:\"1\";i:5;s:2:\"11\";}'), (1492654,186,'rating','4.9'), (1492655,186,'ratings','a:5:{i:1;s:2:\"47\";i:2;s:2:\"20\";i:3;s:2:\"33\";i:4;s:3:\"231\";i:5;s:4:\"3636\";}'), (1494062,175,'rating','4.8'), (1494063,175,'ratings','a:5:{i:1;s:2:\"15\";i:2;s:1:\"5\";i:3;s:1:\"7\";i:4;s:2:\"24\";i:5;s:3:\"478\";}'), (1494718,188,'rating','4.9'), (1494719,188,'ratings','a:5:{i:1;s:1:\"1\";i:2;i:0;i:3;s:1:\"1\";i:4;s:1:\"2\";i:5;s:2:\"68\";}'), (1496604,200,'rating','5'), (1496605,200,'ratings','a:5:{i:1;s:1:\"8\";i:2;s:1:\"3\";i:3;s:1:\"3\";i:4;s:2:\"25\";i:5;s:4:\"2794\";}'), (1497186,203,'rating','4.6'), (1497187,203,'ratings','a:5:{i:1;s:2:\"75\";i:2;s:2:\"30\";i:3;s:2:\"39\";i:4;s:2:\"78\";i:5;s:4:\"1168\";}'), (1497328,363,'rating','4.7'), (1497329,363,'ratings','a:5:{i:1;s:1:\"5\";i:2;s:1:\"2\";i:3;s:1:\"6\";i:4;s:2:\"20\";i:5;s:3:\"194\";}'), (1497700,165,'rating','4.6'), (1497701,165,'ratings','a:5:{i:1;s:2:\"15\";i:2;s:1:\"2\";i:3;s:1:\"5\";i:4;s:2:\"20\";i:5;s:3:\"200\";}'), (1498624,49,'rating','4.9'), (1498625,49,'ratings','a:5:{i:1;i:0;i:2;i:0;i:3;i:0;i:4;s:1:\"2\";i:5;s:2:\"13\";}'), (1499096,182,'rating','4.8'), (1499097,182,'ratings','a:5:{i:1;s:2:\"65\";i:2;s:2:\"15\";i:3;s:2:\"20\";i:4;s:2:\"72\";i:5;s:4:\"2370\";}'), (1500150,173,'rating','4.3'), (1500151,173,'ratings','a:5:{i:1;s:3:\"409\";i:2;s:2:\"77\";i:3;s:3:\"154\";i:4;s:3:\"533\";i:5;s:4:\"2621\";}'), (1501542,163,'rating','4.6'), (1501543,163,'ratings','a:5:{i:1;s:3:\"155\";i:2;s:2:\"48\";i:3;s:2:\"58\";i:4;s:3:\"102\";i:5;s:4:\"1884\";}'), (1502646,166,'rating','4.8'), (1502647,166,'ratings','a:5:{i:1;s:2:\"80\";i:2;s:2:\"24\";i:3;s:2:\"29\";i:4;s:2:\"68\";i:5;s:4:\"2813\";}'), (1502784,50,'rating','3.2'), (1502785,50,'ratings','a:5:{i:1;s:2:\"94\";i:2;s:2:\"23\";i:3;s:2:\"16\";i:4;s:2:\"20\";i:5;s:3:\"128\";}'), (1502874,159,'rating','4.8'), (1502875,159,'ratings','a:6:{i:1;s:3:\"412\";i:2;s:2:\"75\";i:3;s:3:\"102\";i:4;s:3:\"329\";i:5;s:5:\"10223\";i:0;s:1:\"1\";}'), (1511290,174,'rating','4.6'), (1511291,174,'ratings','a:5:{i:1;s:1:\"8\";i:2;i:0;i:3;s:1:\"2\";i:4;s:2:\"11\";i:5;s:3:\"112\";}'), (1512140,193,'rating','4.5'), (1512141,193,'ratings','a:5:{i:1;s:2:\"16\";i:2;s:1:\"4\";i:3;s:1:\"6\";i:4;s:2:\"13\";i:5;s:3:\"172\";}'), (1512496,164,'rating','4.3'), (1512497,164,'ratings','a:5:{i:1;s:3:\"141\";i:2;s:2:\"18\";i:3;s:2:\"42\";i:4;s:2:\"98\";i:5;s:3:\"895\";}'), (1515528,202,'rating','4.8'), (1515529,202,'ratings','a:5:{i:1;s:2:\"76\";i:2;s:2:\"13\";i:3;s:2:\"25\";i:4;s:3:\"217\";i:5;s:4:\"2364\";}'), (1516130,190,'rating','4.9'), (1516131,190,'ratings','a:5:{i:1;s:2:\"11\";i:2;s:1:\"3\";i:3;s:1:\"2\";i:4;s:2:\"18\";i:5;s:3:\"520\";}'), (1521962,205,'rating','4'), (1521963,205,'ratings','a:5:{i:1;s:2:\"27\";i:2;s:1:\"7\";i:3;s:2:\"12\";i:4;s:2:\"17\";i:5;s:3:\"115\";}'), (1530343,177,'rating','5'), (1530344,177,'ratings','a:5:{i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:0;i:5;s:2:\"11\";}'), (1540727,44,'rating','4.2'), (1540728,44,'ratings','a:5:{i:1;s:1:\"9\";i:2;s:1:\"3\";i:3;s:1:\"1\";i:4;s:1:\"4\";i:5;s:2:\"48\";}'), (1562913,179,'title_it_IT','Google Analytics Dashboard per WP'), (1562914,179,'excerpt_it_IT','Mostra i rapporti di Google Analytics nella tua Bacheca di WordPress. Inserisce il codice di monitoraggio di Google Analytics nelle tue pagine.'), (1562915,179,'title_ro_RO','Google Analytics Dashboard pentru WP'), (1562916,179,'excerpt_ro_RO','Afi?eaz? rapoartele Google Analytics în panoul t?u de control WordPress. Insereaz? ultimul cod de urm?rire Google Analytics în paginile tale.'), (1562917,179,'title_fr_FR','Google Analytics Dashboard for WP '), (1562918,179,'excerpt_fr_FR','Affichez les rapports de Google Analytics dans votre tableau de bord. Inserer le dernier code de suivi de Google Analytics dans vos pages.'), (1562965,200,'excerpt_zh_CN','?????????????????????????????'), (1562966,200,'excerpt_nl_NL','Integreer prachtige tabellen boordevol opties in je berichten en pagina\'s, zonder code te schrijven.'), (1562967,200,'excerpt_de_DE','Füge deinen Artikeln und Seiten schöne und funktionale Tabellen hinzu, ohne dafür Code schreiben zu müssen.'), (1595997,184,'_oembed_07f0ab233e8c2821029540dc1adfc018','{{unknown}}'), (1606592,179,'excerpt_es_ES','Muestra informes de Google Analytics en tu Escritorio de WordPress. Inserta el código de seguimiento de Google Analytics en sus páginas.'), (1606676,363,'title_ca','Verificador de temes'), (1606677,363,'excerpt_ca','Una manera fàcil i senzilla de comprovar que el tema compleix els darrers estàndards i bones pràctiques del WordPress. Una eina de desenvolupament de temes fantàstica!'), (1606678,363,'title_ro_RO','Verific? Tema'), (1606679,363,'excerpt_ro_RO','Un mod simplu ?i u?or de a testa tema pentru toate standardele ?i practicile WordPress recente. Un instrument folositor pentru dezvoltarea temelor!'), (1606680,363,'title_ja','???????'), (1606681,363,'excerpt_ja','??? WordPress ?????????????????????????????????????????????????'), (1606682,159,'excerpt_ro_RO','WordPress out of the box is already technically quite a good platform for SEO, this was true when Joost wrote his original WordPress SEO article in 20 …'), (1606683,159,'title_fa_IR','?????? Yoast SEO'), (1606684,159,'excerpt_fa_IR','WordPress out of the box is already technically quite a good platform for SEO, this was true when Joost wrote his original WordPress SEO article in 20 …'), (1606685,159,'excerpt_es_ES','WordPress out of the box is already technically quite a good platform for SEO, this was true when Joost wrote his original [WordPress SEO](https://yoa …'), (1606741,213,'excerpt_tr_TR','bbPress forum yaz?l?m?d?r, WordPress arac?l???yla haz?rlan?r.'), (1606742,213,'excerpt_sv_SE','bbPress är forumprogramvara, skapad på WordPress sätt.'), (1606743,213,'excerpt_ja','bbPress ? WordPress ??????????????????????'), (1606744,213,'excerpt_ru_RU','bbPress ? ????? ?? ????????????? WordPress.'), (1606745,213,'excerpt_ro_RO','bbPress e un software de forum, f?cut în mod WordPress.'), (1606746,213,'excerpt_pt_BR','bbPress é um fórum de software, feito à maneira WordPress.'), (1606782,265,'excerpt_pt_BR','O BuddyPress ajuda você a manter qualquer tipo de rede social em seu WordPress, com perfis de usuários, fluxos de atividades, grupos, mensagens e muito mais.'), (1606783,265,'title_fa_IR','????????'), (1606784,265,'excerpt_fa_IR','???????? helps site builders and WordPress developers add community features to their websites, with user profile fields, activity streams, messagin …'), (1606785,265,'excerpt_tr_TR','BuddyPress üye profilleri, etkinlik ak???, kullan?c? gruplar?, mesajla?ma ve daha fazlas?yla her tür sosyal a?? WordPress üzerinde çal??t?rman?za yard?mc? olur.'), (1606786,265,'excerpt_nb_NO','BuddyPress hjelper deg med å etablere et hvilket som helst slags sosialt nettverk på ditt WordPress-nettsted, med medlemsprofiler, aktivitetsstrømmer, brukergrupper, meldinger og mer.'), (1606787,265,'excerpt_nl_NL','BuddyPress helpt je om elke soort sociaal netwerk met WordPress te maken. Met profielen, activiteit notificaties, gebruikersgroepen, berichten sturen en meer.'), (1606789,168,'excerpt_es_ES','Really Simple CAPTCHA es un módulo de CAPTCHA creado para se llamado por otros plugins. Se creó originariamente para el plugin Contact Form 7.'), (1606790,168,'excerpt_de_DE','Really Simple CAPTCHA ist ein CAPTCHA Modul, das von anderen Modulen aufgerufen wird. Ursprünglich wurde es für mein Contact Form 7 Plugin erstellt.'), (1606791,168,'excerpt_ja','Really Simple CAPTCHA ????????????????????? CAPTCHA ???????????? Contact Form 7 ?????????????????'), (1606792,168,'excerpt_pt_BR','Really Simple CAPTCHA é um CAPTCHA para ser chamado por outros plugins. Foi originalmente criado para o plugin Contact Form 7.'), (1606793,168,'excerpt_it_IT','Really Simple CAPTCHA è un modulo CAPTCHA destinato ad essere usato da altri plugins. È originariamente creato per il mio plugin Contact Form 7.'), (1606794,168,'excerpt_nl_NL','Really Simple CAPTCHA is een CAPTCHA module, waarvan het de bedoeling is, dat hij opgeroepen wordt door andere plugins. Het is oorspronkelijk ontworpen voor mijn Contact Form 7 plugin.'), (1606795,168,'excerpt_sk_SK','Really Simple CAPTCHA je CAPTCHA modul ur?ený k volaniu z iných modulov. Pôvodne bol vytvorený pre potreby môjho modulu Contact Form 7.'), (1606814,158,'excerpt_es_ES','Simplemente otro plugin de formularios de contacto. Sencillo pero flexible.'), (1606815,158,'excerpt_ja','??????????????????????????'), (1606816,158,'excerpt_hr','Jo? jedan kontakt obrazac dodatak. Jednostavan ali prilagodljiv.'), (1606817,158,'title_ro_RO','Formular de contact 7'), (1606818,158,'excerpt_ro_RO','Doar un alt modul de formular de contact. Simplu, dar flexibil.'), (1606819,158,'excerpt_fr_FR','Une autre extension de formulaire de contact. Simple mais flexible.'), (1606820,158,'excerpt_es_VE','Simplemente otro plugin de formularios de contacto. Sencillo pero flexible.'), (1606821,158,'excerpt_it_IT','Un altro plugin per moduli di contatto. Semplice ma flessibile'), (1606822,158,'excerpt_hu_HU','Ez egy újabb kapcsolati ?rlap b?vítmény. Egyszer?, de rendkívül sokoldalú.'), (1606823,158,'excerpt_nl_NL','Gewoon een contactformulieren plugin. Eenvoudig, maar flexibel.'), (1606824,158,'excerpt_fr_CA','Juste une autre extension de formulaire de contact. Simple mais flexible.'), (1606825,158,'excerpt_de_DE','Ein weiteres Kontaktformular-Plugin. Einfach aber flexibel.'), (1606827,113,'excerpt_es_ES','Akismet comprueba los comentarios con el servicio Web de Akismet para comprobar si parecen spam o no.'), (1606828,113,'excerpt_ro_RO','Akismet verific? comentariile tale folosind serviciul web Akismet pentru a vedea dac? par s? fie spam sau nu.'), (1606829,113,'excerpt_eo','Akismet komparas la komentojn kun la Akismet-reta servo por kontroli ?u ili ?ajnas trudaj.'), (1606830,113,'excerpt_es_PE','Akismet comprueba los comentarios con el servicio web de Akismet para comprobar si son spam o no.'), (1606831,113,'excerpt_it_IT','Akismet controlla i commenti sul tuo blog tramite il suo servizio web per verificare se si tratta o meno di spam.'), (1606832,113,'excerpt_lv','Akismet p?rbauda j?s vietn? iesniegtos koment?rus Akismet Web pakalpojum?, vai tie izskat?s nev?lami vai ne.'), (1606833,113,'excerpt_es_VE','Akismet comprueba los comentarios con el servicio Web de Akismet para comprobar si parecen spam o no.'), (1606834,113,'excerpt_es_CL','Akismet comprueba los comentarios con el servicio Web de Akismet para comprobar si parecen spam o no.'), (1606835,113,'excerpt_sq','Akismet-i i kontrollon komentet tuaja kundrejt shërbimit Web Akismet, për të parë nëse duken ose jo si mesazhe të padëshiruar.'), (1606836,113,'excerpt_hr','Akismet provjerava va?e komentare s Akismet web usluga kako bi provjerio da li je komentar spam ili nije. '), (1606837,113,'excerpt_tl','Ang Akismet ay nagche-check sa Akismet Web service kung ang mga komento ay mukhang spam o hindi. '), (1606838,113,'excerpt_ja','Akismet ??Akismet Web ?????????????????????????????'), (1606839,113,'excerpt_sk_SK','Akismet porovnáva va?e komentáre so slu?bou Akismet a zis?uje, ?i sa nepodobajú na spam.'), (1612880,184,'_oembed_6e09194b1506d32b7f7b62e25dde4494','{{unknown}}'), (1615670,216,'_oembed_cb63b362890bf8e72a7d9ff364b368de','{{unknown}}'), (1638205,54849,'tested','4.8.0-alpha'), (1638206,54849,'requires','4.7.0'), (1638207,54849,'donate_link',''), (1638208,54849,'license','GPLv2 or later'), (1638209,54849,'license_uri','http://www.gnu.org/licenses/gpl-2.0.html'), (1638210,54849,'upgrade_notice','a:0:{}'), (1638211,54849,'screenshots','a:0:{}'), (1638212,54849,'header_name','Core Media Widgets'), (1638213,54849,'header_plugin_uri','https://core.trac.wordpress.org/ticket/32417'), (1638214,54849,'version','0.1.0-20170407'), (1638215,54849,'header_author','WordPress.org'), (1638216,54849,'header_author_uri',''), (1638217,54849,'header_textdomain',''), (1638218,54849,'tagged_versions','a:0:{}'), (1638219,54849,'sections','a:2:{i:0;s:11:\"description\";i:1;s:9:\"changelog\";}'), (1638220,54849,'assets_screenshots','a:0:{}'), (1638221,54849,'assets_icons','a:1:{s:8:\"icon.svg\";a:4:{s:8:\"filename\";s:8:\"icon.svg\";s:8:\"revision\";s:7:\"1612216\";s:10:\"resolution\";s:0:\"\";s:8:\"location\";s:6:\"assets\";}}'), (1638222,54849,'assets_banners','a:0:{}'), (1638223,54849,'last_updated','2017-04-07 00:33:15'), (1638224,54849,'plugin_status','publish'), (1638225,54849,'assets_banners_color',''), (1638226,54849,'stable_tag','trunk'), (1638229,54849,'_approved','1489162746'), (1638263,54849,'downloads','806'), (1638264,54849,'support_threads','0'), (1638265,54849,'support_threads_resolved','0'), (1642240,54849,'active_installs','20'), (1642241,54849,'usage','a:1:{s:3:\"0.1\";s:3:\"100\";}'), (1646121,54849,'rating','5'), (1646122,54849,'ratings','a:5:{i:1;i:0;i:2;i:0;i:3;i:0;i:4;i:0;i:5;s:1:\"1\";}'), (1650514,55288,'tested','1.5, 2.1.2'), (1650515,55288,'requires','1.5'), (1650516,55288,'donate_link',''), (1650517,55288,'license',''), (1650518,55288,'license_uri',''), (1650519,55288,'upgrade_notice','a:0:{}'), (1650520,55288,'screenshots','a:0:{}'), (1650521,55288,'header_name',''), (1650522,55288,'header_plugin_uri',''), (1650523,55288,'version',''), (1650524,55288,'header_author',''), (1650525,55288,'header_author_uri',''), (1650526,55288,'header_textdomain',''), (1650527,55288,'tagged_versions','a:0:{}'), (1650528,55288,'sections','a:3:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:11:\"other_notes\";}'), (1650529,55288,'assets_screenshots',''), (1650530,55288,'assets_icons',''), (1650531,55288,'assets_banners',''), (1650532,55288,'last_updated','2007-07-17 17:54:36'), (1650533,55288,'plugin_status','pending'), (1650534,55288,'assets_banners_color',''), (1650535,55288,'stable_tag','trunk'), (1650538,55289,'tested','1.5, 2.1.2'), (1650539,55289,'requires','1.5'), (1650540,55289,'donate_link',''), (1650541,55289,'license',''), (1650542,55289,'license_uri',''), (1650543,55289,'upgrade_notice','a:0:{}'), (1650544,55289,'screenshots','a:0:{}'), (1650545,55289,'header_name','Image Extractor'), (1650546,55289,'header_plugin_uri','http://www.dynamick.it/image-extractor-765.html'), (1650547,55289,'version','1.1'), (1650548,55289,'header_author','Michele Gobbi'), (1650549,55289,'header_author_uri','http://www.dynamick.it'), (1650550,55289,'header_textdomain',''), (1650551,55289,'tagged_versions','a:0:{}'), (1650552,55289,'sections','a:3:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:11:\"other_notes\";}'), (1650553,55289,'assets_screenshots',''), (1650554,55289,'assets_icons',''), (1650555,55289,'assets_banners',''), (1650556,55289,'last_updated','2007-07-17 17:54:36'), (1650557,55289,'plugin_status','pending'), (1650558,55289,'assets_banners_color',''), (1650559,55289,'stable_tag','trunk'), (1650563,55290,'tested','1.5, 2.1.2'), (1650564,55290,'requires','1.5'), (1650565,55290,'donate_link',''), (1650566,55290,'license',''), (1650567,55290,'license_uri',''), (1650568,55290,'upgrade_notice','a:0:{}'), (1650569,55290,'screenshots','a:0:{}'), (1650570,55290,'header_name','Image Extractor'), (1650571,55290,'header_plugin_uri','http://www.dynamick.it/image-extractor-765.html'), (1650572,55290,'version','1.1'), (1650573,55290,'header_author','Michele Gobbi'), (1650574,55290,'header_author_uri','http://www.dynamick.it'), (1650575,55290,'header_textdomain',''), (1650576,55290,'tagged_versions','a:0:{}'), (1650577,55290,'sections','a:3:{i:0;s:11:\"description\";i:1;s:12:\"installation\";i:2;s:11:\"other_notes\";}'), (1650578,55290,'assets_screenshots','a:0:{}'), (1650579,55290,'assets_icons','a:0:{}'), (1650580,55290,'assets_banners','a:0:{}'), (1650581,55290,'last_updated','2007-07-17 17:54:36'), (1650582,55290,'plugin_status','pending'), (1650583,55290,'assets_banners_color',''), (1650584,55290,'stable_tag','trunk'), (1921092,65905,'_wp_attached_file','2017/03/readme.txt'), (1923420,203,'_oembed_a9b47e6078bbc24eae632f66fc174ef4','{{unknown}}'), (1923599,159,'_oembed_d319ad2579b86ebd2b106047f92184c1','{{unknown}}'), (1924055,163,'_oembed_30c4468415820d254e54a1e5ce01395c','{{unknown}}'), (1924056,163,'_oembed_0891aeeab097db5a9139ec495b2506ae','{{unknown}}'), (1924285,65931,'_wp_attached_file','2017/03/05_23-17-28_acf-form-builder-frontend-post-submission.zip'), (1924448,65941,'_wp_attached_file','2017/04/06_00-00-20_wp-optimization-test.zip'), (1924589,65949,'_wp_attached_file','2017/04/06_02-04-36_qru-business-reviews.zip'), (1924619,65951,'_wp_attached_file','2017/04/06_02-43-00_customsearch.zip'), (1924649,65953,'_wp_attached_file','2017/04/06_02-54-01_Lamegaweb.zip'), (1924679,65955,'_wp_attached_file','2017/04/06_03-14-29_sakura-rs-ssl.zip'), (1924714,65957,'_wp_attached_file','2017/04/06_03-43-19_bverse-convert.zip'), (1924804,65963,'_wp_attached_file','2017/04/06_04-01-55_custom-post-type-with-advance-fields.zip'), (1924991,65975,'_wp_attached_file','2017/04/06_04-41-41_page-health-o-meter.zip'), (1925168,65981,'_wp_attached_file','2017/04/06_05-18-13_cyber-fundraiser-lite.zip'), (1925228,65985,'_wp_attached_file','2017/04/06_05-23-11_weldpress.zip'), (1925258,65987,'_wp_attached_file','2017/04/06_05-25-29_easy-clickable-comment.zip'), (1925288,65989,'_wp_attached_file','2017/04/06_05-34-58_play-pause-1.0.zip'), (1925323,65991,'_wp_attached_file','2017/04/06_05-45-35_powerup-cf7.zip'), (1925353,65993,'_wp_attached_file','2017/04/06_05-46-32_wp-monetizer.zip'), (1925383,65995,'_wp_attached_file','2017/04/06_05-46-50_tofugear-omnitech-plugin-wp.zip'), (1925443,65999,'_wp_attached_file','2017/04/06_06-00-29_small-package-quotes-fedex-edition.zip'), (1925473,66001,'_wp_attached_file','2017/04/06_06-03-38_export-post-info-without-assets.zip'), (1925503,66003,'_wp_attached_file','2017/04/06_06-11-13_genesis-hero.zip'), (1925533,66005,'_wp_attached_file','2017/04/06_06-27-12_jm-buddy-translate.zip'), (1925593,66009,'_wp_attached_file','2017/04/06_06-36-14_right-click-disable.zip'), (1925623,66011,'_wp_attached_file','2017/04/06_06-37-28_cache_for_wordpress.zip'), (1925683,66015,'_wp_attached_file','2017/04/06_06-41-55_WordPressCBPopper.zip'), (1925893,66029,'_wp_attached_file','2017/04/06_07-07-44_custom-css.zip'), (1925923,66031,'_wp_attached_file','2017/04/06_07-08-25_wp-security-optimizer.zip'), (1925983,66035,'_wp_attached_file','2017/04/06_07-29-22_event-plugun-lite.zip'), (1926013,66037,'_wp_attached_file','2017/04/06_07-38-28_D3GB.1.1.zip'), (1926043,66039,'_wp_attached_file','2017/04/06_07-38-59_logitrail.zip'), (1926103,66043,'_wp_attached_file','2017/04/06_07-49-27_remitradar-remittance-calculator.zip'), (1926133,66045,'_wp_attached_file','2017/04/06_07-51-18_meta-tags.zip'), (1926193,66049,'_wp_attached_file','2017/04/06_08-02-13_pixelrockstar.zip'), (1926223,66051,'_wp_attached_file','2017/04/06_08-10-18_express-shop.zip'), (1926253,66053,'_wp_attached_file','2017/04/06_08-14-31_dev-con-form.zip'), (1926285,66055,'_wp_attached_file','2017/04/06_08-42-19_SUBMISSION_allpost-contactform.zip'), (1926408,66063,'_wp_attached_file','2017/04/06_09-10-01_crane-app-jira-integration.zip'), (1926503,66069,'_wp_attached_file','2017/04/06_09-31-31_acf_ffc.zip'), (1926593,66075,'_wp_attached_file','2017/04/06_09-53-16_browsersync-triggers.zip'), (1926623,66077,'_wp_attached_file','2017/04/06_10-14-08_superdesk-wordpress-plugin-master.zip'), (1926683,66081,'_wp_attached_file','2017/04/06_10-22-23_phanes-3dp-basic.zip'), (1926715,66083,'_wp_attached_file','2017/04/06_10-36-30_noozefeed.zip'), (1926745,66085,'_wp_attached_file','2017/04/06_10-39-16_pushforge-web-push.zip'), (1926775,66087,'_wp_attached_file','2017/04/06_10-41-22_ultimate-nofollow-seo.zip'), (1926835,66091,'_wp_attached_file','2017/04/06_10-56-06_way2sms.zip'), (1926865,66093,'_wp_attached_file','2017/04/06_11-04-29_edd-ideal-payment-gateway.zip'), (1926895,66095,'_wp_attached_file','2017/04/06_11-05-44_kunze-law-1-9.zip'), (1926925,66097,'_wp_attached_file','2017/04/06_11-07-33_recordbrowser.zip'), (1927017,66103,'_wp_attached_file','2017/04/06_11-45-35_smartmoderation.zip'), (1927108,66109,'_wp_attached_file','2017/04/06_12-05-21_Chare.zip'), (1927140,66111,'_wp_attached_file','2017/04/06_12-21-14_slider-hero.zip'), (1927321,66123,'_wp_attached_file','2017/04/06_14-28-55_fny-database-backup.zip'), (1927415,66129,'_wp_attached_file','2017/04/06_14-38-02_knowledgebase-helpdesk.zip'), (1927657,66141,'_wp_attached_file','2017/04/06_15-37-53_bancomail-email-lists-integration.zip'), (1927871,66152,'_wp_attached_file','2017/04/06_16-30-48_abaan-gallery.zip'), (1927969,66156,'_wp_attached_file','2017/04/06_16-46-44_paperlit.zip'), (1928240,66168,'_wp_attached_file','2017/04/06_18-52-02_powered-cache.zip'), (1928443,66176,'_wp_attached_file','2017/04/06_20-52-51_QuickWP.zip'), (1928477,66178,'_wp_attached_file','2017/04/06_20-55-17_sold-alerts1.0.zip'), (1928680,66188,'_wp_attached_file','2017/04/06_22-43-54_postscape.zip'), (1928974,66204,'_wp_attached_file','2017/04/07_01-28-37_feed-utm.zip'), (1929009,66206,'_wp_attached_file','2017/04/07_01-48-14_sticky-video.zip'), (1929039,66208,'_wp_attached_file','2017/04/07_01-53-36_post-share-buttons.1.0.zip'), (1929081,66210,'_wp_attached_file','2017/04/07_02-17-02_wpsid-shortcode.zip'), (1929116,66212,'_wp_attached_file','2017/04/07_02-46-50_publica-ad-block-recovery.zip'), (1929146,66214,'_wp_attached_file','2017/04/07_02-49-02_dynamically-register-sidebars.zip'), (1929236,66216,'_wp_attached_file','2017/04/07_03-46-58_contact-form-7-freebie.zip'), (1929266,66218,'_wp_attached_file','2017/04/07_03-53-59_contact-form-7-freebie.zip'), (1929311,66220,'_wp_attached_file','2017/04/07_05-44-02_maestros-infotech-free-sms.zip'), (1929344,66222,'_wp_attached_file','2017/04/07_07-04-18_ct_sponsors.zip'), (1929380,66224,'_wp_attached_file','2017/04/07_07-12-14_block-wp-login.zip'), (1929415,66226,'_wp_attached_file','2017/04/07_07-31-07_remove-category-word-from-title.zip'), (1929445,66228,'_wp_attached_file','2017/04/07_07-35-48_teams.zip'), (1929475,66230,'_wp_attached_file','2017/04/07_07-54-34_odds-comparison.zip'), (1929505,66232,'_wp_attached_file','2017/04/07_08-00-38_ro-bx-slider.zip'), (1929535,66234,'_wp_attached_file','2017/04/07_08-01-55_rating-manager-lite-master.zip'), (1929565,66236,'_wp_attached_file','2017/04/07_08-04-38_validator-pizza.zip'), (1929601,66238,'_wp_attached_file','2017/04/07_08-23-58_link_amazon_italia.zip'), (1929634,66240,'_wp_attached_file','2017/04/07_08-35-50_woo-auction.zip'), (1929666,66242,'_wp_attached_file','2017/04/07_08-41-45_video-synq-review-submit.zip'), (1929699,66244,'_wp_attached_file','2017/04/07_08-49-06_create-and-assign-categories-for-pages.zip'), (1929729,66246,'_wp_attached_file','2017/04/07_08-53-26_float-menu.zip'), (1929759,66248,'_wp_attached_file','2017/04/07_09-12-44_wxshare-1.3.1.zip'), (1929789,66250,'_wp_attached_file','2017/04/07_09-13-13_ek-notes.zip'), (1929825,66252,'_wp_attached_file','2017/04/07_09-18-41_ek-assessed-posts.zip'), (1929858,66254,'_wp_attached_file','2017/04/07_09-36-03_transactium-gravity-forms-addon.zip'), (1929888,66256,'_wp_attached_file','2017/04/07_09-36-22_agechecked-woocommerce-addon.zip'), (1929918,66258,'_wp_attached_file','2017/04/07_09-36-40_transactium-wallet-woocommerce.zip'), (1929948,66260,'_wp_attached_file','2017/04/07_09-36-55_transactium-woocommerce-addon.zip'), (1929978,66262,'_wp_attached_file','2017/04/07_09-37-44_transactium-wallet-woocommerce.zip'), (1930008,66264,'_wp_attached_file','2017/04/07_09-47-04_ilys-flow-wp-plugin-basic.zip'), (1930038,66266,'_wp_attached_file','2017/04/07_09-56-35_hide-wp-front-admin-bar.zip'), (1930078,66269,'_wp_attached_file','2017/04/07_10-52-05_onecom-themes-plugins.zip'), (1930108,66271,'_wp_attached_file','2017/04/07_11-20-44_Wpp_cookie_expire.zip'), (1930141,66273,'_wp_attached_file','2017/04/07_11-44-46_eh-ajax-search.zip'), (1930171,66275,'_wp_attached_file','2017/04/07_11-54-18_gpano.zip'), (1930203,195,'_oembed_034b971851874e236523d5427f46425f',''), (1930204,195,'_oembed_time_034b971851874e236523d5427f46425f','1491727164'), (1930206,113,'_active_installs','3000000'), (1930207,164,'_active_installs','1000000'), (1930208,174,'_active_installs','1000000'), (1930209,160,'_active_installs','3000000'), (1930210,158,'_active_installs','3000000'), (1930211,161,'_active_installs','2000000'), (1930212,187,'_active_installs','700000'), (1930213,169,'_active_installs','1000000'), (1930214,190,'_active_installs','600000'), (1930215,173,'_active_installs','1000000'), (1930216,193,'_active_installs','600000'), (1930217,265,'_active_installs','200000'), (1930218,168,'_active_installs','1000000'), (1930219,185,'_active_installs','700000'), (1930220,167,'_active_installs','1000000'), (1930221,50,'_active_installs','3000000'), (1930222,202,'_active_installs','700000'), (1930223,159,'_active_installs','3000000'), (1930224,165,'_active_installs','2000000'), (1930225,189,'_active_installs','600000'), (1930226,172,'_active_installs','1000000'), (1930227,196,'_active_installs','500000'), (1930228,171,'_active_installs','1000000'), (1930229,162,'_active_installs','2000000'), (1930230,205,'_active_installs','400000'), (1930231,203,'_active_installs','500000'), (1930232,195,'_active_installs','500000'), (1930233,194,'_active_installs','500000'), (1930234,180,'_active_installs','800000'), (1930235,363,'_active_installs','100000'), (1930236,213,'_active_installs','300000'), (1930237,85,'_active_installs','3000000'), (1930238,163,'_active_installs','3000000'), (1930239,216,'_active_installs','400000'), (1930240,166,'_active_installs','2000000'), (1930241,177,'_active_installs','900000'), (1930242,208,'_active_installs','500000'), (1930243,186,'_active_installs','600000'), (1930244,178,'_active_installs','900000'), (1930245,176,'_active_installs','900000'), (1930246,182,'_active_installs','1000000'), (1930247,192,'_active_installs','800000'), (1930248,170,'_active_installs','1000000'), (1930249,175,'_active_installs','1000000'), (1930250,184,'_active_installs','800000'), (1930251,179,'_active_installs','900000'), (1930252,200,'_active_installs','500000'), (1930253,197,'_active_installs','800000'), (1930254,183,'_active_installs','900000'), (1930255,218,'_active_installs','500000'), (1930256,188,'_active_installs','900000'), (1930257,44,'_active_installs','2000'), (1930258,43,'_active_installs','10000'), (1930259,48,'_active_installs','400'), (1930260,47,'_active_installs','200'), (1930261,49,'_active_installs','900'), (1930262,40,'_active_installs','800'), (1930263,365,'_active_installs','400000'), (1930264,30184,'_active_installs','400'), (1930265,41744,'_active_installs','1000'), (1930266,42409,'_active_installs','30'), (1930267,49158,'_active_installs','1000000'), (1930268,54849,'_active_installs','20'), (1930270,42409,'_edit_lock','1491853661:1'), (1930271,42409,'_edit_last','1'), (1930272,42409,'_publish','1491853635'); /*!40000 ALTER TABLE `wporg_367_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_367_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_367_posts`; CREATE TABLE `wporg_367_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_367_posts` WRITE; /*!40000 ALTER TABLE `wporg_367_posts` DISABLE KEYS */; INSERT INTO `wporg_367_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 (8,5911429,'2016-02-10 02:07:41','2016-02-10 02:07:41','You?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
    \r\n
  • Keep track of how many people have downloaded it.
  • \r\n
  • Let people leave comments about your plugin.
  • \r\n
  • Get your plugin rated against all the other cool WordPress plugins.
  • \r\n
  • Give your plugin lots of exposure in this centralized repository.
  • \r\n
\r\n

There are some restrictions

\r\n
    \r\n
  • Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.?
  • \r\n
  • The plugin must not do anything illegal or be morally offensive (that?s subjective, we know).
  • \r\n
  • You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
  • \r\n
  • The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
  • \r\n
  • Your plugin must abide by our list of detailed guidelines, which include not being a spammer and not abusing the systems.
  • \r\n
\r\n

Submission is Simple

\r\n
    \r\n
  1. Sign up for an account on WordPress.org.
  2. \r\n
  3. Submit your plugin for review.
  4. \r\n
  5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
  6. \r\n
  7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
  8. \r\n
  9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
  10. \r\n
  11. Check out the FAQ for more information.
  12. \r\n
\r\n

Readme files

\r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','publish','closed','closed','','developers','','','2016-11-17 23:03:46','2016-11-17 23:03:46','',0,'https://wordpress.org/plugins-wp/?page_id=8',0,'page','',0), (10,5911429,'2016-02-10 02:09:22','2016-02-10 02:09:22','Once submitted, your plugin will be manually reviewed for any common errors as well as ensuring it complies with all the guidelines.\r\n\r\n[wporg-plugin-upload]\r\n\r\nEven if you\'ve submitted a dozen plugins, take the time to refresh your memory with the following information:\r\n\r\n\r\n
\r\n\r\n

FAQ

\r\n

How long will the review process take?

\r\nThis is in the Developer FAQ. It takes anywhere between 1 and 10 days. We attempt to review all plugins within 5 business days of submission, but the process takes as long as it takes, depending on the complexity of your plugin.\r\n

What will my plugin URL be?

\r\nYour plugin\'s URL will be populated based on the value of Plugin Name in your main plugin file (the one with the plugin headers). If you set yours as Plugin Name: Boaty McBoatface then your URL will be https://wordpress.org/plugins/boaty-mcboatface and your slug will be boaty-mcboatface for example. If there is an existing plugin with your name, then you will be boaty-mcboatface-2 and so on. It behaves exactly like WordPress post names.\r\n\r\nOnce your plugin is approved, it cannot be renamed.\r\n

I made a mistake in my plugin name. Should I resubmit?

\r\nPlease don\'t! Instead email plugins@wordpress.org and we can rename your plugin as long as it\'s not approved. Since we check emails first, the odds are we\'ll catch it. If we don\'t, just email us and explain the mistake. We\'ll explain what do to.\r\n

Why was I told my plugin name was unacceptable?

\r\nThis is explained in detail in our detailed plugin guidelines, but currently we give you the chance to rename yout during the review process if the plugin name violates the guideline. Some terms (like \'plugin\' and \'wordpress\') will be removed for you, as those should not be used at all. We get it. You\'re a WordPress Plugin.\r\n\r\nRegarding other companies and plugins\' names and trademarks, don\'t use them to start your plugin name. If you\'re not Facebook, you shouldn\'t submit a plugin that uses facebook as the first term in your slug. \"Facebook Like Sharer\" (which would be facebook-like-sharer) is not acceptable, but \"Like Sharer for Facebook (which would be like-sharer-for-facebook) would be alright.','Add your Plugin','','publish','closed','closed','','add','','','2016-06-14 16:27:01','2016-06-14 16:27:01','',8,'https://wordpress.org/plugins-wp/?page_id=10',0,'page','',0), (40,8772187,'2015-12-10 17:40:06','2015-12-10 17:40:06','\n

Shiny Updates is a WordPress Core Feature Plugin.

\n\n

It replaces The Bleak Screen of Sadness? (example) with a simpler and more straight forward experience when installing, updating, and deleting plugins and themes.\nProgress updates for these actions don\'t add a benefit, they are disruptive and confusing. Shiny Updates deals with these details behind the scenes, leaving users with clear actions and results.

\n\n

Development for this plugin takes place at GitHub.\nTo report bugs or feature requests, please use Github issues.

\n\n

Testing

\n\n

We need help testing the user flows! Please install the Shiny Updates plugin, run the tests below, and share your feedback in the #feature-shinyupdates channel in Slack or create an issue on GitHub.

\n\n

Update core

\n\n
    \n
  1. If you have any themes or plugins that need updating, update them. If you don\'t have any that need updating, you can edit the them and change the version number to something older. Once saved, they will show as needing an update.
  2. \n
  3. Update one specific item, a theme or a plugin.
  4. \n
  5. Try updating all items in the table.
  6. \n
  7. Share your feedback. Or if you found a bug, create an issue on GitHub.
  8. \n
\n\n

Questions

\n\n
    \n
  1. What were the noticeable differences in the new install/update/activate/delete process compared to the old one without Shiny Updates?
  2. \n
  3. How did installing and activating a plugin or theme go? Was it difficult or easy? Was it faster or slower than expected?
  4. \n
  5. Do you have any further comments or suggestions?
  6. \n
','Shiny Updates','A smoother experience for managing plugins and themes.','publish','closed','closed','','shiny-updates','','','2016-09-27 13:24:14','2016-09-27 13:24:14','',0,'https://wordpress.org/plugins-wp/shiny-updates/',0,'plugin','',0), (43,183657,'2015-03-18 16:04:31','2015-03-18 16:04:31','\n

Used alongside add_shortcode, Shortcake supplies a user-friendly interface for adding a shortcode to a post, and viewing and editing it from within the content editor.

\n\n

Once you\'ve installed the plugin, you\'ll need to register UI for your shortcodes. For inspiration, check out examples of Shortcake in the wild.

\n\n

To report bugs or feature requests, please use Github issues.

\n\n

Running tests

\n\n

We have test coverage for PHP using PHPunit, and JavaScript using Jasmine.

\n\n

Running tests locally

\n\n

Jasmine tests can be run using grunt jasmine and are also run as part of the grunt scripts task. To update the core WordPress files used by the Jasmine test suite, run grunt updateJasmineCoreScripts --abspath=\"/path/to/wordpress-install\".

\n\n\n

Shortcake can be installed like any other WordPress plugin.

\n\n

Once you\'ve done so, you\'ll need to register the UI for your code.

\n\n

New in 0.4.0 is the ability to attach javascript functions to event attribute updates. Action hooks can be used to dynamically show or hide a field based on the value of another, or to implement custom validation rules.

\n\n\n
\n
How do I register UI for arbitrary key/value pairs as shortcode attributes?
\n

Shortcake doesn\'t support custom key => value pairs as shortcode attributes because it isn\'t a great user experience.

\n
After upgrading to Shortcake 0.7.x, some of the shortcode UI fields (post select, user select, etc) don\'t work as expected. What can I do?
\n

In version 0.7.0, we updated to the most recent branch of the Select2 library, which provides the enhanced select fields in these field types. This causes a known conflict with plugins that enqueue older versions of Select2. (Popular plugins with known conflicts include WooCommerce and Advanced Custom Fields Pro, among others.)

\n\n

If you find that you\'re experiencing conflicts with these plugins, you can set a flag to load select2 in a distinct namespace by defining the constant SELECT2_NOCONFLICT in your wp-config.php (or anywhere that\'s defined before the \'init\' hook.)

\n\n
define( \'SELECT2_NOCONFLICT\', true );\n
\n\n
\n\n\n

0.7.1 (December 16, 2016)

\n\n
    \n
  • Change shortcode formatting to add a space before the self-closing trailing slash.
  • \n
  • Fix alignment of attachment previews with long filenames.
  • \n
  • Bug fix: Set an initial value on select fields (previously, no value would be set for a select field unless the user interacts with the field).
  • \n
  • Enhancement/fix: Reuse one copy of the media modal and reset its state upon closing, rather than creating duplicate markup each time the modal is accessed.
  • \n
  • Compatability: Uses \"full\" version of select2.js 4.0.3 to prevent plugin conflicts with other plugins which expect the full version to be enqueued.
  • \n
  • Compatability: Add SELECT2_NOCONFLICT flag to load Select2 in a unique namespace to prevent conflicts with other plugins which are loading select2.js version 3.
  • \n
  • Added Norwegian translation.
  • \n
  • Multiple coding style fixes.
  • \n
\n\n

0.7.0 (November 18, 2016)

\n\n
    \n
  • Adds \"Add post element\" button to media buttons - one click to open the shortcode list, rather than clicking \"Add media\" button and then finding \"insert post element\" in the menu.
  • \n
  • Added \"Term Select\" field type.
  • \n
  • Added \"User Select\" field type.
  • \n
  • Added new hooks that fire on rendering/editing/closing a shortcode, which can be used for field types which require custom javascript initialization or cleanup.
  • \n
  • Select fields: add full support for multiple select fields.
  • \n
  • Select fields: support custom ordering of options.
  • \n
  • Select fields: support grouping option in <optgroup>s by passing them as a nested array.
  • \n
  • Attachment fields: support multiple selection.
  • \n
  • Attachment fields: support SVG images (if svg uploads are enabled by a plugin or theme).
  • \n
  • Bug fix: Handle percent signs when decoding fields with encode=true specified.
  • \n
  • Bug fix: fix issue where it takes two clicks on a shortcode in editor to bring up the Edit Shortcode modal.
  • \n
  • Bug fix: fix issue when searching for shortcodes by name where if multiple shortcodes start with the search string, only the first is returned.
  • \n
  • Bug fix: only output a description field on an attribute if it\'s not empty.
  • \n
  • Compatability: Remove shims for handling the media modal in WP 4.1 and 4.2.
  • \n
  • Compatability: Upgrade Select2 library to 4.0.3 to avoid conflicts with other plugins which use the latest version of Select2.
  • \n
  • Added Turkish translation.
  • \n
  • Added Finnish translation.
  • \n
  • Added Swedish translation.
  • \n
  • Added Hungarian translation.
  • \n
\n\n

0.6.2 (November 12, 2015)

\n\n
    \n
  • Bug fix: Listens for \"change\" event on radio buttons and checkboxes to ensure shortcode attributes are updated.
  • \n
  • Bug fix: Ensures register_shortcode_ui is always run before calling get_shortcodes(). Fixes post select AJAX callback when using register_shortcode_ui hook.
  • \n
\n\n

0.6.1 (November 9, 2015)

\n\n
    \n
  • Fixes JavaScript TypeError when clicking media frame menu items.
  • \n
  • Corrects links in readme.
  • \n
\n\n

0.6.0 (November 2, 2015)

\n\n
    \n
  • Supports an optional encode=true argument for attributes, to allow limited HTML support. Attributes need to be run through shortcode_atts() in order to be properly decoded.
  • \n
  • Defines a SHORTCODE_UI_DOING_PREVIEW constant when rendering a shortcode preview, which enables callbacks to serve a different representation of the shortcode in TinyMCE.
  • \n
  • When an attachment is already selected for a shortcode attribute, opening media library will include it selected.
  • \n
  • Cleaned up icon vertical alignment in the Insert Post Element UI.
  • \n
  • Added CSS utility classes to all field HTML. For instance, the attachment field is now wrapped with shortcode-ui-field-attachment.
  • \n
  • Added filters to modify shortcode UI arguments on registration.
  • \n
  • Cleaned up the example plugin, so it\'s a much more useful developer reference.
  • \n
  • Uses core\'s JavaScript regex for parsing shortcodes, instead of maintaining separate regex.
  • \n
  • Permits HTML in field labels and descriptions.
  • \n
  • Added Danish translation.
  • \n
  • Added Italian translation.
  • \n
  • Added German translation.
  • \n
  • Core integration: Fully supports PHP 5.2.
  • \n
  • Bug fix: Persists shortcode attributes and inner content when there isn\'t UI registered for them. Previously, they would be discarded.
  • \n
  • Bug fix: Display the description on the post select field.
  • \n
  • Bug fix: Attribute field change event binds to input event rather than keyup.
  • \n
  • Full release notes
  • \n
\n\n

0.5.0 (August 26, 2015)

\n\n
    \n
  • Attachment field: Made it easier to change the attachment by clicking on the thumbnail; added attachment metadata in the field view.
  • \n
  • Attachment field: Refactored JavaScript to trigger events.
  • \n
  • Added a range input type.
  • \n
  • Introduced a register_shortcode_ui hook for plugins to more safely register UI with.
  • \n
  • Removed Preview tab to bring Shortcake\'s user experience closer to Core, in which the inline visual preview is preferred over a separate preview in the media modal.
  • \n
  • Cleaned up JavaScript using JSHint.
  • \n
  • Added Russian translation.
  • \n
  • Added Portuguese translation.
  • \n
  • Added PHPDoc to all classes.
  • \n
  • Bug fix: Persists inner_content for a shortcode even when UI isn\'t defined.
  • \n
  • Bug fix: Hitting esc in a Shortcake view will now close the modal. (Fixed in Core.)
  • \n
  • Bug fix: Hitting delete when a Shortcake preview is selected in the Visual editor now results in the shortcode being removed. (Fixed in Core.)
  • \n
  • Bug fix: The Shortcake \'search\' function no longer visually conflicts with the shortcode grid at small screen sizes. (Fixed in Core.)
  • \n
  • Bug fix: Use get_post_type() instead of get_current_screen()->post_type so context is properly set on the frontend.
  • \n
  • Full release notes
  • \n
\n\n

0.4.0 (June 22, 2015)

\n\n
    \n
  • Using carldanley/wp-js-hooks for a basic API to register JS callbacks on shortcode attributes.
  • \n
  • Attachment field uses a loading indicator when the preview for an attachment is loading.
  • \n
  • Added Chinese translation.
  • \n
  • Added French translation.
  • \n
  • Added Spanish translation.
  • \n
  • Bug fix: Prevents fataling when editor is loaded in the frontend context.
  • \n
  • Bug fix: Color field also supports meta argument.
  • \n
  • Bug fix: Removes trailing whitespace from shortcodes without attributes.
  • \n
  • Bug fix: Removes double slash in editor css path.
  • \n
  • Full release notes
  • \n
\n\n

0.3.0 (April 27, 2015)

\n\n
    \n
  • Breaking change: We\'ve removed the compatibility shim for the magical content attribute. If you were using this to support editing inner content, you\'ll need to change your UI registration to use inner_content.
  • \n
  • New post_select field type for selecting from a list of posts. Supports an additional query parameter to modify the search query.
  • \n
  • Using a new post_type argument, shortcode UI can be registered for specific post types. This is helpful if you want the UI for a given shortcode to only appear on specific post types.
  • \n
  • For each shortcode attribute, a meta argument can be specified to add arbitrary HTML attributes to the field. We\'ve added a compatibility shim for the existing placeholder argument. This compatibility shim will be removed in v0.4.
  • \n
  • When inserting a shortcode, UI shows a helpful message when the shortcode doesn\'t have attributes to configure. Previously, the user was presented with a relatively blank screen.
  • \n
  • Our example plugin can be activated through the WordPress admin.
  • \n
  • Clicking \"Insert Post Element\" in the left menu effectively acts as back button to selecting a shortcode.
  • \n
  • Language around the editing experience reflects the shortcode you\'re editing. For instance, with a pullquote shortcode, \"Edit Post Element\" becomes \"Edit Pullquote\".
  • \n
  • Added Dutch translation.
  • \n
  • Source JavaScript files moved to js/src for clarity between source and built JavaScript.
  • \n
  • PHP files are scanned using PHP_CodeSniffer.
  • \n
  • Bug fix: Unquoted shortcode attributes are properly supported.
  • \n
  • Bug fix: Attachment field properly registers dependencies.
  • \n
  • Bug fix: \"Insert Post Element\" experience should work when visual editor is disabled. Shortcake is only loosely coupled with TinyMCE.
  • \n
  • Bug fix: Editor styles are loaded on after_setup_theme to prevent fatals.
  • \n
  • Full release notes.
  • \n
\n\n

0.2.3 (April 8, 2015)

\n\n
    \n
  • Fix WP 4.1 backwards compatibility issue by restoring arguments passed to TinyMCE view compatibility shim.
  • \n
\n\n

0.2.2 (April 6, 2015)

\n\n
    \n
  • Update arguments passed to TinyMCE View Render for WP 4.2 compatibility. Previously passed argument wasn\'t necessary, so removing doesn\'t break backwards compatibility.
  • \n
\n\n

0.2.1 (March 18, 2015)

\n\n
    \n
  • Ensure use of jQuery respects jQuery.noConflict() mode in WP.
  • \n
\n\n

0.2.0 (March 18, 2015)

\n\n
    \n
  • JS abstracted using Browserify.
  • \n
  • Enhancements to \"Add Post Element\" UI: shortcodes sorted alphabetically; search based on label.
  • \n
  • Much easier to select shortcode previews that include iframes.
  • \n
  • WordPress 4.2 compatibility.
  • \n
  • Added color picker to list of potential fields.
  • \n
  • Bug fix: IE11 compatibility.
  • \n
  • Bug fix: Checkbox field can now be unchecked.
  • \n
  • Full release notes.
  • \n
\n\n

0.1.0 (December 23, 2014)

\n\n
    \n
  • Supports all HTML5 input types for form fields.
  • \n
  • Shortcode preview tab within the editing experience.\n}* Re-labeled the UI around ?Post Elements?, which is more descriptive than ?Content Items.?
  • \n
  • Many bug fixes.
  • \n
  • Full release notes.
  • \n
','Shortcake (Shortcode UI)','Shortcake makes using WordPress shortcodes a piece of cake.','publish','closed','closed','','shortcode-ui','','','2017-03-16 20:28:10','2017-03-16 20:28:10','',0,'https://wordpress.org/plugins-wp/shortcode-ui/',0,'plugin','',0), (44,11655703,'2013-09-04 10:25:58','2013-09-04 10:25:58','\n

Features

\n\n
    \n
  • Draft and edit posts.
  • \n
  • Autosaves. Just publish when you?re done.
  • \n
  • Contextual tools. Bold, italic, strikethrough, link, headings, lists and blockquote.
  • \n
  • Add media with the WordPress media library.
  • \n
  • Handy shortcuts for lists (*, - or 1.), blockquote (>) and horizontal rule (---).
  • \n
  • Automatically embed media from this list. Just paste the URL.
  • \n
  • You can also link text by just pasting the URL over it.
  • \n
  • Add a featured image, if your theme supports it.
  • \n
\n\n

Configure and extend

\n\n

This plugin is designed to be ?plug and play?, but also configurable and extensible.

\n\n

Toolbars and buttons

\n\n

You can add more buttons to any of the toolbars with the following filters:

\n\n
    \n
  • fee_toolbar_caret for the caret,
  • \n
  • fee_toolbar_inline for normal selections,
  • \n
  • fee_toolbar_block for block selections.
  • \n
\n\n

E.g.

\n\n
add_filter(\'fee_toolbar_inline\', function($buttons){\n  return array_merge($buttons, array(\'subscript\'));\n});\n
\n\n

You may need to provide extra CSS and JS. See the Codex page and TinyMCE docs for more information about adding toolbar buttons with TinyMCE.

\n\n

Linking to the editor

\n\n

You can link to the editor from anywhere on the website with the normal edit link to the admin, and it will be picked up by the plugin. Use edit_post_link or similar.

\n\n

Custom Post Types Support

\n\n
add_post_type_support( \'page\', \'front-end-editor\' );\n
\n\n

Please make sure you also support the REST API.

\n\n

Disable

\n\n

If you?d like to disable the editor for certain posts, you can use the supports_fee filter.

\n\n
// Disable for the post with ID 1.\nadd_filter(\'supports_fee\', function($supports, $post) {\n  return $post->ID !== 1;\n}, 10, 2);\n
','Front-end Editor for WordPress','A simple way to write with WordPress.','publish','closed','closed','','wp-front-end-editor','','','2016-08-23 18:34:23','2016-08-23 18:34:23','',0,'https://wordpress.org/plugins-wp/wp-front-end-editor/',0,'plugin','',0), (47,9362879,'2015-07-14 05:21:36','2015-07-14 05:21:36','\n

This plugin is an ongoing WordPress core feature-plugin that facilitates testing smaller user-oriented features and changes proposed in core trac tickets. Components are added, modified, and eventually removed as ideas are first proposed, iterated on, and eventually accepted and patch-ified.

\n\n

Current components included:\n* Adaptive width: make the Customizer proportionally larger on very large screens. #32296

\n\n

If you\'re interested in contributing to this project, join the #core-customize or #design channels in WordPress core Slack.

\n\n\n
    \n
  1. Take the easy route and install through the WordPress plugin adder OR
  2. \n
  3. Download the .zip file and upload the unzipped folder to the /wp-content/plugins/ directory
  4. \n
  5. Activate the plugin through the \'Plugins\' menu in WordPress
  6. \n
  7. Visit the Customizer (Appearance -> Customize) to see the proposed changes in action.
  8. \n
  9. Leave feedback on the proposed changes on the relevant trac tickets from the list of components in the plugin description.
  10. \n
\n\n\n

See full details here: https://plugins.trac.wordpress.org/log/customizer-ui-experiments.

\n\n

0.3

\n\n
    \n
  • Remove the Better Contrast and Focus component (added to WordPress core in version 4.7).
  • \n
\n\n

0.2

\n\n
    \n
  • Remove the Device Previews component (added to WordPress core in version 4.5).
  • \n
\n\n

0.1

\n\n
    \n
  • Added the Device Previews component.
  • \n
  • Added the Better Contrast and Focus component.
  • \n
\n\n

0.0

\n\n
    \n
  • Initial commit.
  • \n
  • Includes the adaptive width component.
  • \n
','Customizer UI Experiments','This plugin is an ongoing WordPress core feature-plugin that facilitates testing smaller user-oriented features and changes proposed in core trac tick …','publish','closed','closed','','customizer-ui-experiments','','','2016-12-06 01:34:16','2016-12-06 01:34:16','',0,'https://wordpress.org/plugins-wp/customizer-ui-experiments/',0,'plugin','',0), (48,9362879,'2015-07-14 04:29:14','2015-07-14 04:29:14','\n

This plugin is a WordPress core feature-plugin that adds cropping to background images for parity with header images. For this particular feature the implementation is quite simple, but it\'s starting out as a plugin to gauge user interest in this feature and whether the feature improves the user experience of background images.

\n\n

This plugin requires WordPress 4.3 Beta 3 or later.

\n\n

If you\'re interested in contributing to this project, ping @celloexpressions on WordPress core Slack. Please comment on the trac ticket with ideas and feedback: https://core.trac.wordpress.org/ticket/32403.

\n\n\n
    \n
  1. Take the easy route and install through the WordPress plugin installer OR
  2. \n
  3. Download the .zip file and upload the unzipped folder to the /wp-content/plugins/ directory
  4. \n
  5. Activate the plugin through the \'Plugins\' menu in WordPress
  6. \n
  7. Visit the Customizer (Appearance -> Customize) to change your background image and be able to crop it after selecting it.
  8. \n
\n\n\n

1.1

\n\n
    \n
  • Fix initial display in WordPress 4.6 and later.
  • \n
  • Fix in-control preview of selected image in WordPress 4.6 and later.
  • \n
  • Ensure that the background-image context is set for selected images, so that they\'re marked as background images in the media library.
  • \n
  • Refine handling in conjunction with the improved background image properties UI in WordPress 4.7.
  • \n
\n\n

1.0

\n\n
    \n
  • Fix setting handling.
  • \n
\n\n

0.9

\n\n
    \n
  • Initial commit.
  • \n
  • Full functionality pending the completion of https://core.trac.wordpress.org/ticket/29211
  • \n
','Background Image Cropper','This plugin is a WordPress core feature-plugin that adds cropping to background images for parity with header images. For this particular feature the …','publish','closed','closed','','background-image-cropper','','','2016-12-09 05:17:06','2016-12-09 05:17:06','',0,'https://wordpress.org/plugins-wp/background-image-cropper/',0,'plugin','',0), (49,7045072,'2015-08-10 19:43:46','2015-08-10 19:43:46','\n

For more history, see: http://stephanis.info/2013/08/14/two-cents-on-two-factor/

\n\n

Get Involved

\n\n

Active development is taking place on GitHub, at https://github.com/georgestephanis/two-factor/

\n\n

Join the #core-passwords channel on http://wordpress.slack.com/ -- if you don\'t have a Slack account, sign up at http://chat.wordpress.org/

\n\n\n

See: https://github.com/georgestephanis/two-factor/commits/master

','Two-Factor','Enable Two-Factor Authentication using time-based one-time passwords (OTP, Google Authenticator), Universal 2nd Factor (FIDO U2F, YubiKey), email and …','publish','closed','closed','','two-factor','','','2017-03-31 15:32:35','2017-03-31 15:32:35','',0,'https://wordpress.org/plugins-wp/two-factor/',0,'plugin','',0), (50,1806476,'2010-05-20 18:48:47','2010-05-20 18:48:47','\n

The WordPress Importer will import the following content from a WordPress export file:

\n\n
    \n
  • Posts, pages and other custom post types
  • \n
  • Comments
  • \n
  • Custom fields and post meta
  • \n
  • Categories, tags and terms from custom taxonomies
  • \n
  • Authors
  • \n
\n\n

For further information and instructions please see the Codex page on Importing Content

\n\n

Filters

\n\n

The importer has a couple of filters to allow you to completely enable/block certain features:

\n\n
    \n
  • import_allow_create_users: return false if you only want to allow mapping to existing users
  • \n
  • import_allow_fetch_attachments: return false if you do not wish to allow importing and downloading of attachments
  • \n
  • import_attachment_size_limit: return an integer value for the maximum file size in bytes to save (default is 0, which is unlimited)
  • \n
\n\n

There are also a few actions available to hook into:

\n\n
    \n
  • import_start: occurs after the export file has been uploaded and author import settings have been chosen
  • \n
  • import_end: called after the last output from the importer
  • \n
\n\n\n
\n
Installation Instructions
\n

The quickest method for installing the importer is:

\n\n
    \n
  1. Visit Tools -> Import in the WordPress dashboard
  2. \n
  3. Click on the WordPress link in the list of importers
  4. \n
  5. Click \"Install Now\"
  6. \n
  7. Finally click \"Activate Plugin & Run Importer\"
  8. \n
\n\n

If you would prefer to do things manually then follow these instructions:

\n\n
    \n
  1. Upload the wordpress-importer folder to the /wp-content/plugins/ directory
  2. \n
  3. Activate the plugin through the \'Plugins\' menu in WordPress
  4. \n
  5. Go to the Tools -> Import screen, click on WordPress
  6. \n
\n
Help! I\'m getting out of memory errors or a blank screen.
\n

If your exported file is very large, the import script may run into your host\'s configured memory limit for PHP.

\n\n

A message like \"Fatal error: Allowed memory size of 8388608 bytes exhausted\" indicates that the script can\'t successfully import your XML file under the current PHP memory limit. If you have access to the php.ini file, you can manually increase the limit; if you do not (your WordPress installation is hosted on a shared server, for instance), you might have to break your exported XML file into several smaller pieces and run the import script one at a time.

\n\n

For those with shared hosting, the best alternative may be to consult hosting support to determine the safest approach for running the import. A host may be willing to temporarily lift the memory limit and/or run the process directly from their end.

\n\n

-- WordPress Codex: Importing Content

\n\n
\n\n\n

0.6.3

\n\n
    \n
  • Add support for import term metadata.
  • \n
  • Fix bug that caused slashes to be stripped from imported content.
  • \n
  • Fix bug that caused characters to be stripped inside of CDATA in some cases.
  • \n
  • Fix PHP notices.
  • \n
\n\n

0.6.2

\n\n
    \n
  • Add wp_import_existing_post filter. See: https://core.trac.wordpress.org/ticket/33721
  • \n
\n\n

0.6

\n\n
    \n
  • Support for WXR 1.2 and multiple CDATA sections
  • \n
  • Post aren\'t duplicates if their post_type\'s are different
  • \n
\n\n

0.5.2

\n\n
    \n
  • Double check that the uploaded export file exists before processing it. This prevents incorrect error messages when\nan export file is uploaded to a server with bad permissions and WordPress 3.3 or 3.3.1 is being used.
  • \n
\n\n

0.5

\n\n
    \n
  • Import comment meta (requires export from WordPress 3.2)
  • \n
  • Minor bugfixes and enhancements
  • \n
\n\n

0.4

\n\n
    \n
  • Map comment user_id where possible
  • \n
  • Import attachments from wp:attachment_url
  • \n
  • Upload attachments to correct directory
  • \n
  • Remap resized image URLs correctly
  • \n
\n\n

0.3

\n\n
    \n
  • Use an XML Parser if possible
  • \n
  • Proper import support for nav menus
  • \n
  • ... and much more, see Trac ticket #15197
  • \n
\n\n

0.1

\n\n
    \n
  • Initial release
  • \n
','WordPress Importer','Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.','publish','closed','closed','','wordpress-importer','','','2016-08-19 13:31:38','2016-08-19 13:31:38','',0,'https://wordpress.org/plugins-wp/wordpress-importer/',0,'plugin','',0), (85,5279457,'2011-01-20 02:21:38','2011-01-20 02:21:38','\n

Keep any WordPress site secure, increase traffic, and engage your readers.

\n\n

Traffic and SEO Tools

\n\n

Traffic is the lifeblood of any website. Jetpack includes:

\n\n
    \n
  • [free] Site stats and analytics
  • \n
  • [free] Automatic sharing on Facebook, Twitter, LinkedIn, Tumblr, Reddit, and WhatsApp
  • \n
  • [free] Related posts
  • \n
  • [paid] Search engine optimization tools for Google, Bing, Twitter, Facebook, and WordPress.com
  • \n
  • [paid] Advertising program that includes the best of AdSense, Facebook Ads, AOL, Amazon, Google AdX, and Yahoo
  • \n
\n\n

Security and Backup Services

\n\n

Stop worrying about data loss, downtime, and hacking. Jetpack provides:

\n\n
    \n
  • [free] Brute force attack protection
  • \n
  • [free] Downtime and uptime monitoring
  • \n
  • [free] Secured logins and two-factor authentication
  • \n
  • [paid] Malware scanning, code scanning, and threat resolution
  • \n
  • [paid] Site backups, restores, and migrations
  • \n
\n\n

Content Creation

\n\n

Add rich, beautifully-presented media -- no graphic design expertise necessary:

\n\n
    \n
  • [free] A high-speed CDN for your images
  • \n
  • [free] Carousels, slideshows, and tiled galleries
  • \n
  • [free] Simple embeds from YouTube, Google Documents, Spotify and more
  • \n
  • [free] Sidebar customization including Facebook, Twitter, and RSS feeds
  • \n
  • [free] Extra sidebar widgets including blog stats, calendar, and author widgets
  • \n
  • [paid] High-speed, ad-free, and high-definition video hosting
  • \n
\n\n

Discussion and Community

\n\n

Create a connection with your readers and keep them coming back to your site with:

\n\n
    \n
  • [free] Email subscriptions
  • \n
  • [free] Comment login with Facebook, Twitter, and Google
  • \n
  • [free] Fully-customizable contact forms
  • \n
  • [free] Infinite scroll for your posts
  • \n
\n\n

Expert Support

\n\n

We have an entire team of Happiness Engineers ready to help you. Ask your questions in the support forum, or contact us directly.

\n\n

Paid Services

\n\n

Most of Jetpack\'s features and services are free. Jetpack also provides advanced security and backup services, video hosting, site monetization, priority support, and more SEO tools in three simple and affordable plans.

\n\n

Get Started

\n\n

Installation is free, quick, and easy. Set up the free plan in minutes.

\n\n\n
\n
Installation Instructions
\n

Automated Installation

\n\n

Installation is free, quick, and easy. Install Jetpack from our site in minutes.

\n\n

Manual Alternatives

\n\n

Alternatively, install Jetpack via the plugin directory, or upload the files manually to your server and follow the on-screen instructions. If you need additional help read our detailed instructions.

\n
Is Jetpack Free?
\n

Yes! Jetpack\'s core features are and always will be free.

\n\n

These include: site stats, a high-speed CDN for images, related posts, downtime monitoring, brute force attack protection, automated sharing to social networks, sidebar customization, and many more.

\n
Should I purchase a paid plan?
\n

Jetpack\'s paid services include automated backups, security scanning, spam filtering, video hosting, site monetization, SEO tools, and priority support.

\n\n

If you\'re interested in learning more about the extra layers of protection and advanced tools available, learn more about our paid plans.

\n
Why do I need a WordPress.com account?
\n

Since Jetpack and its services are provided and hosted by WordPress.com, a WordPress.com account is required for Jetpack to function.

\n
I already have a WordPress account, but Jetpack isn\'t working. What\'s going on?
\n

A WordPress.com account is different from the account you use to log into your self-hosted WordPress. If you can log into WordPress.com, then you already have a WordPress.com account. If you can\'t, you can easily create one during installation.

\n
How do I view my stats?
\n

Once you\'ve installed Jetpack your stats will be available on WordPress.com/Stats, on the official WordPress mobile apps, and on your Jetpack dashboard.

\n
How do I contribute to Jetpack?
\n

There are opportunities for developers at all levels to contribute. Learn more about contributing to Jetpack or consider joining our beta program.

\n\n
\n\n\n

4.8.1

\n\n
    \n
  • Release date: April 5th, 2017
  • \n
  • Release post: http://wp.me/p1moTy-4N5
  • \n
\n\n

Bug Fixes

\n\n
    \n
  • An incompatibility with PHP versions lower than 5.4 was introduced in the last release, causing a fatal error that we immediately fixed.
  • \n
  • Sitemaps: Some plugins were relying on a function that was removed in the last release, which has been fixed.
  • \n
  • General: Clicking on the info icon in the settings area will no longer jump to the top of the page.
  • \n
  • General: The Anti-spam card will always display the correct status in the Jetpack dashboard.
  • \n
\n\n

4.8

\n\n
    \n
  • Release date: April 4th, 2017
  • \n
  • Release post: http://wp.me/p1moTy-4gA
  • \n
\n\n

Major Enhancements

\n\n
    \n
  • Easier to navigate Jetpack\'s feature settings in your dashboard and WordPress.com.
  • \n
  • New WordPress.com Toolbar provides quick access to site management, stats, and other services.
  • \n
  • New MailChimp Subscribe Popup widget.
  • \n
  • Sitemaps are faster and now support sites with a very large amount of posts.
  • \n
  • Contact Form now has a plain-text alternative and better avoids spam filters.
  • \n
  • Debug form includes extra information to better prioritize your support requests.
  • \n
  • Photon can now be used within the dashboard, and supports bbPress topics and replies.
  • \n
\n\n

Slightly Less Exciting Enhancements

\n\n
    \n
  • Improved previously confusing wording in Stats dashboard, and Featured Content options.
  • \n
  • You can now embed Apple Keynotes straight from icloud.com in your posts and pages.
  • \n
  • Changed Infinite Scroll button text on taxonomy page and added a new filter to short-circuit the is_last_batch() method.
  • \n
  • Open Graph now uses transients to save image IDs.
  • \n
  • You can now use full URLs in the Social Media Icons widget.
  • \n
  • Milestone widget now allows custom links to open in a new window.
  • \n
  • VideoPress videos can be used as headers in themes that support it, like Twenty Seventeen.
  • \n
  • Extracted the timezone offset method from the Upcoming Events widget so it can be used by other features.
  • \n
\n\n

Performance Improvements

\n\n
    \n
  • Database load is reduced during updates on large sites with multiple servers by retaining hashes for current and current-1 versions.
  • \n
  • Disk storage is reduced on large multisite networks by storing the jetpack_file_data option in the wp_sitemeta table.
  • \n
  • Jetpack plan data now uses the WordPress.com REST API.
  • \n
  • Slovakian language files now rely on WordPress.org\'s language packs.
  • \n
\n\n

Accessibility Improvements

\n\n
    \n
  • Improved post details clipping for better screen reader support.
  • \n
  • Updated custom language packs for multiple languages.
  • \n
\n\n

Security Improvements

\n\n
    \n
  • We now avoid path disclosure via cookies in PHP error messages.
  • \n
\n\n

Compatibility Improvements

\n\n
    \n
  • Removed deprecated functions get_theme and get_current_theme.
  • \n
  • Publicize now works with third-party plugins like WP Recipe Maker.
  • \n
  • Open Graph Meta Tags are now enabled when you use the \"Head, Footer and Post Injections\" plugin.
  • \n
  • Better support for WooCommerce data sync and backup.
  • \n
  • We now also sync the sync_via_cron setting, the user\'s chosen language, and WP Super Cache\'s globals and constants.
  • \n
  • We no longer sync post types from the WordPress Automatic Plugin and RSS AutoPilot to avoid synchronization issues.
  • \n
  • Sync settings can now be edited from the WordPress.com REST API to better troubleshoot sync issues.
  • \n
\n\n

Bug Fixes

\n\n
    \n
  • Gravatar is always displayed in Settings.
  • \n
  • Submenu items always use relative links.
  • \n
  • Contact Form avoids PHP notices when using the form in a Text widget.
  • \n
  • Content Options now correctly displays single characters word count on sites with multibyte languages.
  • \n
  • Administrator area translations fixed for several languages.
  • \n
  • Added proper support for Formal/Informal translation versions for languages that support them.
  • \n
  • Site Icons are always used as fallback Open Graph Image tags.
  • \n
  • Protect removes port number when server returns a port alongside a stored IP address.
  • \n
  • Filters ensure that more than 1,024 posts can be excluded from Related Posts.
  • \n
  • When the email is already subscribed we now show the correct notification in the subscription form.
  • \n
  • When using the Email sharing button, we now avoid syntax errors due to unexpected characters in the from name.
  • \n
  • Remove deprecated jetpack_publicize_post action.
  • \n
  • VideoPress now avoids PHP Notices when fetching video information.
  • \n
  • Instagram base URL now uses www in the Social Media Icons widget.
  • \n
  • All values entered in Facebook Page Plugin widget settings are now escaped.
  • \n
  • Widget Visibility now avoids memory issues on sites with a lot of registered users.
  • \n
\n\n

4.7.1

\n\n
    \n
  • Release date: March 14th, 2017
  • \n
  • Release post: http://wp.me/p1moTy-48Y
  • \n
\n\n

Bug Fixes

\n\n
    \n
  • Carousel: avoid javascript errors that may cause issues with Slideshows or Tiled Galleries.
  • \n
  • Markdown: always enable Markdown for posts whenever the module is active.
  • \n
  • Sharing: make sure that sharing buttons open in a small pop-up instead of a separate window.
  • \n
  • SSO: Avoid token or nonce errors when trying to log in to your site via the Secure Sign On option.
  • \n
  • VideoPress: add in the ability to get video thumbnails from the WordPress.com REST API.
  • \n
  • Widgets: improve rendering of the Image Widget via Photon.
  • \n
  • Widget Visibility: avoid empty widget visibility rules after updating to Jetpack 4.7.
  • \n
  • Widget Visibility: restore the option to make widgets appear on archive pages of different Custom Post Types.
  • \n
  • Widget Visibility: migrate widget visibility settings to the new major Page rule for Custom Post Types.
  • \n
  • Widget Visibility: add missing CSS for widget visibility settings on sites using an RTL language.
  • \n
\n\n

4.7

\n\n
    \n
  • Release date: March 7th, 2017
  • \n
  • Release post: http://wp.me/p1moTy-46L
  • \n
\n\n

Enhancements

\n\n
    \n
  • Quickly jump to post specific stats on WordPress.com with a new link.
  • \n
  • We\'ve added more information to our debug tools to improve your support experience.
  • \n
  • New HTML5 versions of our house ads are out.
  • \n
  • Display custom copyright EXIF information in the Carousel with this new filter.
  • \n
  • We\'ve highlighted the ability to export Contact Form feedback as it was being overlooked.
  • \n
  • If you have images on WordPress.com we\'re going to skip using Photon when the images include resize parameters.
  • \n
  • It is now possible to use the Sharing filter to customize the emails sent from the Email Sharing button.
  • \n
  • We\'ve updated the library powering the Print link in the Recipe shortcode.
  • \n
  • Customize the speed and display of your slideshows with new Slideshow shortcode filters.
  • \n
  • The Twitch.tv shortcode now uses Twitch\'s new embedded player.
  • \n
  • Social Menus now come with the option to use SVG icons.
  • \n
  • Customize the content of the Display Posts Widget with a new filter.
  • \n
  • We\'ve added a new email field to the Contact Info Widget.
  • \n
  • The Image and the Text widgets now use Photon if it is enabled.
  • \n
  • The WordPress.com REST API got several updates including using register_rest_route() consistently for registering, new date and time format settings, a filter for theme info results, new links and endpoints, and more.
  • \n
  • We cleaned up the Google+ Shortcode JS library and added a way to filter the SlideShare shortcode.
  • \n
\n\n

Performance Improvements

\n\n
    \n
  • Experience better performance with single page load caching of the media summary.
  • \n
  • We made some improvements to avoid slow queries on sites with thousands of images.
  • \n
  • The Top Posts widget now utilizes an endpoint from the WP.com REST API improving performance.
  • \n
  • Improve development mode performance by only calling site_url() once.
  • \n
  • We rewrote the way major/minor rules lists are generated to save bandwidth, and memory for sites using Widget Visibility.
  • \n
  • We\'ve removed sync options that weren\'t needed to save memory during the sync process.
  • \n
\n\n

Accessibility

\n\n
    \n
  • We\'ve improved the highlight of the stats range for a better visual experience and to make it consistent with other areas of the dashboard.
  • \n
  • Added a missing label to one of the fields in the Email sharing dialog.
  • \n
  • We\'ve enabled keyboard focus styling in the new admin interface.
  • \n
  • Increased padding to sharing buttons on mobile to avoid usability issues.
  • \n
  • We\'ve replaced Widget Visibility text labels with icons to improve usability on smaller devices.
  • \n
\n\n

Slightly Less Exciting Enhancements:

\n\n
    \n
  • We\'ve added a filter to allow you to remove the Comment Form title.
  • \n
  • The Development Mode notice got an update to include all possible options to activate Development mode.
  • \n
  • Jetpack registration function got an update and cleanup.
  • \n
  • A notice displayed to WooCommerce store owners now detects when WooCommerce Services is installed, but not active.
  • \n
  • We\'ve removed the Holiday Snow settings until you need them.
  • \n
  • Improved Infinite Scroll settings to reduce confusion.
  • \n
  • The HTML classes infinite-scroll and neverending are now applied using JS instead of PHP.
  • \n
  • We\'ve updated the support link appearing when you\'re locked out of your site.
  • \n
  • New Unit Tests were added to make sure Publicize doesn\'t break when making changes to the Publicize process.
  • \n
  • We\'ve added a sync filter to allow customizing timeout.
  • \n
  • The Top Posts widget now supports non-square image sizes.
  • \n
  • Added the Video GUID to the media API endpoint.
  • \n
\n\n

Improved Compatibility

\n\n
    \n
  • Fixed some W3C validation errors in Comments.
  • \n
  • Infinite Scroll now works beautifully with the Twenty Seventeen Theme.
  • \n
  • Translate new terms easier with an improvement to the translator comments.
  • \n
  • We switched to use Core functions to retrieve the list of sites in a multisite network for more accurate results.
  • \n
  • We added Product visibility to post meta whitelist, for better control of products displayed in Related Posts.
  • \n
  • We no longer sync specific post meta data added by Postman or WP RSS Mutli Importer to avoid performance issues during the sync process.
  • \n
  • We\'re now avoiding conflicts with plugins adding the core Video upload library to the post editor.
  • \n
  • Removed deprecated compatibility code for older versions of WordPress.
  • \n
  • We had some Shortcode conflicts with WordPress Post embeds, but that\'s been fixed.
  • \n
\n\n

Bug Fixes

\n\n
    \n
  • The Carousel jp_carousel_load_for_images_linked_to_file filter wasn\'t working well with Photon, this has been fixed.
  • \n
  • Carousel is now working well when loaded from infinite scroll.
  • \n
  • We removed double slashes from file paths in the Contact Form to avoid errors in specific server environments.
  • \n
  • Fixed a problem where CSS was being stripped when migrating from Jetpack\'s Custom CSS to Core\'s CSS editor.
  • \n
  • Our Debug Tool is now reporting the correct URL when WordPress lives in a subdirectory.
  • \n
  • Found and fixed a PHP error when uninstalling Jetpack.
  • \n
  • Infinite Scroll is no longer buggy when displaying the last page, and is more compatible with certain themes that were returning posts when there were none left to show.
  • \n
  • We\'re now skipping Photon for .ashx files.
  • \n
  • The Twitter character counter in Publicize got a fix to display info correctly.
  • \n
  • Related Posts are now displaying correctly for everyone, and we brought back the jetpack_sharing_headline_html filter.
  • \n
  • We\'ve improved Sharing to render custom sharing services correctly, include Open Graph Meta Tags, and avoid JavaScript errors when jQuery is enqueued in the footer.
  • \n
  • Synchronization scheduling issues have been resolved.
  • \n
  • We\'re now trimming spaces in URLs for Image and Display Posts Widgets.
  • \n
  • Widget Visibility wasn\'t playing nice on taxonomy pages, this is no longer the case.
  • \n
  • The WordPress.com REST API received a couple of fixes to remove PHP errors when editing via the WordPress.com interface, authentication errors when using third-party apps, and permission errors when trying to preview edited posts in the WordPress.com editor.
  • \n
\n\n

4.6

\n\n
    \n
  • Release date: February 7, 2017
  • \n
  • Release post: http://wp.me/p1moTy-40g
  • \n
\n\n

New Features and Improvements

\n\n
    \n
  • Enable Google Analytics without touching a line of code with this new Jetpack feature.
  • \n
\n\n

Performance Improvements

\n\n
    \n
  • We\'ve updated all outbound links to use HTTPS to improve performance and security.
  • \n
  • Photon now leverages a new WordPress core function to improve performance a bit.
  • \n
\n\n

Enhancements

\n\n
    \n
  • Keep an eye out for a note from WooCommerce on how your e-commerce store may benefit from our new USPS and CanadaPost shipping functionality.
  • \n
  • We\'ve added an error message if Publicize isn\'t functioning as it should be.
  • \n
  • The Twitter Widget timeline now displays the tweet limit count as 20, prior to this it appeared to have no limit.
  • \n
\n\n

Slightly Less Exciting Enhancements:

\n\n
    \n
  • In an effort to help us better understand features that are being used, Twitter\'s timeline widget and Twitter\'s shortcodes now pass Jetpack\'s partner ID.
  • \n
  • We\'ve added new API endpoints allowing us to enable translation auto-updates and pull post rows and metadata for backups.
  • \n
  • We\'re now retrieving all feature settings in the readable /settings endpoint.
  • \n
\n\n

Improved Compatibility

\n\n
    \n
  • We\'ve eliminated some notices and warnings when using Jetpack on a server running PHP 7.1 or on servers where print_r() is disabled.
  • \n
  • Photon now avoids PHP notices when your site is using plugins that do srcset CDN replacement.
  • \n
  • When the sharing options appear to be incorrect due to site configuration issues we force it to retrieve the right options avoiding potential fatal errors.
  • \n
  • We\'ve added some shortcode CSS and widget class names prefixes to avoid conflicts with other plugins.
  • \n
\n\n

Bug Fixes

\n\n
    \n
  • Some sites were using illegal multibyte characters and failing to sync posts, this has been fixed.
  • \n
  • IE11 was giving our admin layout a bit of a problem but we rectified that.
  • \n
  • There were some PHP notices popping up when a site has no posts so we got rid of them.
  • \n
  • The new Jetpack Ads feature will auto disable itself if your Jetpack plan doesn\'t support the feature.
  • \n
  • We fixed a few PHP notices and warnings related to the Custom CSS feature.
  • \n
  • The connection banner\'s \"dismiss\" icon was giving us a little trouble, but we got it fixed right up.
  • \n
  • The Likes feature was showing a PHP notice when there was no $post object, this has been fixed.
  • \n
  • We\'ve brought back the Twitter Widget \"noscrollbar\" option.
  • \n
  • We\'re now forcing only Photon URLs to HTTPS as your custom CDN URLs may use a different protocol.
  • \n
  • If a Publicize connection is not shared with all users on the site, do not trigger Publicize for the other users.
  • \n
  • Publicize was having trouble working with scheduled posts, this should be fixed now.
  • \n
  • SSO may not have been displaying the login form when using JSON API authorization. Sorry about that, we\'ve fixed it.
  • \n
  • We\'ve eliminated some PHP notices that were showing with some Shortcodes.
  • \n
  • There was a Top Posts Widget image size issue when using list layouts, but is no longer causing issues.
  • \n
  • We fixed some notices and warnings when updating data from the WordPress.com central interface.
  • \n
\n\n

4.5

\n\n
    \n
  • Release date: January 17, 2017
  • \n
  • Release post: http://wp.me/p1moTy-3Kc
  • \n
\n\n

This release introduces a brand-new module, Jetpack Ads, a brand-new VideoPress feature, and a lot of new shortcodes and widgets.

\n\n

Exciting New Features and Improvements:

\n\n
    \n
  • Generate revenue from your site with an all-new WordAds feature, which when enabled displays high-quality ads for your visitors.
  • \n
  • Today we are proud to release a fully redesigned VideoPress interface for easy uploading, management, and add-free playback of your fantastic videos now fully integrated with your Jetpack Premium or Professional plans.
  • \n
  • Spice up your sidebar with new widgets that display blog stats, author info, \"Follow my blog\" buttons, and even an event countdown.
  • \n
  • Embed your amazing 360° photos with the VR shortcode
  • \n
  • Link your visitors to your Tumblr or Twitch pages using the new icons in the Social Media Icons Widget.
  • \n
\n\n

Enhancements

\n\n
    \n
  • Use the beautiful Jetpack carousel feature to display single images.
  • \n
  • Turn on and update Related Posts right from the Customizer.
  • \n
  • Customize the output of the Related Posts headline using a new filter.
  • \n
\n\n

Performance and Security Improvements:

\n\n
    \n
  • Your Custom CSS will now be served in a separate stylesheet when it is more than 2,000 characters.
  • \n
  • Your Stats queries are now always being made over HTTPS.
  • \n
  • Holiday Snow files now load in the footer, but rest assured the snow still falls from above.
  • \n
  • We have improved Jetpack\'s synchronization process to support more plugins and use less resources.
  • \n
  • The jQuery Cycle script used by slideshow galleries is now minified, resulting in faster loading times.
  • \n
\n\n

Slightly Less Exciting Enhancements:

\n\n
    \n
  • The JSON API now allows updating translations and alternative theme installation methods.
  • \n
  • Public Custom Post Types are now automatically available via the WordPress.com REST API.
  • \n
  • We\'ve added a token-based authentication mechanism to the REST API in order for the site to be able to receive authenticated requests from WordPress.com.
  • \n
  • Use sync commands in Jetpack\'s WP CLI.
  • \n
  • You can now set the value for options directly in the Contact Form shortcode.
  • \n
  • Updated some verbiage around IP Whitelisting on the Protect settings screen.
  • \n
  • Custom sharing buttons got some new variables.
  • \n
  • RIP blip.tv ? we\'ve removed your shortcode.
  • \n
  • Improved Image and Display Posts Widget settings to provide more explanation and better error messages.
  • \n
  • We\'ve added a few new Content Options to the Customizer for supported themes.
  • \n
  • Improved the Facebook Widget to avoid confusion when editing width and height settings.
  • \n
  • Added and improved a few shortcodes.
  • \n
\n\n

Improved Compatibility:

\n\n
    \n
  • If your server is misconfigured and we can\'t get an IP address we\'re going to deactivate Protect and send you a notice so you\'re in the loop.
  • \n
  • The WPML compatibility file wasn\'t loading at the right time, but we\'ve fixed that.
  • \n
  • We\'ve improved compatibility with tools like Cavalcade to avoid stuck Cron jobs.
  • \n
  • Some selected WooCommerce data (order items and order item meta) are now syncing to WordPress.com.
  • \n
\n\n

Bug Fixes

\n\n
    \n
  • You\'ll notice numerous design improvements to the Jetpack UI.
  • \n
  • Accessibility is important to us so we\'ve made some improvements there.
  • \n
  • Missing attachments in the Carousel were causing an infinite loop, but we\'ve corrected that.
  • \n
  • Eliminated a PHP Notice when running the CLI wp jetpack command.
  • \n
  • PHP warnings in the Restaurant Menu Post type have seen their last day with us.
  • \n
  • Fixed a bug that displayed the wrong connected user for up to 24 hours after they disconnected.
  • \n
  • Removed a deprecated function to prevent notices when using Infinite Scroll in the Customizer.
  • \n
  • Long titles in Jetpack widgets weren\'t looking so great, so we cleaned them up.
  • \n
  • Before now you weren\'t able to create a child category from WordPress.com. Now you can!
  • \n
  • Rogue colons were showing up in the related posts area on sites with the Twenty Fourteen and Twenty Sixteen themes.
  • \n
  • Fixed a ReCaptcha error on the Email sharing button.
  • \n
  • Confirmed Instagram embeds actually load when using Infinite Scroll.
  • \n
  • Site Icons now display on the WordPress.com site management interface.
  • \n
  • Set a default time limit of 30 seconds when sending sync requests via Cron.
  • \n
  • Synchronized supported shortcodes on a site.
  • \n
  • Fixed an issue where empty categories weren\'t showing with the Widget Visibility feature dropdown.
  • \n
  • Fixed various little bugs when working with multiple widgets in the Customizer and in the Widgets admin screen.
  • \n
  • Added a Translate Widget default title in case you haven\'t defined one.
  • \n
  • The Top Posts Widget now avoids layout issues when using the Grid layout while displaying a post without an image.
  • \n
\n\n

4.4.2

\n\n
    \n
  • Release date: December 6, 2016
  • \n
  • Release post: http://wp.me/p1moTy-3JR
  • \n
\n\n

This release improves Jetpack compatibility with WordPress 4.7.

\n\n

Compatibility changes

\n\n
    \n
  • Custom CSS: Made the Custom CSS feature of Jetpack compatible with the CSS Customizer editor in WordPress 4.7.
  • \n
  • Sync: improved compatibility with the wp-missed-schedule plugin.
  • \n
\n\n

Bug Fixes

\n\n
    \n
  • Featured Content: made sure there is no infinite loop when removing the featured tag from the tag list.
  • \n
  • Admin: made sure help tabs are not being hidden.
  • \n
  • Admin: made At a Glance page work nicely when there is no backup data yet.
  • \n
  • Sync: now making sure that needed classes are loaded, preventing errors.
  • \n
  • Sync: cleared out unneeded scheduled jobs.
  • \n
\n\n

4.4.1

\n\n
    \n
  • Release date: November 22, 2016
  • \n
  • Release post: http://wp.me/p1moTy-3JR
  • \n
\n\n

Bug Fixes

\n\n
    \n
  • Fixed an issue where some users with slower servers would get an error on the Jetpack dashboard when WP_DEBUG was enabled.
  • \n
  • Fixed an issue where users on a Jetpack Professional plan who were paying monthly (as opposed to annually) wouldn?t be able to enable SEO Tools.
  • \n
\n\n

4.4

\n\n
    \n
  • Release date: November 21, 2016
  • \n
  • Release post: http://wp.me/p1moTy-3FE
  • \n
\n\n

Enhancements

\n\n
    \n
  • Additional unit tests have been added to improve Jetpack\'s development process and stability.
  • \n
  • Custom post types have been added to the WP REST API output.
  • \n
  • Many of the screenshots throughout the plugin have been replaced by SVGs in order to make Jetpack smaller.
  • \n
  • New endpoints have been added to allow the installation of plugin and theme zip files via the API.
  • \n
  • Twelve new filters to make Jetpack more extensible! See: http://wp.me/p1moTy-3FE.
  • \n
  • New widget: \"Google Translate\" to allow users to translate your site into their own language.
  • \n
  • New widget: \"My Community\" where you can see who recently interacted with your site.
  • \n
  • One of the biggest issues facing Jetpack users for years now has been difficulties in moving sites from one domain name to another. This update makes strides towards improving that process.
  • \n
  • Photon now uses HTTPS by default. Secure all the things!
  • \n
  • There are now helpful hints throughout the admin interface to make Jetpack easier to use.
  • \n
  • We now allow you to embed pins, boards and profiles from Pinterest.
  • \n
  • We\'ve added a new feature: SEO Tools, available to Jetpack Professional subscribers. You can read more about our plans here: https://jetpack.com/features/
  • \n
  • We\'ve made numerous improvements to the data sync process.
  • \n
\n\n

Bug Fixes:

\n\n
    \n
  • Fixed link to Akismet settings.
  • \n
  • Improved compatibility between Infinite Scroll and WPML.
  • \n
  • Move email notification settings back with the other email settings in the Discussion Settings.
  • \n
  • Various minor performance/compatibility fixes.
  • \n
\n\n

4.3.2

\n\n
    \n
  • Release date: October 13, 2016
  • \n
\n\n

Enhancements

\n\n
    \n
  • Unsaved changes were getting lost when users were navigating away from settings so we put in a confirmation message to prevent this from happening.
  • \n
  • We\'ve stopped counting carousel views in stats by default, you can use the jetpack_enable_carousel_stats filter to enable counting them again.
  • \n
  • Stats are now responding faster.
  • \n
  • There were several improvements and repairs made to sync including additional endpoints, performance enhancements, whitelisted data, better decision making around when to sync information, and more.
  • \n
  • Markdown now has a CSS class on footnotes.
  • \n
\n\n

Improved Compatibility:

\n\n
    \n
  • We\'ve improved compatibility with Kinsta by automatically turning on Staging Mode for Jetpack when in a staging environment.
  • \n
\n\n

Bug Fixes:

\n\n
    \n
  • Several fixes have been made to sync to repair issues with Publicize, Notifications, and Subscriptions.
  • \n
  • We removed PHP warnings by checking to make sure json language files like jetpack-en_US.json are readable before we load them.
  • \n
  • We found an unused option in Gravatar Hovercard settings and removed it.
  • \n
  • The correct support link is now being used to make it easier for you to connect with the Jetpack team if you need us.
  • \n
  • The permissions check for plugin information retrieval was fixed as well.
  • \n
  • Some plugins were adding content on outbound http requests causing an infinite loop we fixed this right up.
  • \n
  • We removed some warnings that were occurring when translations didn\'t exist by adding a fallback.
  • \n
  • We\'ve added Moroccan Arabic translations, and switched to language packs for Croatian, Spanish (Chile) and Greek.
  • \n
  • Sync was running into issues so we\'ve limited dequeue time to 1/3 of PHP\'s max execution time, which has unclogged the problem.
  • \n
  • We\'re now sending full and incremental queues separately so that a failure in one doesn\'t block the other.
  • \n
  • There was a JavaScript enqueuing error with our Sharing feature that has been repaired.
  • \n
  • The Top Posts widget now includes the ability to list attachment (media) pages.
  • \n
  • We weren\'t building CPT links correctly resulting in bad navigation, which is now fixed.
  • \n
  • We removed the form legend for default Tiled Gallery settings as it doesn\'t relate.
  • \n
  • With shortcodes we now return early from processing them if no string is passed, as they are required.
  • \n
','Jetpack by WordPress.com','The one plugin you need for stats, related posts, search engine optimization, social sharing, protection, backups, speed, and email list management.','publish','closed','closed','','jetpack','','','2017-04-05 19:59:54','2017-04-05 19:59:54','',0,'https://wordpress.org/plugins-wp/jetpack/',0,'plugin','',1), (94,8772187,'2016-02-25 19:56:09','2016-02-25 19:56:09','

Submit your plugin for hosting

\r\nNote that the plugin name you submit here will become the URL of the plugin in the directory. The name is not changeable later, so check your spelling and be sure that you get this form correct!\r\nFor example: \"My Cool Product Name\" will become https://wordpress.org/plugins/my-cool-product-name\r\n\r\n \r\n\r\n[wporg-plugin-upload]','Add your Plugin','','inherit','closed','closed','','10-revision-v1','','','2016-02-25 19:56:09','2016-02-25 19:56:09','',10,'https://wordpress.org/plugins-wp/10-revision-v1/',0,'revision','',0), (113,5279457,'2005-10-20 08:57:41','2005-10-20 08:57:41','\n

Akismet checks your comments and contact form submissions against our global database of spam to prevent your site from publishing malicious content. You can review the comment spam it catches on your blog\'s \"Comments\" admin screen.

\n\n

Major features in Akismet include:

\n\n
    \n
  • Automatically checks all comments and filters out the ones that look like spam.
  • \n
  • Each comment has a status history, so you can easily see which comments were caught or cleared by Akismet and which were spammed or unspammed by a moderator.
  • \n
  • URLs are shown in the comment body to reveal hidden or misleading links.
  • \n
  • Moderators can see the number of approved comments for each user.
  • \n
  • A discard feature that outright blocks the worst spam, saving you disk space and speeding up your site.
  • \n
\n\n

PS: You\'ll need an Akismet.com API key to use it. Keys are free for personal blogs; paid subscriptions are available for businesses and commercial sites.

\n\n\n

3.3

\n\n

Release Date - 23 February 2017

\n\n
    \n
  • Updated the Akismet admin pages with a new clean design.
  • \n
  • Fixed bugs preventing the akismet_add_comment_nonce and akismet_update_alert wrapper functions from working properly.
  • \n
  • Fixed bug preventing the loading indicator from appearing when re-checking all comments for spam.
  • \n
  • Added a progress indicator to the \"Check for Spam\" button.
  • \n
  • Added a success message after manually rechecking the Pending queue for spam.
  • \n
\n\n

3.2

\n\n

Release Date - 6 September 2016

\n\n
    \n
  • Added a WP-CLI module. You can now check comments and recheck the moderation queue from the command line.
  • \n
  • Stopped using the deprecated jQuery function .live().
  • \n
  • Fixed a bug in remove_comment_author_url() and add_comment_author_url() that could generate PHP notices.
  • \n
  • Fixed a bug that could cause an infinite loop for sites with very very very large comment IDs.
  • \n
  • Fixed a bug that could cause the Akismet widget title to be blank.
  • \n
\n\n

3.1.11

\n\n

Release Date - 12 May 2016

\n\n
    \n
  • Fixed a bug that could cause the \"Check for Spam\" button to skip some comments.
  • \n
  • Fixed a bug that could prevent some spam submissions from being sent to Akismet.
  • \n
  • Updated all links to use https:// when possible.
  • \n
  • Disabled Akismet debug logging unless WP_DEBUG and WP_DEBUG_LOG are both enabled.
  • \n
\n\n

3.1.10

\n\n

Release Date - 1 April 2016

\n\n
    \n
  • Fixed a bug that could cause comments caught as spam to be placed in the Pending queue.
  • \n
  • Fixed a bug that could have resulted in comments that were caught by the core WordPress comment blacklist not to have a corresponding History entry.
  • \n
  • Fixed a bug that could have caused avoidable PHP warnings in the error log.
  • \n
\n\n

3.1.9

\n\n

Release Date - 28 March 2016

\n\n
    \n
  • Add compatibility with Jetpack so that Jetpack can automatically configure Akismet settings when appropriate.
  • \n
  • Fixed a bug preventing some comment data from being sent to Akismet.
  • \n
\n\n

3.1.8

\n\n

Release Date - 4 March 2016

\n\n
    \n
  • Fixed a bug preventing Akismet from being used with some plugins that rewrite admin URLs.
  • \n
  • Reduced the amount of bandwidth used on Akismet API calls
  • \n
  • Reduced the amount of space Akismet uses in the database
  • \n
  • Fixed a bug that could cause comments caught as spam to be placed in the Pending queue.
  • \n
\n\n

3.1.7

\n\n

Release Date - 4 January 2016

\n\n
    \n
  • Added documentation for the \'akismet_comment_nonce\' filter.
  • \n
  • The post-install activation button is now accessible to screen readers and keyboard-only users.
  • \n
  • Fixed a bug that was preventing the \"Remove author URL\" feature from working in WordPress 4.4
  • \n
\n\n

3.1.6

\n\n

Release Date - 14 December 2015

\n\n
    \n
  • Improve the notices shown after activating Akismet.
  • \n
  • Update some strings to allow for the proper plural forms in all languages.
  • \n
\n\n

3.1.5

\n\n

Release Date - 13 October 2015

\n\n
    \n
  • Closes a potential XSS vulnerability.
  • \n
\n\n

3.1.4

\n\n

Release Date - 24 September 2015

\n\n
    \n
  • Fixed a bug that was preventing some users from automatically connecting using Jetpack if they didn\'t have a current Akismet subscription.
  • \n
  • Fixed a bug that could cause comments caught as spam to be placed in the Pending queue.
  • \n
  • Error messages and instructions have been simplified to be more understandable.
  • \n
  • Link previews are enabled for all links inside comments, not just the author\'s website link.
  • \n
\n\n

3.1.3

\n\n

Release Date - 6 July 2015

\n\n
    \n
  • Notify users when their account status changes after previously being successfully set up. This should help any users who are seeing blank Akismet settings screens.
  • \n
\n\n

3.1.2

\n\n

Release Date - 7 June 2015

\n\n
    \n
  • Reduced the amount of space Akismet uses in the commentmeta table.
  • \n
  • Fixed a bug where some comments with quotes in the author name weren\'t getting history entries
  • \n
  • Pre-emptive security improvements to ensure that the Akismet plugin can\'t be used by attackers to compromise a WordPress installation.
  • \n
  • Better UI for the key entry field: allow whitespace to be included at the beginning or end of the key and strip it out automatically when the form is submitted.
  • \n
  • When deactivating the plugin, notify the Akismet API so the site can be marked as inactive.
  • \n
  • Clearer error messages.
  • \n
\n\n

3.1.1

\n\n

Release Date - 17th March, 2015

\n\n
    \n
  • Improvements to the \"Remove comment author URL\" JavaScript
  • \n
  • Include the pingback pre-check from the 2.6 branch.
  • \n
\n\n

3.1

\n\n

Release Date - 11th March, 2015

\n\n
    \n
  • Use HTTPS by default for all requests to Akismet.
  • \n
  • Fix for a situation where Akismet might strip HTML from a comment.
  • \n
\n\n

3.0.4

\n\n

Release Date - 11th December, 2014

\n\n
    \n
  • Fix to make .htaccess compatible with Apache 2.4.
  • \n
  • Fix to allow removal of https author URLs.
  • \n
  • Fix to avoid stripping part of the author URL when removing and re-adding.
  • \n
  • Removed the \"Check for Spam\" button from the \"Trash\" and \"Approved\" queues, where it would have no effect.
  • \n
  • Allow automatic API key configuration when Jetpack is installed and connected to a WordPress.com account
  • \n
\n\n

3.0.3

\n\n

Release Date - 3rd November, 2014

\n\n
    \n
  • Fix for sending the wrong data to delete_comment action that could have prevented old spam comments from being deleted.
  • \n
  • Added a filter to disable logging of Akismet debugging information.
  • \n
  • Added a filter for the maximum comment age when deleting old spam comments.
  • \n
  • Added a filter for the number per batch when deleting old spam comments.
  • \n
  • Removed the \"Check for Spam\" button from the Spam folder.
  • \n
\n\n

3.0.2

\n\n

Release Date - 18th August, 2014

\n\n
    \n
  • Performance improvements.
  • \n
  • Fixed a bug that could truncate the comment data being sent to Akismet for checking.
  • \n
\n\n

3.0.1

\n\n

Release Date - 9th July, 2014

\n\n
    \n
  • Removed dependency on PHP\'s fsockopen function
  • \n
  • Fix spam/ham reports to work when reported outside of the WP dashboard, e.g., from Notifications or the WP app
  • \n
  • Remove jQuery dependency for comment form JavaScript
  • \n
  • Remove unnecessary data from some Akismet comment meta
  • \n
  • Suspended keys will now result in all comments being put in moderation, not spam.
  • \n
\n\n

3.0.0

\n\n

Release Date - 15th April, 2014

\n\n
    \n
  • Move Akismet to Settings menu
  • \n
  • Drop Akismet Stats menu
  • \n
  • Add stats snapshot to Akismet settings
  • \n
  • Add Akismet subscription details and status to Akismet settings
  • \n
  • Add contextual help for each page
  • \n
  • Improve Akismet setup to use Jetpack to automate plugin setup
  • \n
  • Fix \"Check for Spam\" to use AJAX to avoid page timing out
  • \n
  • Fix Akismet settings page to be responsive
  • \n
  • Drop legacy code
  • \n
  • Tidy up CSS and Javascript
  • \n
  • Replace the old discard setting with a new \"discard pervasive spam\" feature.
  • \n
\n\n

2.6.0

\n\n

Release Date - 18th March, 2014

\n\n
    \n
  • Add ajax paging to the check for spam button to handle large volumes of comments
  • \n
  • Optimize javascript and add localization support
  • \n
  • Fix bug in link to spam comments from right now dashboard widget
  • \n
  • Fix bug with deleting old comments to avoid timeouts dealing with large volumes of comments
  • \n
  • Include X-Pingback-Forwarded-For header in outbound WordPress pingback verifications
  • \n
  • Add pre-check for pingbacks, to stop spam before an outbound verification request is made
  • \n
\n\n

2.5.9

\n\n

Release Date - 1st August, 2013

\n\n
    \n
  • Update \'Already have a key\' link to redirect page rather than depend on javascript
  • \n
  • Fix some non-translatable strings to be translatable
  • \n
  • Update Activation banner in plugins page to redirect user to Akismet config page
  • \n
\n\n

2.5.8

\n\n

Release Date - 20th January, 2013

\n\n
    \n
  • Simplify the activation process for new users
  • \n
  • Remove the reporter_ip parameter
  • \n
  • Minor preventative security improvements
  • \n
\n\n

2.5.7

\n\n

Release Date - 13th December, 2012

\n\n
    \n
  • FireFox Stats iframe preview bug
  • \n
  • Fix mshots preview when using https
  • \n
  • Add .htaccess to block direct access to files
  • \n
  • Prevent some PHP notices
  • \n
  • Fix Check For Spam return location when referrer is empty
  • \n
  • Fix Settings links for network admins
  • \n
  • Fix prepare() warnings in WP 3.5
  • \n
\n\n

2.5.6

\n\n

Release Date - 26th April, 2012

\n\n
    \n
  • Prevent retry scheduling problems on sites where wp_cron is misbehaving
  • \n
  • Preload mshot previews
  • \n
  • Modernize the widget code
  • \n
  • Fix a bug where comments were not held for moderation during an error condition
  • \n
  • Improve the UX and display when comments are temporarily held due to an error
  • \n
  • Make the Check For Spam button force a retry when comments are held due to an error
  • \n
  • Handle errors caused by an invalid key
  • \n
  • Don\'t retry comments that are too old
  • \n
  • Improve error messages when verifying an API key
  • \n
\n\n

2.5.5

\n\n

Release Date - 11th January, 2012

\n\n
    \n
  • Add nonce check for comment author URL remove action
  • \n
  • Fix the settings link
  • \n
\n\n

2.5.4

\n\n

Release Date - 5th January, 2012

\n\n
    \n
  • Limit Akismet CSS and Javascript loading in wp-admin to just the pages that need it
  • \n
  • Added author URL quick removal functionality
  • \n
  • Added mShot preview on Author URL hover
  • \n
  • Added empty index.php to prevent directory listing
  • \n
  • Move wp-admin menu items under Jetpack, if it is installed
  • \n
  • Purge old Akismet comment meta data, default of 15 days
  • \n
\n\n

2.5.3

\n\n

Release Date - 8th Febuary, 2011

\n\n
    \n
  • Specify the license is GPL v2 or later
  • \n
  • Fix a bug that could result in orphaned commentmeta entries
  • \n
  • Include hotfix for WordPress 3.0.5 filter issue
  • \n
\n\n

2.5.2

\n\n

Release Date - 14th January, 2011

\n\n
    \n
  • Properly format the comment count for author counts
  • \n
  • Look for super admins on multisite installs when looking up user roles
  • \n
  • Increase the HTTP request timeout
  • \n
  • Removed padding for author approved count
  • \n
  • Fix typo in function name
  • \n
  • Set Akismet stats iframe height to fixed 2500px. Better to have one tall scroll bar than two side by side.
  • \n
\n\n

2.5.1

\n\n

Release Date - 17th December, 2010

\n\n
    \n
  • Fix a bug that caused the \"Auto delete\" option to fail to discard comments correctly
  • \n
  • Remove the comment nonce form field from the \'Akismet Configuration\' page in favor of using a filter, akismet_comment_nonce
  • \n
  • Fixed padding bug in \"author\" column of posts screen
  • \n
  • Added margin-top to \"cleared by ...\" badges on dashboard
  • \n
  • Fix possible error when calling akismet_cron_recheck()
  • \n
  • Fix more PHP warnings
  • \n
  • Clean up XHTML warnings for comment nonce
  • \n
  • Fix for possible condition where scheduled comment re-checks could get stuck
  • \n
  • Clean up the comment meta details after deleting a comment
  • \n
  • Only show the status badge if the comment status has been changed by someone/something other than Akismet
  • \n
  • Show a \'History\' link in the row-actions
  • \n
  • Translation fixes
  • \n
  • Reduced font-size on author name
  • \n
  • Moved \"flagged by...\" notification to top right corner of comment container and removed heavy styling
  • \n
  • Hid \"flagged by...\" notification while on dashboard
  • \n
\n\n

2.5.0

\n\n

Release Date - 7th December, 2010

\n\n
    \n
  • Track comment actions under \'Akismet Status\' on the edit comment screen
  • \n
  • Fix a few remaining deprecated function calls ( props Mike Glendinning )
  • \n
  • Use HTTPS for the stats IFRAME when wp-admin is using HTTPS
  • \n
  • Use the WordPress HTTP class if available
  • \n
  • Move the admin UI code to a separate file, only loaded when needed
  • \n
  • Add cron retry feature, to replace the old connectivity check
  • \n
  • Display Akismet status badge beside each comment
  • \n
  • Record history for each comment, and display it on the edit page
  • \n
  • Record the complete comment as originally submitted in comment_meta, to use when reporting spam and ham
  • \n
  • Highlight links in comment content
  • \n
  • New option, \"Show the number of comments you\'ve approved beside each comment author.\"
  • \n
  • New option, \"Use a nonce on the comment form.\"
  • \n
\n\n

2.4.0

\n\n

Release Date - 23rd August, 2010

\n\n
    \n
  • Spell out that the license is GPLv2
  • \n
  • Fix PHP warnings
  • \n
  • Fix WordPress deprecated function calls
  • \n
  • Fire the delete_comment action when deleting comments
  • \n
  • Move code specific for older WP versions to legacy.php
  • \n
  • General code clean up
  • \n
\n\n

2.3.0

\n\n

Release Date - 5th June, 2010

\n\n
    \n
  • Fix \"Are you sure\" nonce message on config screen in WPMU
  • \n
  • Fix XHTML compliance issue in sidebar widget
  • \n
  • Change author link; remove some old references to WordPress.com accounts
  • \n
  • Localize the widget title (core ticket #13879)
  • \n
\n\n

2.2.9

\n\n

Release Date - 2nd June, 2010

\n\n
    \n
  • Eliminate a potential conflict with some plugins that may cause spurious reports
  • \n
\n\n

2.2.8

\n\n

Release Date - 27th May, 2010

\n\n
    \n
  • Fix bug in initial comment check for ipv6 addresses
  • \n
  • Report comments as ham when they are moved from spam to moderation
  • \n
  • Report comments as ham when clicking undo after spam
  • \n
  • Use transition_comment_status action when available instead of older actions for spam/ham submissions
  • \n
  • Better diagnostic messages when PHP network functions are unavailable
  • \n
  • Better handling of comments by logged-in users
  • \n
\n\n

2.2.7

\n\n

Release Date - 17th December, 2009

\n\n
    \n
  • Add a new AKISMET_VERSION constant
  • \n
  • Reduce the possibility of over-counting spam when another spam filter plugin is in use
  • \n
  • Disable the connectivity check when the API key is hard-coded for WPMU
  • \n
\n\n

2.2.6

\n\n

Release Date - 20th July, 2009

\n\n
    \n
  • Fix a global warning introduced in 2.2.5
  • \n
  • Add changelog and additional readme.txt tags
  • \n
  • Fix an array conversion warning in some versions of PHP
  • \n
  • Support a new WPCOM_API_KEY constant for easier use with WordPress MU
  • \n
\n\n

2.2.5

\n\n

Release Date - 13th July, 2009

\n\n
    \n
  • Include a new Server Connectivity diagnostic check, to detect problems caused by firewalls
  • \n
\n\n

2.2.4

\n\n

Release Date - 3rd June, 2009

\n\n
    \n
  • Fixed a key problem affecting the stats feature in WordPress MU
  • \n
  • Provide additional blog information in Akismet API calls
  • \n
\n\n\n
\n
Installation Instructions
\n

Upload the Akismet plugin to your blog, Activate it, then enter your Akismet.com API key.

\n\n

1, 2, 3: You\'re done!

\n\n
','Akismet','Akismet checks your comments and contact form submissions against our global database of spam to protect you and your site from malicious content.','publish','closed','closed','','akismet','','','2017-02-23 17:23:55','2017-02-23 17:23:55','',0,'https://wordpress.org/plugins-wp/akismet/',0,'plugin','',2), (158,97335,'2007-08-02 12:43:39','2007-08-02 12:43:39','\n

Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple markup. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.

\n\n

Docs & Support

\n\n

You can find docs, FAQ and more detailed information about Contact Form 7 on contactform7.com. If you were unable to find the answer to your question on the FAQ or in any of the documentation, you should check the support forum on WordPress.org. If you can\'t locate any topics that pertain to your particular issue, post a new topic for it.

\n\n

Contact Form 7 Needs Your Support

\n\n

It is hard to continue development and support for this free plugin without contributions from users like you. If you enjoy using Contact Form 7 and find it useful, please consider making a donation. Your donation will help encourage and support the plugin\'s continued development and better user support.

\n\n

Recommended Plugins

\n\n

The following plugins are recommended for Contact Form 7 users:

\n\n
    \n
  • Flamingo by Takayuki Miyoshi - With Flamingo, you can save submitted messages via contact forms in the database.
  • \n
  • Postman by\nJason Hendriks - Postman is a next-generation SMTP Mailer, software that assists in the delivery of email generated by your WordPress site.
  • \n
  • Bogo by Takayuki Miyoshi - Bogo is a straight-forward multilingual plugin that doesn\'t cause headaches.
  • \n
\n\n

Translations

\n\n

You can translate Contact Form 7 on translate.wordpress.org.

\n\n\n

Do you have questions or issues with Contact Form 7? Use these support channels appropriately.

\n\n
    \n
  1. Docs
  2. \n
  3. FAQ
  4. \n
  5. Support Forum
  6. \n
\n\n

Support

\n
\n
Installation Instructions
\n
    \n
  1. Upload the entire contact-form-7 folder to the /wp-content/plugins/ directory.
  2. \n
  3. Activate the plugin through the \'Plugins\' menu in WordPress.
  4. \n
\n\n

You will find \'Contact\' menu in your WordPress admin panel.

\n\n

For basic usage, you can also have a look at the plugin web site.

\n\n
\n\n\n

For more information, see Releases.

\n\n

4.7

\n\n
    \n
  • Added REST API custom endpoints to manipulate contact form data.
  • \n
  • Config Validator: Added test items for field names and attachment file paths.
  • \n
  • Added custom DOM events: wpcf7invalid, wpcf7spam, wpcf7mailsent, wpcf7mailfailed and wpcf7submit.
  • \n
  • New action hook: wpcf7_after_flamingo.
  • \n
  • Added size option to select and select* form-tag types.
  • \n
  • Made it possible to use the 3rd parameter of wpcf7_add_form_tag() to specify \"features\" of the form-tag type.
  • \n
\n\n

4.6.1

\n\n
    \n
  • Fixed: \"0\" input could pass the minlength validation.
  • \n
  • Fixed: exclude_blank option was applied to all mail fields, not only to the message body.
  • \n
  • Fixed: wpcf7_autop() incorrectly inserted <br /> around hidden and block-type form-tags.
  • \n
  • Fixed: Applying strtolower() to uploaded file names was unnecessary and could cause troubles in a non-English environment.
  • \n
\n\n

4.6

\n\n
    \n
  • Ajax loader: HTML markup changed to <span> to be easily customizable with CSS.
  • \n
  • Appends a proper header and footer to HTML mail content automatically.
  • \n
  • [_serial_number] special mail-tag.
  • \n
  • New form-tag type for hidden fields.
  • \n
  • default:shortcode_attr form-tag option.
  • \n
  • WPCF7_Shortcode, WPCF7_ShortcodeManager, wpcf7_add_shortcode(), wpcf7_scan_shortcode(), and some other classes and functions have become deprecated.
  • \n
  • Removed all language files from the languages folder. Translations have moved to translate.wordpress.org.
  • \n
','Contact Form 7','Just another contact form plugin. Simple but flexible.','publish','open','closed','','contact-form-7','','','2017-03-03 19:28:31','2017-03-03 19:28:31','',0,'https://wordpress.org/plugins-wp/contact-form-7/',0,'plugin','',0), (159,213249,'2010-10-11 20:55:35','2010-10-11 20:55:35','\n

WordPress out of the box is already technically quite a good platform for SEO. This was true when Joost wrote his original WordPress SEO article in 2008 (updated every few months) and it\'s still true today, but that doesn\'t mean you can\'t improve it further! This plugin is written from the ground up by Joost de Valk and his team at Yoast to improve your site\'s SEO on all needed aspects. While this Yoast SEO plugin goes the extra mile to take care of all the technical optimization, more on that below, it first and foremost helps you write better content. Yoast SEO forces you to choose a focus keyword when you\'re writing your articles, and then makes sure you use that focus keyword everywhere.

\n\n
\n

Premium Support
\n The Yoast team does not always provide active support for the Yoast SEO plugin on the WordPress.org forums. One-on-one email support is available to people who bought the Premium Yoast SEO plugin only.\n Note that the Premium SEO plugin has several extra features too, including the option to have multiple focus keywords and a redirect manager, so it might be well worth your investment!

\n \n

You should also check out the Yoast Local SEO, Yoast News SEO and Yoast Video SEO extensions to Yoast SEO. These of course come with support too.

\n \n

Bug Reports
\n Bug reports for Yoast SEO are welcomed on GitHub. Please note GitHub is not a support forum, and issues that aren\'t properly qualified as bugs will be closed.

\n
\n\n

Write better content with Yoast SEO

\n\n

Using the snippet preview, you can see a rendering of what your post or page will look like in the search results, whether your title is too long or too short, and whether your meta description makes sense in the context of a search result. This way the plugin will help you not only increase rankings but also increase the click through rate for organic search results.

\n\n

Page Analysis

\n\n

The Yoast SEO plugins Page Analysis functionality checks simple things you\'re bound to forget. It checks, for instance, if you have images in your post and whether they have an alt tag containing the focus keyword for that post. It also checks whether your posts are long enough, whether you\'ve written a meta description and if that meta description contains your focus keyword, if you\'ve used any subheadings within your post, etc. etc.

\n\n

The plugin alsgruo allows you to write meta titles and descriptions for all your category, tag and custom taxonomy archives, giving you the option to further optimize those pages.

\n\n

Combined, this plugin makes sure that your content is the type of content search engines will love!

\n\n

Technical WordPress Search Engine Optimization

\n\n

While out of the box WordPress is pretty good for SEO, it needs some tweaks here and there. This Yoast SEO plugin guides you through some of the settings needed, for instance by reminding you to enable pretty permalinks. But it also goes beyond that, by automatically optimizing and inserting the meta tags and link elements that Google and other search engines like so much:

\n\n

Meta & Link Elements

\n\n

With the Yoast SEO plugin you can control which pages Google shows in its search results and which pages it doesn\'t show. By default, it will tell search engines to index all of your pages, including category and tag archives, but to only show the first pages in the search results. It\'s not very useful for a user to end up on the third page of your \"personal\" category, right?

\n\n

WordPress itself only shows canonical link elements on single pages, but Yoast SEO makes it output canonical link elements everywhere. Google has recently announced they would also use rel=\"next\" and rel=\"prev\" link elements in the head section of your paginated archives. This plugin adds those automatically. See this post for more info.

\n\n

XML Sitemaps

\n\n

The Yoast SEO plugin has the most advanced XML Sitemaps functionality in any WordPress plugin. Once you check the box, it automatically creates XML sitemaps and notifies Google & Bing of the sitemaps\' existence. These XML sitemaps include the images in your posts & pages too, so that your images may be found better in the search engines too.

\n\n

These XML Sitemaps will even work on large sites, because of how they\'re created, using one index sitemap that links to sub-sitemaps for each 1,000 posts. They will also work with custom post types and custom taxonomies automatically, while giving you the option to remove those from the XML sitemap should you wish to.

\n\n

Because of using XSL stylesheets for these XML Sitemaps, the XML sitemaps are easily readable for the human eye too, so you can spot things that shouldn\'t be in there.

\n\n

RSS Optimization

\n\n

Are you being outranked by scrapers? Instead of cursing at them, use them to your advantage! By automatically adding a link to your RSS feed pointing back to the original article, you\'re telling the search engine where they should be looking for the original. This way, the Yoast SEO plugin increases your own chance of ranking for your chosen keywords and gets rid of scrapers in one go!

\n\n

Breadcrumbs

\n\n

If your theme is compatible, and themes based on for instance Genesis or by WooThemes often are, you can use the built-in Breadcrumbs functionality. This allows you to create an easy navigation that is great for both users and search engines, and will support the search engines in understanding the structure of your site.

\n\n

Making your theme compatible isn\'t hard either, check these instructions.

\n\n

Edit your .htaccess and robots.txt file

\n\n

Using the built-in file editor, you can edit your WordPress blog\'s .htaccess and robots.txt file, giving you direct access to the two most powerful files, from an SEO perspective, in your WordPress install.

\n\n

Social Integration

\n\n

SEO and Social Media are heavily intertwined. That\'s why this plugin also comes with a Facebook OpenGraph implementation and will soon also support Google+ sharing tags.

\n\n

Multi-Site Compatible

\n\n

The Yoast SEO plugin, unlike some others, is fully Multi-Site compatible. The XML Sitemaps work fine in all setups and you even have the option, in the Network settings, to copy the settings from one blog to another, or make blogs default to the settings for a specific blog.

\n\n

Import & Export functionality

\n\n

If you have multiple blogs, setting up plugins like this one on all of them might seem like a daunting task. Except that it\'s not, because what you can do is simple: you set up the plugin once. You then export your settings and simply import them on all your other sites. It\'s that simple!

\n\n

Import functionality for other WordPress SEO plugins

\n\n

If you\'ve used All In One SEO Pack or HeadSpace2 before using this plugin, you might want to import all your old titles and descriptions. You can do that easily using the built-in import functionality. There\'s also import functionality for some of the older Yoast plugins, like Robots Meta and RSS footer.

\n\n

Should you have a need to import from another SEO plugin to Yoast SEO, or from a theme like Genesis or Thesis, you can use the SEO Data Transporter plugin, which will easily convert your SEO meta data from and to a whole set of plugins like Platinum SEO, SEO Ultimate, Greg\'s High Performance SEO, and themes like Headway, Hybrid, WooFramework, Catalyst etc.

\n\n

Read this migration guide if you still have questions about migrating from another SEO plugin to Yoast SEO.

\n\n

Yoast SEO Plugin in your Language!

\n\n

Currently a huge translation project is underway, translating Yoast SEO in as much as 24 languages. So far, the translations for French and Dutch are complete, but we still need help on a lot of other languages, so if you\'re good at translating, please join us at translate.yoast.com.

\n\n

News SEO

\n\n

Be sure to also check out the premium News SEO module if you need Google News Sitemaps. It tightly integrates with Yoast SEO to give you the combined power of News Sitemaps and full Search Engine Optimization.

\n\n

Further Reading

\n\n

For more info, check out the following articles:

\n\n\n\n

From within WordPress

\n\n
    \n
  1. Visit \'Plugins > Add New\'
  2. \n
  3. Search for \'Yoast SEO\'
  4. \n
  5. Activate Yoast SEO from your Plugins page.
  6. \n
  7. Go to \"after activation\" below.
  8. \n
\n\n

Manually

\n\n
    \n
  1. Upload the wordpress-seo folder to the /wp-content/plugins/ directory
  2. \n
  3. Activate the Yoast SEO plugin through the \'Plugins\' menu in WordPress
  4. \n
  5. Go to \"after activation\" below.
  6. \n
\n\n

After activation

\n\n
    \n
  1. You should see (a notice to start) the Yoast SEO configuration wizard.
  2. \n
  3. Go through the configuration wizard and set up the plugin for your site.
  4. \n
  5. You\'re done!
  6. \n
\n\n\n

You\'ll find answers to many of your questions on kb.yoast.com.

\n\n\n

4.5.0

\n\n

Release Date: March 21st, 2017

\n\n
    \n
  • Additions

    \n\n
  • \n
  • Bugfixes

    \n\n
      \n
    • Adds a check for the breadcrumbs-home option to prevent a blank entry being added to the crumbs array, props codemonkeynorth
    • \n
  • \n
  • Enhancements

    \n\n
      \n
    • Throws a warning in the admin for the RS Head Cleaner plugin, because the plugin cloaks.
    • \n
    • Improves copy about Yoast SEO Premium benefits.
    • \n
    • Adds link to our knowledge base article about connecting your website to Google Search Console.
    • \n
  • \n
\n\n

4.4.0

\n\n

Release date: February 28th, 2017

\n\n
    \n
  • Bugfixes:

    \n\n
      \n
    • Fixes a bug where a span tag wasn\'t closed correctly, props lubobill1990.
    • \n
    • Fixes a bug where there were deprecation warnings shown when an existing author was being updated.
    • \n
    • Fixes a bug where the user received an \'insufficient rights\' error when the advanced settings are disabled, but an advanced page is visited.
    • \n
  • \n
  • Enhancements:

    \n\n
      \n
    • Moves the options to disable keyword and content analysis from the general tab to the features tab.
    • \n
    • Improves styling of tables so they are viewable on mobile.
    • \n
    • Changes the links into shortlinks for the extensions page, helpcenter, facebook settings and premium popup.
    • \n
  • \n
\n\n

4.3.0

\n\n

Release Date: February 14th, 2017

\n\n
    \n
  • Bugfixes

    \n\n
      \n
    • Fixes the width of the readability column on post overview, props rikayla.
    • \n
  • \n
  • Enhancements

    \n\n
      \n
    • Improves feedback text for subheading too long assessment.
    • \n
  • \n
\n\n

Earlier versions

\n\n

For the changelog of earlier versions, please refer to the separate changelog.txt file.

','Yoast SEO','WordPress out of the box is already technically quite a good platform for SEO. This was true when Joost wrote his original WordPress SEO article in 20 …','publish','closed','closed','','wordpress-seo','','','2017-03-21 10:57:40','2017-03-21 10:57:40','',0,'https://wordpress.org/plugins-wp/wordpress-seo/',0,'plugin','',0), (160,116542,'2007-03-30 19:30:03','2007-03-30 19:30:03','\n

Use All in One SEO Pack to optimize your WordPress site for SEO. It\'s easy and works out of the box for beginners, and has advanced features and an API for developers.

\n\n

Upgrade to Pro Version

\n\n

Premium Support

\n\n

First created in 2007, see why AIOSEO is one of the all time most downloaded plugins for WordPress.

\n\n
    \n
  • XML Sitemap support - submit your sitemap to Google and Bing and improve your SEO
  • \n
  • Google AMP support (Accelerated Mobile Pages)
  • \n
  • Google Analytics support
  • \n
  • Support for SEO on Custom Post Types
  • \n
  • Advanced Canonical URLs
  • \n
  • Redirect attachment pages to parent post
  • \n
  • Automatically notifies search engines like Google and Bing about changes to your site
  • \n
  • Built-in API so other plugins/themes can access and extend functionality
  • \n
  • ONLY free plugin to provide SEO Integration for e-Commerce sites, including WooCommerce
  • \n
  • Nonce Security built into All in One SEO Pack
  • \n
  • Automatically optimizes your titles for Google and other search engines
  • \n
  • Generates META tags automatically
  • \n
  • Avoids the typical duplicate content found on WordPress blogs
  • \n
  • For beginners, you don\'t even have to look at the options, it works out-of-the-box. Just install.
  • \n
  • For advanced users, you can fine-tune everything to optimize your SEO
  • \n
  • You can override any title and set any META description and any META keywords you want.
  • \n
  • Compatibility with many other plugins
  • \n
  • Translated into 57 languages
  • \n
  • PHP 7 100% Compatible
  • \n
\n\n

Follow me on Twitter to keep up with the latest updates Michael\nTorbert

\n\n

https://www.youtube.com/watch?v=46MR4FboMaA

\n\n

Tags

\n\n

seo, SEO, All in One, google, meta, meta description, search engine optimization, xml sitemap, xml sitemaps, google sitemap, sitemap, sitemaps, robots meta, rss, rss footer, yahoo, bing, widget, Post, plugin, admin, posts, shortcode, sidebar, twitter, page, images, comments, image, news sitemaps, XML News Sitemaps, WordPress SEO, multisite, canonical, nofollow, noindex, keywords, meta keywords, description, webmaster tools, google webmaster tools, seo pack, schema.org, search engines, custom post types, custom taxonomies, canonical

\n\n\n

Please visit our complete Documentation before requesting support for SEO from the\nAll in One SEO Pack Support Forum

\n\n

Translations

\n
\n
General Settings
\n

https://www.youtube.com/watch?v=uGt6CVbA5bI

\n
XML Sitemaps
\n

https://www.youtube.com/watch?v=zvNU92Low8A

\n
Social Meta
\n

https://www.youtube.com/watch?v=Dfe49FiiAog

\n
Performance
\n

https://www.youtube.com/watch?v=A0VKinM5s00

\n\n
\n\n\n

All in One SEO Pack Changelog

','All in One SEO Pack','The original SEO plugin for WordPress, downloaded over 30,000,000 times since 2007.','publish','open','closed','','all-in-one-seo-pack','','','2017-04-06 17:16:45','2017-04-06 17:16:45','',0,'https://wordpress.org/plugins-wp/all-in-one-seo-pack/',0,'plugin','',0), (161,21498,'2005-06-16 09:33:19','2005-06-16 09:33:19','\n

This plugin will generate a special XML sitemap which will help search engines like Google, Bing, Yahoo and Ask.com to better index your blog. With such a sitemap, it\'s much easier for the crawlers to see the complete structure of your site and retrieve it more efficiently. The plugin supports all kinds of WordPress generated pages as well as custom URLs. Additionally it notifies all major search engines every time you create a post about the new content.

\n\n

Supported since over 9 years and rated as the best WordPress plugin, it will do exactly what it\'s supposed to do - providing a complete XML sitemap for search engines. It will not break your site, slow it down or annoy you. Guaranteed!

\n\n
\n

If you like the plugin, feel free to rate it (on the right side of this page) or donate via PayPal. I\'m gladly supporting this plugin since over 9 years! Thanks a lot! :)

\n
\n\n

Related Links:

\n\n\n\n

License

\n\n

Good news, this plugin is free for everyone! Since it\'s released under the GPL, you can use it free of charge on your personal or commercial blog. But if you enjoy this plugin, you can thank me and leave a small donation for the time I\'ve spent writing and supporting this plugin. And I really don\'t want to know how many hours of my life this plugin has already eaten ;)

\n\n

Translations

\n\n

The plugin comes with various translations, please refer to the WordPress Codex for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the sitemap.pot file which contains all definitions and may be used with a gettext editor like Poedit (Windows).

\n\n\n
    \n
  1. Install the plugin like you always install plugins, either by uploading it via FTP or by using the \"Add Plugin\" function of WordPress.
  2. \n
  3. Activate the plugin at the plugin administration page
  4. \n
  5. If you want: Open the plugin configuration page, which is located under Settings -> XML-Sitemap and customize settings like priorities and change frequencies.
  6. \n
  7. The plugin will automatically update your sitemap of you publish a post, so there is nothing more to do :)
  8. \n
\n\n\n
\n
Where can I find the options page of the plugin?
\n

It is under Settings > XML Sitemap. I know nowadays many plugins add top-level menu items, but in most of the cases it is just not necessary. I\'ve seen WP installations which looked like an Internet Explorer ten years ago with 20 toolbars installed. ;-)

\n
Do I have to create a sitemap.xml and sitemap.xml.gz by myself?
\n

Not anymore. Since version 4, these files are dynamically generated. There must be no sitemap.xml or sitemap.xml.gz in your blog directory anymore! The plugin will try to rename them to sitemap.xml.bak if they still exists.

\n
Does this plugin use static files or \"I can\'t find the sitemap.xml file!\"
\n

Not anymore. Since version 4, these files are dynamically generated just like any other WordPress content.

\n
There are no comments yet (or I\'ve disabled them) and all my postings have a priority of zero!
\n

Please disable automatic priority calculation and define a static priority for posts.

\n
So many configuration options... Do I need to change them?
\n

No, only if you want to. Default values are ok for most sites.

\n
Does this plugin work with all WordPress versions?
\n

This version works with WordPress 3.3 and better. If you\'re using an older version, please check the Google Sitemaps Plugin Homepage for the legacy releases. There is a working release for every WordPress version since 1.5, but you really should consider updating your WordPress installation!

\n
My question isn\'t answered here
\n

Most of the plugin options are described at the plugin homepage as well as the dedicated Google Sitemaps FAQ.

\n
My question isn\'t even answered there
\n

Please post your question at the WordPress support forum and tag your post with \"google-sitemap-generator\".

\n
What\'s new in the latest version?
\n

The changelog is maintained here

\n
Why is the changelog on a separate page and not here?
\n

The WordPress.org repository is just another place to download this plugin. I don\'t want to maintain too many pages with the same content. Thank you for your understanding!

\n\n
\n\n\n

You can always find the changelog on the plugin website, since I don\'t like to maintain the same content on different pages. Thank you for your understanding!

','Google XML Sitemaps','This plugin will generate a special XML sitemap which will help search engines to better index your blog.','publish','open','closed','','google-sitemap-generator','','','2016-04-29 13:57:38','2016-04-29 13:57:38','',0,'https://wordpress.org/plugins-wp/google-sitemap-generator/',0,'plugin','',0), (162,318450,'2009-01-15 14:20:42','2009-01-15 14:20:42','\n

Limit the number of login attempts possible both through normal login as well as using auth cookies.

\n\n

By default WordPress allows unlimited login attempts either through the login page or by sending special cookies. This allows passwords (or hashes) to be brute-force cracked with relative ease.

\n\n

Limit Login Attempts blocks an Internet address from making further attempts after a specified limit on retries is reached, making a brute-force attack difficult or impossible.

\n\n

Features

\n\n
    \n
  • Limit the number of retry attempts when logging in (for each IP). Fully customizable
  • \n
  • Limit the number of attempts to log in using auth cookies in same way
  • \n
  • Informs user about remaining retries or lockout time on login page
  • \n
  • Optional logging, optional email notification
  • \n
  • Handles server behind reverse proxy
  • \n
  • It is possible to whitelist IPs using a filter. But you probably shouldn\'t. :-)
  • \n
\n\n

Translations: Bulgarian, Brazilian Portuguese, Catalan, Chinese (Traditional), Czech, Dutch, Finnish, French, German, Hungarian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Turkish

\n\n

Plugin uses standard actions and filters only.

\n\n\n
    \n
  1. Download and extract plugin files to a wp-content/plugin directory.
  2. \n
  3. Activate the plugin through the WordPress admin interface.
  4. \n
  5. Customize the settings on the options page, if desired. If your server is located behind a reverse proxy make sure to change this setting.
  6. \n
\n\n

If you have any questions or problems please make a post here: http://wordpress.org/tags/limit-login-attempts

\n\n\n
\n
Why not reset failed attempts on a successful login?
\n

This is very much by design. Otherwise you could brute force the \"admin\" password by logging in as your own user every 4th attempt.

\n
What is this option about site connection and reverse proxy?
\n

A reverse proxy is a server in between the site and the Internet (perhaps handling caching or load-balancing). This makes getting the correct client IP to block slightly more complicated.

\n\n

The option default to NOT being behind a proxy -- which should be by far the common case.

\n
How do I know if my site is behind a reverse proxy?
\n

You probably are not or you would know. We show a pretty good guess on the option page. Set the option using this unless you are sure you know better.

\n
Can I whitelist my IP so I don\'t get locked out?
\n

First please consider if you really need this. Generally speaking it is not a good idea to have exceptions to your security policies.

\n\n

That said, there is now a filter which allows you to do it: \"limit_login_whitelist_ip\".

\n\n

Example:\nfunction my_ip_whitelist($allow, $ip) {\n return ($ip == \'my-ip\') ? true : $allow;\n}\nadd_filter(\'limit_login_whitelist_ip\', \'my_ip_whitelist\', 10, 2);

\n\n

Note that we still do notification and logging as usual. This is meant to allow you to be aware of any suspicious activity from whitelisted IPs.

\n
I locked myself out testing this thing, what do I do?
\n

Either wait, or:

\n\n

If you know how to edit / add to PHP files you can use the IP whitelist functionality described above. You should then use the \"Restore Lockouts\" button on the plugin settings page and remove the whitelist function again.

\n\n

If you have ftp / ssh access to the site rename the file \"wp-content/plugins/limit-login-attempts/limit-login-attempts.php\" to deactivate the plugin.

\n\n

If you have access to the database (for example through phpMyAdmin) you can clear the limit_login_lockouts option in the wordpress options table. In a default setup this would work: \"UPDATE wp_options SET option_value = \'\' WHERE option_name = \'limit_login_lockouts\'\"

\n\n
\n\n\n

1.7.1

\n\n

This version fixes a security bug in version 1.6.2 and 1.7.0. Please upgrade immediately.

\n\n

\"Auth cookies\" are special cookies set at login that authenticating you to the system. It is how WordPress \"remembers\" that you are logged in between page loads.

\n\n

During lockout these are supposed to be cleared, but a change in 1.6.2 broke this. It allowed an attacker to keep trying to break these cookies during a lockout.

\n\n

Lockout of normal password login attempts still worked as it should, and it appears that all \"auth cookie\" attempts would keep getting logged.

\n\n

In theory the \"auth cookie\" is quite resistant to brute force attack. It contains a cryptographic hash of the user password, and the difficulty to break it is not based on the password strength but instead on the cryptographic operations used and the length of the hash value. In theory it should take many many years to break this hash. As theory and practice does not always agree it is still a good idea to have working lockouts of any such attempts.

\n\n

1.7.0

\n\n
    \n
  • Added filter that allows whitelisting IP. Please use with care!!
  • \n
  • Update to Spanish translation, thanks to Marcelo Pedra
  • \n
  • Updated Swedish translation
  • \n
  • Tested against WordPress 3.3.2
  • \n
\n\n

1.6.2

\n\n
    \n
  • Fix bug where log would not get updated after it had been cleared
  • \n
  • Do plugin setup in \'init\' action
  • \n
  • Small update to Spanish translation file, thanks to Marcelo Pedra
  • \n
  • Tested against WordPress 3.2.1
  • \n
\n\n

1.6.1

\n\n
    \n
  • (WordPress 3.0+) An invalid cookie can sometimes get sent multiple times before it gets cleared, resulting in multiple failed attempts or even a lockout from a single invalid cookie. Store the latest failed cookie to make sure we only count it as one failed attempt
  • \n
  • Define \"Text Domain\" correctly
  • \n
  • Include correct Dutch tranlation file. Thanks to Martin1 for noticing. Thanks again to Bjorn Wijers for the translation
  • \n
  • Updated POT file for this version
  • \n
  • Tested against WordPress 3.1-RC4
  • \n
\n\n

1.6.0

\n\n
    \n
  • Happy New Year
  • \n
  • Tested against WordPress 3.1-RC1
  • \n
  • Plugin now requires WordPress version 2.8+. Of course you should never ever use anything but the latest version
  • \n
  • Fixed deprecation warnings that had been piling up with the old version requirement. Thanks to Johannes Ruthenberg for the report that prompted this
  • \n
  • Removed auth cookie admin check for version 2.7.
  • \n
  • Make sure relevant values in $_COOKIE get cleared right away on auth cookie validation failure. There are still some problems with cookie auth handling. The lockout can trigger prematurely in rare cases, but fixing it is plugin version 2 stuff unfortunately.
  • \n
  • Changed default time for retries to reset from 24 hours to 12 hours. The security impact is very minor and it means the warning will disappear \"overnight\"
  • \n
  • Added question to FAQ (\"Why not reset failed attempts on a successful login?\")
  • \n
  • Updated screenshots
  • \n
\n\n

1.5.2

\n\n
    \n
  • Reverted minor cookie-handling cleanup which might somehow be responsible for recently reported cookie related lockouts
  • \n
  • Added version 1.x Brazilian Portuguese translation, thanks to Luciano Passuello
  • \n
  • Added Finnish translation, thanks to Ari Kontiainen
  • \n
\n\n

1.5.1

\n\n\n\n

1.5

\n\n\n\n

1.4.1

\n\n
    \n
  • Added Turkish translation, thanks to Yazan Canarkadas
  • \n
\n\n

1.4

\n\n
    \n
  • Protect admin page update using wp_nonce
  • \n
  • Added Czech translation, thanks to Jakub Jedelsky
  • \n
\n\n

1.3.2

\n\n
    \n
  • Added Bulgarian translation, thanks to Hristo Chakarov
  • \n
  • Added Norwegian translation, thanks to Rune Gulbrandsøy
  • \n
  • Added Spanish translation, thanks to Marcelo Pedra
  • \n
  • Added Persian translation, thanks to Mostafa Soufi
  • \n
  • Added Russian translation, thanks to Jack Leonid (http://studio-xl.com)
  • \n
\n\n

1.3.1

\n\n
    \n
  • Added Catalan translation, thanks to Robert Buj
  • \n
  • Added Romanian translation, thanks to Robert Tudor
  • \n
\n\n

1.3

\n\n
    \n
  • Support for getting the correct IP for clients while server is behind reverse proxy, thanks to Michael Skerwiderski
  • \n
  • Added German translation, thanks to Michael Skerwiderski
  • \n
\n\n

1.2

\n\n
    \n
  • No longer replaces pluggable function when cookie handling active. Re-implemented using available actions and filters
  • \n
  • Filter error messages during login to avoid information leak regarding available usernames
  • \n
  • Do not show retries or lockout messages except for login (registration, lost password pages). No change in actual enforcement
  • \n
  • Slightly more aggressive in trimming old retries data
  • \n
\n\n

1.1

\n\n
    \n
  • Added translation support
  • \n
  • Added Swedish translation
  • \n
  • During lockout, filter out all other login errors
  • \n
  • Minor cleanups
  • \n
\n\n

1.0

\n\n
    \n
  • Initial version
  • \n
','Limit Login Attempts','Limit rate of login attempts, including by way of cookies, for each IP. Fully customizable.','publish','open','closed','','limit-login-attempts','','','2012-06-01 17:25:45','2012-06-01 17:25:45','',0,'https://wordpress.org/plugins-wp/limit-login-attempts/',0,'plugin','',0), (163,6648251,'2011-09-27 15:32:48','2011-09-27 15:32:48','\n

WooCommerce is a free eCommerce plugin that allows you to sell anything, beautifully. Built to integrate seamlessly with WordPress, WooCommerce is the world?s favorite eCommerce solution that gives both store owners and developers complete control.

\n\n

With endless flexibility and access to hundreds of free and premium WordPress extensions, WooCommerce now powers 30% of all online stores -- more than any other platform.

\n\n

[youtube https://www.youtube.com/watch?v=1KahlicghaE]

\n\n

Sell anything, anywhere

\n\n

With WooCommerce, you can sell both physical and digital goods in all shapes and sizes, offer product variations, multiple configurations, and instant downloads to shoppers, and even sell affiliate goods from online marketplaces.

\n\n

With premium extensions, you can offer bookings, memberships, and recurring subscriptions. Perhaps you?d like to sell monthly subscriptions for physical goods, or offer your members a discount on digital downloads? It?s all possible.

\n\n

Ship wherever you like

\n\n

Offer free shipping, flat rate shipping, or make real-time calculations. Limit your shipments to specific countries, or open your store up to the world. Shipping is highly configurable, and WooCommerce even supports drop shipping.

\n\n

Extensive payment options

\n\n

WooCommerce comes bundled with the ability to accept major credit cards, PayPal, BACS (bank transfers), and cash on delivery. Need additional options? More than 140 region-specific gateways integrate with WooCommerce, including popular choices like Stripe, Authorize.Net, and Amazon Payments.

\n\n

You control it all -- forever

\n\n

WooCommerce gives you complete control of your store, from taxes to stock levels to customer accounts. Add and remove extensions, change your design, and switch settings as you please. It?s all under your control.

\n\n

One of the biggest risks of using a hosted eCommerce platform is what happens to your store if the provider closes up shop. With WooCommerce, you have complete control, so there?s never any reason to worry. Your data belongs to you -- and it?s kept secure, thanks to regular audits by industry leaders.

\n\n

Define your style with Storefront

\n\n

Storefront is a free WordPress theme available to any WooCommerce store. Along with deep WooCommerce integration, Storefront prioritizes speed and uptime while eliminating theme and plugin conflicts during major updates.

\n\n

Define your style even further by customizing Storefront to your liking or choosing from one of our several Storefront child themes. It?s all up to you, and all open source.

\n\n

Built with developers in mind

\n\n

Extendable, adaptable, and open source -- WooCommerce was created with developers in mind. With its strong, robust framework, you can scale your client?s store all the way from basic to high-end (infinity and beyond).

\n\n

Built with a REST API, WooCommerce can integrate with virtually any service. Your store?s data can be accessed anywhere, anytime, 100% securely. WooCommerce allows developers to easily create, modify, and grow a store that meets their specifications.

\n\n

No matter the size of the store you want to build, WooCommerce will scale to meet your requirements. With a growing collection of more than 300 extensions, you can enhance each store?s features to meet your client?s unique needs -- or even create your own solution.

\n\n

If security is a concern, rest easy. WooCommerce is audited by a dedicated team of developers working around the clock to identify and patch any and all discovered bugs.

\n\n

We also support WooCommerce and all its extensions with comprehensive, easily-accessible documentation. With our docs, you?ll learn how to create the exact site your client needs.

\n\n

Extensions galore

\n\n

WordPress.org is home to some amazing extensions for WooCommerce, including:

\n\n\n\n

Keen to see them all? Search WordPress.org for ?WooCommerce? to dive in.

\n\n

If you?re looking for something endorsed and maintained by the developers who built WooCommerce, there are a plethora of premium eCommerce extensions, the most popular of which include:

\n\n\n\n

And there?s plenty more where they came from. Visit our extensions page to find out everything you?re capable of and all that\'s possible with premium WooCommerce extensions.

\n\n

Join our growing community

\n\n

When you download WooCommerce, you join a community of more than a million store owners, developers, and WordPress enthusiasts. We?re one of the fastest-growing open source communities online, and whether you?re a n00b or a Ninja, we?d love to have you!

\n\n

If you?re interested in contributing to WooCommerce we?ve got more than 350 contributors, and there?s always room for more. Head over to the WooCommerce GitHub Repository to find out how you can pitch in.

\n\n

Want to add a new language to WooCommerce? Swell! You can contribute via translate.wordpress.org.

\n\n

And, finally, consider joining or spearheading a WooCommerce Meetup locally, more about those here.

\n\n\n
\n
Installation Instructions
\n

Minimum Requirements

\n\n
    \n
  • PHP version 5.2.4 or greater (PHP 5.6 or greater is recommended)
  • \n
  • MySQL version 5.0 or greater (MySQL 5.6 or greater is recommended)
  • \n
  • Some payment gateways require fsockopen support (for IPN access)
  • \n
  • WooCommerce 2.5 requires WordPress 4.1+
  • \n
  • WooCommerce 2.6 requires WordPress 4.4+
  • \n
\n\n

Visit the WooCommerce server requirements documentation for a detailed list of server requirements.

\n\n

Automatic installation

\n\n

Automatic installation is the easiest option as WordPress handles the file transfers itself and you don?t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu and click Add New.

\n\n

In the search field type ?WooCommerce? and click Search Plugins. Once you?ve found our eCommerce plugin you can view details about it such as the point release, rating and description. Most importantly of course, you can install it by simply clicking ?Install Now?.

\n\n

Manual installation

\n\n

The manual installation method involves downloading our eCommerce plugin and uploading it to your webserver via your favourite FTP application. The WordPress codex contains instructions on how to do this here.

\n\n

Updating

\n\n

Automatic updates should work like a charm; as always though, ensure you backup your site just in case.

\n\n

If on the off-chance you do encounter issues with the shop/category pages after an update you simply need to flush the permalinks by going to WordPress > Settings > Permalinks and hitting \'save\'. That should return things to normal.

\n\n

Dummy data

\n\n

WooCommerce comes with some dummy data you can use to see how products look; either import dummy_data.xml via the WordPress importer or use our CSV Import Suite plugin to import dummy_data.csv and dummy_data_variations.csv.

\n
Where can I find WooCommerce documentation and user guides?
\n

For help setting up and configuring WooCommerce please refer to our user guide

\n\n

For extending or theming WooCommerce, see our codex.

\n
Where can I get support or talk to other users?
\n

If you get stuck, you can ask for help in the WooCommerce Plugin Forum.

\n\n

For help with premium extensions from WooThemes, use our helpdesk.

\n
Will WooCommerce work with my theme?
\n

Yes; WooCommerce will work with any theme, but may require some styling to make it match nicely. Please see our codex for help. If you\'re looking for a theme with built in WooCommerce integration we recommend Storefront.

\n
Where can I request new features, eCommerce themes and extensions?
\n

You can vote on and request new features and extensions in our WooIdeas board

\n
Where can I report bugs or contribute to the project?
\n

Bugs can be reported either in our support forum or preferably on the WooCommerce GitHub repository.

\n
Where can I find the REST API documentation?
\n

You can find the documentation of our REST API on the WooCommerce REST API Docs.

\n
WooCommerce is awesome! Can I contribute?
\n

Yes you can! Join in on our GitHub repository :)

\n\n
\n\n\n

3.0.1 - 2017-04-06

\n\n
    \n
  • Fix - Show catalog hidden products within grouped products.
  • \n
  • Fix - Fade in the gallery in if no images are set or it\'s custom.
  • \n
  • Fix - Use wc_deprecated_function in WC_Deprecated_Hooks so notices aren\'t output in ajax requests.
  • \n
  • Fix - Added back the ability to include extra items to the System Status using the woocommerce_system_status_environment_rows filter.
  • \n
  • Fix - Coupon category restrictions and limits for variations.
  • \n
  • Fix - Allow shortcodes and HTML in variation descriptions like in 2.6.
  • \n
  • Fix - Unset post date when duplicating products.
  • \n
  • Fix - Show a sale price on variable products if on sale and all prices are the same.
  • \n
  • Fix - Corrected download links when a product has multiple downloads.
  • \n
  • Fix - Prevented potential errors if the product type was not posted for any reason on save.
  • \n
  • Fix - Updated single-product/up-sells.php, loop/add-to-cart.php, loop/rating.php, checkout/form-billing.php, and content-product.php template version to 3.0.0.
  • \n
  • Fix - Included clearfixes on billing and shipping field wrappers,
  • \n
  • Fix - Fixed styling of logs table in some languages.
  • \n
  • Fix - Fixed display of variation attributes on old orders.
  • \n
  • Fix - Use placeholder text for external products add to cart button text if left blank.
  • \n
  • Fix - Fallback to home URL if no shop page is set for system status security check for HTTPS.
  • \n
  • Fix - For variations, pull tax status and sold individually from the parent since there is no UI to set this at variation level.
  • \n
  • Fix - Moved cron emails to background processing to avoid multiple sends.
  • \n
  • Fix - Wrapped structured data in a hidden element when added to emails.
  • \n
  • Fix - Missing gateway information in queued emails.
  • \n
  • Fix - Fixed a bug that caused pages to permanently reload if \"Default customer location\" was set to \"Geolocate (with page caching support)\".
  • \n
  • Fix - When forcing shipping to billing, set the shipping fields in the order itself.
  • \n
  • Fix - Check for invalid objects in WC_Register_WP_Admin_Settings.
  • \n
  • Fix - Check for error object in wc_get_object_terms.
  • \n
  • Fix - Removed slashes in shipping meta data on the order edit screen.
  • \n
  • Fix - Prevented permalink rewrites for attributes with missing names.
  • \n
  • Fix - Fixed saving of meta data when multiple extensions use the save_post action.
  • \n
  • Fix - Allow search customers by ID in edit order screen.
  • \n
  • Fix - Prevents session data overwriting customer data on login.
  • \n
  • Fix - Fixed cross-sell column display and variation support.
  • \n
  • Fix - Fixed variable product stock syncing on save.
  • \n
  • Fix - Included try/catch wrapper to prevent issues with Select2.
  • \n
  • Fix - Prevented a bug that deleted all variations when the product type was change from variable to simple.
  • \n
  • Fix - Switched to WPDB to quicker update when syncing titles for variations.
  • \n
  • Fix - Exclude deprecated properties when loading a customer object.
  • \n
  • Fix - Fixed notices while trying to order again.
  • \n
  • Fix - Fixed notices when $wpdb->prefix is empty.
  • \n
  • Fix - Prevent errors when loading a product with an invalid download file types.
  • \n
  • REST API - Fixed missing array declaration in CRUD controller.
  • \n
  • REST API - Removed extra exclude, include and search parameters from taxes endpoint.
  • \n
  • REST API - Fixed variation description formatting.
  • \n
  • REST API - Fixed incorrect attribute check in products endpoint in Legacy REST API.
  • \n
  • REST API - Allow variation image to be unset.
  • \n
\n\n

3.0.0 - 2017-04-04

\n\n
    \n
  • New gallery on single product pages with better mobile support, using PhotoSwipe and Zoom. Declare support with add_theme_support() - wc-product-gallery-zoom, wc-product-gallery-lightbox, wc-product-gallery-slider
  • \n
  • Made the store notice dismissible on the frontend.
  • \n
  • Variable products no longer show striked out prices in combination with ranges for clarity when on sale.
  • \n
  • Prices no longer display as \'free\' instead of 0, to fix issues with ranges and localization and for consistency.
  • \n
  • Improved structured product data by using JSON-LD instead of inline Microdata.
  • \n
  • Improved downloads list layout (template file).
  • \n
  • Respect stock status and prevent the \"out of stock threshold\" setting affecting existing in-stock products.
  • \n
  • Improved handling of shop page rewrite rules to allow subpages.
  • \n
  • Redirect to login after password reset.
  • \n
  • When using authorizations in PayPal Standard, automatically capture funds when the order goes processing/completed.
  • \n
  • On multisite, when a user logs into a store with an account on a site, but not the current site, rather than error, add the user to the current site as a customer.
  • \n
  • Show variable weights/dimensions even when parent values are not set.
  • \n
  • Automatically sort tax rates rather than allow clunky manual sorting.
  • \n
  • When deleting a tax rate class, remove it\'s tax rates.
  • \n
  • Made WC_Logger pluggable via wc_get_logger function.
  • \n
  • Use \'average rating\' post meta for \'rating\' product sorting option.
  • \n
  • Show better labels in nav menus metabox.
  • \n
  • Sort ?Recently Viewed? products by the view order.
  • \n
  • Removed internal scroll from log viewer.
  • \n
  • Add reply-to to admin emails.
  • \n
  • Improved the zone setup flow.
  • \n
  • Made wc_get_wildcard_postcodes return the orignal postcode plus * since wildcards should match empty strings too.
  • \n
  • Use all paid statuses in $customer->get_total_spent().
  • \n
  • Move location of billing email field to work with password managers.
  • \n
  • Option to restrict selling locations by country.
  • \n
  • Added tool to clear orphaned variations in system status.
  • \n
  • Remove checkbox options in system status tools and replace with constants.
  • \n
  • Added security section in system status report.
  • \n
  • Add image_url setting to PayPal Standard.
  • \n
  • Fixed attribute registration. Attributes are non-hierarchical by default (parent is not supported).
  • \n
  • Add sort parameter to checkout fields to aid with sorting per locale.
  • \n
  • Merged percent and percent product coupon types (they provide the same discount).
  • \n
  • Prevent payment details being cleared after update_checkout events.
  • \n
  • Performance - Converted _featured and _visibility meta data to terms for faster catalog queries. Upgrade routine handles migration. Developers may need to update queries to reflect this change.
  • \n
  • Includes product attributes archives links in \"Additional Information\" tab.
  • \n
  • Select2 has been upgraded to v4.
  • \n
  • Improved logging system for extensions.
  • \n
  • Tax suffix is now hidden on non-taxable products.
  • \n
  • Grouped products are linked from the parent rather than the children. Children can be in more than one group.
  • \n
  • Removed coupon usage link in coupons admin screen.
  • \n
  • Performance - Converted rating filters to visibility terms.
  • \n
  • Performance - Added visibility term for outofstock products to speed those queries up also.
  • \n
  • Performance - Introduced a new CRUD (create, read, update, delete) system for Products, Orders, Customers and Shipping Zones.
  • \n
  • Performance - Optimised variable product sync. Upper/lower price meta is no longer stored, just the main prices, if a child has weight, and if a child has dimensions.
  • \n
  • Performance - Removed WP_Query from up-sells.php and related.php and replaced with PHP foreach loop (since we already have the product IDs).
  • \n
  • Performance - Removed the feature where old orders get access to new downloads on product edit. Looping potentially thousands of orders to do this is too much of a performance burden for stores and this can sometimes be unexpected behavior too. This does however updates edited downloads.
  • \n
  • Performance - Removed \'items\' column on orders screen due to loading excessive data.
  • \n
  • Performance - Deferred email sending for faster checkouts. Now uses CRON.
  • \n
  • API - New Rest API v2 with support for meta_data amongst other things.
  • \n
  • API - Removed last order from customers part of the API due to performance concerns - use orders endpoint instead. Other order data on the endpoint is now transient cached.
  • \n
  • API - Allow oAuth1.0a authentication using headers.
  • \n
  • API - New Shipping Zones endpoints.
  • \n
  • API - New variations endpoints.
  • \n
  • API - New settings endpoints.
  • \n
  • API - Payment gateways and shipping methods endpoints.
  • \n
  • API - Prevented the (broken) ability to manipulate variations directly on the products endpoints.
  • \n
  • CLI - New CLI which uses the REST API endpoints rather than it\'s own functions.
  • \n
  • Localization - Improved RTL support.
  • \n
  • Localization - Added a language independent permalink setting function.
  • \n
  • Localization - Added inline comments for placeholder strings.
  • \n
  • Localization - Added Nigerian and Pakistan Provinces to i18n/state.
  • \n
  • Localization - US and Poland postcode validation.
  • \n
  • To read more about this release, see our dev blog announcement here: http://wp.me/p6wtcw-Uo
  • \n
\n\n

See changelog for all versions.

','WooCommerce','WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.','publish','open','closed','','woocommerce','','','2017-04-06 22:46:45','2017-04-06 22:46:45','',0,'https://wordpress.org/plugins-wp/woocommerce/',0,'plugin','',0), (164,5279457,'2007-11-05 11:35:53','2007-11-05 11:35:53','\n

This plugin generates static html files from your dynamic WordPress blog. After a html file is generated your webserver will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.

\n\n

The static html files will be served to the vast majority of your users, but because a user\'s details are displayed in the comment form after they leave a comment those requests are handled by the legacy caching engine. Static files are served to:

\n\n
    \n
  1. Users who are not logged in.
  2. \n
  3. Users who have not left a comment on your blog.
  4. \n
  5. Or users who have not viewed a password protected post.
  6. \n
\n\n

99% of your visitors will be served static html files. Those users who don\'t see the static files will still benefit because they will see different cached files that aren\'t quite as efficient but still better than uncached. This plugin will help your server cope with a front page appearance on digg.com or other social networking site.

\n\n

If for some reason \"supercaching\" doesn\'t work on your server then don\'t worry. Caching will still be performed, but every request will require loading the PHP engine. In normal circumstances this isn\'t bad at all. Visitors to your site will notice no slowdown or difference. Supercache really comes into it\'s own if your server is underpowered, or you\'re experiencing heavy traffic.\nSuper Cached html files will be served more quickly than PHP generated cached files but in every day use, the difference isn\'t noticeable.

\n\n

The plugin serves cached files in 3 ways (ranked by speed):

\n\n
    \n
  1. Mod_Rewrite. The fastest method is by using Apache mod_rewrite (or whatever similar module your web server supports) to serve \"supercached\" static html files. This completely bypasses PHP and is extremely quick. If your server is hit by a deluge of traffic it is more likely to cope as the requests are \"lighter\". This does require the Apache mod_rewrite module (which is probably installed if you have custom permalinks) and a modification of your .htaccess file. Visits by anonymous or unknown users will be served this way.
  2. \n
  3. PHP. Supercached static files can now be served by PHP. The plugin will serve a \"supercached\" file if it exists and it\'s almost as fast as the mod_rewrite method. It\'s easier to configure as the .htaccess file doesn\'t need to be changed. You still need a custom permalink. You can keep portions of your page dynamic in this caching mode. Your server may not cope as well with a really large amount of traffic. (You\'re gaming Digg aren\'t you? You\'ll need mod_rewrite, the rest of us are ok with PHP!)
  4. \n
  5. Legacy caching. This is mainly used to cache pages for known users. These are logged in users, visitors who leave comments or those who should be shown custom per-user data. It\'s the most flexible caching method but also the slowest. As each page is different it\'s often better not to cache pages for these users at all and avoid legacy caching. Legacy caching will also cache visits by unknown users if this caching mode is selected. You can have dynamic parts to your page in this mode too.
  6. \n
\n\n

If you\'re new to caching use PHP caching. It\'s easy to set up and very fast. Avoid legacy caching if you can.

\n\n

Recommended Settings

\n\n

Advanced users will probably want to use mod_rewrite caching, but PHP caching is almost as good and recommended for everyone else. Enable the following:

\n\n
    \n
  1. PHP caching.
  2. \n
  3. Compress pages.
  4. \n
  5. Don\'t cache pages for known users.
  6. \n
  7. Cache rebuild.
  8. \n
  9. CDN support.
  10. \n
  11. Extra homepage checks.
  12. \n
\n\n

Garbage collection is the act of cleaning up cache files that are out of date and stale. There\'s no correct value for the expiry time but a good starting point is 1800 seconds if you\'re not using legacy mode. If you are using that mode start with an expiry time of 600 seconds.

\n\n

If you are not using legacy mode caching consider deleting the contents of the \"Rejected User Agents\" text box and allow search engines to create supercache static files.

\n\n

Likewise, preload as many posts as you can and enable \"Preload Mode\". Garbage collection will still occur but it won\'t affect the preloaded files. If you don\'t care about sidebar widgets updating often set the preload interval to 2880 minutes (2 days) so all your posts aren\'t recached very often. When the preload occurs the cache files for the post being refreshed is deleted and then regenerated. Afterwards a garbage collection of all old files is performed to clean out stale cache files.\nWith preloading on cached files will still be deleted when posts are made or edited or comments made.

\n\n

See the WP Super Cache homepage for further information. Developer documentation is also available for those who need to interact with the cache or write plugins.

\n\n

There\'s a GIT repository too if you want to contribute a patch.

\n\n

The changelog is a good place to start if you want to know what has changed since you last downloaded the plugin.

\n\n

Interested in translating WP Super Cache to your language? Grab the development version where you will find an up to date wp-super-cache.pot. Send any translation files to donncha @ ocaoimh.ie and thank you!

\n\n

The cache directory, usually wp-content/cache/ is only for temporary files. Do not ever put important files or symlinks to important files or directories in that directory. They will be deleted if the plugin has write access to them.

\n\n

How to uninstall WP Super Cache

\n\n

Almost all you have to do is deactivate the plugin on the plugins page. The plugin should clean up most of the files it created and modified, but it doesn\'t as yet remove the mod_rewrite rules from the .htaccess file. Look for the section in that file marked by SuperCache BEGIN and END tags. The plugin doesn\'t remove those because some people add the WordPress rules in that block too.

\n\n

To manually uninstall:

\n\n
    \n
  1. Turn off caching on the plugin settings page and clear the cache.
  2. \n
  3. Deactivate the plugin on the plugins page.
  4. \n
  5. Remove the WP_CACHE define from wp-config.php. It looks like define( \'WP_CACHE\', true );
  6. \n
  7. Remove the Super Cache mod_rewrite rules from your .htaccess file.
  8. \n
  9. Remove the files wp-content/advanced-cache.php and wp-content/wp-cache-config.php
  10. \n
  11. Remove the directory wp-content/cache/
  12. \n
  13. Remove the directory wp-super-cache from your plugins directory.
  14. \n
\n\n

If all else fails and your site is broken

\n\n
    \n
  1. Remove the WP_CACHE define from wp-config.php. It looks like define( \'WP_CACHE\', true );
  2. \n
  3. Remove the rules (see above) that the plugin wrote to the .htaccess file in your root directory.
  4. \n
  5. Delete the wp-super-cache folder in the plugins folder.
  6. \n
  7. Optionally delete advanced-cache.php, wp-cache-config.php and the cache folder in wp-content/.
  8. \n
\n\n

CDN

\n\n

A Content Delivery Network (CDN) is usually a network of computers situated around the world that will serve the content of your website faster by using servers close to you. Static files like images, Javascript and CSS files can be served through these networks to speed up how fast your site loads. You can also create a \"poor man\'s CDN\" by using a sub domain of your domain to serve static files too.

\n\n

OSSDL CDN off-linker has been integrated into WP Super Cache to provide basic CDN support. It works by rewriting the URLs of files (excluding .php files) in wp-content and wp-includes on your server so they point at a different hostname. Many CDNs support origin pull. This means the CDN will download the file automatically from your server when it\'s first requested, and will continue to serve it for a configurable length of time before downloading it again from your server.

\n\n

Configure this on the \"CDN\" tab of the plugin settings page. This is an advanced technique and requires a basic understanding of how your webserver or CDNs work. Please be sure to clear the file cache after you configure the CDN.

\n\n

Custom Caching

\n\n

It is now possible to hook into the caching process using the add_cacheaction() function.

\n\n

Three hooks are available:

\n\n
    \n
  1. \'wp_cache_get_cookies_values\' - modify the key used by WP Cache.
  2. \n
  3. \'add_cacheaction\' - runs in phase2. Allows a plugin to add WordPress hooks.
  4. \n
  5. \'cache_admin_page\' - runs in the admin page. Use it to modify that page, perhaps by adding new configuration options.
  6. \n
\n\n

There is one regular WordPress filter too. Use the \"do_createsupercache\" filter\nto customize the checks made before caching. The filter accepts one parameter.\nThe output of WP-Cache\'s wp_cache_get_cookies_values() function.

\n\n

See plugins/searchengine.php as an example I use for my No Adverts for Friends plugin.

\n\n

Links

\n\n

WP Widget Cache is another caching plugin for WordPress. This plugin caches the output of widgets and may significantly speed up dynamic page generation times.

\n\n

Updates

\n\n

Updates to the plugin will be posted here, to Holy Shmoly! and the WP Super Cache homepage will always link to the newest version.

\n\n

Thanks

\n\n

I would sincerely like to thank John Pozadzides for giving me the idea for this, for writing the \"How it works\" section and for testing the plugin through 2 front page appearances on digg.com

\n\n

Thanks to James Farmer and Andrew Billits of Edu Blogs fame who helped me make this more WordPress MU friendly.

\n\n

Translators who did a great job converting the text of the plugin to their native language. Thank you!

\n\n\n\n\n

Install like any other plugin, directly from your plugins page but make sure you have custom permalinks enabled. Go to the plugin settings page at Settings->WP Super Cache and enable caching.

\n\n\n
\n
How do I know my blog is being cached?
\n

Go to Settings->WP Super Cache and look for the \"Cache Tester\" form on the easy settings page. Click \"Test Cache\" and the plugin will request the front page of the site twice, comparing a timestamp on each to make sure they match.

\n\n

If you want to do it manually, enable debugging in the plugin settings page and load the log file in a new browser tab. Then view your blog while logged in and logged out. You should see activity in the log. View the source of any page on your site. When a page is first created, you\'ll see the text \"Dynamic page generated in XXXX seconds.\" and \"Cached page generated by WP-Super-Cache on YYYY-MM-DD HH:MM:SS\" at the end of the source code. On reload, a cached page will show the same timestamp so wait a few seconds before checking.\nIn legacy caching mode, if you have compression enabled, the text \"Compression = gzip\" will be added. If compression is disabled and the page is served as a static html file, the text \"super cache\" will be added. The only other way to check if your cached file was served by PHP script or from the static cache is by looking at the HTTP headers. PHP cached pages will have the header \"WP-Super-Cache: Served supercache file from PHP\". Legacy cached files will have the header, \"WP-Super-Cache: Served legacy cache file\". I used the Live HTTP Headers extension for Firefox to examine the headers. You should also check your cache directory in wp-content/cache/supercache/hostname/ for static cache files.\nIf the plugin rules are missing from your .htaccess file, the plugin will attempt to serve the super cached page if it\'s found. The header \"WP-Super-Cache: Served supercache file from PHP\" if this happens.

\n
Legacy (WP-Cache) vs Supercache files
\n

WP-Cache files are stored in wp-content/cache/ (or on MU sites in a blogs sub directory) and are named wp-cache-XXXXXXXXXXXXXXXXX.html. Associated meta files are stored in a meta sub directory. Those files contain information about the cached file. These files are generated by the \"legacy caching\" code in the plugin.\nSupercache files are stored in wp-content/cache/supercache/HOSTNAME/ where HOSTNAME is your domain name. The files are stored in directories matching your site\'s permalink structure.

\n
Will comments and other dynamic parts of my blog update immediately?
\n

Comments will show as soon as they are moderated, depending on the comment policy of the blog owner. Other dynamic elements on a page may not update unless they are written in Javascript, Flash, Java or another client side browser language. The plugin really produces static html pages. No PHP is executed when those pages are served. \"Popularity Contest\" is one such plugin that will not work.

\n
Will the Super Cache compression slow down my server?
\n

No, it will do the opposite. Super Cache files are compressed and stored that way so the heavy compression is done only once. These files are generally much smaller and are sent to a visitor\'s browser much more quickly than uncompressed html. As a result, your server spends less time talking over the network which saves CPU time and bandwidth, and can also serve the next request much more quickly.

\n
How do I make certain parts of the page stay dynamic?
\n

Note: this functionality is disabled by default. You will have to enable it on the Advanced Settings page.

\n\n

There are 2 ways of doing this. You can use Javascript to draw the part of the page you want to keep dynamic. That\'s what Google Adsense and many widgets from external sites do and is the recommended way. Or you can use a WP Super Cache filter to do the job but you can\'t use mod_rewrite mode caching. You have to switch to PHP or legacy caching.

\n\n

WP Super Cache 1.4 introduced a cacheaction filter called wpsc_cachedata. The cached page to be displayed goes through this filter and allows modification of the page. If the page contains a placeholder tag the filter can be used to replace that tag with your dynamically generated html.\nThe function that hooks on to the wpsc_cachedata filter should be put in a file in the WP Super Cache plugins folder unless you use the late_init feature. An example plugin is included. Edit dynamic-cache-test.php to see the example code.\nThere are two example functions there. There\'s a simple function that replaces a string (or tag) you define when the cached page is served. The other example function uses an output buffer to generate the dynamic content. Due to a limitation in how PHP works the output buffer code MUST run before the wpsc_cachedata filter is hit, at least for when a page is cached. It doesn\'t matter when serving cached pages. See this post for a more technical and longer explanation.\nTo execute WordPress functions you must enable the \'Late init\' feature on the advanced settings page.

\n
How do I delay serving the cache until the \"init\" action fires?
\n

Cached files are served before almost all of WordPress is loaded. While that\'s great for performance it\'s a pain when you want to extend the plugin using a core part of WordPress. Enable \'Late init\' mode on the Advanced settings page and cached files will be served when \"init\" fires. WordPress and it\'s plugins will be loaded now.

\n
Why don\'t WP UserOnline, Popularity Contest, WP Postratings or plugin X not work or update on my blog now?
\n

This plugin caches entire pages but some plugins think they can run PHP code every time a page loads. To fix this, the plugin needs to use Javascript/AJAX methods or the wpsc_cachedata filter described in the previous answer to update or display dynamic information.

\n
Why do my WP Super Cache plugin disappear when I upgrade the plugin?
\n

WordPress deletes the plugin folder when it updates a plugin. This is the same with WP Super Cache so any modified files in wp-super-cache/plugins/ will be deleted. You can define the variable $wp_cache_plugins_dir in wp-config.php or wp-content/wp-cache-config.php and point it at a directory outside of the wp-super-cache folder. The plugin will look there for it\'s plugins.

\n
What does the Cache Rebuild feature do?
\n

When a visitor leaves a comment the cached file for that page is deleted and the next visitor recreates the cached page. A page takes time to load so what happens if it receives 100 visitors during this time? There won\'t be a cached page so WordPress will serve a fresh page for each user and the plugin will try to create a cached page for each of those 100 visitors causing a huge load on your server. This feature stops this happening. The cached page is not cleared when a comment is left. It is marked for rebuilding instead. The next visitor within the next 10 seconds will regenerate the cached page while the old page is served to the other 99 visitors. The page is eventually loaded by the first visitor and the cached page updated. See this post for more.

\n
Why doesn\'t the plugin cache requests by search engine bots by default?
\n

Those bots usually only visit each page once and if the page is not popular there\'s no point creating a cache file that will sit idle on your server. However if you\'re not using legacy caching you can allow these visits to be cached by removing the list of bots from \"Rejected User Agents\" on the Advanced settings page.

\n
A category page is showing instead of my homepage
\n

A tiny proportion of websites will have problems with the following configuration:

\n\n
    \n
  1. Uses a static page for the front page.
  2. \n
  3. Uses /%category%/%postname%/ permalink structure.
  4. \n
\n\n

Sometimes a category page is cached as the homepage of the site instead of the static page. I can\'t replicate the problem but a simple solution is to switch the plugin to PHP mode. For normal traffic you will see no difference in the speed of your site. You can also enable \"Extra homepage checks\" on the Advanced Settings page.

\n
Why do I get warnings about caching from http://ismyblogworking.com/
\n

\"Your blog doesn\'t support client caching (no 304 response to If-modified-since).\"\n\"Your feed doesn\'t support caching (no 304 response to If-modified-since)\"

\n\n

Supercache doesn\'t support 304 header checks in mod_rewrite mode but does support it in PHP mode. This is caching done by your browser, not the server. It is a check your browser does to ask the server if an updated version of the current page is available. If not, it doesn\'t download the old version again. The page is still cached by your server, just not by your visitors\' browsers.\nTry the Cacheability Engine at http://www.ircache.net/cgi-bin/cacheability.py or http://redbot.org/ for further analysis.

\n
How should I best use the utm_source tracking tools in Google Analytics with this plugin?
\n

That tracking adds a query string to each url linked from various sources like Twitter and feedreaders. Unfortunately it stops pages being supercached. See Joost\'s comment here for how to turn it into an anchor tag which can be supercached.

\n
The plugin complains that wp-content is writable! htdocs is writable!
\n

It\'s not good when the web server can write to these directories but sometimes shared hosting accounts are set up in this way to make administration easier. Use chmod 755 directory to fix the permissions or find the permissions section of your ftp client. This Google search will lead you to more information on this topic and there\'s also this codex page too. Unfortunately some hosts require that those directories be writable. If that\'s the case just ignore this warning.

\n
How do I delete the WP_CACHE define from wp-config.php?
\n

Load your desktop ftp client and connect to your site. Navigate to the root (or the directory below it) of your site where you\'ll find wp-config.php. Download that file and edit it in a text editor. Delete the line define( \'WP_CACHE\', true ); and save the file. Now upload it, overwriting the wp-config.php on your server.

\n
How do I delete the Super Cache rules from the .htaccess file?
\n

Load your desktop ftp client and connect to your site. You may need to enable \"Show hidden files\" in the preferences of the ftp client. Navigate to the root of your site where you\'ll find the .htaccess file. Download that file and edit it in a text editor. Delete the lines between \"# BEGIN WPSuperCache\" and \"# END WPSuperCache\" and save the file. Now upload it, overwriting the .htaccess file on your server.

\n
How do I change file permissions?
\n

This page on the WordPress Codex explains everything you need to know about file permissions on your server and various ways of changing them.

\n
Why do I get load spikes when new posts are made?
\n

You may have the \"clear all cached files when new posts are made\" option set. Clearing those files can take time plus your visitors will now be visiting uncached pages. Are you using Google Analytics campaign tracking with utm_source in the url? Those pages aren\'t cached. See the question, \"How should I best use the utm_source tracking tools in Google Analytics with this plugin\" above for how to use them properly.\nCached pages have to be refreshed when posts are made. Perhaps your server just isn\'t up to the job of serving the amount of traffic you get. Enable the \"cache rebuild\" feature as that may help.

\n
How many pages can I cache?
\n

The only real limit are limits defined by your server. For example, EXT2 and EXT3 allow a maximum of 31,999 sub directories so if you have a flat permalink structure (like /%POSTNAME%/) and more than 32,000 posts you may run into problems. Likewise, if you run a multisite network and have more than 31,999 sites (blogs) you won\'t be able to cache all of them. Realistically if you had that many active sites you wouldn\'t be running on one server.

\n
How do I serve cached mobile pages to clients on small screens like phones and tablets?
\n

You\'ll have to use a separate mobile plugin to render a page formatted for those visitors. The following plugins have been tested but YMMV depending on mobile client.

\n\n
\n
Troubleshooting
\n

If things don\'t work when you installed the plugin here are a few things to check:

\n\n
    \n
  1. Is wp-content writable by the web server?
  2. \n
  3. Is there a wp-content/wp-cache-config.php ? If not, copy the file wp-super-cache/wp-cache-config-sample.php to wp-content/wp-cache-config.php and make sure WPCACHEHOME points at the right place.
  4. \n
  5. Is there a wp-content/advanced-cache.php ? If not, then you must copy wp-super-cache/advanced-cache.php into wp-content/. You must edit the file and change the path so it points at the wp-super-cache folder.
  6. \n
  7. If pages are not cached at all, remove wp-content/advanced-cache.php and recreate it, following the advice above.
  8. \n
  9. Make sure the following line is in wp-config.php and it is ABOVE the \"require_once(ABSPATH.\'wp-settings.php\');\" line:

    \n\n
    define( \'WP_CACHE\', true );\n
  10. \n
  11. Try the Settings->WP Super Cache page again and enable cache.
  12. \n
  13. Look in wp-content/cache/supercache/. Are there directories and files there?
  14. \n
  15. Anything in your php error_log?
  16. \n
  17. If your browser keeps asking you to save the file after the super cache is installed you must disable Super Cache compression. Go to the Settings->WP Super Cache page and disable it there.
  18. \n
  19. The plugin does not work very well when PHP\'s safe mode is active. This must be disabled by your administrator.
  20. \n
  21. If pages are randomly super cached and sometimes not, your blog can probably be viewed with and without the \"www\" prefix on the URL. You should choose one way and install the Enforce www preference plugin if you are using an old WordPress install. The latest versions redirect themselves (you should always be running the latest version of WordPress anyway!)
  22. \n
  23. Private Server users at Dreamhost should edit wp-content/wp-cache-config.php and set the cache dir to \"/tmp/\" if they are getting errors about increasing CPU usage. See this discussion for more.
  24. \n
  25. File locking errors such as \"failed to acquire key 0x152b: Permission denied in...\" or \"Page not cached by WP Super Cache. Could not get mutex lock.\" are a sign that you may have to use file locking. Edit wp-content/wp-cache-config.php and uncomment \"$use_flock = true\" or set $sem_id to a different value. You can also disable file locking from the Admin screen as a last resort.
  26. \n
  27. Make sure cache/wp_cache_mutex.lock is writable by the web server if using coarse file locking.
  28. \n
  29. The cache folder cannot be put on an NFS or Samba or NAS share. It has to be on a local disk. File locking and deleting expired files will not work properly unless the cache folder is on the local machine.
  30. \n
  31. Garbage collection of old cache files won\'t work if WordPress can\'t find wp-cron.php. If your hostname resolves to 127.0.0.1 it could be preventing the garbage collection from working. Check your access_logs for wp-cron.php entries. Do they return a 404 (file not found) or 200 code? If it\'s 404 or you don\'t see wp-cron.php anywhere WordPress may be looking for that script in the wrong place. You should speak to your server administator to correct this or edit /etc/hosts on Unix servers and remove the following line. Your hostname must resolve to the external IP address other servers on the network/Internet use. See http://yoast.com/wp-cron-issues/ for more. A line like \"127.0.0.1 localhost localhost.localdomain\" is ok.

    \n\n
    127.0.0.1 myhostname.com\n
  32. \n
  33. If old pages are being served to your visitors via the supercache, you may be missing Apache modules (or their equivalents if you don\'t use Apache). 3 modules are required: mod_mime, mod_headers and mod_expires. The last two are especially important for making sure browsers load new versions of existing pages on your site.
  34. \n
  35. The error message, \"WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed!\" appears at the end of every page. Open the file wp-content/advanced-cache.php in your favourite editor. Is the path to wp-cache-phase1.php correct? This file will normally be in wp-content/plugins/wp-super-cache/. If it is not correct the caching engine will not load.
  36. \n
  37. Caching doesn\'t work. The timestamp on my blog keeps changing when I reload. Check that the path in your .htaccess rules matches where the supercache directory is. You may have to hardcode it. Or use the plugin in PHP or legacy caching mode.
  38. \n
  39. If supercache cache files are generated but not served, check the permissions on all your wp-content/cache/supercache folders (and each of wp-content cache and supercache folders) and wp-content/cache/.htaccess. If your PHP runs as a different user to Apache and permissions are strict Apache may not be able to read the PHP generated cache files. To fix you must add the following line to your wp-config.php (Add it above the WP_CACHE define.) Then clear your cache.

    \n\n
    umask( 0022 );\n
  40. \n
  41. If you see garbage in your browser after enabling compression in the plugin, compression may already be enabled in your web server. In Apache you must disable mod_deflate, or in PHP zlib compression may be enabled. You can disable that in three ways. If you have root access, edit your php.ini and find the zlib.output_compression setting and make sure it\'s \"Off\" or add this line to your .htaccess:

    \n\n
    php_flag zlib.output_compression off\n
    \n\n

    If that doesn\'t work, add this line to your wp-config.php:

    \n\n
    ini_set(\'zlib.output_compression\', 0);\n
  42. \n
  43. The \"white screen of death\" or a blank page when you visit your site is almost always caused by a PHP error but it may also be caused by APC. Disable that PHP extension if you have trouble and replace with eAccelerator or Xcache.
  44. \n
  45. After uninstalling, your permalinks may break if you remove the WordPress mod_rewrite rules too. Regenerate those rules by visiting the Settings->Permalink page and saving that form again.
  46. \n
  47. If your blog refuses to load make sure your wp-config.php is correct. Are you missing an opening or closing PHP tag?
  48. \n
  49. Your front page is ok but posts and pages give a 404? Go to Settings->permalinks and click \"Save\" once you\'ve selected a custom permalink structure. You may need to manually update your .htaccess file.
  50. \n
  51. If certain characters do not appear correctly on your website your server may not be configured correctly. You need to tell visitors what character set is used. Go to Settings->Reading and copy the \'Encoding for pages and feeds\' value. Edit the .htaccess file with all your Supercache and WordPress rewrite rules and add this at the top, replacing CHARSET with the copied value. (for example, \'UTF-8\')

    \n\n
    AddDefaultCharset CHARSET\n
  52. \n
  53. Use Cron View to help diagnose garbage collection and preload problems. Use the plugin to make sure jobs are scheduled and for what time. Look for the wp_cache_gc and wp_cache_full_preload_hook jobs.
  54. \n
  55. The error message, \"WP Super Cache is installed but broken. The constant WPCACHEHOME must be set in the file wp-config.php and point at the WP Super Cache plugin directory.\" appears at the end of every page. You can delete wp-content/advanced-cache.php and reload the plugin settings page or edit wp-config.php and look for WPCACHEHOME and make sure it points at the wp-super-cache folder. This will normally be wp-content/plugins/wp-super-cache/ but you\'ll likely need the full path to that file (so it\'s easier to let the settings page fix it). If it is not correct the caching engine will not load.
  56. \n
  57. If your server is running into trouble because of the number of semaphores used by the plugin it\'s because your users are using file locking which is not recommended (but is needed by a small number of users). You can globally disable file locking by defining the constant WPSC_DISABLE_LOCKING, or defining the constant WPSC_REMOVE_SEMAPHORE so that sem_remove() is called after every page is cached but that seems to cause problems for other processes requesting the same semaphore. Best to disable it.
  58. \n
\n\n
\n\n\n

1.4.9

\n\n
    \n
  • Fixed bug when not running sem_remove after sem_release. See https://github.com/Automattic/wp-super-cache/issues/85
  • \n
  • Fixed a PHP error impacting PHP 7.1.
  • \n
  • Fixed a bug where we cached PUT and DELETE requests. We\'re treating them like POST requests now.
  • \n
  • Delete supercache cache files, even when supercache is disabled, because mod_rewrite rules might still be active.
  • \n
  • Updated the settings page, moving things around. #173
  • \n
  • Make file locking less attractive on the settings page and fixed the WPSC_DISABLE_LOCKING constant so it really disables file locking even if the user has enabled it already.
  • \n
  • Added a WPSC_REMOVE_SEMAPHORE constant that must be defined if sem_remove() is to be used as it may cause problems. #174
  • \n
  • Added a \"wpsc_delete_related_pages_on_edit\" filter that on returning 0 will disable deletion of pages outside of page being edited. #175
  • \n
  • Fixed plugin deleting all cached pages when a site had a static homepage. #175
  • \n
  • Make sure $cache_path has a trailing slash #177
  • \n
  • Remove flush() #127 but also check if headers are empty and flush and get headers again. #179
  • \n
  • Add fix for customizer #161 and don\'t cache PUT AND DELETE requests #178
  • \n
  • Check for superglobals before using them. #131
  • \n
\n\n

1.4.8

\n\n
    \n
  • Removed malware URL in a code comment. (harmless to operation of plugin but gets flagged by A/V software)
  • \n
  • Updated translation file.
  • \n
\n\n

1.4.7

\n\n
    \n
  • Update the settings page for WordPress 4.4. layout changes.
  • \n
\n\n

1.4.6

\n\n
    \n
  • Generate the file cache/.htaccess even when one exists so gzip rules are created and gzipped pages are served correctly. Props Tigertech. https://wordpress.org/support/topic/all-website-pages-downloading-gz-file-after-latest-update?replies=36#post-7494087
  • \n
\n\n

1.4.5

\n\n
    \n
  • Enhancement: Only preload public post types. Props webaware.
  • \n
  • Added an uninstall function that deletes the config file. Deactivate function doesn\'t delete it any more.
  • \n
  • Possible to deactivate the plugin without visiting the settings page now.
  • \n
  • Fixed the cache rebuild system. Rebuild files now survive longer than the request that generate them.
  • \n
  • Minor optimisations: prune_super_cache() exits immediately if the file doesn\'t exist. The output of wp_cache_get_cookies_values() is now cached.
  • \n
  • Added PHP pid to the debug log to aid debugging.
  • \n
  • Various small bug fixes.
  • \n
  • Fixed reset of expiry time and GC settings when updating advanced settings.
  • \n
  • Removed CacheMeta class to avoid APC errors. It\'s not used any more.
  • \n
  • Fixed reset of advanced settings when using \"easy\" settings page.
  • \n
  • Fixed XSS in settings page.
  • \n
  • Hide cache files when servers display directory indexes.
  • \n
  • Prevent PHP object injection through use of serialize().
  • \n
\n\n

1.4.4

\n\n
    \n
  • Fixed fatal error in output handler if GET parameters present in query. Props webaware.
  • \n
  • Fixed debug log. It wasn\'t logging the right message.
  • \n
\n\n

1.4.3

\n\n
    \n
  • Security release fixing an XSS bug in the settings page. Props Marc Montpas from Sucuri.
  • \n
  • Added wp_debug_log(). Props Jen Heilemann.
  • \n
  • Minor fixes.
  • \n
\n\n

1.4.2

\n\n
    \n
  • Fixed \"acceptable file list\".
  • \n
  • Fixed \"Don\'t cache GET requests\" feature.
  • \n
  • Maybe fixed \"304 not modified\" problem for some users.
  • \n
  • Fixed some PHP warnings.
  • \n
\n\n

1.4.1

\n\n
    \n
  • Fixed XSS in settings page. Props Simon Waters, Surevine Limited.
  • \n
  • Fix to object cache so entries may now be deleted when posts updated. (object cache still experimental)
  • \n
  • Documentation updates and cleanup of settings page.
  • \n
\n\n

1.4

\n\n
    \n
  • Replace legacy mfunc/mnclude/dynamic-cached-content functionality with a \"wpsc_cachedata\" cacheaction filter.
  • \n
  • Added dynamic-cache-test.php plugin example wpsc_cachedata filter plugin.
  • \n
  • Delete post, tag and category cache when a post changes from draft to publish or vice versa. Props @Biranit.
  • \n
  • Update advanced-cache.php and wp-config.php if wp-cache-phase1.php doesn\'t load, usually happening after migrating to a new hosting service.
  • \n
  • Misc bugfixes.
  • \n
\n\n

1.3.2

\n\n
    \n
  • Any mfunc/mclude/dynamic-cached-content tags in comments are now removed.
  • \n
  • Dynamic cached content feature disabled by default and must be enabled on the Advanced Settings page.
  • \n
  • Support for the mobile theme in Jetpack via helper plugin on script\'s Plugins tab.
  • \n
\n\n

1.3.1

\n\n
    \n
  • Minor updates to documentation
  • \n
  • Fixed XSS in settings page.
  • \n
\n\n

1.3

\n\n
    \n
  • mfunc tags could be executed in comments. Fixed.
  • \n
  • More support for sites that use the LOGGED_IN_COOKIE constant and custom cookies.
  • \n
\n\n

1.2

\n\n
    \n
  • Garbage collection of old cache files is significantly improved. I added a scheduled job that keeps an eye on things and restarts the job if necessary. Also, if you enable caching from the Easy page garbage collection will be enabled too.
  • \n
  • Editors can delete single cached files from the admin bar now.
  • \n
  • Fixed the cached page counter on the settings page.
  • \n
  • Some sites that updated to 1.0 experienced too much garbage collection. There are still stragglers out there who haven\'t upgraded but that\'s fixed now!
  • \n
  • Supercached mobile files are now used as there was a tiny little typo that needed fixing.
  • \n
  • If your site is in a directory and you saw problems updating a page then that should be fixed now.
  • \n
  • The deactivate hook has been changed so your configuration isn.t hosed when you upgrade. Unfortunately this will only happen after you do this upgrade.
  • \n
  • Some sites use custom cookies with the LOGGED_IN_COOKIE constant. Added support for that.
  • \n
  • Added support for WPTouch Pro, but it appears to be flaky still. Anyone have time to work on that? I don.t.
  • \n
  • Some sites had problems with scheduled posts. For some reason the plugin thought the post was in draft mode and then because it only checked the same post once, when the post magically became published the cache wasn.t cleared. That.s fixed, thanks to the debug logging of several patient users.
  • \n
  • And more bug fixes and translation updates.
  • \n
\n\n

1.1

\n\n
    \n
  • Use $_SERVER[ \'SERVER_NAME\' ] to create cache directories.
  • \n
  • Only create blogs cached directories if valid requests and blogs exist.
  • \n
  • Only clear current blog\'s cache files if navigation menu is modified
  • \n
  • Added clean_post_cache action to clear cache on post actions
  • \n
  • Removed garbage collection details on Contents tab
  • \n
  • Added wp_cache_check_mobile cacheaction filter to shortcircuit mobile device check.
  • \n
  • Don\'t delete cache files for draft posts
  • \n
  • Added action on wp_trash_post to clear the cache when trashed posts are deleted
  • \n
  • Show a warning when 304 browser caching is disabled (because mod_rewrite caching is on)
  • \n
  • New check for safe mode if using less that PHP 5.3.0
  • \n
  • Added wp_supercache_remove_cookies filter to disable anonymous browsing mode.
  • \n
  • Fixed garbage collection schedule dropdown
  • \n
  • Fixed preload problem clearing site\'s cache on \"page on front\" sites.
  • \n
  • Fix for PHP variable not defined warnings
  • \n
  • Fixed problem refreshing cache when comments made as siteurl() sometimes didn\'t work
  • \n
  • Preloading of taxonomies is now optional
  • \n
  • Domain mapping fixes.
  • \n
  • Better support for https sites. Remove https:// to get cache paths.
  • \n
  • Added AddDefaultCharset .htaccess rule back in and added an option to remove it if required.
  • \n
  • Added multisite plugin that adds a \"Cached\" column to Network->Sites to disable caching on a per site basis.
  • \n
  • Added WPTouch plugin to modify browser and prefix list in mobile detection code. Added support for that plugin\'s exclude list.
  • \n
  • Fixed cache tester
  • \n
  • Filter the tags that are used to detect end-of-page using the wp_cache_eof_tags filter.
  • \n
  • Removed debug level from logging as it wasn\'t helpful.
  • \n
  • Removed mention of wp-minify.
  • \n
\n\n

1.0

\n\n
    \n
  • Removed AddDefaultCharset .htaccess rule
  • \n
  • Fixed problem with blogs in a folder and don\'t have a trailing slash
  • \n
  • New scheduling of garbage collection
  • \n
  • Added a \"Delete cache\" link to admin bar to delete cache of current page.
  • \n
  • Updated documentation
  • \n
  • Sorry Digg, Stephen Fry power now!
  • \n
  • Updated translations
  • \n
  • Preload taxonomies and all post types except revisionsand nav menu items
  • \n
  • Fixed previews by logged in users.
  • \n
  • Added option to make logged in users anonymous
  • \n
  • Use WP 3.0 variables to detect multisite installs
  • \n
  • Hash filenames so files are served from the same CDNs
  • \n
\n\n

0.9.9.9

\n\n
    \n
  • Fixed typo, is_front_page.
  • \n
  • Serve repeated static files from the same CDN hostname.
  • \n
  • Updated translations.
  • \n
  • Make supercache dir lowercase to avoid problems with unicode URLs.
  • \n
  • Add option to skip https loaded static content.
  • \n
  • Remove 5 second check on age of existing cache files. Should help with posts that get lots of comments and traffic.
  • \n
  • Lots of bugs fixed.
  • \n
\n\n

0.9.9.8

\n\n
    \n
  • CDN updates: can be switched off, multiple CNAMEs.
  • \n
  • Uninstall process improved. It removes generated files and fixes edited files.
  • \n
  • Cached dynamic pages can now be stored in Supercache files and compressed.
  • \n
  • 1and1 Webhosting fix (/kunden/)
  • \n
  • Remove log by email functionality as it caused problems for users who were inundated by email
  • \n
  • Many more minor fixes and changes.
  • \n
\n\n

0.9.9.6

\n\n
    \n
  • Fixed problem serving cached files with PHP
  • \n
  • Added support for 304 \"file not modified\" header to help browser caching. (PHP caching only)
  • \n
  • Added French & German translations, updated Italian translation and fixed translation strings.
  • \n
  • Sleep 4 seconds between preload urls to reduce load on the server
  • \n
  • Updated docs and FAQs.
  • \n
\n\n

0.9.9.5

\n\n
    \n
  • Disable compression on on easy setup page. Still causes problems on some hosts.
  • \n
  • Remove footerlink on easy setup page.
  • \n
  • Don\'t delete mod_rewrite rules when caching is disabled.
  • \n
  • Don\'t stop users using settings page when in safe mode.
  • \n
\n\n

0.9.9.4

\n\n
    \n
  • Settings page split into tabbed pages.
  • \n
  • Added new \"Easy\" settings page for new users.
  • \n
  • New PHP caching mode to serve supercached files.
  • \n
  • Mobile support fixes.
  • \n
  • Added Domain mapping support plugin.
  • \n
  • Added \"awaiting moderation\" plugin that removes that text from posts.
  • \n
  • Terminology change. Changed \"half on\" to \"legacy caching\".
  • \n
  • Fixed cache tester on some installs of WordPress.
  • \n
  • Updated documentation
  • \n
  • Added $wp_super_cache_lock_down config variable to hide lockdown and directly cached pages admin items.
  • \n
  • Preloaded checks if it has stalled and reschedules the job to continue.
  • \n
  • Serve the gzipped page when first cached if the client supports compression.
  • \n
  • Lots more bug fixes..
  • \n
\n\n

0.9.9.3

\n\n
    \n
  • Fixed division by zero error in half on mode.
  • \n
  • Always show \"delete cache\" button.
  • \n
  • Fixed \"Update mod_rewrite rules\" button.
  • \n
  • Minor text changes to admin page.
  • \n
\n\n

0.9.9.2

\n\n
    \n
  • Forgot to change version number in wp-cache.php
  • \n
\n\n

0.9.9.1

\n\n
    \n
  • Added preloading of static cache.
  • \n
  • Better mobile plugin support
  • \n
  • .htaccess rules can be updated now. Added wpsc_update_htaccess().
  • \n
  • Fixed \"page on front\" cache clearing bug.
  • \n
  • Check for wordpress_logged_in cookie so test cookie isn\'t detected.
  • \n
  • Added clear_post_supercache() to clear supercache for a single post.
  • \n
  • Put quotes around rewrite rules in case paths have spaces.
  • \n
\n\n

0.9.9

\n\n
    \n
  • Added experimental object cache support.
  • \n
  • Added Chinese(Traditional) translation by Pseric.
  • \n
  • Added FAQ on WP-Cache vs Supercache files.
  • \n
  • Use Supercache file if WP-Cache file not found. Useful if mod_rewrite rules are broken or not working.
  • \n
  • Get mobile browser list from WP Mobile Edition if found. Warn user if .htaccess out of date.
  • \n
  • Make sure writer lock is unlocked after writing cache files.
  • \n
  • Added link to developer docs in readme.
  • \n
  • Added Ukranian translation by Vitaly Mylo.
  • \n
  • Added Upgrade Notice section to readme.
  • \n
  • Warn if zlib compression in PHP is enabled.
  • \n
  • Added compression troubleshooting answer. Props Vladimir (http://blog.sjinks.pro/)
  • \n
  • Added Japanese translation by Tai (http://tekapo.com/)
  • \n
  • Updated Italian translation.
  • \n
  • Link to WP Mobile Edition from admin page for mobile support.
  • \n
\n\n

0.9.8

\n\n
    \n
  • Added Spanish translation by Omi.
  • \n
  • Added Italian translation by Gianni Diurno.
  • \n
  • Addded advanced debug code to check front page for category problem. Enable by setting $wp_super_cache_advanced_debug to 1 in the config file.
  • \n
  • Fixed wordpress vs wordpress_logged_in cookie mismatch in cookie checking function.
  • \n
  • Correctly check if WP_CACHE is set or not. PHP is weird.
  • \n
  • Added wp_cache_clear_cache() to clear out cache directory.
  • \n
  • Only show logged in message when debugging enabled.
  • \n
  • Added troubleshooting point 20. PHP vs Apache user.
  • \n
  • Fixed problem deleting cache file.
  • \n
  • Don\'t delete cache files when moderated comments are deleted.
  • \n
\n\n

0.9.7

\n\n
    \n
  • Fixed problem with blogs in folders.
  • \n
  • Added cache file listing and delete links to admin page.
  • \n
  • Added \"Newest Cached Pages\" listing in sidebox.
  • \n
  • Made admin page translatable.
  • \n
  • Added \"How do I make certain parts of the page stay dynamic?\" to FAQ.
  • \n
  • Advanced: added \"late init\" feature so that plugin activates on \"init\". Set $wp_super_cache_late_init to true in config file to use.
  • \n
  • Disable supercaching when GET parameters present instead of disabling all caching. Disable on POST (as normal) and preview.
  • \n
  • Fixed problem with cron job and mutex filename.
  • \n
  • Warn users they must enable mobile device support if rewrite rules detected. Better detection of when to warn that .htaccess rules must be updated (no need when rewrite rules not present)
  • \n
  • Advanced: Added \"wpsupercache_404\" filter. Return true to cache 404 error pages.
  • \n
  • Use the wordpress_test_cookie in the cache key.
  • \n
  • Show correct number of cache files when compression off.
  • \n
  • Fixed problem with PHP safe_mode detection.
  • \n
  • Various bugfixes and documentation updates. See Changelog.txt
  • \n
\n\n

0.9.6.1

\n\n
    \n
  • Move \"not logged in\" message init below check for POST.
  • \n
  • Add is_admin() check so plugin definitely can\'t cache the backend.
  • \n
  • Add \"do not cache\" page type to admin page.
  • \n
\n\n

0.9.6

\n\n
    \n
  • Add uninstall.php uninstall script.
  • \n
  • Updated cache/.htaccess rules (option to upgrade that)
  • \n
  • Added FAQ about category and static homepage problem.
  • \n
  • Add wp_cache_user_agent_is_rejected() back to wp-cache-phase2.php
  • \n
  • Show message for logged in users when caching disable for them.
  • \n
  • Check filemtime on correct supercache file
  • \n
\n\n

0.9.5

\n\n
    \n
  • Show next and last GC times in minutes, not local time.
  • \n
  • Don\'t serve wp_cache cache files to rejected user agents. Supercache files are still served to them.
  • \n
  • If enabled, mobile support now serves php cached files to mobile clients and static cached files to everyone else.
  • \n
  • Added checks for \"WPSC_DISABLE_COMPRESSION\" and \"WPSC_DISABLE_LOCKING\" constants to disable compression and file locking. For hosting companies primarily.
  • \n
  • Added check for DONOTCACHEPAGE constant to avoid caching a page.
  • \n
  • Use PHP_DOCUMENT_ROOT when creating .htaccess if necessary.
  • \n
\n\n

0.9.4.3

\n\n
    \n
  1. Added \"Don\'t cache for logged in users\" option.
  2. \n
  3. Display file size stats on admin page.
  4. \n
  5. Clear the cache when profile page is updated.
  6. \n
  7. Don\'t cache post previews.
  8. \n
  9. Added backslashes to rejected URI regex list.
  10. \n
  11. Fixed problems with posts and comments not refreshing.
  12. \n
','WP Super Cache','A very fast caching engine for WordPress that produces static html files.','publish','open','closed','','wp-super-cache','','','2017-02-03 17:17:25','2017-02-03 17:17:25','',0,'https://wordpress.org/plugins-wp/wp-super-cache/',0,'plugin','',0), (165,161792,'2007-06-22 06:02:53','2007-06-22 06:02:53','\n

This plugin will let you add, remove and arrange the buttons that are shown on the Visual Editor toolbar. You can configure up to four rows of buttons including Font Sizes, Font Family, text and background colors, tables, etc. It will also let you enable the editor menu, see the screenshots.

\n\n

It includes 15 plugins for TinyMCE that are automatically enabled or disabled depending on the buttons you have chosen. In addition this plugin adds some commonly used options as keeping the paragraph tags in the Text editor and importing the CSS classes from the theme\'s editor-style.css.

\n\n

Some of the features added by this plugin

\n\n
    \n
  • Support for creating and editing tables.
  • \n
  • More options when inserting lists.
  • \n
  • Search and Replace in the editor.
  • \n
  • Ability to set Font Family and Font Sizes.
  • \n
  • And many others.
  • \n
\n\n

With this plugin you can also enable the TinyMCE menu above the toolbars. This will make the editor even more powerful and convenient.

\n\n\n

Best is to install directly from WordPress. If manual installation is required, please make sure that the plugin files are in a folder named \"tinymce-advanced\" (not two nested folders) in the WordPress plugins folder, usually \"wp-content/plugins\".

\n\n\n
\n
No styles are imported in the Formats sub-menu.
\n

These styles are imported from your current theme editor-style.css file. However some themes do not have this functionality. For these themes TinyMCE Advanced has the option to let you add a customized editor-style.css and import it into the editor.

\n
I have just installed this plugin, but it does not do anything.
\n

Change some buttons on one of the toolbars, save your changes, clear your browser cache, and try again. If that does not work try reloding the Edit page several times while holding down Shift or Ctrl. There may also be a network cache somewhere between you and your host. You may need to wait for a few hours until this cache expires.

\n
When I add \"Smilies\", they do not show in the editor.
\n

The \"Emoticons\" button in TinyMCE adds the codes for the smilies. The actual images are added by WordPress when viewing the Post. Make sure the checkbox \"Convert emoticons to graphics on display\" in \"Options - Writing\" is checked.

\n
The plugin does not add any buttons.
\n

Make sure the \"Disable the visual editor when writing\" checkbox under \"Users - Your Profile\" is not checked.

\n
I still see the \"old\" buttons in the editor
\n

Click the \"Restore Default Settings\" button on the plugin settings page and then set the buttons again and save.

\n
Other questions? More screenshots?
\n

Please post on the support forum or visit the homepage for TinyMCE Advanced.

\n\n
\n\n\n

4.4.3

\n\n
    \n
  • Updated for WordPress 4.7 and TinyMCE 4.4.3.
  • \n
  • Fixed missing \"Source code\" button bug.
  • \n
\n\n

4.4.1

\n\n
    \n
  • Updated for WordPress 4.6 and TinyMCE 4.4.1.
  • \n
  • Fixed multisite saving bug.
  • \n
  • Added new button in the Text editor to add or reset the line breaks. Adds line breaks only between tags. Works only when it detects that line breaks are missing so it doesn\'t reformat posts with removed paragraphs.
  • \n
\n\n

4.3.10.1

\n\n
    \n
  • Fixed adding paragraph tags when loading posts that were saved before turning autop off.
  • \n
  • Disabled the (new) inline toolbar for tables as it was overlapping the table in some cases.
  • \n
\n\n

4.3.10

\n\n
    \n
  • Updated for WordPress 4.5.1 and TinyMCE 4.3.10.
  • \n
  • Fixed support for adding editor-style.css to themes that don\'t have it.
  • \n
\n\n

4.3.8

\n\n
    \n
  • Updated for WordPress 4.5 and TinyMCE 4.3.8.
  • \n
  • Separated standard options and admin options.
  • \n
  • Added settings that can disable the plugin for the main editor, other editors in wp-admin or editors on the front-end.
  • \n
  • Korean translation by Josh Kim and Greek translation by Stathis Mellios.
  • \n
\n\n

4.2.8

\n\n
    \n
  • Updated for WordPress 4.4 and TinyMCE 4.2.8.
  • \n
  • Japanese translation by Manabu Miwa.
  • \n
\n\n

4.2.5

\n\n
    \n
  • Updated for WordPress 4.3.1 and TinyMCE 4.2.5.
  • \n
  • Fixed text domain and plugin headers.
  • \n
\n\n

4.2.3.1

\n\n
    \n
  • Fix error with removing the \'textpattern\' plugin.
  • \n
\n\n

4.2.3

\n\n
    \n
  • Updated for WordPress 4.3 and TinyMCE 4.2.3.
  • \n
  • Removed the \'textpattern\' plugin as WordPress 4.3 includes similar functionality by default.
  • \n
  • French translation by Nicolas Schneider.
  • \n
\n\n

4.1.9

\n\n
    \n
  • Updated for WordPress 4.2 and TinyMCE 4.1.9.
  • \n
  • Fixed bugs with showing oEmbed previews when pasting an URL.
  • \n
  • Fixed bugs with getting the content from TinyMCE with line breaks.
  • \n
\n\n

4.1.7

\n\n
    \n
  • Updated for WordPress 4.1 and TinyMCE 4.1.7.
  • \n
  • Fixed bug where consecutive caption shortcodes may be split with an empty paragraph tag.
  • \n
\n\n

4.1.1

\n\n
    \n
  • Fix bug with image captions when wpautop is disabled.
  • \n
  • Add translation support to the settings page. Button names/descriptions are translated from JS using the existing WordPress translation, so this part of the settings page will be translated by default. The other text still needs separate translation.
  • \n
\n\n

4.1

\n\n
    \n
  • Updated for WordPress 4.0 and TinyMCE 4.1.
  • \n
  • Add the \'textpattern\' plugin that supports some of the markdown syntax while typing, (more info).
  • \n
  • Add the updated \'table\' plugin that supports background and border color.
  • \n
\n\n

4.0.2

\n\n
    \n
  • Fix showing of the second, third and forth button rows when the Toolbar Toggle button is not used.
  • \n
  • Fix adding the \'\'directionality\'\' plugin when RTL or LTR button is selected.
  • \n
  • Show the \'\'Advanced Options\'\' to super admins on multisite installs.
  • \n
  • Add the \'\'link\'\' plugin including link rel setting. Replaces the Insert/Edit Link dialog when enabled.
  • \n
  • Include updated \'\'table\'\' plugin that has support for vertical align for cells.
  • \n
\n\n

4.0.1

\n\n

Fix warnings on pages other than Edit Post. Update the description.

\n\n

4.0

\n\n

Updated for WordPress 3.9 and TinyMCE 4.0. Refreshed the settings screen. Added support for exporting and importing of the settings.

\n\n

3.5.9.1

\n\n

Updated for WordPress 3.8, fixed auto-embedding of single line URLs when not removing paragraph tags.

\n\n

3.5.9

\n\n

Updated for WordPress 3.7 and TinyMCE 3.5.9.

\n\n

3.5.8

\n\n

Updated for WordPress 3.5 and TinyMCE 3.5.8.

\n\n

3.4.9

\n\n

Updated for WordPress 3.4 and TinyMCE 3.4.9.

\n\n

3.4.5.1

\n\n

Fixed a bug preventing TinyMCE from importing CSS classes from editor-style.css.

\n\n

3.4.5

\n\n

Updated for WordPress 3.3 or later and TinyMCE 3.4.5.

\n\n

3.4.2.1

\n\n

Fix the removal of the media plugin so it does not require re-saving the settings.

\n\n

3.4.2

\n\n

Compatibility with WordPress 3.2 and TinyMCE 3.4.2, removed the options for support for iframe and HTML 5.0 elements as they are supported by default in WordPress 3.2, removed the media plugin as it is included by default.

\n\n

3.3.9.1

\n\n

Added advanced options: stop removing iframes, stop removing HTML 5.0 elements, moved the support for custom editor styles to editor-style.css in the current theme.

\n\n

Attention: if you have a customized tadv-mce.css file and your theme doesn\'t have editor-style.css, please download tadv-mce.css, rename it to editor-style.css and upload it to your current theme directory. Alternatively you can add there the editor-style.css from the Twenty Ten theme. If your theme has editor-style.css you can add any custom styles there.

\n\n

3.3.9

\n\n

Compatibility with WordPress 3.1 and TinyMCE 3.3.9, improved P and BR tags option.

\n\n

3.2.7

\n\n

Compatibility with WordPress 2.9 and TinyMCE 3.2.7, several minor bug fixes.

\n\n

3.2.4

\n\n

Compatibility with WordPress 2.8 and TinyMCE 3.2.4, minor bug fixes.

\n\n

3.2

\n\n

Compatibility with WordPress 2.7 and TinyMCE 3.2, minor bug fixes.

\n\n

3.1

\n\n

Compatibility with WordPress 2.6 and TinyMCE 3.1, keeps empty paragraphs when disabling the removal of P and BR tags, the buttons for MCImageManager and MCFileManager can be arranged (if installed).

\n\n

3.0.1

\n\n

Compatibility with WordPress 2.5.1 and TinyMCE 3.0.7, added option to disable the removal of P and BR tags when saving and in the HTML editor (autop), added two more buttons to the HTML editor: autop and undo, fixed the removal of non-default TinyMCE buttons.

\n\n

3.0

\n\n

Support for WordPress 2.5 and TinyMCE 3.0.

\n\n

2.2

\n\n

Deactivate/Uninstall option page, font size drop-down menu and other small changes.

\n\n

2.1

\n\n

Improved language selection, improved compatibility with WordPress 2.3 and TinyMCE 2.1.1.1, option to override some of the imported css classes and other small improvements and bugfixes.

\n\n

2.0

\n\n

Includes an admin page for arranging the TinyMCE toolbar buttons, easy installation, a lot of bugfixes, customized \"Smilies\" plugin that uses the built-in WordPress smilies, etc. The admin page uses jQuery and jQuery UI that lets you \"drag and drop\" the TinyMCE buttons to arrange your own toolbars and enables/disables the corresponding plugins depending on the used buttons.

','TinyMCE Advanced','Extends and enhances TinyMCE, the WordPress Visual Editor.','publish','open','closed','','tinymce-advanced','','','2016-12-08 01:13:03','2016-12-08 01:13:03','',0,'https://wordpress.org/plugins-wp/tinymce-advanced/',0,'plugin','',0), (166,7926284,'2012-04-21 19:48:05','2012-04-21 19:48:05','\n

THE MOST DOWNLOADED WORDPRESS SECURITY PLUGIN

\n\n

WordPress security is all we do. Secure your WordPress website with Wordfence. Powered by the constantly updated Threat Defense Feed, our Web Application Firewall stops you from getting hacked. Wordfence Scan leverages the same proprietary feed, alerting you quickly in the event your site is compromised. Our Live Traffic view gives you real-time visibility into traffic and hack attempts on your WordPress website. A deep set of additional tools round out the most complete WordPress security solution available.

\n\n

With over 22 million downloads, Wordfence is the most popular WordPress security plugin available. Wordfence Security is 100% free and open source. We also offer a Premium API key that gives you Premium Support, Country Blocking, Scheduled Scans, Password Auditing, real-time updates to the Threat Defense Feed, two-factor authentication, and we even check if your website IP address is being used to Spamvertize. Click here to sign-up for Wordfence Premium now or simply install Wordfence free and start protecting your website.

\n\n

You can find our official documentation at docs.wordfence.com and our Frequently Asked Questions on our support portal at support.wordfence.com. We are also active in our community support forums on wordpress.org if you are one of our free users. Our Premium Support Ticket System is at support.wordfence.com. Learn about WordPress security at wordfence.com/learn.

\n\n

This is a brief introductory video for Wordfence:

\n\n

[vimeo http://vimeo.com/134150724]

\n\n

Wordfence Security is Multi-Site compatible and includes Cellphone Sign-in which permanently secures your WordPress website from brute force hacks.

\n\n

WORDPRESS SECURITY FEATURES

\n\n

WordPress Firewall

\n\n
    \n
  • Web Application Firewall stops you from getting hacked by identifying malicious traffic, blocking attackers before they can access your website.
  • \n
  • Threat Defense Feed automatically updates firewall rules that protect you from the latest threats. Premium members receive the real-time version.
  • \n
  • Block common WordPress security threats like fake Googlebots, malicious scans from hackers and botnets.
  • \n
\n\n

Blocking Features

\n\n
    \n
  • Real-time blocking of known attackers. If another site using Wordfence is attacked and blocks the attacker, your site is automatically protected.
  • \n
  • Block entire malicious networks. Includes advanced IP and Domain WHOIS to report malicious IP\'s or networks and block entire networks using the firewall. Report WordPress security threats to network owner.
  • \n
  • Rate limit or block WordPress security threats like aggressive crawlers, scrapers and bots doing security scans for vulnerabilities in your site.
  • \n
  • Choose whether you want to block or throttle users and robots who break your WordPress security rules.
  • \n
  • Premium users can also block countries and schedule scans for specific times and a higher frequency.
  • \n
\n\n

WordPress Login Security

\n\n
    \n
  • Sign-in using your password and your cellphone to vastly improve login security. This is called Two Factor Authentication and is used by banks, government agencies and military world-wide for highest security authentication.
  • \n
  • Enforce strong passwords among your administrators, publishers and users. Improve login security.
  • \n
  • Checks the strength of all user and admin passwords to enhance login security.
  • \n
  • Includes login security to lock out brute force hacks and to stop WordPress from revealing info that will compromise WordPress security.
  • \n
\n\n

Security Scanning

\n\n
    \n
  • Scans core files, themes and plugins against WordPress.org repository versions to check their integrity. Verify security of your source.
  • \n
  • See how files have changed. Optionally repair changed files that are security threats.
  • \n
  • Scans for signatures of over 44,000 known malware variants that are known WordPress security threats.
  • \n
  • Scans for many known backdoors that create security holes including C99, R57, RootShell, Crystal Shell, Matamu, Cybershell, W4cking, Sniper, Predator, Jackal, Phantasma, GFS, Dive, Dx and many many more.
  • \n
  • Continuously scans for malware and phishing URL\'s including all URLs on the Google Safe Browsing List in all your comments, posts and files that are security threats.
  • \n
  • Scans for heuristics of backdoors, trojans, suspicious code and other security issues.
  • \n
\n\n

Monitoring Features

\n\n
    \n
  • See all your traffic in real-time, including robots, humans, 404 errors, logins and logouts and who is consuming most of your content. Enhances your situational awareness of which security threats your site is facing.
  • \n
  • A real-time view of all traffic including automated bots that often constitute security threats that Javascript analytics packages never show you.
  • \n
  • Real-time traffic includes reverse DNS and city-level geolocation. Know which geographic area security threats originate from.
  • \n
  • Monitor your DNS security for unauthorized DNS changes.
  • \n
  • Monitors disk space which is related to security because many DDoS attacks attempt to consume all disk space to create denial of service.
  • \n
\n\n

Multi-Site WordPress Security

\n\n
    \n
  • Wordfence Security for multi-site also scans all posts and comments across all blogs from one admin panel.
  • \n
  • WordPress Multi-Site (or WordPress MU in the older parlance) compatible.
  • \n
\n\n

IPv6 Compatible

\n\n
    \n
  • Fully IPv6 compatible including all whois lookup, location, blocking and security functions.
  • \n
\n\n

Major Theme and Plugins Supported

\n\n
    \n
  • Includes support for other major plugins and themes like WooCommerce.
  • \n
\n\n

Free Learning Center

\n\n\n\n

The Wordfence WordPress security plugin is full-featured and constantly updated by our team to incorporate the latest security features and to hunt for the newest security threats to your WordPress website.

\n\n\n

Secure your website with Wordfence.

\n\n

Visit our documentation website which includes feature descriptions, common solutions and comprehensive help.

\n
\n
Installation Instructions
\n

Secure your website using the following steps to install Wordfence:

\n\n
    \n
  1. Install Wordfence Security automatically or by uploading the ZIP file.
  2. \n
  3. Activate the security plugin through the \'Plugins\' menu in WordPress.
  4. \n
  5. Wordfence WordPress Security is now activated. Go to the scan menu and start your first security scan. Scheduled security scanning will also be enabled.
  6. \n
  7. Once your first scan has completed a list of security threats will appear. Go through them one by one to secure your site.
  8. \n
  9. Visit the Wordfence Security options page to enter your email address so that you can receive email security alerts.
  10. \n
  11. Optionally change your security level or adjust the advanced options to set individual security scanning and protection options for your site.
  12. \n
  13. Click the \"Live Traffic\" menu option to watch your site activity in real-time. Situational awareness is an important part of website security.
  14. \n
\n\n

To install the Wordfence WordPress security plugin on WordPress Multi-Site installations:

\n\n
    \n
  1. Install Wordfence Security via the plugin directory or by uploading the ZIP file.
  2. \n
  3. Network Activate Wordfence Security. This step is important because until you network activate it, your sites will see the plugin option on their plugins menu. Once activated that option dissapears.
  4. \n
  5. Now that Wordfence is network activated it will appear on your Network Admin menu. Wordfence Security will not appear on any individual site\'s menu.
  6. \n
  7. Go to the \"Scan\" menu and start your first security scan.
  8. \n
  9. Wordfence Security will do a security scan of all files in your WordPress installation including those in the blogs.dir directory of your individual sites.
  10. \n
  11. Live Traffic will appear for ALL sites in your network. If you have a heavily trafficked system you may want to disable live traffic which will stop logging to the DB.
  12. \n
  13. Firewall rules and login rules apply to the WHOLE system. So if you fail a login on site1.example.com and site2.example.com it counts as 2 failures. Crawler traffic is counted between blogs, so if you hit three sites in the network, all the hits are totalled and that counts as the rate you\'re accessing the system.
  14. \n
\n
How does Wordfence Security protect sites from attackers?
\n

The WordPress security plugin provides the best protection available for your website. Powered by the constantly updated Threat Defense Feed, WordFence Firewall stops you from getting hacked. Wordfence Scan leverages the same proprietary feed, alerting you quickly in the event your site is compromised. The Live Traffic view gives you real-time visibility into traffic and hack attempts on your website. A deep set of additional tools round out the most comprehensive WordPress security solution available.

\n
How will I be alerted if my site has a security problem?
\n

Wordfence Security sends security alerts via email. Once you install Wordfence Security, you will configure a list of email addresses where security alerts will be sent. When you receive a security alert, make sure you deal with it promptly to ensure your site stays secure.

\n
Do I need a security plugin like Wordfence if I?m using a cloud based firewall (WAF)?
\n

Wordfence provides true endpoint security for your WordPress website. Unlike cloud based firewalls, Wordfence executes within the WordPress environment, giving it knowledge like whether the user is signed in, their identity and what access level they have. Wordfence uses the user?s access level in more than 80% of the firewall rules it uses to protect WordPress websites. Learn more about the Cloud WAF identity problem here. Additionally, cloud based firewalls can be bypassed, leaving your site exposed to attackers. Because Wordfence is an integral part of the endpoint (your WordPress website), it can?t be bypassed. Learn more about the Cloud WAF bypass problem here. To fully protect the investment you?ve made in your website you need to employ a defense in depth approach to security. Wordfence takes this approach.

\n
What differentiates Wordfence from other WordPress Security plugins?
\n
    \n
  • Wordfence security provides a WordPress Firewall developed specifically for WordPress and blocks attackers looking for vulnerabilities on your site. The Firewall is powered by our Threat Defense Feed which is continually updated as new threats emerge. Premium customers receive updates in real-time.
  • \n
  • Wordfence Security verifies your website source code integrity against the official WordPress repository and shows you the changes.
  • \n
  • Wordfence Security scans check all your files, comments and posts for URLs in Google\'s Safe Browsing list. We are the only plugin to offer this very important security enhancement.
  • \n
  • Wordfence Security scans do not consume large amounts of your bandwidth because all security scans happen on your web server which makes them very fast.
  • \n
  • Wordfence Security fully supports WordPress Multi-Site which means you can security scan every blog in your Multi-Site installation with one click.
  • \n
  • Wordfence Security includes Two-Factor authentication, the most secure way to stop brute force attackers in their tracks.
  • \n
  • Wordfence Security fully supports IPv6 including giving you the ability to look up the location of IPv6 addresses, block IPv6 ranges, detect IPv6 country and do a whois lookup on IPv6 addresses and more.
  • \n
\n
Will Wordfence slow down my website?
\n

No. Wordfence Security is extremely fast and uses techniques like caching its own configuration data to avoid database lookups and blocking malicious attacks that would slow down your site.

\n
What if my site has already been hacked?
\n

Wordfence Security is able to repair core files, themes and plugins on sites where security is already compromised. You can follow this guide on how to clean a hacked website using Wordfence. However, please note that site security can not be assured unless you do a full reinstall if your site has been hacked. We recommend you only use Wordfence Security to get your site into a running state in order to recover the data you need to do a full reinstall. If you need help repairing a hacked site, we offer an affordable, high-quality site cleaning service that includes a Premium key for a year.

\n
Does Wordfence Security support IPv6?
\n

Yes. We fully support IPv6 with all security functions including country blocking, range blocking, city lookup, whois lookup and all other security functions. If you are not running IPv6, Wordfence will work great on your site too. We are fully compatible with both IPv4 and IPv6 whether you run both or only one addressing scheme.

\n
Does Wordfence Security support Multi-Site installations?
\n

Yes. WordPress Multi-Site is fully supported. Using Wordfence Security you can scan every blog in your network for malware with one click. If one of your customers posts a page or post with a known malware URL that threatens your whole domain with being blacklisted by Google, we will alert you in the next scan.

\n
What support options are available for Wordfence users?
\n

Providing excellent customer service is very important to us. We offer help to all our customers whether you are using the Premium or free version of Wordfence Security. For help with the free version, you can post in our forum where we have dedicated staff responding to questions. If you need faster or more in-depth help, Premium customers can submit a support ticket to our Premium support team.

\n
Where can I learn more about WordPress security?
\n

Designed for every skill level, The WordPress Security Learning Center is dedicated to deepening users? understanding of security best practices by providing free access to entry-level articles, in-depth articles, videos, industry survey results, graphics and more.

\n\n
\n\n\n

6.3.6

\n\n
    \n
  • Improvement: Optimized the malware signature scan to reduce memory usage.
  • \n
  • Improvement: Optimized the overall scan to make fewer network calls.
  • \n
  • Improvement: Running an update now automatically dismisses the corresponding scan issue if present.
  • \n
  • Improvement: Added a time limit to the live activity status so only current messages are shown.
  • \n
  • Improvement: WAF configuration files are now excluded by default from the recently modified files list in the activity report.
  • \n
  • Improvement: Background pausing for live activity and traffic may now be disabled.
  • \n
  • Improvement: Added additional WAF support to allow us to more easily address false positives.
  • \n
  • Improvement: Blocking pages presented by Wordfence now indicate the source and contain information to help diagnose caching problems.
  • \n
  • Fix: All external URLs in the tour are now https.
  • \n
  • Fix: Corrected a typo in the unlock email template.
  • \n
  • Fix: Fixed the target of a label on the options page.
  • \n
\n\n

6.3.5

\n\n
    \n
  • Improvement: Sites can now specify a list of trusted proxies when using X-Forwarded-For for IP resolution.
  • \n
  • Improvement: Added options to customize which dashboard notifications are shown.
  • \n
  • Improvement: Improvements to the scanner\'s malware stage to avoid timing out on larger files.
  • \n
  • Improvement: Provided additional no-caching indicators for caches that erroneously save pages with HTTP error status codes.
  • \n
  • Improvement: Updated the bundled GeoIP database.
  • \n
  • Improvement: Optimized the country update process in the upgrade handler so it only updates changed records.
  • \n
  • Improvement: Added our own prefixed version of jQuery.DataTables to avoid conflicts with other plugins.
  • \n
  • Improvement: Changes to readme.txt and readme.md are now ignored by the scanner unless high sensitivity is on.
  • \n
  • Fix: Addressed an issue with multisite installations where they would execute the upgrade handler for each subsite.
  • \n
  • Fix: Added additional error handling to the blocked IP list to avoid outputting notices when another plugin resets the error handler.
  • \n
  • Fix: Made the description in the summary email for blocks resulting from the blacklist more descriptive.
  • \n
  • Fix: Updated the copyright date on several pages.
  • \n
  • Fix: Fixed incorrect wrapping of the Group by field on the live traffic page.
  • \n
\n\n

6.3.4

\n\n
    \n
  • Improvement: Added a path for people blocked by the IP blacklist (Premium Feature) to report false positives.
  • \n
\n\n

6.3.3

\n\n
    \n
  • New: Malicious IPs are now preemptively blocked by a regularly-updated blacklist. [Premium Feature]
  • \n
  • Improvement: Better layout and display for mobile screen sizes.
  • \n
  • Improvement: Dashboard chart data is now updated more frequently.
  • \n
  • Fix: Fixed database errors on notifications page on multisite installations.
  • \n
  • Fix: Fixed site URL detection for multisite installations.
  • \n
  • Fix: Fixed tour popup positioning on multisite.
  • \n
  • Fix: Increased the z-index of the AJAX error watcher alert.
  • \n
  • Fix: Addressed an additional way to enumerate authors with the REST JSON API.
  • \n
\n\n

6.3.2

\n\n
    \n
  • Improvement: Improved the WAF\'s ability to inspect POST bodies.
  • \n
  • Improvement: Dashboard now shows up to 100 each of failed/successful logins.
  • \n
  • Improvement: Updated internal GeoIP database.
  • \n
  • Improvement: Updated internal browscap database.
  • \n
  • Improvement: Better documentation on Country Blocking regarding Google AdWords
  • \n
  • Advanced: Added constant \"WORDFENCE_DISABLE_FILE_VIEWER\" to prohibit file-viewing actions from Wordfence.
  • \n
  • Advanced: Added constant \"WORDFENCE_DISABLE_LIVE_TRAFFIC\" to prohibit live traffic from capturing regular site visits.
  • \n
  • Fix: Fixed a few links that didn\'t open the correct configuration pages.
  • \n
  • Fix: Unknown countries in the dashboard now show \"Unknown\" rather than empty.
  • \n
\n\n

6.3.1

\n\n
    \n
  • Improvement: Locked out IPs are now enforced at the WAF level to reduce server load.
  • \n
  • Improvement: Added a \"Show more\" link to the IP block list and login attempts list.
  • \n
  • Improvement: Added network data for the top countries blocked list.
  • \n
  • Improvement: Added a notification when a premium key is installed on one site but registered for another URL.
  • \n
  • Improvement: Switching tabs in the various pages now updates the page title as well.
  • \n
  • Improvement: Various styling consistency improvements.
  • \n
  • Change: Separated the various blocking-related pages out from the Firewall top-level menu into \"Blocking\".
  • \n
  • Fix: Improved compatibility with our GeoIP interface.
  • \n
  • Fix: The updates available notification is refreshed after updates are installed.
  • \n
  • Fix: The scan notification is refreshed when issues are resolved or ignored.
  • \n
\n\n

6.3.0

\n\n
    \n
  • Enhancement: Added Wordfence Dashboard for quick overview of security activity.
  • \n
  • Improvement: Simplified the UI by revamping menu structure and styling.
  • \n
  • Fix: Fixed minor issue with REST API user enumeration blocking.
  • \n
  • Fix: Fixed undefined index notices on password audit page.
  • \n
\n\n

6.2.10

\n\n
    \n
  • Improvement: Better reporting for failed brute force login attempts.
  • \n
  • Change: Reworded setting for ignored IPs in the WAF alert email.
  • \n
  • Change: Updated support link on scan page.
  • \n
  • Fix: When a key is in place on multiple sites, it\'s now possible to downgrade the ones not registered for it.
  • \n
  • Fix: Addressed an issue where the increased attack rate emails would send repeatedly if the threshold value was missing.
  • \n
  • Fix: Typo fix in firewall rule 11 name.
  • \n
\n\n

6.2.9

\n\n
    \n
  • Improvement: Updated internal GeoIP database.
  • \n
  • Improvement: Better error handling when a site is unreachable publicly.
  • \n
  • Fix: Fixed a URL in alert emails that did not correctly detect when sent from a multisite installation.
  • \n
  • Fix: Addressed an issue where the scan did not alert about a new WordPress version.
  • \n
\n\n

6.2.8

\n\n
    \n
  • Improvement: Added support for hiding the username information revealed by the WordPress 4.7 REST API. Thanks Vladimir Smitka.
  • \n
  • Improvement: Added vulnerability scanning for themes.
  • \n
  • Improvement: Reduced memory usage by up to 90% when scanning comments.
  • \n
  • Improvement: Performance improvements for the dashboard widget.
  • \n
  • Improvement: Added progressive loading of addresses on the blocked IP list.
  • \n
  • Improvement: The diagnostics page now displays a config reading/writing test.
  • \n
  • Change: Support for the Falcon cache has been removed.
  • \n
  • Fix: Better messaging when the WAF rules are manually updated.
  • \n
  • Fix: The proxy detection check frequency has been reduced and no longer alerts if the server is unreachable.
  • \n
  • Fix: Adjusted the behavior of parsing the X-Forwarded-For header for better accuracy. Thanks Jason Woods.
  • \n
  • Fix: Typo fix on the options page.
  • \n
  • Fix: Scan issue for known core file now shows the correct links.
  • \n
  • Fix: Links in \"unlock\" emails now work for IPv6 and IPv4-mapped-IPv6 addresses.
  • \n
  • Fix: Restricted caching of responses from the Wordfence Security Network.
  • \n
  • Fix: Fixed a recording issue with Wordfence Security Network statistics.
  • \n
\n\n

6.2.7

\n\n
    \n
  • Improvement: WordPress 4.7 improvements for the Web Application Firewall.
  • \n
  • Improvement: Updated signatures for hash-based malware detection.
  • \n
  • Improvement: Automatically attempt to detect when a site is behind a proxy and has IP information in a different field.
  • \n
  • Improvement: Added additional contextual help links.
  • \n
  • Improvement: Significant performance improvement for determining the connecting IP.
  • \n
  • Improvement: Better messaging for two-factor recovery codes.
  • \n
  • Fix: Adjusted message when trying to block an IP in the whitelist.
  • \n
  • Fix: Error log download links now work on Windows servers.
  • \n
  • Fix: Avoid running out of memory when viewing very large activity logs.
  • \n
  • Fix: Fixed warning that could be logged when following an unlock email link.
  • \n
  • Fix: Tour popups on options page now scroll into view correctly.
  • \n
\n\n

6.2.6

\n\n
    \n
  • Improvement: Improved formatting of attack data when it contains binary characters.
  • \n
  • Improvement: Updated internal GeoIP database.
  • \n
  • Improvement: Improved the ordering of rules in the malware scan so more specific rules are checked first.
  • \n
  • Fix: Country blocking redirects are no longer allowed to be cached.
  • \n
  • Fix: Fixed an issue with 2FA on multisite where the site could report URLs with different schemes depending on the state of plugin loading.
  • \n
\n\n

6.2.5

\n\n
    \n
  • Fix: Fixed an issue that could occur on older WordPress versions when processing login attempts
  • \n
\n\n

6.2.4

\n\n
    \n
  • Improvement: Scan times for very large sites with huge numbers of files are greatly improved.
  • \n
  • Improvement: Added a configurable time limit for scans to help reduce overall server load and identify configuration problems.
  • \n
  • Improvement: Email-based logins are now covered by \"Don\'t let WordPress reveal valid users in login errors\".
  • \n
  • Improvement: Extended rate limiting support to the login page.
  • \n
  • Fix: Fixed a case where files in the site root with issues could have them added multiple times.
  • \n
  • Fix: Improved IP detection in the WAF when using an IP detection method that can have multiple values.
  • \n
  • Fix: Added a safety check for when the database fails to return its max_allowed_packet value.
  • \n
  • Fix: Added safety checks for when the configuration table migration has failed.
  • \n
  • Fix: Added a couple rare failed login error codes to brute force detection.
  • \n
  • Fix: Fixed a sequencing problem when adding detection for bot/human that led to it being called on every request.
  • \n
  • Fix: Suppressed errors if a file is removed between the start of a scan and later scan stages.
  • \n
  • Fix: Addressed a problem where the scan exclusions list was not checked correctly in some situations.
  • \n
\n\n

6.2.3

\n\n
    \n
  • Improvement: Reworked blocking for IP ranges, country blocking, and direct IP blocking to minimize server impact when under attack.
  • \n
  • Improvement: Live traffic better indicates the action taken by country blocking when it redirects a visitor.
  • \n
  • Improvement: Added support for finding server logs to the Diagnostics page to help with troubleshooting.
  • \n
  • Improvement: Whitelisted StatusCake IP addresses.
  • \n
  • Improvement: Updated GeoIP database.
  • \n
  • Improvement: Disabling Wordfence now sends an alert.
  • \n
  • Improvement: Improved detection for uploaded PHP content in the firewall.
  • \n
  • Fix: Eliminated memory-related errors resulting from the scan on sites with very large numbers of issues and low memory.
  • \n
  • Fix: Fixed admin page layout for sites using RTL languages.
  • \n
  • Fix: Reduced overhead of the dashboard widget.
  • \n
  • Fix: Improved performance of checking for whitelisted IPs.
  • \n
  • Fix: Changes to the default plugin hello.php are now detected correctly in scans.
  • \n
  • Fix: Fixed IPv6 warning in the dashboard widget.
  • \n
\n\n

6.2.2

\n\n
    \n
  • Fix: Replaced a slow query in the dashboard widget that could affect sites with very large numbers of users.
  • \n
\n\n

6.2.1

\n\n
    \n
  • Improvement: Now performing scanning for PHP code in all uploaded files in real-time.
  • \n
  • Improvement: Improved handling of bad characters and IPv6 ranges in Advanced Blocking.
  • \n
  • Improvement: Live traffic and scanning activity now display a paused notice when real-time updates are suspended while in the background.
  • \n
  • Improvement: The file system scan alerts for files flagged by antivirus software with a \'.suspected\' extension.
  • \n
  • Improvement: New alert option to get notified only when logins are from a new location/device.
  • \n
  • Change: First phase for removing the Falcon cache in place, which will add a notice of its pending removal.
  • \n
  • Fix: Included country flags for Kosovo and Curaçao.
  • \n
  • Fix: Fixed the .htaccess directives used to hide files found by the scanner.
  • \n
  • Fix: Dashboard widget shows correct status for failed logins by deleted users.
  • \n
  • Fix: Removed duplicate issues for modified files in the scan results.
  • \n
  • Fix: Suppressed warning from reverse lookup on IPv6 addresses without valid DNS records.
  • \n
  • Fix: Fixed file inclusion error with themes lacking a 404 page.
  • \n
  • Fix: CSS fixes for activity report email.
  • \n
\n\n

6.2.0

\n\n
    \n
  • Improvement: Massive performance boost in file system scan.
  • \n
  • Improvement: Added low resource usage scan option for shared hosts.
  • \n
  • Improvement: Aggregated login attempts when checking the Wordfence Security Network for brute force attackers to reduce total requests.
  • \n
  • Improvement: Now displaying scan time in a more readable format rather than total seconds.
  • \n
  • Improvement: Added PHP7 compatible .htaccess directives to disable code execution within uploads directory.
  • \n
  • Fix: Added throttling to sync the WAF attack data.
  • \n
  • Fix: Removed unnecessary single quote in copy containing \"IP\'s\".
  • \n
  • Fix: Fixed rare, edge case where cron key does not match the key in the database.
  • \n
  • Fix: Fixed bug with regex matching carriage returns in the .htaccess based IP block list.
  • \n
  • Fix: Fixed scans failing in subdirectory sites when updating malware signatures.
  • \n
  • Fix: Fixed infinite loop in scan caused by symlinks.
  • \n
  • Fix: Remove extra slash from \"File restored OK\" message in scan results.
  • \n
\n\n

6.1.17

\n\n
    \n
  • Fix: Replaced calls to json_decode with our own implentation for hosts without the JSON extension enabled.
  • \n
\n\n

6.1.16

\n\n
    \n
  • Improvement: Now performing malware scanning on all uploaded files in real-time.
  • \n
  • Improvement: Added Web Application Firewall activity to Wordfence summary email.
  • \n
  • Fix: Now using 503 response code in the page displayed when an IP is locked out.
  • \n
  • Fix: wflogs directory is now correctly removed on uninstall.
  • \n
  • Fix: Fixed recently introduced bug which caused the Whitelisted 404 URLs feature to no longer work.
  • \n
  • Fix: Added try/catch to uncaught exception thrown when pinging the API key.
  • \n
  • Improvement: Improved performance of the Live Traffic page in Firefox.
  • \n
  • Improvement: Updated GeoIP database.
  • \n
\n\n

6.1.15

\n\n
    \n
  • Improvement: Removed file-based config caching, added support for caching via WordPress\'s object cache.
  • \n
  • Improvement: Whitelisted Uptime Robot\'s IP range.
  • \n
  • Fix: Notify users if suPHP_ConfigPath is in their WAF setup, and prompt to update Extended Protection.
  • \n
  • Fix: Fixed bug with allowing logins on admin accounts that are not fully activated with invalid 2FA codes when 2FA is required for all admins.
  • \n
  • Fix: Removed usage of wp_get_sites() which was deprecated in WordPress 4.6.
  • \n
  • Fix: Fixed PHP notice from Undefined index: url with custom/premium plugins.
  • \n
  • Improvement: Converted the banned URLs input to a textarea.
  • \n
\n\n

6.1.14

\n\n
    \n
  • Improvement: Support downloading a file of 2FA recovery codes.
  • \n
  • Fix: Fixed PHP Notice: Undefined index: coreUnknown during scans.
  • \n
  • Improvement: Add note to options page that login security is necessary for 2FA to work.
  • \n
  • Fix: Fixed WAF false positives introduced with WordPress 4.6.
  • \n
  • Improvement: Update Geo IP database.
  • \n
\n\n

6.1.12

\n\n
    \n
  • Fix: Fixed fatal error on sites running Wordfence 6.1.11 in subdirectory and 6.1.10 or lower in parent directory.
  • \n
  • Fix: Added a few common files to be excluded from unknown WordPress core file scan.
  • \n
\n\n

6.1.11

\n\n
    \n
  • Improvement: Alert on added files to wp-admin, wp-includes.
  • \n
  • Improvement: 2FA is now available via any authenticator program that accepts TOTP secrets.
  • \n
  • Fix: Fixed bug with specific Advanced Blocking user-agent patterns causing 500 errors.
  • \n
  • Improvement: Plugin updates are now only a critical issue if there is a security related fix, and a warning otherwise. A link to the changelog is included.
  • \n
  • Fix: Added group writable permissions to Firewall\'s configuration files.
  • \n
  • Improvement: Changed whitelist entry area to textbox on options page.
  • \n
  • Fix: Move flags and logo served from wordfence.com over to locally hosted files.
  • \n
  • Fix: Fixed issues with scan in WordPress 4.6 beta.
  • \n
  • Fix: Fixed bug where Firewall rules could be missing on some sites running IIS.
  • \n
  • Improvement: Added browser-based malware signatures for .js, .html files in the malware scan.
  • \n
  • Fix: Added error suppression to dns_get_record.
  • \n
\n\n

6.1.10

\n\n
    \n
  • Fix: Fixed fatal error in the event wflogs is not writable.
  • \n
\n\n

6.1.9

\n\n
    \n
  • Fix: Using WP-CLI causes error Undefined index: SERVER_NAME.
  • \n
  • Improvement: Hooked up restore/delete file scan tools to Filesystem API.
  • \n
  • Fix: Reworked country blocking authentication check for access to XMLRPC.
  • \n
  • Improvement: Added option to require cellphone sign-in on all admin accounts.
  • \n
  • Improvement: Updated IPv6 GeoIP lite data.
  • \n
  • Fix: Removed suPHP_ConfigPath from WAF installation process.
  • \n
  • Fix: Prevent author names from being found through /wp-json/oembed.
  • \n
  • Improvement: Added better solutions for fixing wordfence-waf.php, .user.ini, or .htaccess in scan.
  • \n
  • Improvement: Added a method to view which files are currently used for WAF and to remove without reinstalling Wordfence.
  • \n
  • Improvement: Changed rule compilation to use atomic writes.
  • \n
  • Improvement: Removed security levels from Options page.
  • \n
  • Improvement: Added option to disable ajaxwatcher (for whitelisting only for Admins) on the front end.
  • \n
\n\n

6.1.8

\n\n
    \n
  • Fix: Change wfConfig::set_ser to split large objects into multiple queries.
  • \n
  • Fix: Fixed bug in multisite with \"You do not have sufficient permissions to access this page\" error after logging in.
  • \n
  • Improvement: Update Geo IP database.
  • \n
  • Fix: Fixed deadlock when NFS is used for WAF file storage, in wfWAFAttackDataStorageFileEngine::addRow().
  • \n
  • Fix: Added third param to http_build_query for hosts with arg_separator.output set.
  • \n
  • Improvement: Show admin notice if WAF blocks an admin (mainly needed for ajax requests).
  • \n
  • Improvement: Clarify error message \"Error reading config data, configuration file could be corrupted.\"
  • \n
  • Improvement: Added better crawler detection.
  • \n
  • Improvement: Add currentUserIsNot(\'administrator\') to any generic firewall rules that are not XSS based.
  • \n
  • Improvement: Update URLs in Wordfence for documentation about LiteSpeed and lockouts.
  • \n
  • Improvement: Show message on scan results when a result is caused by enabling \"Scan images and binary files as if they were executable\" or...
  • \n
  • Fix: Suppressed warning: dns_get_record(): DNS Query failed.
  • \n
  • Fix: Suppressed warning gzinflate() error in scan logs.
  • \n
  • Fix: On WAF roadblock page: Warning: urlencode() expects parameter 1 to be string, array given ...
  • \n
  • Fix: Scheduled update for WAF rules doesn\'t decrease from 7 days, to 12 hours, when upgrading to a premium account.
  • \n
  • Improvement: Better message for dashboard widget when no failed logins.
  • \n
\n\n

6.1.7

\n\n
    \n
  • Security Fix: Fixed reflected XSS vulnerability: CVSS 6.1 (Medium). Thanks Kacper Szurek.
  • \n
\n\n

6.1.6

\n\n
    \n
  • Fix: Fixed bug with 2FA not properly handling email address login.
  • \n
  • Fix: Show logins/logouts when Live Traffic is disabled.
  • \n
  • Fix: Fixed bug with PCRE versions < 7.0 (repeated subpattern is too long).
  • \n
  • Fix: Now able to delete whitelisted URL/params containing ampersands and non-UTF8 characters.
  • \n
  • Improvement: Reduced 2FA activation code to expire after 30 days.
  • \n
  • Improvement: Live Traffic now only shows verified Googlebot under Google Crawler filter for new visits.
  • \n
  • Improvement: Adjusted permissions on Firewall log/config files to be 0640.
  • \n
  • Fix: Fixed false positive from Maldet in the wfConfig table during the scan.
  • \n
\n\n

6.1.5

\n\n
    \n
  • Fix: WordPress language files no longer flagged as changed.
  • \n
  • Improvement: Accept wildcards in \"Immediately block IP\'s that access these URLs.\"
  • \n
  • Fix: Fixed bug when multiple authors have published posts, /?author=N scans show an author archive page.
  • \n
  • Fix: Fixed issue with IPv6 mapped IPv4 addresses not being treated as IPv4.
  • \n
  • Improvement: Added WordPress version and various constants to Diagnostics report.
  • \n
  • Fix: Fixed bug with Windows users unable to save Firewall config.
  • \n
  • Improvement: Include option for IIS on Windows in Firewall config process, and recommend manual php.ini change only.
  • \n
  • Fix: Made the \'administrator email address\' admin notice dismissable.
  • \n
\n\n

6.1.4

\n\n
    \n
  • Fix: Fixed potential bug with \'stored data not found after a fork. Got type: boolean\'.
  • \n
  • Improvement: Added bulk actions and filters to WAF whitelist table.
  • \n
  • Improvement: Added a check while in learning mode to verify the response is not 404 before whitelising.
  • \n
  • Fix: Added index to attackLogTime. wfHits trimmed on runInstall now.
  • \n
  • Fix: Fixed attack data sync for hosts that cannot use wp-cron.
  • \n
  • Improvement: Use wftest@wordfence.com as the Diagnostics page default email address.
  • \n
  • Improvement: When WFWAF_ENABLED is set to false to disable the firewall, show this on the Firewall page.
  • \n
  • Fix: Prevent warnings when $_SERVER is empty.
  • \n
  • Fix: Bug fix for illegal string offset.
  • \n
  • Fix: Hooked up multibyte string functions to binary safe equivalents.
  • \n
  • Fix: Hooked up reverse IP lookup in Live Traffic.
  • \n
  • Fix: Add the user the web server (or PHP) is currently running as to Diagnostics page.
  • \n
  • Improvement: Pause Live Traffic after scrolling past the first entry.
  • \n
  • Improvement: Move \"Permanently block all temporarily blocked IP addresses\" button to top of blocked IP list.
  • \n
  • Fix: Added JSON fallback for PHP installations that don\'t have JSON enabled.
  • \n
\n\n

6.1.3

\n\n
    \n
  • Improvement: Added dismiss button to the Wordfence WAF setup admin notice.
  • \n
  • Fix: Removed .htaccess and .user.ini from publicly accessible config and backup file scan.
  • \n
  • Fix: Removed the disallow file mods for admins created outside of WordPress.
  • \n
  • Fix: Fixed bug with \'Hide WordPress version\' causing issues with reCAPTCHA.
  • \n
  • Improvement: Added instructions for NGINX users to restrict access to .user.ini during Firewall configuration.
  • \n
  • Fix: Fixed bug with multiple API calls to \'get_known_files\'.
  • \n
\n\n

6.1.2

\n\n
    \n
  • Fix: Fixed fatal error when using a whitelisted IPv6 range and connecting with an IPv6 address.
  • \n
\n\n

6.1.1

\n\n
    \n
  • Enhancement: Added Web Application Firewall
  • \n
  • Enhancement: Added Diagnostics page
  • \n
  • Enhancement: Added new scans:\n\n
      \n
    • Admins created outside of WordPress
    • \n
    • Publicly accessible common (database or wp-config.php) backup files
    • \n
  • \n
  • Improvement: Updated Live Traffic with filters and to include blocked requests in the feed.
  • \n
\n\n

6.0.25

\n\n
    \n
  • Improvement: Added help callout for compromised sites.
  • \n
  • Improvement: Updated local GeoIP database.
  • \n
  • Improvement: Updated local browser data cache to support newer browsers and user-agents.
  • \n
\n\n

6.0.24

\n\n
    \n
  • Enhancement: Added automatic whitelisting for Facebook crawlers.
  • \n
  • Improvement: Added styling to premium callouts.
  • \n
  • Improvement: Updated local GeoIP database.
  • \n
  • Improvement: Updated local browser data cache to support newer browsers and user-agents.
  • \n
\n\n

6.0.23

\n\n
    \n
  • Improvement: Updated local GeoIP database.
  • \n
  • Improvement: Updated local browser data cache to support newer browsers and user-agents.
  • \n
\n\n

6.0.22

\n\n
    \n
  • Security Fix: Fixed stored XSS vulnerability discovered internally (thanks to Matt Rusnak).
  • \n
  • Enhancement: Added additional Sucuri scanner IP to our whitelist.
  • \n
\n\n

6.0.21

\n\n
    \n
  • Enhancement: Added better handling of Googlebot verification.
  • \n
\n\n

6.0.20

\n\n
    \n
  • Fix: Fixed bug with options that are enabled by default but disabled by the user are reset to defaults.
  • \n
\n\n

6.0.19

\n\n
    \n
  • Fix: Added check to verify pluggable.php is included before calling wp_hash.
  • \n
\n\n

6.0.18

\n\n
    \n
  • Fix: Resolved issue with some admin links not using the network admin URL.
  • \n
  • Fix: Resolved issue with slashes not being stripped from Advanced Blocking usernames, reasons.
  • \n
  • Enhancement: Added ability to Block any requests from IPs matching a PTR record.
  • \n
  • Fix: Updated the GeoIP lib to use the wfUtils::inet_pton functions instead of the PHP default for installs that do not have IPv6 support.
  • \n
  • Fix: Added help link for whitelisted 404\'s entry on options page.
  • \n
  • Fix: Automatically exclude files that crash the scan.
  • \n
  • Fix: Clear the wfHoover database table after scan is killed.
  • \n
  • Enhancement: Added notice about false positives when running a scan with HIGH SENSITIVITY enabled.
  • \n
  • Fix: Removed WordPress version from style and script loaders. Hid the readme.html.
  • \n
  • Fix: Alert email for \"lost password\" did not send when the user used their username.
  • \n
  • Enhancement: Exclude zip files from scans by default, and add that as option under \'Scan image and binary files\'.
  • \n
  • Fix: Fixed edge case where .htaccess became garbled when using Falcon cache.
  • \n
\n\n

6.0.17

\n\n
    \n
  • Fix: Resolved issue where 301 redirects count as 404s with throttling applied.
  • \n
  • Fix: Fixed Falcon .htaccess code writing to .htaccess when \'Immediately block IP\'s that access these URLs\' option is modified.
  • \n
  • Fix: Fixed issue where filtering posts by author in wp-admin no longer works due to change in /?author=N scan prevention logic.
  • \n
  • Fix: Fixed issue in Live Traffic where 404s display as 200s.
  • \n
  • Fix: Resolved issue with throttling logins via XMLRPC are not applied.
  • \n
\n\n

6.0.16

\n\n
    \n
  • Fix: Resolved issue with some variations of author=N scans not being caught. Thanks James Golovich.
  • \n
  • Fix: Updated typo in author=N option.
  • \n
  • Fix: Resolved issue with Falcon not writing to .htaccess with WP installed in subdirectory.
  • \n
  • Fix: Added width to logo in activity report email.
  • \n
  • Fix: Resolved issue with Live Traffic endpoint in cases where WordPress is installed into a subdirectory.
  • \n
  • Improvement: Optimized database query with in unlocking user email routine.
  • \n
  • Improvement: Moved firewall logic into \'wp_loaded\' hook.
  • \n
\n\n

6.0.15

\n\n
    \n
  • Fix: Resolved issue with GoogleBot being erroneously flagged as human in Live Traffic.
  • \n
  • Fix: Added better handling of human/bot detection.
  • \n
  • Improvement: Verified humans are flagged via cookie to prevent false positives.
  • \n
\n\n

6.0.14

\n\n
    \n
  • Fix: Live Traffic endpoint moved to site root to prevent issues with GoogleBot.
  • \n
\n\n

6.0.12

\n\n
    \n
  • Improvement: Updated local GeoIP database.
  • \n
  • Improvement: Updated local browser data cache to support newer browsers and user-agents.
  • \n
  • Improvement: Added option to exclude URLs from 404 throttling, and included some common 404s.
  • \n
  • Improvement: Added new branded logos.
  • \n
  • Fix: Fixed bug with live traffic ajax call being indexed by Google.
  • \n
\n\n

6.0.11

\n\n
    \n
  • Improvement: Updated local GeoIP database to July version.
  • \n
  • Improvement: Updated local browser data cache to support newer browsers and user-agents.
  • \n
  • Fix: Hooked up network ranges in CIDR format (192.168.0.0/16) in Whois to support data coming back from whois that includes CIDR network format.
  • \n
  • Fix: Fixed 2 PHP notices in wfUtils.
  • \n
\n\n

6.0.10

\n\n
    \n
  • Improvement: Removed locked out IPs from locked out list when permanently blocking all locked out IPs.
  • \n
  • Improvement: Added admin-configured blocked IPs and blocked network ranges to import/export.
  • \n
  • Fix: Fixed PHP warnings in activity report where an array is not returned.
  • \n
  • Fix: Fixed PHP notice in IP spam check portion of scan.
  • \n
\n\n

6.0.9

\n\n
    \n
  • Fix: Fixed bug in Live Traffic where v5 style blocked ranges generated PHP warning breaking the JSON response.
  • \n
  • Fix: Fixed invalid date bug in Live Traffic: Top Consumers and Top 404s.
  • \n
  • Fix: Fixed edge case bug with author=N scans redirecting to author archives page.
  • \n
\n\n

6.0.8

\n\n
    \n
  • Improvement: Added the local time stamp to \'time since\' labels in Live Traffic and Blocked IPs pages.
  • \n
  • Improvement: Added a check to prompt the admin to download a backup copy of the wp-config.php in the event it\'s flagged as containing malware.
  • \n
  • Improvement: Added option in Live Traffic to remove a blocked network range defined in Advanced Blocking in the Live Traffic feed for IPs within that range.
  • \n
  • Improvement: Added option to permanently block all IPs that are currently temporarily blocked or locked out from the Blocked IPs page.
  • \n
  • Improvement: Updated local GeoIP database.
  • \n
  • Fix: Fixed double forward slash in file path in the \'View the File\' action of malicious code scan.
  • \n
  • Fix: Fixed notice in block IP JSON callback.
  • \n
\n\n

6.0.7

\n\n
    \n
  • Fix: Fixed bug with Top 5 Logins displaying all failed logins opposed to timeframe set by email frequency.
  • \n
  • Fix: Fixed bug with /?author=N scan protection not working for authors with no published posts.
  • \n
  • Improvement: Fixed Wordfence logo width in dashboard widget on smaller screens.
  • \n
  • Improvement: Added country names to flag icons in widget dashboard.
  • \n
  • Improvement: Updated issues email to use WordPress\' charset instead of ISO-8859-1.
  • \n
  • Improvement: Added check to see if premium API key is set to auto-renew and send email reminder prior to renewal.
  • \n
  • Improvement: Updated to API version 2.17.
  • \n
  • Improvement: Changed auto-renew reminder email to go out 10 days before renewal, 12 days before expiration.
  • \n
\n\n

6.0.6

\n\n
    \n
  • Improvement: Handled uncaught exception when noc1 is not available in 2FA.
  • \n
  • Improvement: Fixed issue with limit-logins mu-plugin on GoDaddy counting first login attempt in 2FA against total allowed login attempts.
  • \n
  • Fix: Fixed bug with IPs not resolving to countries when printable IP passed to logBlockedIP.
  • \n
  • Fix: Fixed issue with free users country blocking redirects working after downgrade.
  • \n
  • Fix: Encoded URL field in country blocking options.
  • \n
  • Fix: Added a check to verify field has not already been altered prior to calling ALTER in runInstall.
  • \n
  • Fix: Fixed issue with scan_options method being called after method has been removed.
  • \n
  • Fix: Fixed bug in scan when dns_get_record fails and error condition was not handled.
  • \n
  • Fix: Fixed PHP notice when \'Crawler\' not included in browser pcap result.
  • \n
\n\n

6.0.5

\n\n
    \n
  • Fix: Removed anonymous function to ensure PHP 5.2 compatability.
  • \n
\n\n

6.0.4

\n\n
    \n
  • Improvement: Added option to disable SSL verification for hosts that have outdated versions cURL.
  • \n
  • Improvement: Added default of 127.0.0.1 when $_SERVER[\'REMOTE_ADDR\'] is not set. Helps if you\'re running WordPress cron from Linux cron.
  • \n
  • Improvement: Added compatability with Godaddy\'s MU (must use) limit login plugin and our two factor. Change makes sure you can see the message from Wordfence to enter your cellphone code.
  • \n
  • Improvement: Added direction: ltr; to admin pages.
  • \n
  • Improvement: Added focus/blur events to scan activity log ajax to improve server performance.
  • \n
  • Improvement: Merged wp_option charset and database vulnerability scans to improve performance and make UI more intuitive.
  • \n
  • Improvement: Opened \'See recent traffic\' in a new window from the Live Traffic page.
  • \n
  • Improvement: Updated browser pcap cache file for compatibility with detecting newer Firefox browsers.
  • \n
  • Fix: Fixed bug in directories excluded from scans (escaped directory separator).
  • \n
  • Fix: Updated known files and outdated plugins/themes to use wp_get_themes.
  • \n
  • Fix: Fixed bug with wfScanEngine where scans forked between scan_database_main and scan_database_finish would not display results of database scan.
  • \n
  • Fix: Added return false; to wfScan::error_handler to allow default error handler to process error.
  • \n
  • Fix: Fixed notice with wfUserIPRange::isValidIPv4Range.
  • \n
  • Fix: Fixed bug with \'Allow HTTPS pages to be cached\' setting being unset after saving options.
  • \n
  • Fix: Fixed a couple of typos and spelling.
  • \n
  • Fix: Fixed errors upon plugin activation where wfConfig was queried before it was created.
  • \n
  • Fix: Fixed issue with notices from serializing wordfenceDBScanner and private properties belonging to parent class.
  • \n
\n\n

6.0.3

\n\n
    \n
  • Fix: Fix for hosts that don\'t have IPv6 compiled into PHP (which is rare) we not manually define certain functions.
  • \n
\n\n

6.0.2

\n\n
    \n
  • Fix: Fixed an issue with the schema not updating when customers migrate to IPv6 schema to store IP\'s.
  • \n
  • Improvement: Added additional safety checks during the schema update.
  • \n
\n\n

6.0.1

\n\n
    \n
  • Feature: IPv6 fully supported. This includes whois, range blocking, IPv6 city lookup in live traffic, country blocking and all other security functions. See www.wordfence.com/blog/ for more info.
  • \n
  • Feature: New scanning routine examines the wp_options table for executable code based on a new infection we are seeing that is well hidden.
  • \n
  • Improvement: Prevent Googlebot from being blocked if user has configured a banned URL and Google tries to crawl it.
  • \n
  • Improvement: Improved detection for additional Google crawlers especially if an IP PTR resolves to a .googlebot.com domain.
  • \n
  • Fix: Fixed bug with https:// URLs not allowed in country blocking.
  • \n
  • Fix: Fixed typos.
  • \n
\n\n

5.3.12

\n\n
    \n
  • Fix: Wordfence no longer can appear on sub-sites on multi-site installs, only on the network admin panel.
  • \n
  • Fix: Wordfence dashboard widget only can appear on network admin dashboard in multi-site installs.
  • \n
  • Fix: No more multiple scheduled scans on multi-site.
  • \n
  • Fix: Fixed mixed-protocol warning if you\'re using SSL and Wordfence - our static assets are loaded without specifying protocol now.
  • \n
  • Fix: Fixed issue where non-existent users were shown in dashboard widget and email summary as valid users.
  • \n
  • Fix: Removed /e modifier in preg_replace for Diff_Renderer_Html_Array::formatLines since it is deprecated in PHP 5.5.
  • \n
  • Fix: Removed ssl_verify => false from wp_remote_post connectivity test since some versions of cURL will throw an error since WordPress uses their own certificate bundle.
  • \n
  • Fix: Fixed bug with activity report email date range (was one week ahead).
  • \n
  • Fix: Removed email summary report from cron on deactivation.
  • \n
  • Fix: Fixed an off-by-one bug in wfDirectoryIterator for maximum total files and max files per directory.
  • \n
  • Fix: Updated our browser data to fix an issue that caused newer browsers to appear in live traffic with version 0.0.
  • \n
  • Improvement: Updated the country database used for country blocking to April 2015 version.
  • \n
  • Improvement: Added an additional check for disabling script execution in the uploads directory that the .htaccess file actually contains our protection code before removing it.
  • \n
  • Improvement: Paused Live Traffic ajax request when the window/document loses focus to reduce server load.
  • \n
  • Improvement: Better error handling when making API calls to noc1 to help our support personell help you.
  • \n
  • Improvement: Added locked out IP\'s and IP\'s restricted through advanced blocking to the blocked IP log for dashboard and email summary.
  • \n
  • Improvement: Excluded whitelisted IP\'s from dashboard and widget email summary.
  • \n
\n\n

5.3.11

\n\n
    \n
  • Fix: Dasboard widget no longer appearing for all users.
  • \n
\n\n

5.3.10

\n\n
    \n
  • Fix: Removed .htaccess file the previous release created in wfcache directory that caused problems.
  • \n
\n\n

5.3.9

\n\n
    \n
  • Premium Feature: Password Auditing. Audit the strength of your admin and user-level passwords against our GPU based auditing cluster. Easily alert users to weak passwords or force a password change.
  • \n
  • Feature: Activity email summary. See options page to enable a weekly, bi-weekly or monthly activity summary.
  • \n
  • Feature: Activity summary dashboard widget.
  • \n
  • Fix: Fixed bug on plugin activation where the configuration table was being queried before it was created.
  • \n
  • Improvement: Added .htaccess to wfcache directory.
  • \n
  • Improvement: Switched to using wp_remote_post for Wordfence cloud API calls to improved SSL support and a more standards based approach.
  • \n
\n\n

5.3.8

\n\n
    \n
  • Customers running WP versions older than 3.9 don\'t support wp_normalize_path(). Added support for older WP versions to fix an error being thrown.
  • \n
\n\n

5.3.7

\n\n
    \n
  • Improvement: Updated country blocking database to the newest version (March 2015)
  • \n
  • Improvement: Added detection for many new samples we received (thanks all!) including a nasty polymorphic infection.
  • \n
  • Fix: Changed the way we find the plugin directory to fix a possible issue that would cause alerts to return blank plugin names.
  • \n
  • Fix: Improved Nginx detection so that we don\'t accidentally detect Nginx if you\'re running Apache.
  • \n
\n\n

5.3.6

\n\n
    \n
  • Feature: You can now block POST requests to your WordPress site that have an empty User-Agent and Referer header. This is a common pattern among badly written brute force bots.
  • \n
  • Feature: Added cron viewer at bottom of Wordfence options page. The plugin we were using to help diagnose customer issues is broken. Use this instead.
  • \n
  • Feature: Added DB table viewer at bottom of Wordfence options page. This is a read-only utility to view table names and detailed status. Also for customer diagnostic purposes.
  • \n
  • Improvement: Code cleanup after in-depth code analysis. Removed unused functions and variables and re-indented selected code.
  • \n
  • Fix: Fixed issue that appeared after last release where raw HTML tags were appearing in email alerts.
  • \n
  • Fix: Tour behaved inconsistently under some conditions. Fixed.
  • \n
  • Fix: Mismatched HTML tags in some presentation code. Fixed.
  • \n
  • Fix: When fetching theme list the interator had the same name as the array. Fixed.
  • \n
  • Fix: Detection for malware URLs in comments had a partial description in the issue. Was being overwritten when it should have been appended. Fixed.
  • \n
  • Fix: Check if dns_get_record() exists before using it to avoid warnings.
  • \n
  • Fix: If you have the wordfence security network disabled, the _wfVulnScanners table may have grown indefinitely. Fixed so it\'s regularly truncated.
  • \n
  • Fix: wordfence::getLog() was private and should be public. Fixed.
  • \n
  • Fix: Removed warning about _wfsf not being an element of GET params. Usually hidden, but in case something checks error_get_last()
  • \n
\n\n

5.3.5

\n\n
    \n
  • Update: Upgraded the geoIP country database to Jan 2015 version.
  • \n
  • Improvement: Added an option to disable execution of PHP code in the uploads directory as an added level of protection. Under \"Other Options\" on the Wordfence options page.
  • \n
  • Improvement: We now email you any malware URLs encountered and they won\'t be filtered by your spam filter because the URL is included in the alert email as an image.
  • \n
  • Fix: Fixed an issue that would cause multiple scans to be scheduled if the plugin was disabled and then reenabled.
  • \n
  • Fix: The name of malicious files detected are now included in the alert email sent containing the issues.
  • \n
\n\n

5.3.4

\n\n
    \n
  • Changed FAQ link when locked out and email unlock doesn\'t work to correct link.
  • \n
  • Falcon cache now creates files as mode 0644 for improved security.
  • \n
  • Updated GeoIP database to December 2014 version.
  • \n
\n\n

5.3.3

\n\n
    \n
  • Security fix. Thanks Matt Barry.
  • \n
  • Changed what we consider to be private addresses to a smaller range of addresses. See current range at: http://docs.wordfence.com/en/How_Wordfence_handles_Private_Addresses
  • \n
  • Fixed a warning about an undefined value which appeared after we added referer blocking in 5.3.2.
  • \n
\n\n

5.3.2

\n\n
    \n
  • Feature: Advanced blocking now includes referer blocking. i.e. you can block visitors arriving from certain websites or pretending to. See updated http://docs.wordfence.com/en/Advanced_Blocking
  • \n
  • Feature: Developers, you can now ask Wordfence to whitelist your server IP by calling wordfence::whitelistIP(). See http://docs.wordfence.com/en/WhitelistIP
  • \n
\n\n

5.3.1

\n\n
    \n
  • IP to Country database updated to November 4th 2014 version.
  • \n
  • Options export and import now also exports Country Blocking and Scan Schedule configuration.
  • \n
  • Scans fully documented at docs.wordfence.com. Link on \'Scan\' page under heading.
  • \n
  • Live Traffic fully documented at docs.wordfence.com. Link on Live Traffic page.
  • \n
  • Falcon Engine/Wordfence Caching fully documented. Link on Performance Setup page.
  • \n
  • Blocked IPs, locking and throttling fully documented. Link on Blocked IPs page.
  • \n
  • Cellphone Sign-in fully documented. Link under title on Cellphone sign-in page.
  • \n
  • Country blocking fully documented. Link on Country blocking page.
  • \n
  • Scan Scheduling fully documented. Link on Scan Scheduling page under title.
  • \n
  • Whois and Advanced Blocking documented including how Live Traffic, Whois and Advanced blocking work together.
  • \n
  • Removed unnecessary text from several menu items and moved into official docs where needed.
  • \n
\n\n

5.2.9

\n\n
    \n
  • Added ability to export Wordfence settings and reimport on one or many sites using secure token.
  • \n
  • Added API function to programatically import Wordfence settings from another WordPress site.
  • \n
  • Upgraded to Wordfence API version 2.14.
  • \n
\n\n

5.2.8

\n\n
    \n
  • Detailed documentation for all options on the Wordfence options page. Launching docs.wordfence.com wiki.
  • \n
  • Fixed server-side issue where diff\'ing certain files would give a blank page or an API error.
  • \n
  • Removed now unused whois library because we\'re now using Wordfence API server to get around whois port blocking.
  • \n
\n\n

5.2.7

\n\n
    \n
  • Fixed issue that would cause infected files with identical content to only have the first file found show up in scans and the rest would not appear.
  • \n
  • Whois queries now go via our own server as a workaround for hosting providers who block your web server\'s access to port 43 preventing you from making a direct whois query.
  • \n
  • Fixed issue that caused litespeed users to receive multiple warnings about the noabort issue.
  • \n
  • Added detection for 5 new malware variants. Thanks to Dave M. and others for the samples. Keep them coming folks!
  • \n
  • Updated Wordfence server API to version 2.12.
  • \n
  • Added facility at bottom of Wordfence options page to send a test email from your WordPress system to check if email sending is working.
  • \n
  • Suppress LOCK_EX flock() warnings in falcon engine that were being generated by sites that use NFS and don\'t support flock() or reliable file locking.
  • \n
  • Updated to the October 2014 version of the Geo IP country DB. (newest edition)
  • \n
\n\n

5.2.6

\n\n
    \n
  • Fixed bug that caused country blocking and redirecting to an external URL to not work if the external URL\'s relative path matched the current page\'s relative path.
  • \n
  • Made it clear that country blocking URL\'s require absolute URL\'s.
  • \n
\n\n

5.2.5

\n\n
    \n
  • Security release. Update immediately. Thanks to Julio Potier.
  • \n
  • Code hardening including improved sanitization and an additional nonce for unlock email form. Special thanks to Ryan Satterfield for the hard work.
  • \n
  • Stability of auto-update improved for LiteSpeed customers. We auto-detect if you don\'t have E=noabort:1 in your .htaccess and give you instructions.
  • \n
  • Auto-update also disabled now for LiteSpeed customers who don\'t have E=noabort:1 and you will get an email alert with an explanation.
  • \n
  • Fixed a bug that may cause you to have advanced blocking patterns disabled with falcon engine enabled that should not be disabled.
  • \n
  • Removed a benign warning in wfCache.php.
  • \n
  • Added clarity to the banned URL option on the options page. All URL\'s must be relative.
  • \n
  • Added a primary key to the wp_wfStatus table which is required for certain incremental backup plugins and utilities.
  • \n
  • Fixed advanced country blocking which was not correctly displaying advanced options.
  • \n
  • Migrated to using wp_kses() for sanitization.
  • \n
  • Prevent IP spoofing in default Wordfence IP configuration.
  • \n
  • Change explanations of how Wordfence gets IP\'s to make it clear which to use to prevent spoofing.
  • \n
  • Make it clear that the option to have IP\'s immediately blocked when they access a URL requires relative URL\'s starting with a forward slash.
  • \n
  • Whitelist Sucuri\'s scanning IP addresses which were getting blocked because they triggered Wordfence blocking during a scan.
  • \n
  • Improved Wordfence\'s code that acquires the visitor IP to block certain spoofing attacks, be more platform agnostic and deal with visits from private IP\'s more elegantly.
  • \n
\n\n

5.2.4

\n\n
    \n
  • Security release. Upgrade immediately.
  • \n
  • This release fixes an XSS vunlerability on Wordfence \"view all traffic from IP\" page.
  • \n
  • Also fixes a hard to exploit XSS which exists if you have your site as the default site on your web server, falcon enabled and debugging comments enabled.
  • \n
  • Improves Revolution Slider proteciton.
  • \n
  • Fixed bypass for fake googlebot blocking.
  • \n
\n\n

5.2.3

\n\n
    \n
  • Updated Geo IP country database to newest version (September 2014 edition)
  • \n
  • Security fix. Improved referrer sanitization in live traffic.
  • \n
  • Changed scan success messaging for clarity.
  • \n
  • Fixed minor bug in IP validation which manifested when users use IPv6 to IPv4 translation which produces 255.x.x.x addrs.
  • \n
\n\n

5.2.2

\n\n
    \n
  • Protection from the Slider Revolution Plugin arbitrary file download vulnerability announced today. Attempts to download any .php file including wp-config.php are denied.
  • \n
  • Changed the Wordfence Memory config option\'s label to make it clearer what the option does.
  • \n
  • Moved screenshots out of plugin distro directory to reduce plugin payload size.
  • \n
\n\n

5.2.1

\n\n
    \n
  • Fix: Users with large lists of blocked IP\'s (over 2,100) would receive a browser error \"Uncaught RangeError: Maximum call stack size exceeded\". Fixed.
  • \n
  • Improvement: Added detection for FOPO obfuscation often used by hackers to obfuscate PHP code. Will detect a range of newer infections. (Server-side code change)
  • \n
\n\n

5.1.9

\n\n
    \n
  • Fix: Crawler triggering update cron job threw error about show_message() being redeclared at end of update. Fixed.
  • \n
  • Fix: Live traffic cities were incorrect and did not match country blocking block effects under certain conditions. Fixed.
  • \n
  • Fix: If a site database contained a table with dashes in the table name, we would throw an error at the end of every scan. Fixed.
  • \n
  • Improvement: Upgraded country DB to newest version.
  • \n
  • Improvement: Changed live traffic geo location caching to be 24 hours instead of a week so that geo DB updates for live traffic on our servers take effect sooner.
  • \n
  • Improvement: Ignoring .sql files in scans which are usually backups and contain many false positives, unless high sensitivity scanning is enabled.
  • \n
\n\n

5.1.8

\n\n
    \n
  • Fix: Option to disable config caching. You can find this new option at the bottom of the Wordfence options page.
  • \n
  • Note: If you are seeing the \"cron key does not match the saved key\" error, check the box to disable config caching at the bottom of the Wordfence options page, save and this will fix it.
  • \n
  • Note: If you are trying to save your Wordfence options and the options keep reverting, enable the \"disable config caching\" at the bottom of your Wordfence options page, save and this will fix it.
  • \n
\n\n

5.1.7

\n\n
    \n
  • Improvement: Wordfence now supports websites behind proxy servers when communicating with the Wordfence API servers.
  • \n
  • Fix: Removed old image files that were unused.
  • \n
\n\n

5.1.6

\n\n
    \n
  • Feature: Country blocking now lets you block login page OR rest of site or any combination. So you can now block the login page only for example.
  • \n
  • Improvement: Upgraded the country blocking database to the newest version which is July 2014.
  • \n
  • Improvement: Improved server-side performance for Wordfence scanning.
  • \n
  • Improvement: Offer the option to keep Wordfence up-to-date automatically.
  • \n
  • Improvement: If file contains malicious code, include filename in email alert summary info.
  • \n
  • Fix: Removed strings in readme.txt that were causing false positives in hosts own scanning software.
  • \n
  • Fix: Prevent lockout email alerts being sent for blank usernames.
  • \n
\n\n

5.1.5

\n\n
    \n
  • Fix: Bing crawler was being misidentified as human. Fixed.
  • \n
  • Fix: Escaping HTML on whois records. Thanks Nikhil Srivastava, TechDefencelabs (http://techdefencelabs.com)
  • \n
\n\n

5.1.4

\n\n
    \n
  • Feature: Auto updates for Wordfence! This is a much-requested feature by our power admin\'s. Enable the \"Update Wordfence automatically when a new version is released\" option on the Wordfence options page.
  • \n
  • Fix: Security fix. Thanks to Narendra Bhati from Suma Soft.
  • \n
\n\n

5.1.2

\n\n
    \n
  • Feature: You can now specify one or more URL\'s that if accessed will cause the IP to immediately be blocked. See below \"Other Options\" for the new feature.
  • \n
  • Improvement: Added additional debugging info when cron key does not match saved key to help diagnose any problems.
  • \n
  • Improvement: New Issues email now contains site URL rather than just hostname to help identify subdirectory sites.
  • \n
  • Improvement: Upgraded the country blocking database to the newest version which is June 2014.
  • \n
  • Fix: Some browser versions were being reported as 0.0. Updated browser detection.
  • \n
\n\n

5.1.1

\n\n
    \n
  • Improvement: WooCommerce now officially supported out of the box.
  • \n
  • Feature: Added the wordfence:doNotCache() function that you can call in your themes and plugins to prevent caching of items.
  • \n
  • Fix: Fixed the warning appearing in lib/wfUtils.php about a scalar being treated as an array which appeared in 5.0.9.
  • \n
  • Fix: Failed logins were not being logged for non-existent usernames that were set to immediatelly block. Fixed.
  • \n
  • Fix: Removed several warnings/notices that would appear when WP_DEBUG is enabled.
  • \n
  • Fix: Added default character set to .htaccess which fixes garbled international characters being served from cache on sites with no default apache charset.
  • \n
\n\n

5.0.9

\n\n
    \n
  • Feature: (Premium) Advanced Comment Spam Filter. Checks comment source IP, author URL and hosts and IP\'s in body against additional spam lists.
  • \n
  • Feature: (Premium) Check if your site is being Spamvertised i.e. your domain is being included in spam emails. Usually indicates you\'ve been hacked.
  • \n
  • Feature: (Premium) Check if your website IP is generating spam. Checks against spam lists if your IP is a known source of spam.
  • \n
  • Improvement: Cache clearing errors are nown shown with clear explanations.
  • \n
  • Improvement: Added lightweight stats logging internally in preparation for displaying them on the admin UI in the next release.
  • \n
  • Fix: If a non-existent user tries to sign in it is not logged in the live logins tab. Fixed.
  • \n
  • Fix: Removed warning \"Trying to get property of non-object\" that would occur under certain conditions.
  • \n
  • Fix: Removed call to is_404() which was not having any effect and would issue a warning if debug mode is enabled.
  • \n
  • Fix: Check if CURL is installed as part of connectivity test.
  • \n
\n\n

5.0.8

\n\n
    \n
  • Feature: Support for Jetpack Mobile Theme in Falcon Caching engine. Regular pages are cached, mobile pages are served direct to browser.
  • \n
  • Improvement: Pages that are less than 1000 bytes will not be cached. The avg web page size in 2014 is 1246,000 bytes. Anything less than 1000 bytes is usually an error.
  • \n
  • Improvement: Wordfence will now request 128M on hosts instead of 64M where memory in php.ini is set too low.
  • \n
  • Fix: Wordfence was caching 404\'s under certain conditions. Fixed.
  • \n
  • Fix: Nginx/FastCGI users would sometimes receive an error about not being able to edit .htaccess. Fixed.
  • \n
\n\n

5.0.7

\n\n
    \n
  • Feature: Immediately block IP if hacker tries any of the following usernames. (Comma separated list that you can specify on the Wordfence options page)
  • \n
  • Feature: Exclude exact URL\'s from caching. Specifically, this allows you to exclude the home page which was not possible before.
  • \n
  • Feature: Exclude browsers or partial browser matches and specific cookies from caching.
  • \n
  • Fix: Fixed issue where /.. dirs would be included in certain scandir operations.
  • \n
  • Fix: logHuman function was not analyzing user-agent strings correctly which would allow some crawlers that execute JS to be logged as humans.
  • \n
  • Fix: Removed ob_end_clean warnings about empty buffers when a human is being logged.
  • \n
  • Fix: Removed warning in lib/wfCache.php caused by unset $_SERVER[\'QUERY_STRING\'] when we check it.
  • \n
  • Fix: Fixed \"logged out as \'\'\" blank username logout messages.
  • \n
  • Fix: Improved security of config cache by adding a PHP header to file that we strip. Already secure because we have a .htaccess denying access, but more is better.
  • \n
  • Fix: Falcon Engine option to clear Falcon cache when a post scheduled to be published in future is published.
  • \n
  • Fix: Fixed Heartbleed scans hanging.
  • \n
\n\n

5.0.6

\n\n
    \n
  • Feature: Prevent discovery of usernames through \'?/author=N\' scans. New option under login security which you can enable.
  • \n
  • Fix: Introduced new global hash whitelist on our servers that drastically reduces false positives in all scans especially theme and plugin scans.
  • \n
  • Fix: Fixed issue that corrupted .htaccess because stat cache would store file size and cause filesize() to report incorrect size when reading/writing .htaccess.
  • \n
  • Fix: Fixed LiteSpeed issue where Falcon Engine would not serve cached pages under LiteSpeed and LiteSpeed warned about unknown server variable in .htaccess.
  • \n
  • Fix: Fixed issue where Wordfence Security Network won\'t block known bad IP after first login attempt if \"Don\'t let WordPress reveal valid users in login errors\" option is not enabled.
  • \n
  • Fix: Sites installed under a directory would sometimes see Falcon not serving cached docs.
  • \n
  • Fix: If you are a premium customer and you have 2FA enabled and your key expires, fixed issue that may have caused you to get locked out.
  • \n
  • Improvement: If your Premium API key now expires, we simply downgrade you to free scanning and continue rather than disabling Wordfence.
  • \n
  • Improvement: Email warnings a few days before your Premium key expires so you have a chance to upgrade for uninterrupted service.
  • \n
\n\n

5.0.5

\n\n
    \n
  • Fix: Removed mysql_real_escape_string because it?s deprecated. Using WP?s internal escape.
  • \n
  • Fix: Wordfence issues list would be deleted halfway through scan under certain conditions.
  • \n
  • Fix: Connection tester would generate php error under certain conditions.
  • \n
\n\n

5.0.4

\n\n
    \n
  • Feature: We now scan for the infamous heartbleed openssl vulnerability using a non-intrusive scan method safe for production servers.
  • \n
  • Improvement: We now check if .htaccess is writable and if not we give you rules to manually enable Falcon.
  • \n
  • Improvement: Once Falcon is enabled, if we can?t write to .htaccess, we fall back to PHP based IP blocking.
  • \n
  • Feature: You can now clear pages and posts from the cache on the list-posts page under each item or on their edit pages next to the Update button.
  • \n
  • Fix: We now support sites who use a root URI but store their files and .htaccess in a subdirectory of the web root.
  • \n
  • Fix: Added an additional filter to prevent crawlers like Bing who execute javascript from being logged as humans.
  • \n
  • Fix: Changed the extension of the backup .htaccess to be .txt to avoid anti-virus software alerting on a download with .com extension. [Props to Scott N. for catching this]
  • \n
\n\n

5.0.3

\n\n
    \n
  • Removed ability to disable XML-RPC. The feature broke many mobile apps and other remote services.
  • \n
\n\n

5.0.2

\n\n
    \n
  • Fix: Issue that caused users running WordPress in debug mode to see a is_404 warning message.
  • \n
  • Fix: Issue that caused Call to undefined function wp_get_current_user warning.
  • \n
  • Fix: Issue that caused caching to not work on sites using subdirectories.
  • \n
  • Fix: Issue that caused SQL errors to periodically appear about wfPerfLog table.
  • \n
  • Fix: Issue that caused warnings about array elements not being declared.
  • \n
\n\n

5.0.1

\n\n
    \n
  • To see a video introduction of Falcon Engine included with Wordfence 5, please watch this video
  • \n
  • SUMMARY: This is a major release which includes Falcon Engine which provides the fastest WordPress caching available today. It also includes many other improvements and fixes. Upgrade immediatelly to get a massive performance boost for your site, many new features and fixes.
  • \n
  • Feature: Falcon Engine provides the fastest caching algorithm for WordPress. Get up to a 50x site speedup now when you use Wordfence.
  • \n
  • Feature: PHP based caching as an alternative to Falcon.
  • \n
  • Feature: IP, browser and IP range blocking is now done using .htaccess if Falcon Engine is enabled providing a big performance boost.
  • \n
  • Feature: Falcon and PHP caching includes ability to exclude URL patterns from cache along with cache management.
  • \n
  • Feature: Disable XML-RPC in WordPress to prevent your site from being used as a drone in a DDoS attack.
  • \n
  • Feature: Option to disable Wordfence cookies from being sent.
  • \n
  • Feature: Option to start all scans using the remote start-scan option. This may fix some customers who can?t start scans.
  • \n
  • Feature: Falcon Engine includes the ability to block IP ranges using .htaccess. We take your ranges and convert them into CIDR compatible .htaccess lines that very efficiently block the ranges you?ve specified. Another great performance improvement.
  • \n
  • Feature: If user disables permalinks we automatically disable Falcon Engine caching.
  • \n
  • Feature: Before you enable Falcon Engine we make you download a backup of your .htaccess file just in case.
  • \n
  • Improvement: Real-time traffic monitoring loads asynchronously to provide a faster user experience.
  • \n
  • Improvement: All Wordfence configuration variables are now cached on disk rather than repeatedly looked up on the database providing a big performance improvement.
  • \n
  • Improvement: Updated browser detection algorithms for new browsers.
  • \n
  • Improvement: Updated country GeoIP database to the April edition.
  • \n
  • Improvement: Improved performance by only loading routines required for logged in users if they have a login cookie. No DB lookup required.
  • \n
  • Improvement: Added on-off switches to top of live traffic to make it easy to turn on/off.
  • \n
  • Improvement: Removed marketing message from Wordfence email alerts.
  • \n
  • Improvement: Added ability to exclude files from scan that match patterns. Multiple excludes using wildcards allowed.
  • \n
  • Improvement: Improved performance by moving all actions that would only be used by a logged in user to be set up using add_action if the user actually has a login cookie.
  • \n
  • Fix: Added a throttle to prevent identical email alerts being sent repeatedly.
  • \n
  • Fix: Changed order of IP blocking and alerting code to prevent multiple email alerts being sent in a race condition.
  • \n
  • Fix: Cleaned up legacy code including removing all array_push statements.
  • \n
  • Fix: Added try/catch block to fileTooBig() function when we encounter files that we can?t seek on and that throw an IO error to prevent scans from crashing.
  • \n
  • Fix: Resolved issue that may have caused wfhits table to grow continuously on some sites.
  • \n
  • Fix: Ensured that runInstall() isn?t called multiple times.
  • \n
  • Fix: Moved register_activation_hook to only be called if the user has a login cookie and has a likelihood of being actually logged in as admin. Performance improvement.
  • \n
  • Fix: Added doEarlyAccessLogging routine to move logging before caching so we can have both.
  • \n
  • Fix: Removed the ?update LOW_PRIORITY? sql statement when updating wfHits which was intended to speed up MySQL performance but may have actually caused queries to queue up and slow things down.
  • \n
  • Fix: Whitelisted IP?s are no longer put through two factor authentication as one would expect.
  • \n
  • Fix: Changed our wp_enqueue_script calls to add a ?wf? prefix to our script names so that another plugin doesn?t cause our scripts to not load.
  • \n
  • Fix: Removed code that would cause all alerts to be turned on for some users under certain conditions.
  • \n
  • Fix: Automatically excluding backup files and log files from URL scans to reduce false positives on referring URLs in logs and backups.
  • \n
\n\n

4.0.3

\n\n
    \n
  • Improvement: Added \"high sensitivity\" scanning which catches evals with other bad functions but may give false positives. Not enabled by default.
  • \n
  • Fix: Removed code that caused error message during scan initialization.
  • \n
  • Fix: IP to number conversation code had a problem with IP\'s with a single 0 in them. Bug was introduced in 4.0.2.
  • \n
  • Fix: Very fast attacks would generate a lot of email alerts due to race condition. Fixed.
  • \n
\n\n

4.0.2

\n\n
    \n
  • Feature: Ability to bulk repair or delete files when cleaning a site.
  • \n
  • Feature: You can now limit the number of emails per hour that Wordfence sends.
  • \n
  • Feature: You can now scan image files as if they are executables when cleaning a site. See the option under scanning options.
  • \n
  • Feature: New connectivity test for wp_remote_post to our servers.
  • \n
  • Feature: New detection for backdoors that were previously missed in scans.
  • \n
  • Improvement: Added a link to the Wordfence admin URL for a site when an email alert is received.
  • \n
  • Improvement: Removed \"buy premium\" message from the alert emails which was causing confusion and irritation.
  • \n
  • Improvement: Improved private address detection by making it faster and adding all private subnets, not just RFC1918 nets.
  • \n
  • Improvement: Switched to wp_remote_get for triggering scans instead of wp_remote_post()
  • \n
  • Improvement: Added some more verbose debugging for scan starts when in debug mode.
  • \n
  • Improvement: No longer include private addresses when checking malware URL\'s and scanning IP\'s.
  • \n
  • Improvement: Added code to disable Wordfence if WordPress is installing.
  • \n
  • Fix: Text change because not all \"scan\" buttons are blue.
  • \n
  • Fix: Removed URL from wfBrowscapCache.php which was causing false positives during scans.
  • \n
  • Fix: Fixed SQL bug that triggered when we logged a vulnerability scan.
  • \n
  • Fix: IP range blocks where a digit is preceded by a \'0\' char will no longer generate an error.
  • \n
  • Fix: The getIP() routine will no longer use the IP closest to a visitor in network topology if that IP is a private address and behind a proxy.
  • \n
\n\n

4.0.1

\n\n
    \n
  • Real-time WordPress Security Network Launched.
  • \n
  • If another site is attacked and blocks the attacker, your site also blocks the attacker. Shared data among Wordfence sites.
  • \n
  • See our home page on www.wordfence.com for a live map of attacks being blocked. Then blog about us!!
  • \n
  • Fixed bug where wfBrowscapCache.php is reported as malicious.
  • \n
  • Big improvement in scanning speed and efficiency of URL\'s and IP addresses.
  • \n
  • Fixed preg_replace() warning by using newer preg_replace_callback() func.
  • \n
\n\n

3.9.1

\n\n
    \n
  • Fixed issue that caused Wordfence security to not log 404\'s.
  • \n
  • Made 404\'s more visible on the live traffic page.
  • \n
  • Fixed panel width that was too narrow for WP 3.8 on live traffic and issues pages.
  • \n
  • Report hack attempts to Wordfence Security scanning server for DDoS protection.
  • \n
  • Remind admin if security alert email is blank and tour is closed.
  • \n
  • Updated links to new Wordfence Security support website at support.wordfence.com.
  • \n
  • Made Wordfence Security paid-users-only message a little more user friendly.
  • \n
\n\n

3.8.9

\n\n
    \n
  • Fix: Fixed issue that caused certain Wordfence Security login functions to not work. Was a PHP 5.4 vs older version incompatability issue.
  • \n
  • Updated GeoIP location database to new version for country blocking.
  • \n
  • Fix: Resolved issue that caused the Issues that Wordfence Security found to not be displayed in some cases.
  • \n
  • Updated Wordfence Security to WordPress 3.8 Compatability.
  • \n
\n\n

3.8.8

\n\n
    \n
  • Fix: We now truncate the wfHoover table after scans to save disk space on servers with huge numbers of URLs in files.
  • \n
  • Fix: isStrongPasswd function was being called statically but not declared as static.
  • \n
  • Fix: Improved error reporting when we can\'t connect to Wordfence Security API servers.
  • \n
  • Fix: Fixed code that was causing an error log warning when we read the requested URL.
  • \n
  • Fix: Disable and clear cellphone sign-in if you downgrade to free from paid to prevent lockouts.
  • \n
\n\n

3.8.7

\n\n
    \n
  • Fixed issue that caused cellphone sign-in to not work with PHP version 5.4 or greater.
  • \n
  • Fixed conflict with other plugins that also use the Whois PHP library.
  • \n
  • Fixed an unsanitized user-agent string.
  • \n
  • Added new malware signatures for string rot13 heuristics.
  • \n
  • Updated compatibility to 3.7.
  • \n
\n\n

3.8.6

\n\n
    \n
  • Fixed issue that caused scheduled scans to run even if disabled.
  • \n
  • Fixed display bug when signin fails.
  • \n
\n\n

3.8.5

\n\n
    \n
  • Fixed issue that caused Human traffic to not be logged in Wordfence Security live traffic view.
  • \n
\n\n

3.8.4

\n\n
    \n
  • Removed Wordfence Security .htaccess because it doesn\'t offer any security functionality and increases incompatibility.
  • \n
  • Fixed spelling errors.
  • \n
  • Added check to see if HTTP_USER_AGENT server variable is defined before using it to suppress large number of warnings on some sites.
  • \n
  • Changed the way we call admin_url to the correct syntax.
  • \n
  • Correctly escaped HTML on error messages.
  • \n
  • Fixed issue that generated non-compliant query string.
  • \n
  • Updated GeoIP database to newest version.
  • \n
\n\n

3.8.3

\n\n
    \n
  • Updated GeoIP database for country blocking security.
  • \n
  • Fixed bug in Wordfence Security where we called reverseLookup in wfUtils statically and it\'s a non-static method. Thanks Juliette.
  • \n
  • Removed characters that are invalid in an IP address or domain from the Whois facility to improve security.
  • \n
  • Prevent users from creating 1 character passwords to improve security.
  • \n
  • Fixed issue that caused an invalid variable to be used in an error message and improved Wordfence Security temporary file implementation for get_ser/ser_ser functions. Thanks R.P.
  • \n
  • Fixed issue that caused IP to output as integer in status msg. Not security related but display issue.
  • \n
  • Declared Wordfence Security reverseLookup function as static to remove warning.
  • \n
  • Fixed returnARr syntax error in Wordfence Security class.
  • \n
  • Note, there is no Wordfence Security version 3.8.2.
  • \n
\n\n

3.8.1

\n\n
    \n
  • Added Cellphone Sign-in (Two Factor Authentication) for paid Wordfence Security members. Stop brute-force attacks permanently! See new \"Cellphone Sign-in\" menu option.
  • \n
  • Added ability to enforce strong passwords using Wordfence Security when accounts are created or users change their password. See Wordfence Security \'options\' page under \'Login Security Options\'.
  • \n
  • Added new backdoor/malware signatures to Wordfence Security scanning including detection for spamming scripts, youtube spam scripts and a new attack shell.
  • \n
  • Fixed issue: Under some conditions, files not part of core or a known theme or plugin would be excluded from a Wordfence Security scan.
  • \n
  • Fixes from Juliette R. F. Remove warnings for unset variables. Fix options \'save\' spinner spinning infinitely on some platforms. Removed redundant error handling code in Wordfence Security.
  • \n
  • Added ability to downgrade a paid Wordfence Security license to free.
  • \n
\n\n

3.7.2

\n\n
    \n
  • Fixed issue that caused locked out IP\'s to not appear, or to appear with incorrect \"locked out until\" time.
  • \n
\n\n

3.7.1

\n\n
    \n
  • Moved global firewall, login security and live traffic options to top of options page.
  • \n
  • Made it clear that if you have Wordfence Security firewall disabled, IP\'s won\'t be blocked, country blocking won\'t work and advanced blocking won\'t work with warnings on each page.
  • \n
\n\n

3.6.9

\n\n
    \n
  • Fixed JS error in Wordfence Security that occurs occasionally when users are viewing Wordfence Security activity log in real-time.
  • \n
  • New Feature: Prevent users registering \'admin\' username if it doesn\'t exist to improve security. Recommended if you\'ve deleted \'admin\'. Enable on \'options\' page.
  • \n
  • Check if Wordfence Security GeoIP library is already declared for all functions. Fixes Fatal error: Cannot redeclare geoip_country_code_by_name.
  • \n
  • Fixed a Wordfence Security compatibility issue with sites and hosts using Varnish front-end cache to ensure legit users don\'t get blocked. Added two HTTP no-cache and Expires headers.
  • \n
  • Fixed bug when using Wordfence Security Advanced User-Agent blocking with certain patterns this would appear: Warning: preg_match() [function.preg-match]: Unknown modifier
  • \n
  • Vastly improved speed of Wordfence Security Advanced User-Agent blocking security feature. No longer using regex but still support wildcards using fnmatch()
  • \n
  • We now support usernames with spaces in the list of users to ignore in the live traffic config on \'options\' page.
  • \n
  • Improved language in status messages to avoid confusion. Changed \"unrecognized files\" to \"additional files\" to describe non-core/theme/plugin files.
  • \n
\n\n

3.6.8

\n\n
    \n
  • Fixed bug in Wordfence Security that caused IP range blocking to not block.
  • \n
  • Fixed bug that caused unblocking a permanently blocked IP to work, but not refresh the list.
  • \n
  • Added usernames to the email you receive when a user is locked out.
  • \n
  • Added a few more status messages for Wordfence Security URL malware scanning.
  • \n
  • Removed the sockets function call from connection testing because some hosts don\'t allow calls to socket_create()
  • \n
  • Added detection in the Wordfence Security Whois page to check if the server has the fsockopen() function available with helpful message if it\'s disabled.
  • \n
  • Whitelisted IP\'s now override Wordfence Security country blocking and range blocking.
  • \n
  • Removed Bluehost affiliate links for free customers
  • \n
  • Fixed issue that caused scans to crash when checking URLs for malware.
  • \n
  • Fixed issue that caused scans with large numbers of posts that contain the same URL to crash.
  • \n
  • Updated the Wordfence Security GeoIP database for country blocking to newest version.
  • \n
\n\n

3.6.7

\n\n
    \n
  • Improved security for Cloudflare customers to prevent spoofing attacks and protect when a hacker bypasses Cloudflare proxies.
  • \n
  • Added clear explanation of what increasing AJAX polling time does on options page.
  • \n
  • Fixed issue with Wordfence Security detecting itself as malware. We messed up the version number in previous release.
  • \n
\n\n

3.6.6

\n\n
    \n
  • Added option to change AJAX polling frequency
  • \n
  • Fixed issue that caused whitelisted IP\'s to not be whitelisted.
  • \n
  • Added code that prevents blocking of Wordfence\'s API server (or Wordfence Security will cease to function)
  • \n
  • Added link at bottom of \'options\' page to test connectivity to our API servers.
  • \n
  • Include any CURL error numbers in error reporting.
  • \n
  • Fixed issue that caused IP range blocking to not block access to login page.
  • \n
  • Fixed issue that caused cache files to be flagged as malicious.
  • \n
\n\n

3.6.5

\n\n
    \n
  • Fixed Fatal error: func_get_args(): Can\'t be used as a function parameter.
  • \n
  • This bug affected users using PHP older than 5.3.0
  • \n
\n\n

3.6.4

\n\n
    \n
  • Fixed a major javascript bug that snuck in 2 releases ago and has disabled many features for Internet Explorer browsers.
  • \n
  • Clarified range blocking examples.
  • \n
\n\n

3.6.3

\n\n
    \n
  • Fixed \'max_user_connections\' issue.
  • \n
  • Wordfence Security now uses WordPress\'s WPDB and this halves the number of DB connections Wordfence Security establishes to your DB.
  • \n
  • Wordfence Security is now HyperDB compatible.
  • \n
  • Advanced blocking i.e. Browser and IP Range blocking is now a free feature.
  • \n
  • We no longer disable Live Traffic if we detect a caching plugin. Based on user feedback, apparently live traffic actually works with those plugins.
  • \n
  • Fixed issue that causes site to crash if a conflicting GeoIP library is installed.
  • \n
  • Changed logHuman routine to do a LOW_PRIORITY MySQL update to speed things up.
  • \n
  • Login failure counter is now reset if you send yourself an unlock email so you\'re not locked out again after 1 failure.
  • \n
  • The free version of Wordfence Security is now supported with ads at the top of the admin pages. Please visit our sponsors and help keep Wordfence Security free!
  • \n
  • Fixed issue that may cause scans to not be scheduled using the default schedule for new users.
  • \n
  • There was no 3.6.2 release, in case you\'re wondering about the version skip.
  • \n
\n\n

3.6.1

\n\n
    \n
  • Major new release that includes the much asked for IP Range blocking with ISP blocking ability and browser blocking.
  • \n
  • Added Wordfence Security feature: WHOIS for IP\'s and Domains. Supports all registries and local rWhois
  • \n
  • Added Wordfence Security feature: Advanced Blocking to block IP ranges and browser patterns.
  • \n
  • Added Wordfence Security feature: WHOIS on live traffic pages.
  • \n
  • Added Wordfence Security feature: network blocking links on live traffic pages.
  • \n
  • Fixed bug where W3 Total Cache and WP Super Cache cache blocked Wordfence Security pages.
  • \n
  • Added explanation of how caching affects live traffic logging if we detect a caching plugin.
  • \n
  • Fixed AJAX loading to deal with multiple parallel ajax requests.
  • \n
  • Updated tour to include info on new WHOIS and Advanced Blocking features.
  • \n
  • Changed manual IP blocks to be permanent by default.
  • \n
  • Fixed issue in Wordfence Security that caused live traffic page not to reload when IP is unblocked.
  • \n
  • Modified \"How does your site get IP\'s\" config to avoid confusing new users.
  • \n
  • Changed 503 block message to be more helpful with link to FAQ on how to unblock.
  • \n
  • Removed redundant code in wfAPI.php
  • \n
  • Optimized code by moving firewall specific code to execute only if firewall is enabled.
  • \n
  • Fixed issue that caused \"last attempted access\" to show over 500 months ago.
  • \n
  • Fixed issue that was causing warning in getIP() code.
  • \n
  • Upgraded to Wordfence Security API version 2.6.
  • \n
\n\n

3.5.3

\n\n
    \n
  • This is the dev version. Stable is 3.5.2.
  • \n
  • Added detection for \"hacked by badi\" hack. Check if wp_options has been changed to UTF-7.
  • \n
\n\n

3.5.2

\n\n
    \n
  • IP detection is now much more robust. Admins must specify how their site gets IP addresses.
  • \n
  • Fixed issue that would throw Ajax ticker into a hard loop and put load on a server if user is on \"options\" page and WF can\'t detect IPs.
  • \n
  • Added support for Cloudflare proxies when getting client\'s real IP address.
  • \n
  • If we fail to get an IP and then get an IP succesfully, we update the activity log.
  • \n
  • Activity log update in case of successful IP acquisition will warn if we\'re getting internal RFC1918 IP\'s e.g. the IP of your firewall.
  • \n
\n\n

3.5.1

\n\n
    \n
  • Fixed issue with twentyten, twentyeleven, twentytwelve themes showing up as modified in 3.5.
  • \n
  • Fixed issue with wpdb->prepare throwing warnings. WordPress changed their code and we have now caught up.
  • \n
  • Fixed issue of files containing \"silence is golden\" showing up as being changed with no executable content.
  • \n
\n\n

3.4.5

\n\n
    \n
  • Fixed security issue of being able to list wordfence Security\'s own virtual dir on some server configurations.
  • \n
  • Fixed issue of WF using deprecated function which caused warnings or errors on install.
  • \n
  • Added link to security alert mailing list on \"Scan\" page next to manual start scan button and in tour.
  • \n
\n\n

3.4.4

\n\n
    \n
  • Fixed issue that caused scans to not complete.
  • \n
  • Fixed issue that caused scans to launch a large number of child processes due to very short scan timeout.
  • \n
  • Fixed issue that caused websites that don\'t know their own hostname to not be able to scan.
  • \n
  • Added workaround for a bug in Better WP Security breaking Wordfence Security due to their code overwriting the WP version.
  • \n
  • Optimized the way we calculate max execution time for each process while scanning.
  • \n
\n\n

3.4.1

\n\n
    \n
  • Removed wfscan.php script and now using pseudo-ajax calls to fire off scans. Much more reliable.
  • \n
  • Removed visitor.php script and now using pseudo-ajax calls to log human visits.
  • \n
  • Added config option to allow admin to specify max execution time (advanced only!!).
  • \n
  • Fixed issue that caused API calls to fail on MultiSite installs.
  • \n
  • Fixed issue that caused comments to break on MultiSite installs under certain conditions.
  • \n
  • Fixed issue that caused incorrect domain to be shown in live traffic view on multi-site installs.
  • \n
  • Fixed issue where some proxies/firewalls send space delimited IP addresses in HTTP headers and Wordfence Security now handles that.
  • \n
  • Fixed issue that caused Wordfence Security to capture activation errors of other plugins.
  • \n
  • Geo IP database update to November 7th edition.
  • \n
\n\n

3.3.7

\n\n
    \n
  • Upgrade immediately. Fixes possible XSS vulnerability in Wordfence Security \"firewall unlock\" form.
  • \n
  • Also added rate limiting to max of 10 requests per second to the unlock form.
  • \n
\n\n

3.3.5

\n\n
    \n
  • Re-releasing to try and fix an issue with the WordPress plugin distro system.
  • \n
\n\n

3.3.4

\n\n
    \n
  • Fixed bug that caused malformed URLs to be sent to scanning server which caused errors on some installations.
  • \n
  • Fixed issue that caused scans to \"hang\" or stall on larger sites during \"Analyzing\" phase when we hash files. Sites of arbitrary size can now be scanned.
  • \n
  • Fixed issue that caused \"plugin generated X characters of unexpected output\" error during install or upgrade.
  • \n
\n\n

3.3.3

\n\n
    \n
  • Fixed errors caused by ini_set being disabled on certain servers.
  • \n
  • Removed error logging messages in certain cases because some badly configured hosts write these errors to the web browser.
  • \n
  • Fixed getIP code that was evaluating arrays as strings in some cases.
  • \n
  • Added error logging so that if there is an activation error, the Wordfence Security will display the actual error to you.
  • \n
  • Fixed issue that caused scan to output \"Could not get the administrator\'s user ID.\" when a user has changed their table prefixes under certain conditions.
  • \n
\n\n

3.3.2

\n\n
    \n
  • A complete rearchitecture of Wordfence Security scanning to massively improve performance.
  • \n
  • Our free customers are now 100% back in business. Apologies for the delay, but this was worth the wait.
  • \n
  • Wordfence Security is now 4X faster for both free and paid customers.
  • \n
  • Significantly reduced CPU and memory overhead.
  • \n
  • Significantly reduced network througput when communicating with Wordfence Security scanning servers.
  • \n
  • Big performance improvement on our own scanning servers which allows us to continue to provide Wordfence Security free for the forseeable future.
  • \n
  • Upgraded scanning API to version 2.4
  • \n
  • Upgraded Geo IP database to October version.
  • \n
  • Moved core, theme, plugin and malware scanning into hashing recursive routine for big performance gain.
  • \n
  • Removed need for fileQ in hashing routine for reduction in memory usage and reduction in DB write size.
  • \n
  • Removed send-packet architecture and now processing files locally by fetching comparison data from scanning server instead.
  • \n
  • Removed wfModTracker - old module that is no longer used.
  • \n
  • Malware is now scanned by fetching hash prefixes from WF server instead of sending hashes of every file to our server. Much more efficient.
  • \n
  • Made status messages in summary console a little more user friendly.
  • \n
\n\n

3.2.7

\n\n
    \n
  • Fixed dates and times in activity log alert emails and other emails to be in site\'s local timezone.
  • \n
  • Added advanced country blocking options which allow bypass if a special URL is hit.
  • \n
  • Added warning in options page if alert email is not configured under alert checkboxes.
  • \n
  • Modified scan times to be within 60 minute window after scheduled time to prevent stampede at the top of the hour on our scanning server.
  • \n
  • Fixed bug on Godaddy and a few other hosts where viewing list of files not in the repo caused error. This was caused by posix functions not being supported on Godaddy and some other hosts.
  • \n
\n\n

3.2.6

\n\n
    \n
  • Paid feature: Remote site vulnerability and infection scanning.
  • \n
\n\n

3.2.5

\n\n
    \n
  • Moved all attack signatures out of the plugin to prevent Wordfence Security being detected as malicious in a false positive.
  • \n
\n\n

3.2.4

\n\n
    \n
  • Improved country blocking to make bulk adding/deleting of countries much easier.
  • \n
  • Fixed bug that caused Google feed fetcher and other Google UA bots to get blocked if blocking of unverified Googlebots was enabled.
  • \n
  • Fixed issue where Locked out users were shown having the same expiry time as Blocked IP\'s.
  • \n
  • Fixed issue where Locked out users were not shown in the locked out list, but were still locked out if Blocked IP and Locked out expiry was different.
  • \n
  • Improved performance of whitelisting so if whitelisted, all rules are bypassed.
  • \n
  • Fixed issue that caused twentyten and twentyeleven themes to be shown as missing core files if they have been removed and theme scanning is enabled.
  • \n
  • Fixed issue that made it impossible to end the tour for Firefox users.
  • \n
\n\n

3.2.1

\n\n
    \n
  • Theme and plugin scanning is now free. Woohoo!
  • \n
  • Added introductory tour for Wordfence Security.
  • \n
  • Upgraded to Wordfence Security scanning API version 2.0 to allow free theme and plugin scanning.
  • \n
  • Fixed two issue with scheduled scanning for premium users that would cause scans to not run or run at wrong times under certain conditions.
  • \n
  • Added feature to view unknown files on system to help clean badly infected systems. See on scanning page in \"Tools\" under yellow box.
  • \n
  • Fixed blocked countries overflowing their container in the user interface.
  • \n
  • Fixed case where if user is using MySQL >= 5.1.16 and doesn\'t have the \"drop\" privilege, they can\'t truncate the wfFileQueue table and it could grow uncontrollably.
  • \n
  • Updated to the new Libyan flag.
  • \n
  • Fixed mysql_ping() reconnection to DB generating warnings.
  • \n
  • Fixed issue that caused scans to hang. Wordfence Security now processes smaller batches of files before checking if it needs to fork.
  • \n
  • NOTE: We removed a list of shells we\'re scanning for because they were yielding false positives on some host scanning software.
  • \n
  • DNS fix from previous release backed out because it\'s no longer needed. (We temporarily hardcoded an IP)
  • \n
\n\n

3.1.6

\n\n
    \n
  • Emergency release to deal with DNS issue.
  • \n
\n\n

3.1.4

\n\n
    \n
  • Fixed SQL error in code that checks if IP blockedTime has expired. Changed column type to signed.
  • \n
  • Added detection of malicious injected titles with scripts or meta redirects.
  • \n
  • Fixed bug introduced in previous release that prevents blocked IP\'s from being blocked.
  • \n
\n\n

3.1.2

\n\n
    \n
  • Fixed permanent IP blocking bug which caused permanently blocked IP\'s to no longer display in the list after some time, even though there were still blocked. (Incorrect SQL query)
  • \n
  • Fixed \"Can\'t get admin ID\" on scan starts for both MU and single site installs.
  • \n
  • Improved status messages for sites with very large numbers of comments.
  • \n
  • Fixed bug that caused sites in subdirectories to not be able to view site config or run the memory test on the Wordfence Security \"options\" page.
  • \n
  • Fixed database disconnect bug (mysql server has gone away). An additional fix was required to finally squash this bug.
  • \n
  • Removed the code that prevented you from installing Wordfence Security on Windows. Sorry Windows customers!
  • \n
  • Improved scheduling so that it is now more reliable.
  • \n
  • Fixed bug that caused a loop for customers who could not contact the Wordfence Security servers on install.
  • \n
  • Added helpful message if you get the \"can\'t connect to itself\" error message with some additional documentation to help solve this issue.
  • \n
  • Improved error reporting when Wordfence Security can\'t connect to the scanning servers. Now features a helpful explanation rather than a generic message.
  • \n
  • Added Country Geo-Blocking feature for paid customers.
  • \n
  • Added Scan Scheduling feature for paid customers.
  • \n
\n\n

3.1.1

\n\n
    \n
  • Added another fix for \"mysql server has gone away\" error. Wordfence Security now makes sure the DB is still connected and reconnects if not.
  • \n
  • Added new detection for encoded malicious code in files.
  • \n
  • Fixed bug introduced yesterday that prevented permanent blocking of IP\'s.
  • \n
  • Improved ability to detect if we\'re running on Windows (but we don\'t support Windows yet).
  • \n
  • Issue intelligent warning if Wordfence Security can\'t read base WordPress directory.
  • \n
  • Don\'t activate Wordfence Security if user is running Windows.
  • \n
  • Cleaned up errors if a file can\'t be scanned due to permission restrictions.
  • \n
  • Improved reporting of which user scan is running as and how we determined who the admin user is.
  • \n
\n\n

3.1.0

\n\n
    \n
  • Changed the way we monitor disk space from % to warning on 20 megs and critical on 5 megs remaining. This deals with very large disks in a more rational way. (Thanks Yael M. and Ola A.)
  • \n
  • We now deal with cases where the $_SERVER variable contains an array instead of string for IP address. It seems that some installations modify the value into an array. (Thanks S.S.)
  • \n
  • The Wordfence Security DB connection now more reliably changes the mysql timeout for the session to prevent \"mysql server has gone away\" errors. (Thanks Peter A.)
  • \n
\n\n

3.0.9

\n\n
    \n
  • Fixed problem where scan process can\'t get admin ID.
  • \n
  • Fixed issue that caused permanent IP\'s to not be permanent.
  • \n
  • Fixed SQL error when calculating if IP block has expired.
  • \n
  • Fixed incorrect calling of is_404 that caused intermittent issues.
  • \n
  • Fixed basedir warnings when scan tries to scan files it does not have access to.
  • \n
  • Fixed warning and incorrect calculation of rows in DB.
  • \n
  • Added ability to get IP from \"HTTP_X_REAL_IP\" header of a front-end proxy is sending it.
  • \n
  • Fixed warning about HTTPS element not existing in getRequestedURL()
  • \n
  • Fixed problem with paid vs free keys getting confused.
  • \n
  • Fixed error with fetching vulnerability patterns.
  • \n
\n\n

3.0.8

\n\n
    \n
  • Fixed bug that caused \"Could not get the administrator?s user ID. Scan can?t continue.\"
  • \n
\n\n

3.0.7

\n\n
    \n
  • Fixed bug that caused scan to loop, stop halfway or not start for many sites.
  • \n
  • Fix bug that caused scan to not start on sites with thousands (over 20,000 in one case) users.
  • \n
  • Scan start is now faster for sites with large numbers of users.
  • \n
  • Fix bug that caused scan to get killed when checking passwords on sites with thousands of users.
  • \n
  • Wordfence Security now intelligently determines how to do a loopback request to kick off a scan.
  • \n
  • Scan is no longer called with a cron key in HTTP header but uses a query string value to authenticate itself which is more reliable.
  • \n
\n\n

3.0.6

\n\n
    \n
  • Improved malware and phishing URL detection.
  • \n
  • Upgraded to Wordfence Security API version 1.9
  • \n
  • Fixed issue that caused large files to slow or crash a scan.
  • \n
  • Added workaround for PHP\'s broken filesize() function on 32 bit systems.
  • \n
  • Added an improved test mode for URL scanner for better unit testing on our end.
  • \n
  • Suppressed warnings issued when a reverse DNS lookup fails.
  • \n
  • Added improved debug output to becomeAdmin() function in scans to help diagnose scans not starting.
  • \n
\n\n

3.0.5

\n\n
    \n
  • Fixed \"The key used to start a scan has expired.\" error and added data to help diagnose future issues like this.
  • \n
  • Removed HTTPHeaders from wfHits table which was using a lot of disk space and not used much.
  • \n
  • Removed limiting wfHits table size because it was unreliable.
  • \n
  • We\'re now limiting wfHits to 20,000 rows and the rows are much smaller. About 2 to 8 megs.
  • \n
  • Fixed bug that could have caused install routine to run repeatedly.
  • \n
  • Fixed typo bug in blocking code that didn\'t have any impact but was sloppy.
  • \n
  • Changed wfscan.php message when accessed directly to be more helpful.
  • \n
\n\n

3.0.4

\n\n
    \n
  • Detects if the Wordfence Security app (not scanner) is short on memory and requests more
  • \n
  • Fixes an issue where scan breaks if all scanning options are disabled
  • \n
\n\n

3.0.3

\n\n
    \n
  • Issue that caused all core files to show as missing has been fixed.
  • \n
  • We now handle all API server errors gracefully using exceptions.
  • \n
  • If your installation didn\'t activate correctly you now get a friendly message.
  • \n
  • Removed unused menu_config.php code.
  • \n
  • The 503 message now tells you why your access to the site has been limited so that admin\'s can tune firewall rules better.
  • \n
  • We no longer reuse the WordPress wpdb handle because we get better stability with our own connection.
  • \n
\n\n

3.0.2

\n\n
    \n
  • Overall this release is a very important upgrade. It drastically reduces memory usage on systems with large files from hundreds of megs to around 8 megs max memory used per scan.
  • \n
  • Moved queue of files that get processed to a new DB table to save memory.
  • \n
  • Reduced max size of tables before we truncate to avoid long DB queries.
  • \n
  • Reduced max size of wfStatus table from 100,000 rows to 1,000 rows.
  • \n
  • Introduced feature to kill hung or crashed scans reliably.
  • \n
  • Made scan locking much more reliable to avoid multiple concurrent scans hogging resources.
  • \n
  • Debug status messages are no longer written to the DB in non-debug mode.
  • \n
  • Modified the list of unknown files we receive back from the WF scanning servers to be a packed string rather than an array which is more memory efficient.
  • \n
  • Added summary at the end of scans to show the peak memory that Wordfence Security used along with server peak memory.
  • \n
  • Hashes are now progressively sent to Wordfence Security servers during scan to drastically reduce memory usage.
  • \n
  • Upgraded to Wordfence Security server API version 1.8
  • \n
  • List of hosts that Wordfence Security URL scanner compiles now uses wfArray which is a very memory efficient packed binary structure.
  • \n
  • Writes that WF URL scanner makes to the DB are now batched into bulk inserts to reduce load on DB.
  • \n
  • Fixed bug in wfscan.php (scanning script) that could have caused scans to loop or pick up old data.
  • \n
  • Massively reduced the number of status messages we log, but kept very verbose logging for debug mode with a warning about DB load.
  • \n
  • Added summary messages instead of individual file scanning status messages which show files scanned and scan rate.
  • \n
  • Removed bin2hex and hex2bin conversions for scanning data which were slow, memory heavy and unneeded.
  • \n
  • Wordfence Security database class will now reuse the WordPress database handle from $wpdb if it can to reduce DB connections.
  • \n
\n\n

2.1.5

\n\n
    \n
  • Fixed bug that caused WF to not work when certain DB caching plugins are used and override wpdb object.
  • \n
  • Fixed Wordfence Security so activity log only shows our own errors unless in debug mode.
  • \n
  • Wordfence Security now deletes all it\'s tables and deletes all saved options when you deactivate the plugin.
  • \n
  • Removed all exit() on error statements. Critical errors are handled more gracefully by writing to the log instead.
  • \n
  • Fixed a bug that would cause a database loop until running out of memory under certain error conditions.
  • \n
  • Suppressed useless warnings that occur in environments with basedir set or where functions are disabled for security reasons.
  • \n
  • Removed redundant check that executed on every request and put it in activation instead.
  • \n
  • If serialization during scan breaks, exit gracefully instead of looping.
  • \n
  • Disk space in log is now shown as Gigabytes and formatted nicely.
  • \n
  • Removed wdie() function which is a little obnoxious. Writing to WF error log instead.
  • \n
  • Fixed bug where a non-empty but useless HTTP header can break getIP() function.
  • \n
  • Added useful data to error output if getIP() tells you it can\'t work on your system.
  • \n
  • Removed option to start scan in debug because it\'s no longer possible with a forked scan.
  • \n
  • Removed option to test process running time on a system because it breaks on most systems and confuses customers.
  • \n
  • Database connection errors no longer call die() but log an error instead in a way that removes the risk of a logging loop.
  • \n
  • Removed dropAll.php script because we now clean up tables on deactivate and it\'s not needed.
  • \n
  • Updated readme to show that we support 3.4.
  • \n
\n\n

2.1.4

\n\n
    \n
  • Fixed registered users not appearing in live traffic.
  • \n
  • Fixed temp file deletion bug that caused warnings and loops.
  • \n
  • Fixed issue that caused warning about WORDFENCE_VERSION
  • \n
  • Fixed Wordfence Security admin area not working under SSL
  • \n
  • Fixed bug that caused IP addresses of clients to be misinterpreted if there are multiple addresses from chained proxies.
  • \n
  • Now stripping port numbers from IP\'s which we weren\'t doing before.
  • \n
  • Added check for validity of IP\'s and report fatal error if it fails because this could lock users out.
  • \n
  • Improved error reporting including fixing an out of memory error when a specific error condition arose in wfConfig::set()
  • \n
  • Changed order of tmp dirs to be wordfence/lib protected dir first and then system temp dir. Added uploads as tmp dir for last resort.
  • \n
  • Malware URL\'s are now marked in red in alerts so it\'s obvious what the offending URL in a file is.
  • \n
\n\n

2.1.3

\n\n
    \n
  • Added fix for hosts that have max_allowed_packet set too small. We will write a temp file to disk instead if possible.
  • \n
  • Increased size of status column to 1000 chars
  • \n
\n\n

2.1.2

\n\n
    \n
  • Fixed issue with scan scheduling that caused a loop
  • \n
  • Fixed issue that caused version constant to not be included in scans
  • \n
\n\n

2.1.1

\n\n
    \n
  • Added ability to permanently block IP\'s
  • \n
  • Added ability to manually block IP\'s
  • \n
  • Made Wordfence Security more memory efficient, particularly the forking process.
  • \n
  • Fixed issue that caused WF to not work on databases with blank passwords.
  • \n
  • Wordfence Security now stops execution of a DB connection error is encountered.
  • \n
  • Clear cron jobs if Wordfence Security is uninstalled.
  • \n
  • Enabled hourly cron for Wordfence security network.
  • \n
  • Wordfence Security now works if your server doesn\'t have openssl installed
  • \n
  • Wordfence Security now works even if you don\'t have CURL
  • \n
  • Fixed visitor logging so it works with HTTPS websites.
  • \n
  • Alert emails now contain filenames in each alert description.
  • \n
  • Users with weak passwords alerts now contain the username in the email.
  • \n
  • Upgraded API to 1.7.
  • \n
  • Fixed issue that caused DISALLOW_FILE_MODS to make WF menu disappear.
  • \n
  • Modified wfDB to deal with very large queries without exceeding max_allowed_packet
  • \n
  • Fixed issue that broke ability to see file changes and repair files in security scan results.
  • \n
\n\n

2.1.0

\n\n
    \n
  • Fixed scans hanging on Dreamhost and other hosts.
  • \n
  • Made Wordfence Security more memory efficient.
  • \n
  • Wordfence Security scans are now broken into steps so we can scan a huge number of files, posts and comments.
  • \n
  • Alert emails now include IP address, hostname lookup and geographic location (city if available).
  • \n
  • Improved security scan locking. No longer time based but uses flock() if on unix or time on Windows.
  • \n
  • Suppressed warnings that WF was generating.
  • \n
  • Improve handling of non-standard wp-content directories.
  • \n
  • Fix restored files were still showing as changed if they contained international characters.
  • \n
  • Improve permission denied message if attempting to repair a file.
  • \n
  • Fixed problem that caused scans to not start because some hosts take too long to look up their own name.
  • \n
  • Fixed issue with Wordfence Security menu that caused it to not appear or conflict with other menus under certain conditions.
  • \n
  • Upgraded to security API version 1.6
  • \n
  • Improved geo lookup code for IP\'s to improve security.
  • \n
  • Fixed debug mode output in live status box - coloring was wrong.
  • \n
  • Added ajax status message to WF admin pages.
  • \n
  • Fixed colorbox popup so that it doesn\'t jump around on refresh.
  • \n
\n\n

2.0.7

\n\n
    \n
  • Fixed CSS bug that changed plugins page layout in admin area
  • \n
  • Added memory benchmark utility.
  • \n
  • Added process runtime benchmark utility.
  • \n
  • Added ability to security scan in debug mode which accesses the scan app directly.
  • \n
\n\n

2.0.6

\n\n
    \n
  • Added IP whitelisting including ability to whitelist ranges that are excluded from firewall and login security measures.
  • \n
  • RFC1918 private networks and loopback address is automatically whitelisted to prevent firewall or login security blocking internal routers and proxy servers, internal firewalls and internal users.
  • \n
  • Added WORDFENCE_VERSION constant to improve version lookup performance.
  • \n
  • Fixed issue that caused security scans to not start and humans to not be logged in live traffic. Wordfence Security makes security scan script and visitors script executable on install or upgrade now.
  • \n
  • Fixed bug that caused disk space scanning to still show an issue found in security scan summary even when user chooses to ignore the security issue.
  • \n
  • Made disk space thresholds 1 and 1.5% space remaining because many hosts have very large disks where 1% is gigabytes.
  • \n
  • Made wordfence Security database handle cache deal with concurrent connections to different databases.
  • \n
  • Improved Wordfence Security database library\'s error reporting.
  • \n
  • Improved performance when Wordfence Security looks up it\'s own version during security scans and other operations.
  • \n
  • Removed three rules in base wordfence Security htaccess that could cause 500 errors on servers that don\'t allow these options to be overridden. Does not affect htaccess security because we inherit the base htaccess and still protect our lib/ directory with our own htaccess.
  • \n
\n\n

2.0.5

\n\n
    \n
  • If your plugin PHP files are viewable by the world, we now give you a detailed warning on the seriousness of this security threat with ability to view the offending .htaccess files.
  • \n
  • Added a debug mode in options for very verbose logging and marking errors in red.
  • \n
  • Added more logging for the process that starts the security scan.
  • \n
  • Ability to securely view the entire activity log added.
  • \n
  • Using plugin version in all CSS URL\'s instead of API version.
  • \n
  • Activity log microtime is more accurate now.
  • \n
  • Fixed bug that would cause security scanning of PHP files with base64 content to stop.
  • \n
\n\n

2.0.4

\n\n
    \n
  • Now security scanning all comments, posts and pages on multi-site installation for malware and phishing URL\'s. Significant security enhancement.
  • \n
  • Improved messages on multisite when a bad comment or post is found.
  • \n
  • Fixed bug that caused paid users to not be able to activate their premium key.
  • \n
  • Made upgrade process much friendlier.
  • \n
  • Got rid of GeSHi syntax highlighting because it segfaults and is resource intensive. Using built in PHP highlighting instead.
  • \n
  • Message asking you to configure an alert email address only appears for 3 pageviews after plugin activation so it\'s less irritating.
  • \n
  • Fixed bug for MU users that caused WF to tell you that your WF schema is missing and you need to reactivate.
  • \n
  • Fixed bug that caused malware URL security scanner to not work for MU users.
  • \n
\n\n

2.0.3

\n\n
    \n
  • Removed unbuffered queries and switched to conventional queries that are memory efficient for better stability.
  • \n
  • Made security scanning large numbers of URL\'s contained in things like awstats log files extremely memory efficient and way faster.
  • \n
  • Removed alerts about unknown files in core directory if they belong to an older wordpress version and are unchanged.
  • \n
  • Other performance improvements like using strpos instead of strstr.
  • \n
  • Moved \"scan files outside base dir\" option to be in correct place on config page.
  • \n
\n\n

2.0.2

\n\n
    \n
  • Fixed plugin upgrades so that css and scripts are not cached across versions.
  • \n
\n\n

2.0.1

\n\n
    \n
  • Improved security scanning for specific attacks being used in the PHP-CGI vulnerability ( CVE-2012-1823)
  • \n
  • API keys no longer required. WF fetches a temporary anonymous API key for you on activation.
  • \n
  • Added real-time activity log on scan page.
  • \n
  • Added real-time summary updates on scan page.
  • \n
  • Fixed ability to view files that have symlinks in path.
  • \n
  • Added message to configure alert email address for multi-site and single site installs on activation.
  • \n
  • Disabled firewall security rules by default because most sites don\'t need them.
  • \n
  • Disabled blocking of fake googlebots except for high security levels to prevent users who like to pretend they\'re googlebot from blocking themselves.
  • \n
  • Geshi the syntax highlighter now asks for more memory before running.
  • \n
  • Fixed bug that caused scan to hang on very large files.
  • \n
  • Added an index to wfStatus to make it faster for summary statuses
  • \n
  • Removed multisite pre-activation check to make activation more reliable on multisite installs.
  • \n
  • Better problem reporting if you trashed your Wordfence Security schema but the plugin is still installed.
  • \n
\n\n

1.5.6

\n\n
    \n
  • Removed use of nonces and purely using 30 minute key for unlocking emails.
  • \n
  • Fixed bug that caused admin emails to not get emailed when requesting unlocking email.
  • \n
  • Fixed minor issue with undefined array in issues loop.
  • \n
\n\n

1.5.5

\n\n
    \n
  • Added ability for admin\'s to unlock login and unblock their IP addresses if they\'re accidentally locked out by the firewall or login security. Uses two security tokens to prevent abuse.
  • \n
  • Admins can now also disable firewall and login security from the unlock-me email, just in case of emergency.
  • \n
  • Made advanced security options visible so you know they exist.
  • \n
  • Fixed dns_get_record() function not existing bug on Windows systems pre PHP 5.3.0. Was causing scans to hang.
  • \n
  • Increased login lockout defaults to be much higher which still protects against brute force hacks.
  • \n
  • Removed CURLOPT_MAXREDIRS in curl to avoid safe mode warnings.
  • \n
  • Fixed ability to view and diff files on blogs installed in subdirectories.
  • \n
  • Fixed ability to see individual IP hits on subdir sites.
  • \n
  • Plugin and theme update messages now include links to the upgrade page.
  • \n
  • Removed the link on the login form that mentions the site is protected by Wordfence Security.
  • \n
  • Changed lockout defaults to be much higher.
  • \n
  • Added options for higher number of failures before lockout in options page for configurable login security.
  • \n
  • Now including plugin version in the activity log when the admin chooses to email it to us for debugging.
  • \n
\n\n

1.5.4

\n\n
    \n
  • Admin can now select to scan outside the WordPress base dir and standard WordPress directories.
  • \n
  • Max memory size for scans is now configurable for larger installations. 256M is the default.
  • \n
  • Changed maximum scan time to 10 minutes.
  • \n
\n\n

1.5.3

\n\n
    \n
  • A harmless cosmetic error was being thrown up when some security scans started. Fixed that.
  • \n
\n\n

1.5.2

\n\n
    \n
  • Changed max scan time to 30 mins.
  • \n
\n\n

1.5.1

\n\n
    \n
  • Fixed a bug that caused scans to crash when permissions don\'t allow a directory to be read.
  • \n
\n\n

1.4.8

\n\n
    \n
  • WP repo didn\'t deploy the zip file correctly so recreating the version tag.
  • \n
\n\n

1.4.7

\n\n
    \n
  • Vastly improved error logging including catching fatal PHP errors and logging them to status log.
  • \n
  • Fixed accidental preg_replace variable interpolation.
  • \n
  • Syntax fixes (various)
  • \n
\n\n

1.4.6

\n\n
    \n
  • Increased memory available to Wordfence Security to 256M during security scans, configurable in wordfenceConstants.php
  • \n
  • Improved memory logging during security scans. Current memory usage is now shown on the far right of filenames while scans occur.
  • \n
\n\n

1.4.5

\n\n
    \n
  • Bugfix - fixed bug that caused Wordfence Security menu to dissapear.
  • \n
\n\n

1.4.4

\n\n
    \n
  • WordPress Multi-site support added. Currently in Beta. Tested with subdomains, not subdirectories, but it should work great on both.
  • \n
  • Main changes are moving menus to the Network Admin area, preventing individual blogs from enabling the plugin and dealing with database prefix issues.
  • \n
\n\n

1.4.3

\n\n
    \n
  • Improved diagnistic information on binary and regular API calls for better debugging.
  • \n
  • Changed ticker to only show activity with level < 3
  • \n
\n\n

1.4.2

\n\n
    \n
  • Email to send security alerts to is now configured at the same time an API key is entered.
  • \n
  • phpinfo is emailed along with activity log when user requests to send us activity log so that we can see things like PHP max execution time and other relevant data
  • \n
  • Now writing individual files to activity log during security scans for better diagnostics.
  • \n
  • Login security message.
  • \n
  • Updated readme.txt FAQ and description.
  • \n
  • Fixed bug where sites with self signed SSL security certificate never start scan because cert fails security check.
  • \n
  • Increased API curl timeout to 300 for slower hosts that seem affected during URL security scans.
  • \n
\n\n

1.4.1

\n\n
    \n
  • This is a major release of Wordfence Security, please upgrade immediately.
  • \n
  • Only scan files in the WordPress ABSPATH root directory and known WordPress subdirectories. Prevents potentially massive scans on hosts that have large dirs off their wordpress root.
  • \n
  • Don\'t generate plain SHA hashes anymore because we don\'t currently use them on the server side for scanning. (Still generates md5\'s and SHAC)
  • \n
  • No longer do change tracking on files before scans because the change tracking does almost the same amount of work when generating hashes as the actual scan. So just do the scan, which is now faster.
  • \n
  • Updated internal version to 1.2 to use new code on the server side which sends back a list of unknown files rather than known files, which is usually smaller and more network efficient.
  • \n
  • Improved logging in activity log.
  • \n
  • Removed SSL peer verification because some hosts have bad cert config. Connection to our servers is still via SSL to enhance security.
  • \n
  • Fixed a few minor issues. Overall you should notice that scans are much faster now.
  • \n
\n\n

1.3.3

\n\n
    \n
  • Made real-time server polling more efficient.
  • \n
  • Entering your API key now automatically starts your first scan. Was causing some confusion.
  • \n
\n\n

1.3.2

\n\n
    \n
  • Reduced the number of database connections that Wordfence Security makes to one.
  • \n
  • Modified the memory efficient unbuffered queries we use to only use a single DB connection.
  • \n
  • Removed status updates during post and comment scans which prevents interference with unbuffered queries and makes the scans even faster.
  • \n
\n\n

1.3.1

\n\n
    \n
  • Fixed a bug where if you have the plugin \"secure-wordpress\" installed, you can\'t do a Wordfence Security scan because it says you have the wrong version. This is because secure-wordpress trashes the $wp_version global variable to hide your version rather than using the filters provided by WordPress. So coded a workaround so that your Wordfence Security scans will work with that plugin installed.
  • \n
\n\n

1.3

\n\n
    \n
  • Minor fix to point to the correct binary API URL on the Wordfence Security cloud servers.
  • \n
\n\n

1.2

\n\n
    \n
  • It is now free to get a Wordfence Security API key.
  • \n
  • Premium keys include theme and plugin file security verification which consumes resources on the Wordfence Security servers.
  • \n
  • Various bugfixes and performance enhancements.
  • \n
\n\n

1.1

\n\n
    \n
  • Initial public release of Wordfence Security Plugin.
  • \n
','Wordfence Security','Secure your website with the most comprehensive WordPress security plugin. Firewall, malware scan, blocking, live traffic, login security & more.','publish','open','closed','','wordfence','','','2017-04-05 19:04:53','2017-04-05 19:04:53','',0,'https://wordpress.org/plugins-wp/wordfence/',0,'plugin','',0); INSERT INTO `wporg_367_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 (167,10352150,'2007-09-14 12:02:31','2007-09-14 12:02:31','\n

Google Analytics Plugin for WordPress

\n\n

We believe that you shouldn\'t have to hire a developer to add Google Analytics to your website. That\'s why we built MonsterInsights, a complete Google Analytics for WordPress plugin that\'s EASY and POWERFUL.

\n\n

MonsterInsights allow you to connect your WordPress website with Google Analytics, so you can see how visitors find and use your website, so you can keep them coming back. Simply put, we show you the stats that matter.

\n\n

With almost 13 million downloads, MonsterInsights is the most popular Google Analytics plugin for WordPress.

\n\n

At MonsterInsights, user experience is our #1 priority. That\'s why we make it extremely easy for you to connect and view your Google Analytics reports from inside your WordPress dashboard. Our tracking settings and workflows make MonsterInsights the most beginner friendly google analytics plugin in the market.

\n\n
\n

MonsterInsights Pro
\n This plugin is the lite version of the MonsterInsights Pro plugin that comes with all the analytics features you will ever need including ads tracking, ecommerce tracking, custom dimensions tracking, popular post tracing, events tracking, and tons more. Click here to purchase the best Google Analytics plugin for WordPress now!

\n
\n\n

We took the pain out of connecting with Google Analytics and made it easy. Here\'s why over 1 million smart business owners, designers, and developers love MonsterInsights, and you will too!

\n\n

https://www.youtube.com/watch?v=nHZBUDceRt0

\n\n

Quick & Easy Google Analytics Setup

\n\n

Easily setup Google Analytics on your site without touching any code. If you can point-and-click, then you can use MonsterInsights.

\n\n

Google Analytics for WordPress plugin by MonsterInsights allows you to track your blog visitors easily and always stays up to date with the newest features in Google Analytics.

\n\n
\n

It just works. Really easy way to insert Google Analytics tracking code and keep it there when switching themes. No need to copy/paste code anywhere. This is the best way to handle Google Analytics in WordPress.
\n Steven Gliebe

\n
\n\n

Google Analytics Dashboard + Real Time Stats

\n\n

MonsterInsights makes analytics easy. You can see your site?s performance at a glance with our Google Analytics Dashboard right inside your WordPress admin area.

\n\n

With Google Analytics, there\'s no need to wait till the next day to find out about traffic spikes or potential problems. You can get real time stats, so you can unlock the maximum potential revenue for each customer.

\n\n
\n

Works everytime! This plugin has worked with every version of WordPress I?ve ever used. Very reliable.
\n Vineeta

\n
\n\n

Universal Tracking + Page Level Analytics

\n\n

MonsterInsights uses universal tracking, so you can track your users across devices and platforms. With demographics and interest reports, you also get a better understanding of your audience.

\n\n

The page level analytics show you exactly which pages and sections on your website are the most popular.

\n\n

You can also see how the users are finding your website, so you can better focus your marketing efforts.

\n\n
\n

Analytics for PROs! This plugin brings it all, great features and helpful info to easily see what you are doing.
\n Frank van der Sluijs

\n
\n\n

eCommerce and Ads Tracking

\n\n

MonsterInsights Ecommerce addon helps you add Google Analytics Ecommerce tracking to your WordPress WooCommerce and Easy Digital Downloads store.

\n\n

You can add eCommerce tracking with literally 1 click, and start tracking popular products, average order value, ecommerce conversion rate, and more.

\n\n

With our Ads tracking addon, publishers can easily track the performance of their Google Adsense inside their Google Analytics dashboard.

\n\n

Custom Dimensions, Events Tracking, and More

\n\n

MonsterInsights allow you to take full advantage of all the powerful Google Analytics features such as custom dimensions, file download tracking, outbound link tracking, events tracking, performance tracking, and more.

\n\n
\n

I like how simple it is for client users and how I can turn on the advanced features for myself to get all the details right.
\n Skip Shean

\n
\n\n

Full MonsterInsights Feature List

\n\n
    \n
  • Quick and Easy Setup - Easily setup Google Analytics for WordPress with just a few clicks (no coding needed)
  • \n
  • Real Time Stats - See real time stats inside your Google Analytics dashboard.
  • \n
  • Universal Tracking - Get better insights with Google Analytics\' universal tracking.
  • \n
  • Google Analytics Dashboard - See the stats that matter from right inside your WordPress dashboard.
  • \n
  • Ecommerce Tracking - Add Google Analytics tracking for WooCommerce and Easy Digital Downloads store.
  • \n
  • Ads Tracking - Track your Google Adsense ads with Google Analytics.
  • \n
  • File Download Tracking - Enable file download stats with just a click.
  • \n
  • Link Tracking - Track your outbound link clicks with Google Analytics.
  • \n
  • Events Tracking - Track custom button and banner clicks with Google Analytics.
  • \n
  • Custom Dimensions Tracking - Enable Google analytics custom dimensions tracking for WordPress.
  • \n
  • Author Tracking - See who\'s the most popular author with Author tracking.
  • \n
  • Popular Post Tracking - See which blog post and section is the most popular.
  • \n
  • Custom Post Type Tracking - Track the performance of your custom post types.
  • \n
  • Referral Tracking - See how visitors are finding your website to better focus your marketing efforts.
  • \n
  • Performance Tracking - Control the performance rate and sample rate for your Google Analytics report.
  • \n
  • Enhanced Link Attribution - Get better analytics with enhanced link attribution.
  • \n
  • Google Analytics Tools - Helpful tools for Google analytics.
  • \n
  • Want us to add something else? Suggest a feature and we\'ll get it added!
  • \n
\n\n
\n

Simple, yet powerful. Amazing piece of plugin, does exactly what expected and even more.
\n Matt Jaworski

\n
\n\n

Popular Google Analytics Tutorials

\n\n\n\n

Note for Beginners

\n\n

Like all WordPress plugins, Google Analytics by MonsterInsights is only available for self-hosted WordPress sites. This means you will need to switch from WordPress.com to WordPress.org if you want to use this plugin on your WordPress site.

\n\n

For more details, see this infographic on self hosted WordPress.org vs free WordPress.com

\n\n

Credits

\n\n

This plugin is created by Chris Christoff and Syed Balkhi with sponsorship from WPBeginner.

\n\n

What\'s Next

\n\n

If you like this plugin, then consider checking out our other projects:

\n\n\n\n

This plugin would not be possible without the help and support of WPBeginner, the largest WordPress resource site. You can learn from our free WordPress Tutorials like how to install WordPress, choose the best WordPress hosting, WordPress glossary, and more.

\n\n

You can also learn about other best WordPress plugins.

\n\n\n
    \n
  1. Install Google Analytics for WordPress by MonsterInsights either via the WordPress.org plugin repository or by uploading the files to your server. (See instructions on how to install a WordPress plugin)
  2. \n
  3. Activate Google Analytics for WordPress by MonsterInsights.
  4. \n
  5. Navigate to the Insights tab in your WordPress admin menu and configure the plugin.
  6. \n
  7. Want more features? Purchase MonsterInsights Pro!
  8. \n
\n\n\n

For all frequently asked questions, and their answers, check the MonsterInsights Knowledge base.

\n\n\n

6.1.6, March 29, 2017

\n\n
    \n
  • New: Select2 filter for the Google oAuth list of profiles, to make it easier to find your Google property by fully supporting search by URL.
  • \n
  • Tweak: Inbound-as-external now is prioritized before downloads in tracking preference order.
  • \n
\n\n

6.1.5, March 24, 2017

\n\n
    \n
  • New: Added some functions to prepare for upcoming new addon (Google AMP) and updates (eCommerce, Performance, Dimensions).
  • \n
  • Tweak: JS events tracking for click events.
  • \n
\n\n

6.1.4, March 23, 2017

\n\n
    \n
  • Tweak: JS events tracking for click events.
  • \n
  • Bugfix: Edge case where JS events tracking won\'t turn on if the main tracking setting was disabled (such as faulty import).
  • \n
\n\n

6.1.1 - 6.1.3 (depending on which version of MI you have), March 22, 2017

\n\n
    \n
  • Bugfix: (pro users) Issue with JS events throwing an error for array on non-set settings.
  • \n
\n\n

6.1.0, March 22, 2017

\n\n
    \n
  • New: Campaign URL building tool with shortlink capability.
  • \n
  • New: Settings import/export tool.
  • \n
  • New: Experimental (beta) hash tracking for single-page style themes. Note, as the description for the setting says, this feature is a beta feature, and can be tweaked or removed in upcoming versions.
  • \n
  • New: Manual default subsite UA\'s can now be set from the network settings panel for MonsterInsights.
  • \n
  • New: Optout of GA tracking is now enabled per Google standard. See https://github.com/awesomemotive/google-analytics-for-wordpress/issues/488 for more information.
  • \n
  • Tweak: Notices about JS conflicts now include the JS error when possible.
  • \n
  • Tweak: Some tweaking to when the \"Connection error with Google\" error is displayed during oAuth.
  • \n
  • Tweak: Notice now shown when too early to display statistics from Google.
  • \n
  • Tweak: Inbound as outbound links may now have a period in them.
  • \n
  • Tweak: Removed duplicate option checking on frontend.
  • \n
  • Tweak: oAuth dialog now only programically closes when the select profile view is shown or when a new one is opened.
  • \n
  • Tweak: Mailto links are now handled as an externally opening link, allowing to bypass issues with the Safari browser not following standards.
  • \n
  • Tweak: WP-Admin Login page tracking has been removed.
  • \n
  • Tweak: More countries now shown in the country map in the overview report.
  • \n
  • Tweak: License key field is no longer shown on lite installs.
  • \n
  • Tweak: Frontend JS file has been refactored to make it more unit testable.
  • \n
  • Bugfix: Download events now correctly include data in all cases not just some.
  • \n
  • Bugfix: A syntax error involving the manual UA code input has been resolved that could have affected some users under a rare circumstance.
  • \n
\n\n

6.0.16, March 7, 2017

\n\n
    \n
  • Fixed: Issues related to link tracking.
  • \n
\n\n

6.0.15, March 7, 2017

\n\n
    \n
  • Fixed: Issue with translation string numbering in the disabled user group frontend template.
  • \n
  • Fixed: Resolved issue that caused issue with lightbox-style redirects.
  • \n
  • Fixed: Issue where admin pages had JS issues from mis-ordered JS files.
  • \n
\n\n

6.0.14, March 1, 2017

\n\n
    \n
  • Tweak: Allow for invalid license to be removed if debug turned on.
  • \n
  • Fixed: Issues with internal links being tracked as internal-as-outbound
  • \n
  • Fixed: Issues with tracking of downloads
  • \n
  • Fixed: Issue where optin tracking would opt-out on settings panel save
  • \n
\n\n

6.0.13, February 28, 2017

\n\n
    \n
  • Tweak: Better detection of issues with authentication due to an outdate WP version.
  • \n
  • Fixed: Issue where JS tracking inadvertantly turned on debug mode due to a bad string to boolean conversion.
  • \n
\n\n

6.0.12, February 27, 2017

\n\n
    \n
  • New: The JS events tracking has been moved to a new JS file instead of inline. This will offer the same performance as inlining under HTTP/2, but with the benefit of better cache bursting.
  • \n
  • New: Expanded admin adblock detection.
  • \n
  • Tweak: Select2 is now bundled as Select300 in MonsterInsights. We\'re pulling down the latest copy of Selct2 and then on-the-fly renaming it. This should end any conflicts between our select2 boxes and other plugins/themes.
  • \n
  • Tweak: We\'ve implemented better error detection on the authentication flow. Some users may have previously seen \"No profile errors\", due to issues with their server setup will now see more accurate errors.
  • \n
  • Tweak: For servers that use PHP Object caching, the cache will now be flushed during the uninstall routines. This should solve a very rare uninstall error.
  • \n
  • Fixed: A \"Invalid UA code\" error was displayed whenever someone used oAuth2 and then saved the settings panel, despite having a valid UA code.
  • \n
  • Fixed: An issue with the lazyloading of the Google Client for frontend use has been fixed.
  • \n
\n\n

6.0.11, February 24, 2017

\n\n
    \n
  • Notice: Version numbers 6.0.5 - 6.0.10 were not used, as we\'re synching the version numbers of the Lite and Pro versions of our plugin. You didn\'t miss any updates.
  • \n
  • Notice: As of this release, we no longer backport changes to the old yst_ga option. If you need to access MonsterInsights\'s settings programically, please use our helper functions. Do not directly access a option.
  • \n
  • New: Redesigned authentication dropdown that shows the site urls to make it easier to find a profile when the users have many accounts.
  • \n
  • New: Tracking is now enabled for the WordPress admin login page (wp-login.php).
  • \n
  • Tweak: The Google class in the admin now only checks for blocking when the reauth is attempted. Expect to save a ton of external calls in the admin, and maybe a performance boost.
  • \n
  • Tweak: The GA client object is now lazyloaded on the frontend, so it\'s loaded only when something (like another plugin) attempts to use it. In plain English, this will make a alot of sites load times significantly improve.
  • \n
  • Tweak: The analytics.js output has been tweaked to be slightly more asthetically pleasing (its aligned correctly). We realize no one probably cares but we look at this code for every user we support, so it help us.
  • \n
  • Tweak: The config expired notice has been updated to reflect that it can also be shown if the server is blocking MonsterInsights\'s ability to connect to Google Analytics.
  • \n
  • Tweak: The cron jobs for opt-in tracking and statistics have been combined into a single cron.
  • \n
  • Tweak: Various performance improvements in the frontend output class.
  • \n
  • Tweak: A notice is now shown when MonsterInsights rejects a manual UA code from being saved for being an invalid format.
  • \n
  • Fixed: Issue where the plugin TweetShare would prevent users from being able to see their properties in the authentication dropdown.
  • \n
  • Fixed: Issue where the manual UA code might not be ported as we were backporting changes to the monsterinsights_settings option to the yst_ga option for backwards compatibility. This lead to a situation where the new settings would override the old ones before the routine to fix the manual UA code issue had run.
  • \n
  • Fixed: Issue where a fatal error from a reference to a class called \"Yoast_Frontend_GA\" which our plugin doesn\'t have or use, would be shown caused by the previous Yoast usage of object caching via an autoloader. This is solved by doing a 1 time object cache flush on upgrade.
  • \n
  • Fixed: Issue where if you had more than 1000 profiles on your Google account, not all would be shown.
  • \n
  • Fixed: App analytics properties are now excluded from the dropdown of properties you can authenticate to.
  • \n
  • Fixed: The readme suggested a filter to use for filtering the UA to use, but the filter name was typo\'d. This has been fixed.
  • \n
  • Fixed: Issue where the tracking cron would add a new unique cron each day.
  • \n
  • Fixed: We implemented a routine to cleanup those extra crons as well as the old yoast one we no longer use.
  • \n
  • Fixed: Issue where the .org theme Schema would prevent users from being able to see their properties in the authentication dropdown.
  • \n
  • Fixed: Issue where JS based events tracking might not correctly track a mailto: link.
  • \n
\n\n

6.0.4, February 20, 2017

\n\n
    \n
  • Tweak: monsterinsights_delete_options now checks to ensure an array is passed in
  • \n
  • Tweak: The reporting class now has many more object property checks.
  • \n
  • Fixed: In install if WP version not supported or if MI Pro was active, the plugin attempted to call a property of the plugin object which didn\'t exist.
  • \n
  • Fixed: In the deactivate/uninstall routines, MI attempted to use a method of a class object which might not exist, as it might not be the active instance. Better instance handling has been added as well as many more exists checks have been added througought the plugin.
  • \n
  • Fixed: Conflicting loads when both MI Pro and Lite are installed. Note, you should only have Pro installed if you want to use it. That being said, we\'ve done extensive testing to ensure we\'ve handled all of the edge cases surrounding this. This could also lead to issues where it would be impossible to remove Lite and/or Pro from a site if both were installed.
  • \n
  • Fixed: Conflicts with the Pinnacle theme, which loads it\'s CSS file (with overrides to literally all select2 inputs not just the ones it adds) across the entire admin. This lead to an issue where in the Google Auth, a user might not have been able to see (or could appear with wacky styling) the dropdown of profiles to select. If you cannot see this dropdown after authenticating, let us know as its most likely a simple plugin or theme conflict on CSS styling.
  • \n
  • Fixed: The notices to deactivate/uninstall MI Lite/Pro when the other one were installed had an errant extra quotation mark, and they\'re now more specific about the action to take.
  • \n
  • Fixed: For some users, the setting for user role exclusion was not working. This has been corrected.
  • \n
  • Fixed: A redirect issue that was looping for some users. The code that does this, while working for most, doesn\'t for some. We\'ve removed it until a full investigation can be completed.
  • \n
\n\n

6.0.3, February 20, 2017

\n\n
    \n
  • Fixed: Path for fontawesome font files was incorrect
  • \n
  • Fixed: Notice in the install routine for the $version variable not being set.
  • \n
\n\n

6.0.2, February 19, 2017

\n\n
    \n
  • Fixed: Upgrade routine could drop manual UA codes in certain cases. If you upgraded to 6.0.0 or 6.0.1 and it lost the manual UA code, installing this update will automatically restore the UA code entered as long as you haven\'t used the oAuth or re-entered the manual UA code.
  • \n
\n\n

6.0.1, February 19, 2017

\n\n
    \n
  • Fixed: Typo that caused an issue with PHP 7 installs.
  • \n
\n\n

6.0.0, February 18, 2017

\n\n
    \n
  • New: Completely overhauled design, from top to bottom. The plugin has been completely rewritten.
  • \n
  • New: no more advertisements in the settings pages. We hated them too.
  • \n
  • New: Javascript based event tracking
  • \n
  • New: ga.js is now officially deprecated. New users cannot use it anymore, and existing users can only switch to analytics.js (but not back). Please note, all new features will be developed exclusively for analytics.js. Google has deprecated it, and now we\'re deprecating our support for it.
  • \n
  • New: License key system now uses the MonsterInsights License management system
  • \n
  • New: Ability to pick which roles can access the dashboard/reports & settings/addons/tools page using our UI. There\'s also a new custom capability for this (a meta capability)
  • \n
  • New: Support for Google Analytics Master accounts. When you oAuth into MonsterInsights now, the UA view is now locked to what you picked using the brand new oAuth procedure.
  • \n
  • New: Revamped dashboard
  • \n
  • New: Completely new settings system, with a completely new settings page, and a completely new settings API. Also some new hooks and tabs in preparation for the many addons we\'ll be releasing over the next few months.
  • \n
  • New: No more conflicts between the base plugins
  • \n
  • New: Completely overhauled translation experience. The lite version translations are now fully managed through translations.wordpress.org.
  • \n
  • New: Opt-in to anonymous data so we can better improve MonsterInsights
  • \n
  • New: Significantly better addons page
  • \n
  • New: Single license key to manage all MonsterInsights extensions.
  • \n
  • New: Automatic detection of blocked asset files (from things like un-whitelisted uBlock Origin) with step by step directions on how to easily correct.
  • \n
  • Tweak: Completely overhauled the ga.js and analytics.js outputs to fix outstanding bugs.
  • \n
  • Tweak: Better debugging + disabled + preview tracking modes, that more clearly indicate what\'s going on
  • \n
  • Tweak: Completely overhauled PHP regex tracking to solve nearly a dozen outstanding bugs including issues where non-link elements starting with the letter \"a\" such as tags would get parsed as links causing issues. Also solves issues related to single versus double quote usage for existing onclick handles, non-semicolon terminating onclick handles and various other parsing issues.
  • \n
  • Tweak: Many previously untranslatable strings are now translatable.
  • \n
  • Tweak: Minified in-plugin images.
  • \n
  • Tweak: Minified admin css and js
  • \n
  • Tweak: Uses latest version of Google PHP API now.
  • \n
  • Tweak: The system for creating reports and getting Google Analytics reports have changed. If you\'ve hardcoded into Yoast functions previously not designed for frontend output this could cause problems. We\'ll introduce an API intended for this type of use after we update to use the v4 reporting API.
  • \n
  • Fix: Fixed an issue with HostEurope and other hosts modifying the default PHP arg seperator.
  • \n
  • Fix: Prevents an issue where users with a plugin like Airplane Mode active will get a better error message than \"code invalid\" on the GA token auth screen (and also fixes how that detection is done in other parts of the plugin).
  • \n
  • Removed: unused track_full_url setting
  • \n
\n\n

5.5.3, October 3rd, 2016

\n\n
    \n
  • New: Announces MI 6.0 beta.
  • \n
  • Fix: Compatibility with PHP compatibility scanner\'s bug
  • \n
\n\n

5.5.2, July 7, 2016

\n\n
    \n
  • Tweak: Updates license manager to have more reliable update information including better compatibility with Yoast SEO products.
  • \n
  • Fix: Compatibility with upcoming Shiny Updates v2 in WP core
  • \n
\n\n

5.5.0, May 1, 2016

\n\n
    \n
  • New: Added new System Info tab for faster support.
  • \n
  • Fix: Issue with changelog missing some deployed versions.
  • \n
\n\n

5.4.9, April 15, 2016

\n\n
    \n
  • New: Font based dashboard icon
  • \n
  • Tweak: The \"MonsterInsights\" menu item name has been renamed to just \"Insights\"
  • \n
  • Fix: Issue with eCommerce addon (also requires user to update eCommerce addon)
  • \n
  • Fix: Issue with 2 dashboard links
  • \n
  • Fix: A bug in pre-existing code caused the menu of the plugin to skyrocket unintentionally. This has been corrected.
  • \n
\n\n

5.4.8, April 14, 2016

\n\n
    \n
  • New: Google Analytics by Yoast is now MonsterInsights.
  • \n
  • Fix: Compatibility issue with WordPress 4.5
  • \n
','Google Analytics for WordPress by MonsterInsights','The best Google Analytics plugin for WordPress. See how visitors find and use your website, so you can keep them coming back.','publish','closed','closed','','google-analytics-for-wordpress','','','2017-03-29 15:46:34','2017-03-29 15:46:34','',0,'https://wordpress.org/plugins-wp/google-analytics-for-wordpress/',0,'plugin','',0), (168,97335,'2009-03-10 15:01:08','2009-03-10 15:01:08','\n

Really Simple CAPTCHA does not work alone and is intended to work with other plugins. It is originally created for Contact Form 7, however, you can use it with your own plugin.

\n\n

Note: This product is \"really simple\" as its name suggests, i.e., it is not strongly secure. If you need perfect security, you should try other solutions.

\n\n

How does it work?

\n\n

Really Simple CAPTCHA does not use PHP \"Sessions\" for storing states, unlike many other PHP CAPTCHA solutions, but stores them as temporary files. This allows you to embed it into WordPress without worrying about conflicts.

\n\n

When you generate a CAPTCHA, Really Simple CAPTCHA creates two files for it; one is an image file of CAPTCHA, and the other is a text file which stores the correct answer to the CAPTCHA.

\n\n

The two files have the same (random) prefix in their file names, for example, \"a7hk3ux8p.png\" and \"a7hk3ux8p.txt.\" In this case, for example, when the respondent answers \"K5GF\" as an answer to the \"a7hk3ux8p.png\" image, then Really Simple CAPTCHA calculates hash of \"K5GF\" and tests it against the hash stored in the \"a7hk3ux8p.txt\" file. If the two match, the answer is confirmed as correct.

\n\n

How to use with your plugin

\n\n

Note: Below are instructions for plugin developers.

\n\n

First, create an instance of ReallySimpleCaptcha class:

\n\n
$captcha_instance = new ReallySimpleCaptcha();\n
\n\n

You can change the instance variables as you wish.

\n\n
// Change the background color of CAPTCHA image to black\n$captcha_instance->bg = array( 0, 0, 0 );\n
\n\n

See really-simple-captcha.php if you are interested in other variables.

\n\n

Generate a random word for CAPTCHA.

\n\n
$word = $captcha_instance->generate_random_word();\n
\n\n

Generate an image file and a corresponding text file in the temporary directory.

\n\n
$prefix = mt_rand();\n$captcha_instance->generate_image( $prefix, $word );\n
\n\n

Then, show the image and get an answer from respondent.

\n\n

Check the correctness of the answer.

\n\n
$correct = $captcha_instance->check( $prefix, $the_answer_from_respondent );\n
\n\n

If the $correct is true, go ahead. Otherwise, block the respondent -- as it would appear not to be human.

\n\n

And last, remove the temporary image and text files, as they are no longer in use.

\n\n
$captcha_instance->remove( $prefix );\n
\n\n

That\'s all.

\n\n

If you wish to see a live sample of this, you can try Contact Form 7.

\n\n\n

In most cases you can install automatically from WordPress.

\n\n

However, if you install this manually, follow these steps:

\n\n
    \n
  1. Upload the entire really-simple-captcha folder to the /wp-content/plugins/ directory.
  2. \n
  3. Activate the plugin through the \'Plugins\' menu in WordPress.
  4. \n
\n\n

FYI: There is no \"control panel\" for this plugin.

\n\n\n
\n
CAPTCHA does not work; the image does not show up.
\n

Really Simple CAPTCHA needs GD and FreeType library installed on your server. Ask your server administrator if they are installed.

\n\n

Also, make the temporary file folder writable. The location of the temporary file folder is managed by the instance variable tmp_dir of ReallySimpleCaptcha class. Note that the setting varies depending on the calling plugin. For example, Contact Form 7 uses wp-contents/uploads/wpcf7_captcha as the temporary folder basically, but it can use different folder depending on your settings.

\n\n

If you have any further questions, please submit them to the support forum.

\n\n
\n\n\n

1.9

\n\n
    \n
  • Change the default file mode: 0644 for image and 0640 for answer.
  • \n
  • Add \"Text Domain\" field to the plugin header.
  • \n
  • Update bundled font: Gentium Basic 1.102.
  • \n
  • Add $max argument to cleanup() to prevent an endless file cleanup.
  • \n
\n\n

1.8.0.1

\n\n
    \n
  • The required WordPress version changed to 3.9 and higher.
  • \n
  • Tested on WordPress 4.1.
  • \n
\n\n

1.8

\n\n
    \n
  • The required WordPress version changed to 3.7 and higher.
  • \n
  • Introduce normalize_path() to normalize file paths on different file systems.
  • \n
','Really Simple CAPTCHA','Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.','publish','open','closed','','really-simple-captcha','','','2016-04-29 18:03:33','2016-04-29 18:03:33','',0,'https://wordpress.org/plugins-wp/really-simple-captcha/',0,'plugin','',0), (169,125120,'2007-04-23 20:02:06','2007-04-23 20:02:06','\n

WordPress Gallery Plugin

\n\n

NextGEN Gallery has been the industry\'s standard WordPress gallery plugin since 2007 and continues to receive over 1.5 million new downloads per year. It\'s great for general use, but powerful enough for the most demanding photographers, visual artists, and imaging professionals.

\n\n

On the back end, NextGEN offers a complete WordPress gallery management system with the ability to batch upload, import meta data, add/delete/rearrange/sort images, edit thumbnails, group galleries into albums, and more.

\n\n

On the front end, the free version of NextGEN provides two main display styles (slideshows and thumbnail galleries) and two album styles (compact and extended), all of which come with a wide array of options for controlling size, style, timing, transitions, controls, lightbox effects, and more.

\n\n

Learn more about NextGEN WordPress Gallery Plugin features.

\n\n

Demos
\n*Basic Thumbnail Gallery Demo
\n*Basic Slideshow Demo
\n*Basic Compact Album
\n*Basic List Album

\n\n

INTRODUCING NEXTGEN GALLERY PRO. NextGEN Plus and NextGEN Pro are premium WordPress gallery plugin extensions for NextGEN Gallery that add new gallery displays, lightboxes, ecommerce, proofing, and pro support. Learn more about NextGEN Plus and NextGEN Pro plugin features.

\n\n

Demos
\n*Pro Mosaic Gallery
\n*Pro Masonry Gallery
\n*Pro Filmstrip Gallery
\n*Pro Film Gallery
\n*Pro Slideshow Gallery
\n*Pro Thumbnail Gallery
\n*Pro Blog Style Gallery
\n*Pro Grid Albums
\n*Pro List Album
\n*Pro Lightbox Demo (full screen and responsive with commenting, social sharing, and deep linking for individual images)
\n*Pro Proofing Demo
\n*Pro Ecommerce Demo

\n\n

About Imagely

\n\n

NextGEN Gallery is maintained by Imagely. We\'re the WordPress photography experts. In addition to NextGEN Gallery, NextGEN Plus, and NextGEN Pro, we also make Genesis WordPress themes for photographers, provide managed WordPress hosting for photographers, and run the WordPress Photography Podcast.

\n\n

Learn more or connect with us:
\n*Imagely Website
\n*Genesis WordPress Themes for Photographers
\n*Managed WordPress Hosting for Photographers
\n*The WordPress Photography Podcast
\n*NextGEN Gallery Documentation
\n*Imagely on Twitter
\n*Imagely on Facebook
\n*Imagely on Instagram

\n\n

Credits

\n\n

Copyright:
\nImagely 2016\nPhotocrati Media 2012-2016
\nAlex Rabe 2007-2011

\n\n

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

\n\n

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

\n\n

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

\n\n

Shortcode

\n\n

NextGEN Gallery 2.x introduces our new Attach to Post interface, which means you never need to work with shortcodes again if you would prefer not too.

\n\n

If you do want to work with shortcodes, we\'ve also introduce a new, more powerful, and more flexible shortcode system with NextGEN Gallery 2.0.

\n\n

Learn About NextGEN Gallery Shortcodes

\n\n

For more information, feel free to visit the official website for the NextGEN Gallery WordPress Gallery Plugin.

\n\n\n
\n
Installation Instructions
\n

INSTALLATION: The easiest way to enjoy NextGEN Gallery is to login to you WordPress dashboard, go to Plugins >> Add New, search for NextGEN Gallery, and click to install. You can also download the zip file from this page and upload it from the Plugins >> Add New > Upload page.

\n\n

HOW TO USE: Just go to a page or post and click the NextGEN Gallery icon. From our Attach to Post interface, you can create, manage, customize, and display your galleries. You can also manage your galleries and gallery settings from the central options area under the \"Gallery\" tab on your dashboard menu.

\n\n

DOCUMENTATION: See NextGEN Gallery Documentation.

\n\n

That\'s it ... have fun! For more information, feel free to visit the official website for the NextGEN Gallery WordPress Gallery Plugin.

\n\n

https://www.youtube.com/watch?v=qwNr5ZNGavo

\n
Why are my galleries not opening up in a lightbox after I move my site?
\n

This is often due to the URL paths to the CSS and JavaScript files used by the Lightbox Effects not being changed to relevant addresses based on the new site. This article will help sort out this issue if that is the case: Why are my galleries not opening up in a lightbox?.

\n
Do you have documentation or tutorials?
\n

Yes. See NextGEN Gallery Documentation.

\n
Will NextGEN Gallery work with my theme?
\n

Part of what makes the NextGEN Gallery WordPress gallery plugin so popular is its flexibility - it works with the vast majority of premium and free themes, without requiring any coding.

\n
Are the galleries flash based?
\n

No, NextGEN Gallery uses Javascript (J-Query) based displays to ensure compatibility across the widest range of displays possible.

\n
Are the galleries mobile friendly?
\n

Yes, since we use Javascript rather than flash, NextGEN Gallery is compatible with Android, iOS, and Blackberry. As of July 2013, all galleries are responsive. NextGEN Pro also includes a full screen, responsive Pro Lightbox with mobile gesture support.

\n
What is the difference between a gallery and an album?
\n

In the simplest of terms, Galleries contain your images and Albums contain your Galleries. Albums act as links and placeholders to quickly and easily navigate your galleries - Galleries will actually display your images.

\n
Can I upload multiple images at once?
\n

Yes, you can batch upload entire galleries at a time.

\n
Can I password protect galleries?
\n

Yes, WordPress allows you to password protect pages by default - which includes all galleries and content for the entire page. Password protection of pages can be turned on and off at any time, with just a few clicks.

\n
Can I add a watermark to the images/slideshows?
\n

Yes, you can add text or image watermarks to your gallery images.

\n
Can I crop thumbnails?
\n

Yes, each thumbnail image can be individually adjusted to suit your needs.

\n
Is there pagination for galleries?
\n

Yes, and you can adjust the amount of images to be shown on a page at any time.

\n
Can I customize the lightbox?
\n

Yes, the lightbox can be configured with multiple options directly from the Dashboard, and there are multiple CSS styles which can be applied and modified as well.

\n
Can I add HTML to the captions?
\n

Yes, caption areas are fully HMTL capable.

\n
Can I add an external links to galleries?
\n

Since the captions are fully HTML capable, you can add external links and any other type of mark up you wish.

\n
Is NextGEN Gallery available in foreign languages?
\n

Yes, the NextGEN Gallery WordPress gallery plugin has been translated into dozens of languages - click here to find out more.

\n
More Information
\n

For more information, feel free to visit the official website for the NextGEN Gallery WordPress Gallery Plugin.

\n\n
\n\n\n

V2.2.3 - 04.05.2017

\n\n
    \n
  • Fixed: E_WARNING on Gallery Settings page due to improper use of array_combine() on PHP <= 5.3
  • \n
\n\n

V2.2.2 - 04.04.2017

\n\n
    \n
  • Fixed: Hyperlinks in image descriptions
  • \n
  • Fixed: WordPress SEO sitemap image count
  • \n
  • Fixed: Removed id parameter in shortcodes
  • \n
  • Fixed: Fatal error in Freemius code
  • \n
\n\n

V2.2.1 - 03.13.2017

\n\n
    \n
  • NEW: Template mechanism for all display types
  • \n
  • NEW: Review notices
  • \n
  • Changed: Updated branding to Imagely
  • \n
  • Changed: Added the ability to click on a gallery title and have it open direct to Pro Lightbox
  • \n
  • Fixed: Problems with activation after initial installation
  • \n
  • Fixed: Don\'t display legacy shortcodes after creating new galleries
  • \n
  • Fixed: false positive malware detection notices against \'eval\'
  • \n
  • Fixed: Various PHP notices and warnings
  • \n
  • Fixed: Issue with dynamic container height for Imagebrowser display types
  • \n
\n\n

V2.1.79 - 02.23.2017

\n\n
    \n
  • Secured: Resolved vulnerability with tag cloud displays
  • \n
\n\n

V2.1.77 - 01.31.2017

\n\n
    \n
  • Changed: Corrected Facebook link
  • \n
  • Changed: Tags in readme.txt
  • \n
  • Fixed: Problem with deactivating other plugin
  • \n
\n\n

V2.1.69 - 01.18.2017

\n\n
    \n
  • Fixed: Ensured compatibility with WordPress 4.7.1
  • \n
  • Fixed: Missing option names on setting pages when Wizard active
  • \n
  • Fixed: Ensure that NextGEN Gallery is always loaded after it\'s extension plugins in WP 4.7
  • \n
  • Fixed: Pope product uninstaller not running during activation
  • \n
\n\n

V2.1.62 - 12.15.2016

\n\n
    \n
  • Fixed: Typo in notice for launching the gallery wizard
  • \n
  • Fixed: The ability to dismiss the gallery wizard notice
  • \n
\n\n

V2.1.61 - 12.14.2016

\n\n
    \n
  • NEW: Gallery creation wizard for new users
  • \n
  • Fixed: Shortcodes in widgets not getting substituted in Divi
  • \n
  • Fixed: Ensure that NGG placeholder text doesn\'t get styled incorrectly by other themes
  • \n
  • Fixed: Various thickbox issues on custom post type pages
  • \n
  • Fixed: Hide IGW placeholder images in Yoast feed
  • \n
\n\n

V2.1.60 - 11.22.2016

\n\n
    \n
  • Secured: Ensure that only .css files can be edited using Styles tab
  • \n
\n\n

V2.1.59 - 11.22.2016

\n\n
    \n
  • Secured: Ability to customize CSS Styles
  • \n
  • Changed: readme.txt improvements
  • \n
  • Fixed: Compatibility with WordPress 4.7.0
  • \n
  • Fixed: IGW-inserted tagclouds are incorrect
  • \n
\n\n

V2.1.57 - 11.14.2016

\n\n
    \n
  • Secured: Custom Styles may only be written to specific directories
  • \n
  • Secured: SQL injection vulnerability for gallery names
  • \n
  • Changed: Display type icons are now clickable in the Insert Gallery Window
  • \n
  • Changed: Include backup image files when coping/moving a gallery
  • \n
  • Changed: Show gallery name in upload notification
  • \n
  • Changed: Added placeholder text to gallery name field on Add Gallery / Upload Images page
  • \n
  • Fixed: Custom sortorder not preserved in shortcode
  • \n
  • Fixed: Shortcodes added via Insert Gallery Window displayed as []
  • \n
  • Fixed: Uncaught TypeError: Cannot read property \'replace\' of undefined
  • \n
  • Fixed: Use of deprecated Yoast SEO (aka WPSEO) filter
  • \n
  • Fixed: Conflict with Easy Digital Downloads
  • \n
  • Fixed: Misc invalid HTML tags in admin pages (thanks to kniebremser)
  • \n
  • Fixed: Change display:hidden to visibility:hidden in various places
  • \n
  • Fixed: Escaping of quotes in gallery titles and urls
  • \n
  • Fixed: Untranslatable strings
  • \n
\n\n

V2.1.56 - 10.27.2016

\n\n
    \n
  • Fixed: Shortcode parsing was affecting third-party shortcodes
  • \n
\n\n

V2.1.54 - 10.25.2016

\n\n
    \n
  • NEW: Added php docblock directives for code hinting/completion
  • \n
  • NEW: Display types can have aliases
  • \n
  • NEW: Visual Shortcodes
  • \n
  • Changed: Now uses gulp for package compilation & JS/CSS minification
  • \n
  • Changed: Updated Freemius SDK to 1.2.1
  • \n
  • Fixed: Extraneous backslashes being added to gallery titles & descriptions
  • \n
  • Fixed: Import folder \'gallery title\' field wasn\'t being used for new gallery titles
  • \n
  • Fixed: Settings reset will now redirect to /wp-admin/ to avoid potential activation-related errors
  • \n
  • Fixed: Table columns cache becomes out of date between versions
  • \n
  • Fixed: Various issues with shortcodes when used in widgets
  • \n
  • Fixed: Warnings caused by calls to non-existent module package files
  • \n
  • Fixed: nextgen_admin\'s jquery-ui breaking Elegant Themes admin pages
  • \n
\n\n

V2.1.50 - 08.30.2016

\n\n
    \n
  • NEW: Added the ability to open galleries within albums using a lightbox
  • \n
  • Changed: Increased freemius opt-in to 100%
  • \n
  • Changed: Tamara Lackey\'s biography on the overview page
  • \n
  • Fixed: Images not responsive for all display types
  • \n
  • Fixed: Compatibility with the Imagely Lightroom plugin
  • \n
  • Fixed: Removed Pope tests folder
  • \n
  • Fixed: Maximum function nesting level fatal error when displaying two or more albums
  • \n
  • Fixed: Ensure Insert Gallery Window background stays white
  • \n
  • Fixed: PHP warning for C_NGG_Lightbox class using incompatible constructor
  • \n
\n\n

V2.1.49 - 07.26.2016

\n\n
    \n
  • NEW: Add a \"Default\" template option to override ATP settings when a global setting is used
  • \n
  • NEW: Added \"generic\" error reporting back during image upload.
  • \n
  • NEW: Added notice for deprecating PHP 5.2
  • \n
  • NEW: Option to display child gallery and album descriptions when viewing albums
  • \n
  • Changed: ATP preview images are smaller with tighter margins to show more images
  • \n
  • Changed: Content of Upgrade to Pro page
  • \n
  • Changed: New NextGEN Overview page
  • \n
  • Changed: Replicate gallery name sanitation of NG legacy for gallery paths
  • \n
  • Fixed: Resolved all found PHP warnings/notices/deprecations and strict errors
  • \n
  • Fixed: Compatibility on Windows servers with network mounted document roots
  • \n
  • Fixed: Ensure EXIF meta data is loaded from the appropriate exif_data array instead of exif_array
  • \n
  • Fixed: Gallery Settings toggle not functioning
  • \n
  • Fixed: Uploading breaking when thumbnail or image resizing fails due to lack of specific format support for image libraries
  • \n
  • Fixed: Warning generated in nggallery.php checking useMediaRSS option
  • \n
\n\n

V2.1.46 - 06.23.2016

\n\n
    \n
  • Fixed: Remove inner nextgen-gallery folder due to build issue
  • \n
\n\n

V2.1.45 - 06.22.2016

\n\n
    \n
  • Fixed: Freemius assets should not be minified
  • \n
\n\n

V2.1.44 - 06.22.2016

\n\n
    \n
  • NEW: \"Add Gallery\" button added next to \"Add Media\" button on Create/Edit Post screen
  • \n
  • NEW: IGW placeholder images are watermarked
  • \n
  • NEW: Added API for communicating with Lightroom plugin
  • \n
  • NEW: Gulp build system
  • \n
  • NEW: Added \"ngg_igw_placeholder_line_2_settings\" and \"ngg_igw_placeholder_line_1_settings\" filters
  • \n
  • NEW: Added \"ngg_settings_during_image_generation\" filter to adjust image generation
  • \n
  • NEW: Added \"ngg_before_save_thumbnail\" filter for image manipulation abilities
  • \n
  • NEW: Added the ability to apply GD filters during image generation
  • \n
  • NEW: Integrated with WordPress SEO sitemaps to show include NGG images in image counts
  • \n
  • Changed: Links to manage a gallery after it\'s been created don\'t appear in the IGW
  • \n
  • Fixed: Freemius code shouldn\'t be minified
  • \n
  • Fixed: When a datamapper entity is saved, it\'s corresponding cache should be cleared
  • \n
  • Fixed: IGW placeholder images aren\'t used by WordPress SEO\'s OpenGraph analysis
  • \n
\n\n

V2.1.43 - 05.25.2016

\n\n
    \n
  • NEW: Added Freemius integration
  • \n
  • NEW: Added actions actions ngg_updated_image_meta, ngg_recovered_image, ngg_generated_image, ngg_moved_images, and ngg_copied_images
  • \n
  • NEW: Added patch from WPML copyping ATP galleries to new language pages when duplicating a page to a new language
  • \n
  • Changed: Moved \'ngg_delete_picture\' action to before the image has been removed
  • \n
  • Changed: Now prevent maximum_entity_count from being set to 0 or lower in Other Options
  • \n
  • Changed: Updated \"Roots\" relative url support to re-branded \"Soil\" relative url
  • \n
  • Changed: Updated branding so all publicly visible instances of \"Photocrati\" are now \"Imagely\"
  • \n
  • Changed: Upgraded FontAwesome to 4.6.1
  • \n
  • Fixed: Album breadcrumbs when used with legacy templates
  • \n
  • Fixed: Compatibility with added WP role objects without a remove_cap() method
  • \n
  • Fixed: Default watermark setting causing images to be watermarked by text even though \"image\" is shown chosen on \"Other Options\"
  • \n
  • Fixed: Navigating to albums with UTF8 characters in their name
  • \n
  • Fixed: Replaced use of get_currentuserinfo() with wp_get_current_user()
  • \n
\n\n

V2.1.33 - 04.25.2016

\n\n
    \n
  • Fixed: Compatibility with themes and plugins which enqueue underscore.js in the head of the document
  • \n
  • Fixed: Ensure that shutter reloaded can find it\'s image assets
  • \n
\n\n

V2.1.31 - 04.05.2016

\n\n
    \n
  • NEW: Added constant NGG_SCRIPT_VERSION that is either the plugin version or rand() should SCRIPT_DEBUG be on
  • \n
  • NEW: Added warning when saving galleries and refuse to automatically delete galleries with one or more \"../\" in their path.
  • \n
  • Changed: ATP slug field disallow several characters (spaces, ?, |, &, [, ]) by replacing them with dashes as they are typed
  • \n
  • Changed: Made get_static_url() look in the WP_CONTENT/ngg/(module_name)/static directory for CSS/JS overrides
  • \n
  • Fixed: Bug introduced in 2.1.24 allowing gallery paths & slugs to contain spaces; galleries must be \"saved\" once to correct them
  • \n
  • Fixed: Compatibility with WPML String Translation when uploading images without title or description
  • \n
  • Fixed: Made get_image_url() encode gallery directory names \'because%this%is\' a valid directory
  • \n
  • Fixed: Manage Galleries > Search results not saving when edited
  • \n
  • Fixed: Provided imagebrowser legacy templates not using AJAX pagination when enabled
  • \n
  • Fixed: Resource manager breaking the layout of the Multisite Plugin Activation page
  • \n
  • Fixed: Static url generation when the nextgen-gallery directory is a symlink outside of the WordPress roots
  • \n
\n\n

V2.1.27 - 03.16.2016

\n\n
    \n
  • Fixed: Formatting issues with changelog
  • \n
\n\n

V2.1.26 - 03.15.2016

\n\n
    \n
  • Fixed: Removed unnecessary whitespace from \"Related images\" template that caused issues with some themes
  • \n
  • Fixed: Detection of parents from grand-child-albums when generating breadcrumbs
  • \n
  • Fixed: C_Router->initialize() generating warnings with WP-CLI or the WP-CLI-Cron
  • \n
  • Fixed: Added Roots-theme relative-url support to C_MVC_Router->get_static_url()
  • \n
  • Fixed: nggdb::get_unique_slug() not generating unique slugs
  • \n
  • Fixed: Album breadcrumbs CSS compatibility with certain themes
  • \n
  • Fixed: C_Gallery->validation() not working properly when sanitizing gallery title using UTF-8
  • \n
  • Fixed: NGG\'s cross-frame-communication cookies not being purged
  • \n
  • Fixed: Updated C_Dynamic_Thumbnails_Manager->get_uri_from_params() with user-submitted patch
  • \n
  • Fixed: Updated C_CustomPost_DataMapper_Driver->_save_entity() with user-submitted patch
  • \n
  • Fixed: Cleaned up overview.php\'s readability and removed some now-long-unused code from legacy\'s ajax.php
  • \n
\n\n

V2.1.23 - 01.05.2015

\n\n
    \n
  • Secured: XSS vulnerabilities in Manage Gallery pages
  • \n
  • Secured: Ability to browse and import gallery folders
  • \n
\n\n

V2.1.19 - 12.23.2015

\n\n
    \n
  • Fixed: PHP warning about incorrect usage of parse_url()
  • \n
\n\n

V2.1.18 - 12.21.2015

\n\n
    \n
  • NEW: Added text domain and domain path to plugin header
  • \n
  • NEW: Add the ability to specify gallery title with import_gallery_from_fs() method
  • \n
  • NEW: Swedish (sv_SE) translation (thanks Anders O Johansson)
  • \n
  • Changed: Updated FontAwesome to version 4.5
  • \n
  • Changed: Handle for bundled version select2 is now called \'ngg_select2\'
  • \n
  • Fixed: Removed redundant translatable strings (thanks Rene Wolf)
  • \n
  • Fixed: Loading non-WOFF fonts on IIS servers
  • \n
  • Fixed: Attempt to load non-existing minified translation files for Plupload
  • \n
  • Fixed: Order direction not honored on Manage Galleries page
  • \n
  • Fixed: _NGG_Galleries_List_Table compatibility with WordPress 4.3+
  • \n
  • Fixed: Double-UTF8-encoding of image metadata
  • \n
  • Fixed: Don\'t use interframe communication outside of the Insert Gallery Window
  • \n
  • Fixed: Problem deleting interframe communication cookies
  • \n
\n\n

V2.1.15 - 09.09.2015

\n\n
    \n
  • Secured: Image uploads
  • \n
  • Fixed: Don\'t use esc_attr_e() to prevent translation issues
  • \n
  • Fixed: Ensure that deleting a gallery doesn\'t delete anything it shouldn\'t
  • \n
  • Fixed: get_gallery_abspath() should return NULL if the path doesn\'t exist
  • \n
\n\n

V2.1.13 - 09.09.2015

\n\n
    \n
  • Secured: Image uploads
  • \n
  • Fixed: Don\'t use esc_attr_e() to present translation issues
  • \n
\n\n

V2.1.10 - 09.01.2015

\n\n
    \n
  • Secured: Escape output of parameters in templates to avoid XSS
  • \n
\n\n

V2.1.9 - 08.25.2015

\n\n
    \n
  • NEW: Added ngg_manage_galleries_items_per_page filter
  • \n
  • NEW: Added ngg_manage_galleries_items_order filter
  • \n
  • NEW: ngg_manage_galleries_items_orderby
  • \n
  • Secured: Limit the ability to browse folders outside of NGG_IMPORT_ROOT
  • \n
\n\n

V2.1.7 - 08.12.2015

\n\n
    \n
  • Changed: \"Flush image cache\" now removes images from the database w/o a gallery
  • \n
  • Changed: \"Show Meta\" popup: parse date_format through date_i18n()
  • \n
  • Changed: Made Add Gallery/Images notifications a link to the gallery
  • \n
  • Changed: No longer cache displayed galleries as transients
  • \n
  • Changed: Updated widgets to use PHP5 parent::__construct() over $this->WP_Widget()
  • \n
  • Fixed: C_NextGen_Metadata->get_EXIF() was bugged with imagebrowser-exif template
  • \n
  • Fixed: Cornerstone/X compatibility
  • \n
  • Fixed: Recovering images was \'generating\' from backup instead of copying
  • \n
  • Fixed: Setting post thumbnail more than once on a page/post
  • \n
  • Fixed: Permanently hide display types from ATP without an active POPE module
  • \n
\n\n

V2.1.2 - 07.20.2015

\n\n
    \n
  • NEW: Ability to import from Media Library
  • \n
  • NEW: Added filter \'ngg_datamapper_table_name\'
  • \n
  • NEW: Added filter ngg_legacy_template_directories for legacy template locator (thanks Ross McKay)
  • \n
  • NEW: Pagination available onManage Images page
  • \n
  • NEW: Added filter ngg_manage_images_items_per_page_array to control pagination options
  • \n
  • NEW: Added filters \'ngg_load_frontend_logic\' and \'ngg_get_modules_to_load\'
  • \n
  • NEW: Added filter \'ngg_add_page_shortcode\' to control Manage Galleries > \'Create new page\' content
  • \n
  • NEW: Added filter \'ngg_manage_albums_items_order\'
  • \n
  • Changed: Removed PHP4 support
  • \n
  • Fixed: Ability to set NextGEN Image as Featured Image
  • \n
  • Fixed: Don\'t use resource manager in download requests for WP Photo Shelter
  • \n
  • Fixed: Updated custom jQuery-UI styling to resemble WordPress postbox styling
  • \n
  • Fixed: Styled plupload buttons to resemble WordPress buttons
  • \n
  • Fixed: Removed \'fixed\' class from manage galleries table. Allows columns to adjust to content
  • \n
  • Fixed: Removed note about flash support and fixed typoe (thanks Rene Wolf)
  • \n
  • Fixed: Fixed typo in nggallery.po
  • \n
  • Fixed: Cache results of lookup_columns() to avoid multiple identical queries; thanks go to Alex Bradaric
  • \n
  • Fixed: Better WP-CPI detection
  • \n
  • Fixed: Removed unnecessary calls to parent::initialize()
  • \n
  • Fixed: Adjusted album-compact template to always include p.ngg-album-gallery-image-counter
  • \n
  • Fixed: Replaced empty gallery rendering in is_feed() with a link
  • \n
  • Fixed: Removed default settings for imagerotator, which is no longer supported
  • \n
  • Fixed: Optimizated scanning of images when importing a gallery
  • \n
  • Fixed: When a gallery is deleted, ensure that DB and filesystem are purged
  • \n
  • Fixed: Removed Insert Gallery Window box shadow
  • \n
  • Fixed: Ensure that file_exists() calls are prefixed with @
  • \n
\n\n

V2.1.0 - 05.18.2015

\n\n
    \n
  • NEW: Album breadcrumbs and pagination
  • \n
  • NEW: Ability to override builtin MVC templates
  • \n
  • NEW: Robust transient management
  • \n
  • NEW: Added the ability to set post thumbnails via XML-RPC module
  • \n
  • NEW: Added \'ngg_get_image_size_params\' filter to control image generation
  • \n
  • NEW: Added \'ngg_basic_tagcloud_title\' and \'ngg_basic_tagcloud_excluded_display_types\' filters
  • \n
  • NEW: Added ngg_manage_images_items_per_page filter
  • \n
  • NEW: Added \"ngg_get_image_url\" filter
  • \n
  • NEW: Including Ukranian and Polish translations
  • \n
  • NEW: The ability to set template in widgets
  • \n
  • Changed: Default thumbnail dimensions set to 240x160
  • \n
  • Changed: Product now adheres to Pope 0.12 and provides get_modules_to_load()
  • \n
  • Changed: Updated translations
  • \n
  • Changed: Removed link to capsman plugin in Roles accordion
  • \n
  • Changed: Taxnomies now use internationalized strings
  • \n
  • Changed: Image date/time meta data fields are stored as UNIX timestamps
  • \n
  • Secured: Uploading zips
  • \n
  • Fixed: Various PHP warnings and notices
  • \n
  • Fixed: Compatibility fixes for WPML
  • \n
  • Fixed: Ensure that backup image functionality fails gracefully
  • \n
  • Fixed: WP option \'ngg_do_upgrade\' updated in every HTTP request
  • \n
  • Fixed; Empty $_SERVER[\'PATHINFO\'] causing multiple routing issues
  • \n
  • Fixed: \"Manage Galleries\" display image alttext in the filename column
  • \n
  • Fixed: Various issues with the tag cloud display type
  • \n
  • Fixed: Integrity check when updating from 1.9.x
  • \n
  • Fixed: Image filenames substituting spaces for + which is only proper in the query string
  • \n
  • Fixed: Insert Gallery Window not working with nested levels of gzip compression
  • \n
  • Fixed: Imagebrowser as lightbox effect not working with pagination
  • \n
  • Fixed: Compatibility with MultiVerso Advanced File Sharing
  • \n
  • Fixed: \"Add page\" button not displaying on the next immediate page load
  • \n
  • Fixed: Double-escaping of non-latin characters
  • \n
  • Fixed: Imagebrowser pagination with custom templates
  • \n
  • Fixed: Custom CSS is enqueued late to ensure it\'s one of the last stylesheets loaded
  • \n
  • Fixed: Fixed watermarking PNG images
  • \n
  • Fixed: Using the \"Import Metadata\" bulk action overwrites existing data
  • \n
  • Fixed: Seconds were not retained from CaptureTime EXIF field
  • \n
  • Fixed: Conflicts created by our TinyMCE plugin
  • \n
  • Fixed: Image mapper setting gid to gallery name, not the unique ID
  • \n
  • Fixed: Restored nggdb->get_random_images(), nggdb->search_for_file, and nggdb->find_all_albums()
  • \n
  • Fixed: Allow gallery slug as parameter to nggdb::get_gallery()
  • \n
  • Fixed: Don\'t minify Plupload\'s i18n JavaScript
  • \n
  • Fixed: Custom template images not being given their full effect code attributes
  • \n
  • Fixed: When importing galleries from folders, allow symlinks
  • \n
  • Fixed: Use of C_Gallery_Mapper in C_Image_Wrapper
  • \n
  • Fixed: Properly handle themes that don\'t call wp_footer() or wp_print_footer_scripts()
  • \n
  • Fixed: Warning about missing style.php file on Network Admin -> Gallery page
  • \n
  • Fixed: Warning about getimagesize() failure when backing up an image
  • \n
\n\n

v2.0.79 - 03.20.2015

\n\n
    \n
  • Secured: Sanitized C_Displayed_Gallery->_add_find_in_set_column() third parameter
  • \n
\n\n

V2.0.78.1 - 03.12.2015

\n\n
    \n
  • Changed: Image date/time meta data fields are stored as UNIX timestamps
  • \n
  • Fixed: When importing galleries from folders, allow symlinks
  • \n
  • Fixed: Use of C_Gallery_Mapper in C_Image_Wrapper
  • \n
  • Fixed: Properly handle themes that don\'t call wp_footer() or wp_print_footer_scripts()
  • \n
  • Fixed: Warning about missing style.php file on Network Admin -> Gallery page
  • \n
  • Fixed: Warning about getimagesize() failure when backing up an image
  • \n
\n\n

V2.0.78 - 03.12.2015

\n\n
    \n
  • Secured: AJAX actions for uploading images and importing folders now uses nonce checks
  • \n
\n\n

V2.0.77 - 03.05.2015

\n\n
    \n
  • NEW: Added \"ngg_get_image_url\" filter
  • \n
  • Changed: Use a more reliable means of excluding Pro/Plus modules from using minified static resources
  • \n
  • Fixed: Imagebrowser pagination with custom templates
  • \n
  • Fixed: Custom CSS is enqueued late to ensure it\'s one of the last stylesheets loaded
  • \n
  • Fixed: Fixed watermarking PNG images
  • \n
  • Fixed: Using the \"Import Metadata\" bulk action overwrites existing data
  • \n
  • Fixed: Seconds were not retained from CaptureTime EXIF field
  • \n
  • Fixed: Conflicts created by our TinyMCE plugin
  • \n
  • Fixed: Image mapper setting gid to gallery name, not the unique ID
  • \n
  • Fixed: Restored nggdb->get_random_images(), nggdb->search_for_file, and nggdb->find_all_albums()
  • \n
  • Fixed: Allow gallery slug as parameter to nggdb::get_gallery()
  • \n
  • Fixed: Don\'t minify Plupload\'s i18n JavaScript
  • \n
  • Fixed: Custom template images not being given their full effect code attributes
  • \n
\n\n

V2.0.76 - 02.24.2015

\n\n
    \n
  • Fixed: Compatibility checks for very old versions of NextGEN Pro
  • \n
  • Fixed: Zero-byte downloads in WooCommerce and WPE-Commerce
  • \n
  • Fixed: Invalid URL being enqueued if a custom lightbox is selected with no URL provided
  • \n
  • Fixed: Restored a method to nggAdmin to fix compatibility with NextGen Public Uploader
  • \n
  • Fixed: Bug preventing source=\'recent\' from displaying images in the correct order
  • \n
  • Fixed: Include more quotation symbols in our shortcode manager (foreign language shortcodes)
  • \n
  • Fixed: WPML/ATP compatibility issue
  • \n
  • Fixed: $nggdb->get_gallery() returning a different result than before
  • \n
\n\n

V2.0.74 - 02.20.2015

\n\n
    \n
  • Changed: Removed jQuery Lightbox and Highslide due to incompatible licensing with GPL
  • \n
\n\n

V2.0.71 - 02.19.2015

\n\n
    \n
  • NEW: Module files are compiled into a single package file to reduce disk I/O
  • \n
  • NEW: All CSS stylesheets and Javascript source files are minified to reduce latency
  • \n
  • NEW: All lightboxes are configured using an in-memory management class.
  • \n
  • NEW: Uses Pope 2.0, benefiting from the new caching capabilities
  • \n
  • NEW: NextGEN Gallery\'s functionality is disabled if NextGEN Pro is incompatible
  • \n
  • NEW: Added ngg_effect_code filter
  • \n
  • Changed: Updated FontAwesome to 4.3.0
  • \n
  • Changed: Updated select2 to 3.5.2
  • \n
  • Changed: Removed PicLens / CoolIris integration
  • \n
  • Changed: Removed JSON API. Please use XML-RPC API instead
  • \n
  • Changed: For performance reasons, we cache FS & url lookups/calculations
  • \n
  • Changed: Greatly reduced the # of sql queries, and eliminated anything redundant
  • \n
  • Changed: For performance reasons, we cache datamapper and SQL queries
  • \n
  • Changed: Don\'t enqueue scripts or styles unless we require them
  • \n
  • Changed: Reduce the number of resources we enqueue for every HTTP request
  • \n
  • Changed: Ngg_Store now uses cookies instead of localStorage
  • \n
  • Changed: Insert Gallery Window is routed using wp-admin/admin_init
  • \n
  • Changed: Removed unused code from ngglegacy module. Created wrappers for commonly-used functions
  • \n
  • Changed: LZW module removed
  • \n
  • Changed: Legacy template drop-down selection now using select2
  • \n
  • Secured: Restrict folder browsing to NGG_IMPORT_ROOT constant
  • \n
  • Fixed: Compatibility issue with PHP\'s transparent ZLIB compression
  • \n
  • Fixed: Imagebrowser as lightbox effect not working when non-default permalink slug used
  • \n
  • Fixed: Angled quotations marks used in shortcode parameters
  • \n
  • Fixed: Compatibility between ImageBrowser display type and TwentyFifteen theme
  • \n
  • Fixed: Allow pagination to retain query string url parameters when linking to other pages
  • \n
  • Fixed: Fixed pagination issues with slideshow galleries displayed as thumbnails
  • \n
  • Fixed: Fix C_GalleryStorage_Driver_Base->import_gallery_from_fs() not checking imgBackup
  • \n
  • Fixed: Fixed problem with default settings being applied multiple times
  • \n
  • Fixed: Fallback to \"full\" image sizes if \"backup\" images aren\'t available
  • \n
  • Fixed: Use M_DataMapper\'s serialization methods throughout the codebase
  • \n
  • Fixed: Conflict with WordPress SEO and get_the_excerpt() call
  • \n
  • Fixed: Don\'t run Resource Manager on wp-login.php or wp-sign.php
  • \n
  • Fixed: TinyMCE Image Editor conflict with Insert Gallery Window placeholder images
  • \n
  • Fixed: Fix Shutter positioning when admin bar is displayed
  • \n
  • Fixed: Allow deselection of a legacy template
  • \n
  • Fixed: Prevent conflicts when using imagebrowser as a lightbox effect
  • \n
  • Fixed: Pagination not working for slideshows using thumbnail integration
  • \n
\n\n

V2.0.66.33 - 11.24.2014

\n\n
    \n
  • Fixed: Broken NextGEN Pro ecommerce-related shortcodes
  • \n
  • Fixed: Spanish PO file
  • \n
\n\n

V2.0.66.31 - 11.21.2014

\n\n
    \n
  • Fixed: Broken shortcodes with WordPress 4.0.1
  • \n
\n\n

V2.0.66.29 - 09.17.2014

\n\n
    \n
  • NEW: Added skip_excluding_globally_excluded_images property to displayed gallery objects
  • \n
  • Fixed: SQL generation for random image selection
  • \n
  • Fixed: Adjust regex for replacing displayed gallery placeholder images
  • \n
  • Fixed: Removed filters to home_url needed previously for WMPL compatibility
  • \n
  • Fixed: Use canonical redirects when appropriate
  • \n
  • Fixed: Ability to override image files using XML-RPC
  • \n
\n\n

V2.0.66.27 - 08.18.2014

\n\n
    \n
  • Fixed: Missing class.frame_communication_option_handler.php error
  • \n
\n\n

V2.0.66.26 - 08.18.2014

\n\n
    \n
  • NEW: Added fault tolerance to bulk action AJAX requests
  • \n
  • Changed: Moved some settings from DB to in-memory
  • \n
  • Fixed: Compatibility with BuddyPress plugin in multisite environments
  • \n
  • Fixed: Ability to find static resources outside of WP_PLUGIN_DIR
  • \n
  • Fixed: Autoupdate conflict with Photocrati Theme
  • \n
  • Fixed: Workaround GoDaddy\'s throttling of consecutive AJAX requests
  • \n
  • Fixed: Issue with settings manager in multisite enviroments
  • \n
\n\n

V2.0.66.17 - 08.08.2014

\n\n
    \n
  • NEW: Added french translations
  • \n
  • Secured: XSS vulnerability in jQuery Plupload Queue (thanks Codevigilant Team)
  • \n
  • Secured: XSS vulnerability in thumbnail/slideshow integration links
  • \n
  • Secured: XSS vulnerability on Manage Albums page
  • \n
\n\n

V2.0.66.16 - 07.30.2014

\n\n
    \n
  • NEW: Added new \"limit\" setting to Slideshow widgets
  • \n
  • NEW: Added a \"ngg_routes\" action for other plugins to hook into to provide new routes
  • \n
  • NEW: Added NGG_SKIP_LOAD_SCRIPTS constant, which existed in 1.9.x
  • \n
  • NEW: Added NGG_GALLERY_ROOT_TYPE constant. Set to \'content\' to load galleries from the content_dir / content_url
  • \n
  • NEW: Bosnian (bs_BA) language thanks to Nevesin Srdoc
  • \n
  • NEW: Chinese (zh_CN) language thanks to Vahi Chen, http://www.vahichen.com
  • \n
  • NEW: Dutch (nl_NL) language thanks to Taeke Kooiker
  • \n
  • NEW: Filipino (fil) language thanks to Find Hold, http://www.findhold.dk/
  • \n
  • NEW: French (fr_FR) language thanks to Jean-Yves Dumaine & Le Blog de Lise
  • \n
  • NEW: Hungarian (hu_HU) language thanks to Zoltán Varanka
  • \n
  • NEW: Italian (it_IT) language thanks to Jacopo Caggiano, @tizz
  • \n
  • NEW: Russian (ru_RU) language thanks to SnakeD3
  • \n
  • NEW: Spanish (es_ES) language thanks to Andrew Kurtis at WebHostingHub
  • \n
  • Changed: Updated Czech language thanks to Separatista; additional thanks to Martin Krizek for the original translation who was mistakenly unaccredited
  • \n
  • Changed: \"Upgrade to Pro\" page has new design, advertises for NextGEN Plus
  • \n
  • Changed: Basic Albums templates now given the image counter P element the class \'ngg-album-gallery-image-counter\' (by user request)
  • \n
  • Changed: Gallery widgets now apply height:auto to their element; fixes compatibility with some themes
  • \n
  • Changed: Random galleries should be substantially faster now (1000% or more for large image tables)
  • \n
  • Fixed: Complete WPML compatibility
  • \n
  • Fixed: Disable Buddypress \'bp_do_redirect_canonical\' filter as it ruins our routing system
  • \n
  • Fixed: Use plugins_url() content_url() when appropriate rather than just site_url() and home_url()
  • \n
  • Fixed: WP Cron job will remove not only displayed gallery transients, but rendering transients as well
  • \n
  • Fixed: NGG_RENDERING_CACHE_TTL constant is honored properly
  • \n
  • Fixed: If using the caption template for Basic Thumbnails, only show the image caption when appropriate
  • \n
  • Fixed: If NGG is uninstalled, so are it\'s custom capabilities
  • \n
  • Fixed: Translate \"Attach NextGEN Gallery to Post\" ATP icon alt text when translations are active
  • \n
  • Fixed: Multisite gallery path tooltip gave a wrong default setting
  • \n
  • Fixed: Flush \'all\' caches when pope_module_list setting changes
  • \n
  • Fixed: Don\'t enqueue related images css in the admin
  • \n
  • Fixed: Basic Slideshows fixes WP creating extraneous P element above the slideshow display
  • \n
  • Fixed: Basic Singlepic will now display images marked \'excluded\' in the admin
  • \n
  • Fixed: Admin pages can now update when the \"Save\" button text has been translated
  • \n
\n\n

V2.0.66 - 05.20.2014

\n\n
    \n
  • Secured: Check mime type of image files using a variety of mechanisms
  • \n
\n\n

V2.0.65 - 05.04.2014

\n\n
    \n
  • Secured: Limit uploads to images and zips
  • \n
\n\n

V2.0.63 - 04.29.2014

\n\n
    \n
  • NEW: Translation ready
  • \n
  • NEW: Including German translation by Roland Stumpp
  • \n
  • NEW: Including Czech translation by Separatista
  • \n
  • NEW: Including Finnish translation by Vesa Tiirikainen
  • \n
  • NEW: WPML / qTranslate support
  • \n
  • NEW: Bundled Browser+ JavaScript library
  • \n
  • NEW: Added NGG_DISABLE_FILTER_THE_CONTENT constant to manage conflicts
  • \n
  • Changed: Moved jquery.nextgen_radio_toggle.js to NextGEN Admin Module
  • \n
  • Changed: Original display settings are passed to secondary display types
  • \n
  • Fixed: Thumbnail dimension calculations are inaccurate by 1px when maintaining aspect ratio
  • \n
  • Fixed: Copy IPTC data from original to new image when creating new sizes / thumbnails
  • \n
  • Fixed: Use correct absolute path when importing images in a multisite environment
  • \n
  • Fixed: Incorrect display of disk space quotas in multisite environments
  • \n
  • Fixed: Removed redundant roles form in multisite environments
  • \n
  • Fixed: Insert Gallery Window support for multisite environments
  • \n
  • Fixed: Incorrect handling of NextGEN Styles in multisite environments
  • \n
  • Fixed: Not honouring NGG_IMPORT_ROOT constant
  • \n
  • Fixed: Fixed inability to edit gallery properties using XMLRPC\'s edit_gallery method
  • \n
  • Fixed: Alignment issues in Basic Compact Albums caused by subalbums not displaying image \'counter\'
  • \n
  • Fixed: Display setting forms compatibility issue with WordPress 3.9
  • \n
  • Fixed; Compability with jQuery Dialogs in WordPress 3.9
  • \n
  • Fixed: Maximum entity code should be a displayed gallery property for recent/random sources only
  • \n
  • Fixed: Problems with zlib compression: https://core.trac.wordpress.org/ticket/18525
  • \n
  • Fixed: Support for web servers which use a document root of \'//\'
  • \n
  • Fixed: Compatibility with WPML Translation Management
  • \n
  • Fixed: use \'del\' for function name in ngg_store.js, \'delete\' is a reserved keyword
  • \n
  • Fixed: Enqueue fontawesome only when necessary
  • \n
  • Fixed: Suhosin compatibility issue when overriding PHP memory limit
  • \n
  • Fixed: Handle images of wrong image type correctly when trying to create cropped thumbnails
  • \n
  • Fixed: Datamapper entities not allowed to have properties with a value of 0
  • \n
  • Fixed: Resource manager is manipulating feeds
  • \n
  • Fixed: Convert absolute urls to relative urls for lightboxes
  • \n
  • Fixed: Start the resource manager as early as we can within the init action
  • \n
  • Fixed: Routing problem for galleries with images named 1.jpg, 2.jpg, 3.jpg, etc.
  • \n
  • Fixed: Added tooltips to basic slideshow settings
  • \n
  • Fixed: Remove CKEditor\'s NextGEN button, which is incompatible with NextGEN Gallery 2.x
  • \n
\n\n

V2.0.61 - 04.01.2014

\n\n
    \n
  • Fixed: Compatibility with WP 3.9
  • \n
  • Fixed: Exception thrown when using Reset button
  • \n
\n\n

V2.0.59 - 03.18.2014

\n\n
    \n
  • Changed: Separated pope_module_list from ngg_options record in options table
  • \n
  • Fixed: Removed code causing jQuery compatibility issues in WP Admin
  • \n
  • Fixed: Allow third-parties to override jQuery with Google\'s CDN
  • \n
  • Fixed: When resetting the \'jquery\' handle, ensure that jquery-migrate is a dependency
  • \n
  • Fixed: Silenced many PHP warnings
  • \n
  • Fixed: Datamapper->count() not returning the correct count
  • \n
  • Fixed: Compatibility with Gravity Forms
  • \n
\n\n

V2.0.58 - 03.09.2014

\n\n
    \n
  • Fixed: Reset jQuery to WP defaults when modified by a third-party
  • \n
  • Fixed: Compatibility with WP jQuery Lightbox plugin
  • \n
  • Fixed: Compatibility with Peekaboo theme
  • \n
\n\n

V2.0.57 - 03.05.2014

\n\n
    \n
  • NEW: Re-introduced the Reset button
  • \n
  • NEW: Tooltip added for Page Link to functionality
  • \n
  • NEW: Displayed Gallery Triggers moved from NextGEN Pro to NextGEN Gallery (not in use)
  • \n
  • NEW: Added NGG_Store, a client-side persistence layer (not in use)
  • \n
  • NEW: Added NGG_CRON_SCHEDULE constant. Set to the number of seconds between the execution of NextGEN Gallery cron jobs
  • \n
  • NEW: Added NGG_RENDERING_CACHE_TTL constant. TTL measured in seconds.
  • \n
  • NEW: Added NGG_DISPLAYED_GALLERY_CACHE_TTL constant. TTL measured in seconds.
  • \n
  • NEW: Added NGG_DISABLE_LEGACY_SHORTCODES constant. When TRUE, [slideshow] becomes [nggslideshow].
  • \n
  • NEW: Added Font Awesome, available for NextGEN Gallery extensions
  • \n
  • Changed: Transients are removed every 30 minutes instead of 60 minutes
  • \n
  • Changed: Admin Page & Form components refactored to allow custom POST processing
  • \n
  • Changed: Default path for NEW multisite installations to wp-content/uploads/sites/%BLOG_ID%/nggallery/
  • \n
  • Fixed: Ability to upload ZIP files on Windows hosts
  • \n
  • Fixed: Support for filenames with non-ASCII characters
  • \n
  • Fixed: Dynamic updates in the Attach to Post interface (interframe communication)
  • \n
  • Fixed: Attach to Post interface freezing in IE11
  • \n
  • Fixed: Path issues on Windows Servers
  • \n
  • Fixed: Module installer integrity
  • \n
  • Fixed: Database query performance. No more joins to the WP options table
  • \n
  • Fixed: Lightboxes storing absolute paths for static resources
  • \n
  • Fixed: Displayed gallery cache not regularly flushed
  • \n
  • Fixed: SQL query performance problems. Honor max_packet_allowed variable for MySQL
  • \n
  • Fixed: Multiple database queries generated for determining next available image slug
  • \n
  • Fixed: Corrupted MediaRSS feeds
  • \n
  • Fixed: Padding on Gallery Settings and Other Options pages
  • \n
  • Fixed: Routing issues on subdirectory installs
  • \n
  • Fixed: Importing galleries using the Attach to Post Interface
  • \n
  • Fixed: Gallery path calculations on Windows web servers
  • \n
  • Fixed: Sub-album urls not processed correctly
  • \n
  • Fixed: Apply maximum entity count to existing displayed galleries
  • \n
  • Fixed: NextGEN Gallery Thumbnail Widget shouldn\'t use ImageBrowser effect
  • \n
  • Fixed: Ability to set shuffle parameter for ImageRotator slideshows
  • \n
  • Fixed: PHP warning about HTMLDocument when displaying a SinglePic
  • \n
  • Fixed: Sanitization of gallery title
  • \n
  • Fixed: Home URL now used instead of Site URL in MediaRSS feed
  • \n
  • Fixed: Attach to Post interface broken when WPML is installed
  • \n
  • Fixed: Attach to Post interface instructing browser to cache the page
  • \n
  • Fixed: Watermarking not working in low-memory environments
  • \n
  • Fixed: Maximum images limit not being applied for galleries already created.
  • \n
  • Fixed: Double forward slashes in static urls
  • \n
  • Fixed: Don\'t sleep when checking if the installer is running
  • \n
  • Fixed: Don\'t enforce Pope interface contracts
  • \n
  • Fixed: Remove custom table extra records from wp_options table
  • \n
  • Fixed: Scan folder for new images not working
  • \n
  • Fixed: Incorrect page permalink used for \"Page Link To\" functionality
  • \n
  • Fixed: Pagination broken when Basic Thumbnail gallery on the same page as Basic Album
  • \n
  • Fixed: parse_url() warnings generated for PHP 5.3.3 and earlier
  • \n
  • Fixed: Compatibility with Headway Themes
  • \n
  • Fixed: Compatibility with web servers which don\'t provide PHP a document root
  • \n
  • Fixed: Third-party incompatibilities caused by the Photocrati Resource Manager
  • \n
  • Fixed: Compatibility with the Flattr plugin
  • \n
  • Fixed: Compatibility with the Weaver II theme
  • \n
  • Fixed: Interface tweaks for WordPress 3.8
  • \n
\n\n

V2.0.40 - 11.26.2013

\n\n
    \n
  • NEW: Added the ability to apply lightbox effects to non-NGG images
  • \n
  • NEW: Added NGG_HIDE_STRICT_ERRORS constant. Define and set to TRUE to hide strict errors
  • \n
  • NEW: Added NGG_IMPORT_ROOT constant. Define and set to TRUE to browse from a custom directory
  • \n
  • NEW: Added NGG_DEBUG constant. Define and set to TRUE to display helpful messages for debugging
  • \n
  • NEW: Each custom table record will have an associated custom post record for expansion
  • \n
  • NEW: Display helpful error messages when there\'s a problem uploading images
  • \n
  • NEW: Add data-(src|thumbnail|image-id|title|description) attribute to gallery image anchors
  • \n
  • NEW: Variant support for displayed gallery sources. Random images is limited to 5 variations
  • \n
  • Fixed: Excessive creation of transients for random galleries
  • \n
  • Fixed: Many issues prohibiting the ability to upload images
  • \n
  • Fixed: Compatibility with NextGEN Gallery Export Plugin for Adobe Lightroom (thanks Vladimir!)
  • \n
  • Fixed: Sorting in the Attach to Post interface
  • \n
  • Fixed: HTML allowed in gallery/album descriptions
  • \n
  • Fixed: Requests for galleries within albums that have numeric names are broken
  • \n
  • Fixed: Call to a non-member function get() on WP_Query
  • \n
  • Fixed: Ability to sort by Image ID in the Attach to Post interface
  • \n
  • Fixed: Isolate the Attach to Post from implicit third-party script inclusion
  • \n
  • Fixed: Check for the existance of thumbnails when generating urls, and if missing, generate new ones
  • \n
  • Fixed: Compatibility with NextGEN Facebook OpenGraph+ plugin
  • \n
  • Fixed: Various XML-RPC issues
  • \n
  • Fixed: Widgets stylesheet not included
  • \n
  • Fixed: Issue with color not being pre-selected when previewing Watermark
  • \n
  • Fixed: E_NOTICE emitted when cleaning up cached image files
  • \n
  • Fixed: E_NOTICE emitted when viewing display type settings
  • \n
  • Fixed: Typo adjusting pcre.backtrack_limit for shortcodes
  • \n
  • Fixed: Content within the tabs of the Attach to Post interface cut-off
  • \n
  • Fixed: Routing problem which would cause conflicts with different display types on the same page
  • \n
  • Fixed: Broken Dynamic CSS links on GoDaddy
  • \n
  • Fixed: Ability to use HTML in gallery/album descriptions
  • \n
  • Fixed: Sub-album requests conflicting with paginated galleries on the same page
  • \n
  • Merged: Pull request from andreasE (https://bitbucket.org/photocrati/nextgen-gallery/pull-request/6/)
  • \n
\n\n

V2.0.33 - 10.21.2013

\n\n
    \n
  • NEW: Requests /ngg_tag/[tagname] will create a displayed gallery
  • \n
  • NEW: Option added to \"Import Gallery\" tab to use original images
  • \n
  • Fixed: Links are broken on the ngg_tags-sitemap.xml file by WordPress SEO
  • \n
  • Fixed: PHP notice: Attempt to assign property of non-object
  • \n
  • Fixed: Undefined property warnings when using NextGEN Basic Thumbnails
  • \n
  • Fixed: Detect if an applying a transient to a displayed gallery was successful
  • \n
  • Fixed: Compatibility issues with BJ-Lazy-Load and Colorbox
  • \n
  • Fixed: Pagination conflicts for multiple Imagebrowsers on the same page
  • \n
  • Fixed: Ability to display previous exception with debug mode
  • \n
  • Fixed: Tagclouds not working in multisite instances
  • \n
  • Fixed: Load widgets.css when a widget is being used
  • \n
  • Fixed: Installer should remove all instances of the component factory
  • \n
  • Fixed: Widget settings interface not intuitive
  • \n
  • Fixed: Inability to upload images in some Windows host environments
  • \n
  • Fixed: Sorting images/galleries using the Attach To Post interface
  • \n
  • Fixed: Fix detection of HTTPS (pull request by Leonhardt Wille)
  • \n
  • Fixed: Compilation errors of regular expressions
  • \n
  • Fixed: Pro galleries wouldn\'t display in environments using PHP 5.3.3 or less
  • \n
  • Fixed: Scanning of router slug is now limited to the uri, not the url
  • \n
  • Fixed: Show slideshow link isn\'t required for thumbnail/imagebrowser integration
  • \n
  • Fixed: WordPress media-upload with \'singlepic\' image size
  • \n
  • Fixed: Use target=_blank when the link setting is provided for NextGEN Basic Singlepic
  • \n
  • Fixed: Only display rendering errors if WP_DEBUG is enabled
  • \n
\n\n

V2.0.31 - 10.03.2013

\n\n
    \n
  • NEW: Restored AJAX pagination for NextGEN Basic ImageBrowser display type
  • \n
  • Fixed: Compatibility with WordPress Local SEO by Yoast
  • \n
  • Fixed: Inability to upload images if image_slug field was missing in database
  • \n
  • Fixed: Integration of NextGEN Basic Thumbnail and NextGEN Basic Slideshow display types
  • \n
  • Fixed: Photocrati Resource Manager further adjusted to be third-party friendly
  • \n
  • Fixed: Added the ability to find legacy templates in both the child/parent theme directories
  • \n
  • Fixed: JavaScript errors in Attach to Post interface
  • \n
  • Fixed: Router can handle port numbers in urls
  • \n
  • Fixed: Carousel template was linking to NextGEN Basic ImageBrowser view
  • \n
  • Fixed: SQL query generated for displayed galleries using tags as source
  • \n
  • Fixed: 3rd party compat: raise & never lower pcre.backtrack_limit
  • \n
\n\n

V2.0.30 - 09.25.2013

\n\n
    \n
  • NEW: Restored the ability to use imagebrowser display type instead of a lightbox effect
  • \n
  • Changed: Displayed galleries are no longer rendered in RSS feeds
  • \n
  • Changed: Removed \"Plugin Check\" widget from overview page
  • \n
  • Fixed: Silence PHP warnings/errors in an output buffer for AJAX actions
  • \n
  • Fixed: Compatibility issue with WordPress SEO and broken site maps (and large error_logs)
  • \n
  • Fixed: Compatibility issue with AJAX Event Calendar (and possibly others)
  • \n
  • Fixed: Adjusted Photocrati Resource Manager to be third-party friendly
  • \n
  • Fixed: Fixed empty result set for displayed galleries selecting \'All\' tags
  • \n
  • Fixed: URL generation for imagebrowser pagination links
  • \n
  • Fixed: Ensure that image meta is imported on creation
  • \n
  • Fixed: Ensure that transients are removed when an external object cache is used
  • \n
  • Fixed: Don\'t load pluggable.php. This will fix plugin conflicts
  • \n
  • Fixed: In Attach to Post interface, galleries created in one tab weren\'t showing in another
  • \n
  • Fixed: Don\'t output frame events cookie for XML-RPC requests
  • \n
\n\n

V2.0.27 - 09.18.2013

\n\n
    \n
  • Fixed: Reduce performance impact of purging displayed gallery transients
  • \n
\n\n

V2.0.25 - 09.18.2013

\n\n
    \n
  • Reverting to the 2.0.21 codebase, due to major performance issues in 2.0.23 and 2.0.24
  • \n
\n\n

V2.0.23 - 09.16.2013

\n\n
    \n
  • NEW: WP-Cron job to periodically clean-up displayed gallery transients
  • \n
  • NEW: Added \"excluded_container_ids\" as parameter for ngg_images shortcode
  • \n
  • Fixed: Lightbox effect is honoured by all display types
  • \n
  • Fixed: Highslide displays images from the correct displayed galleries
  • \n
  • Fixed: Ensure that sub-albums display correctly when the word \"album\" is part of a slug
  • \n
  • Fixed: Ensure that sub-albums display correctly when numerical slugs are used
  • \n
  • Fixed: Related images heading only added when Related Images functionality is enabled
  • \n
  • Fixed: PHP Warning about undefined index when viewing basic albums
  • \n
  • Fixed: AJAX handling is third-party compatible
  • \n
  • Fixed: Image date is no longer overwritten when an image is modified
  • \n
  • Fixed: Fixed issue with displayed galleries using source=\'tags\'
  • \n
  • Fixed: Problem with transient cache not getting flushed properly from Other Options page
  • \n
  • Fixed: Use correct gallery/transient ID when ajax pagination is used
  • \n
\n\n

V2.0.21 - 09.09.2013

\n\n
    \n
  • NEW: Multisite support
  • \n
  • Changed: Default image quality set to 100 for generated images
  • \n
  • Changed: Removed dependence on simplehtmldom library
  • \n
  • Fixed: Related images functionality works as it did in 1.9.x
  • \n
  • Fixed: Don\'t compress inline JavaScript in post/page content
  • \n
  • Fixed: Click-to-advance slideshow behavior for slideshows
  • \n
  • Fixed: Security warnings from VaultPress
  • \n
  • Fixed: View as Slideshow link works with AJAX pagination
  • \n
  • Fixed: Broken links on Overview page
  • \n
  • Fixed: Backup images option
  • \n
  • Fixed: Stylesheet url generated correctly for Windows hosts
  • \n
  • Fixed: Compatibility with NextGen Custom Fields plugin
  • \n
  • Fixed: Compatibility with Adsense Explosion plugin
  • \n
  • Fixed: Suppress wp_footer notices unless WP_DEBUG is set to TRUE
  • \n
\n\n

V2.0.17 - 08.30.2013

\n\n

Fixed: Match legacy behaviour when changing gallery path, i.e. don\'t move files

\n\n

V2.0.14 - 08.27.2013

\n\n
    \n
  • NEW: Added the ability to override thumbnail settings for NextGEN Basic Albums
  • \n
  • NEW: Shortcode Manager API, which ensures that shortcodes are outputted as intended
  • \n
  • Changed: Re-added the ability to select the original image size for widgets
  • \n
  • Fixed: Ensure that stylesheet url returned is correct for Windows hosts
  • \n
  • Fixed: Broken links and lightbox effects with AJAX pagination
  • \n
  • Fixed: Try to ensure that third party plugins don\'t add content to our dynamic JS
  • \n
  • Fixed: Improved reliability of iframely.js
  • \n
  • Fixed: Ensure that urls are generated correctly in HTTPs environments
  • \n
  • Fixed: Datamapper works correctly in environments where temporary tables aren\'t supported
  • \n
  • Fixed: Fixed an issue with thickbox loading animation when home url differs from site url
  • \n
\n\n

V2.0.11 - 08.19.2013

\n\n
    \n
  • NEW: Added \"run_ngg_resource_manager\" hook to by-pass our resource manager
  • \n
  • Changed: Removed \"Reset & Uninstall\" tab, for now
  • \n
  • Fixed: Compatibility with W3 Total Cache. Please flush cache after updating.
  • \n
  • Fixed: Conflicts with Photocrati Theme Galleries
  • \n
  • Fixed: Blank Attach to Post interface window
  • \n
  • Fixed: Fixed ability to change Lightbox Effect settings
  • \n
  • Fixed: Implemented techniques to ensure WP_Query variables aren\'t overwritten
  • \n
  • Fixed: Enqueuing AJAX JS libraries twice in wp-admin
  • \n
  • Fixed: Encoding issues
  • \n
  • Fixed: PHP warnings caused by accessing unserialized data as array
  • \n
  • Fixed: Fixed installer issues
  • \n
\n\n

V2.0.7 - 08.09.2013

\n\n
    \n
  • NEW: New resource manager that fixes many plugin and theme incompatibilities
  • \n
  • NEW: Styles (custom stylesheets) should reside in wp-content/ngg_styles
  • \n
  • NEW: Added option to \"Other Options -> Misc\" to control maximum images returned
  • \n
  • Secured: Removed default connector for jQuery FileTree library
  • \n
  • Changed: Updated the simplehtmldom library to version 1.5
  • \n
  • Changed: jQuery is now enqueued at the beginning of every request
  • \n
  • Fixed: Incompatibilities with BuddyPress
  • \n
  • Fixed: Incompatibilities with Events+, bbPress, Custom Permalinks, and many other plugins
  • \n
  • Fixed: Incompcatibilities with Member Access, AMember, Magic Fields, and More Fields
  • \n
  • Fixed: Incompatibilities with Elegant Themes, Oxygen, Responsive, and many other themes
  • \n
  • Fixed: Ensure that gallery images don\'t have a border by default
  • \n
  • Fixed: Conflict between imagebrowser and album urls
  • \n
  • Fixed: Reverted default gallerypath to wp-content/gallery/
  • \n
  • Fixed: Upgrade-safe way of overriding Styles
  • \n
  • Fixed: Generation of AJAX url is now based on slug
  • \n
  • Fixed: Restore nggShowGallery and nggShowSlideshow as wrappers to new API
  • \n
  • Fixed: Always use domain as specified by WordPress Site URL
  • \n
  • Fixed: Use WordPress Home URL over Site URL when appropriate
  • \n
  • Fixed: Numerous pagination issues
  • \n
  • Fixed: Adjusted our forms to comply with WordPress Firewalls
  • \n
  • Fixed: Correct use of select2 DOM selector for maximum compatibility
  • \n
  • Fixed: Path and URL calculations for Windows and UNIX environments
  • \n
  • Fixed: Ensure that pluggable.php is loaded at the start of every request
  • \n
  • Fixed: Fancybox: adjust CSS for further box-sizing protection from themes
  • \n
  • Fixed: Use PHP 5.2.1 compatible named pattern matching syntax
  • \n
  • Fixed: Remove usage of DIR constant not supported by PHP 5.2.x
  • \n
  • Fixed: Removed dependency on mb_string PHP module
  • \n
  • Fixed: Allow \"No Lightbox\" as an option for Lightbox Effects
  • \n
  • Fixed: Warning: \"Invalid CRT parameters detected\" for Windows environments
  • \n
\n\n

V2.0 - 07.30.2013

\n\n
    \n
  • NEW: Improved user experience throughout the plugin, settings and usage.
  • \n
  • NEW: Plupload queue uploader that allows for bulk and zip uploads within the same interface.
  • \n
  • NEW: Complete redesign of the NextGEN options panel
  • \n
  • NEW: Added new interface for adding galleries from pages and posts.
  • \n
  • NEW: Galleries are now mobile friendly and responsive, which is most noticeable with a responsive theme.
  • \n
  • NEW: Streamlined functionality for displaying galleries based on tags.
  • \n
  • NEW: Architecture based on Pope Framework (http://bitbucket.org/photocrati/pope-framework)
  • \n
  • NEW: New shortcode, ?ngg_images?, and corresponding Attach to Post interface
  • \n
  • NEW: Galleries have now global and instance settings
  • \n
  • NEW: Support for FastCGI environments
  • \n
  • Changed: Replaces shortcodes with placeholder images, however still supports legacy shortcodes.
  • \n
  • Changed: Introduced new Growl-like notifications
  • \n
  • Changed: The container and it?s images are centered for slideshows
  • \n
  • Changed: NextGEN styles now override vs replace default styles
  • \n
  • Changed: NextGEN legacy templates have been deprecated (but still function)
  • \n
  • FIXED: The ability to use NextGEN image as a Featured Image.
  • \n
  • FIXED: Many bugs and annoyances, such as PHP warnings, errors, etc.
  • \n
\n\n

V1.9.13 - 06.11.2013

\n\n
    \n
  • NEW: Slideshows are now centered to their content area
  • \n
  • Secured: Ensure that only logged in users can upload images
  • \n
  • Fixed: Import date is presered are no longer Jan 1 1970
  • \n
  • Fixed: Removed mention of upgrade.php, which no longer exists
  • \n
\n\n

V1.9.12 - 02.15.2013

\n\n
    \n
  • Fixed: jQuery Conflict Detection was trying to dequeue irremovable scripts
  • \n
\n\n

V1.9.11 - 02.12.2013

\n\n
    \n
  • NEW: Added the ability to detect JQuery conflicts on NGG Admin Pages and auto-resolve
  • \n
  • Changed: Added \"nggalbum\" shortcode. Use this when Jetpack is installed.
  • \n
  • Changed: Using natural sorting algorithm for alphanumeric values
  • \n
  • Changed: Database schema is automatically updated when out-of-date
  • \n
  • Fixed: Fixed several incompatibility issues with Jetpack
  • \n
  • Fixed: Empty drop-down for \"Page Link To\"
  • \n
  • Fixed: Alphabetical image sorting
  • \n
  • Fixed: Compatibility with Arjuna X theme
  • \n
  • Fixed: â??Creating default object from empty valueâ? on album page
  • \n
  • Fixed: Compatibility issues with PHP 5.4 on album page
  • \n
  • Fixed: E_DEPRECATED warning when using get_userdatabylogin() function
  • \n
  • Fixed: Removed many E_NOTICE errors
  • \n
  • Fixed: Correct use of register_uninstall_hook across all PHP versions
  • \n
\n\n

V1.9.10 - 12.18.2012

\n\n
    \n
  • Fixed: XML-RPC error displayed when authenticating using WordPress 3.5
  • \n
  • Fixed: Restored compatibility with NextGEN Gallery Export Plugin
  • \n
  • Fixed: Removed some remaining references to database upgrade code
  • \n
  • Fixed: Deleted galleries within an album are handed gracefully without warning messages
  • \n
  • Fixed: Correct use of register_uninstall_hook
  • \n
  • Fixed: CSS and usability issues with the TinyMCE window used to display galleries

  • \n
  • NEW: JW ImageRotator v3.17 is now bundled with the plugin and used by default.

  • \n
  • Changed: Removed database upgrade code for versions of NextGEN Gallery earlier than 1.9.3
  • \n
  • Fixed: Compatibility with WordPress v3.5 ( wpdb->prepare() warnings )
  • \n
  • Fixed: Sorting by filename now produces expected results using a natural sorting algorithm
  • \n
\n\n

V1.9.8 - 12.05.2012

\n\n
    \n
  • Secured: Removed bundled version of swfupload. See fix below for SCM information.
  • \n
  • Changed: All transients created by NextGEN are flushed when the plugin is activated.
  • \n
  • Fixed: Our primary SCM is conducted at http://bitbucket.org/photocrati/nextgen-gallery, but was not synchronizing correctly with the WordPress Plugin SVN Repository
  • \n
  • Fixed: The transient adjustment fixes: http://wordpress.org/support/topic/plugin-nextgen-gallery-_transient_ngg_request-entry-in-wp_options
  • \n
\n\n

V1.9.7 - 11.13.2012

\n\n
    \n
  • Secured: Removed bundled version of swfupload; using WordPress-bundled version instead for WordPress 3.2 instances
  • \n
  • Changed: Using JQuery UI for the image sorting interface (thanks Tomás Soler)
  • \n
  • Bugfix: Image uploads work in WP 3.2 when using Safari
  • \n
  • Bugfix: Adjusted TinyMCE window to use built-in JavaScript libraries
  • \n
  • Bugfix: Removed Photocrati acquisition announcement
  • \n
  • Bugfix: Fixed incorrect usage of ImageJpeg() function
  • \n
  • Bugfix: Switched from \"template_redirect\" to \"wp_enqueue_script\" hook to load scripts and styles
  • \n
\n\n

V1.9.6 - 07.21.2012

\n\n
    \n
  • Changed: Implemented workaround for bug found in WordPress SEO, resulting in no images being added to sitemap
  • \n
  • Bugfix: Fixed an issue with users not being able to dismiss the \"Photocrati Acquisition Notice\"
  • \n
  • Bugfix: Adjusted Javascript for activating social media pages to load on NextGEN Gallery pages only.
  • \n
  • Bugfix: Fixed compatibility issue with Simple Facebook Connect
  • \n
  • Bugfix: Using correct Facebook Page ID in Like button
  • \n
\n\n

V1.9.5 - 18.07.2012

\n\n
    \n
  • Changed: Branding changes following Photocrati acquisition (removed donation messages and updated links)
  • \n
  • Secured: Use WordPress-bundled JavaScript libraries for swfobject and swfupload instead of bundling our own
  • \n
  • Bugfix: Adjusted thickbox effect styling to ensure that the lightbox is always displayed in the foreground
  • \n
  • Bugfix: Fixed compatibility issues with Contact Form 7 and other plugins by following WordPress Plugin conventions
  • \n
  • Bugfix: Fixed network-wide activation in WordPress 3.4
  • \n
  • Bugfix: Plugin is no longer dependent on it\'s folder name
  • \n
\n\n

V1.9.3 - 26.02.2012

\n\n
    \n
  • Bugfix : Ensure to set the slug for \"all\" albums
  • \n
  • Bugfix : Updated german translation ( THX to Roger Hunziker )
  • \n
  • Bugfix : Ensure error checking on IPTC array (THX to Kristian Edlund)
  • \n
  • Bugfix : Handle IE8 cached images better in slideshow
  • \n
  • Bugfix : Show album preview image if selected (THX to Kristian Edlund)
  • \n
\n\n

V1.9.2 - 17.01.2012

\n\n
    \n
  • NEW : Added more XMLRPC commands (THX to Vladimir Vinogradsky)
  • \n
  • Changed : Rework Post-thumbnail function (THX to Kristian Edlund)
  • \n
  • Bugfix : Check first for valid images on unzip (only Mac OS zip-files)
  • \n
  • Bugfix : Increase z-index for twenty eleven theme
  • \n
  • Bugfix : Support non latin chars in tagcloud
  • \n
  • Bugfix : Allow other tinymce intance
  • \n
  • Bugfix : Better support for WPML translation
  • \n
\n\n

V1.9.1 - 10.12.2011

\n\n
    \n
  • Bugfix : Security hardness for untrusted filenames/meta data (THX to Brian St. Pierre)
  • \n
  • Bugfix : Fixed security vulnerability (TXH to Jon Cave)
  • \n
  • Bugfix : Load piclens script via other function
  • \n
  • Bugfix : IE7 script fix for add gallery
  • \n
  • Bugfix : IE7/IE8 width set correctly for edit album autocomplete field
  • \n
\n\n

V1.9.0 - 27.11.2011

\n\n
    \n
  • NEW : Keep images transparency for PNG and GIF format
  • \n
  • NEW : Switch to Plupload, support now HTML5 Upload (only with WordPress 3.3)
  • \n
  • NEW : Added client side resize feature (only with WordPress 3.3)
  • \n
  • NEW : Support for gallery templates in album shortcodes [ album id=x template=\"name\" gallery=\"templatename\" ]
  • \n
  • NEW : Added new hook ngg_delete_picture
  • \n
  • Changed : Updated to jQuery Cycle Version 2.9995
  • \n
  • Changed : Always cache the single pictures, remove option
  • \n
  • Bugfix : Couldn\'t use bulk operation for search results
  • \n
  • Bugfix : Bugfix for Edit thumbnails under IE 8 + 9
  • \n
  • Bugfix : Allow empty altext in ngg.editImage
  • \n
  • Bugfix : Various PHP notice fixes
  • \n
  • Bugfix : Resize fix for Shutter effect and mobile Browser
  • \n
  • Bugfix : FTP Import missing slug field into database
  • \n
  • Bugfix : Check also EXIF field \"DateTimeOriginal\" for timestamp
  • \n
\n\n

V1.8.4 - 26.10.2011

\n\n
    \n
  • Bugfix : Fixed security vulnerability (TXH to Alain Schneider)
  • \n
\n\n

V1.8.3 - 07.08.2011

\n\n
    \n
  • Changed : Support for simple custom permalink structures (i.e. /%category%/%postname%/)
  • \n
  • Bugfix : Sub-Albums in Albums didn\'t create the correct link
  • \n
  • Bugfix : AJAX Pagination didn\'t work anymore
  • \n
  • Bugfix : Adding index.php to home_url()
  • \n
  • Bugfix : Preview picture lost on backend gallery page 2 or higher
  • \n
\n\n

V1.8.2 - 12.07.2011

\n\n
    \n
  • Bugfix : Set pagination variables for search result, otherwise update failed
  • \n
  • Bugfix : Update failed for paged galleries since WordPress 3.2
  • \n
\n\n

V1.8.1 - 18.06.2011

\n\n
    \n
  • Bugfix : Special case for pagination, instead of showing page-1, we show the clean url
  • \n
  • Bugfix : Various PHP notice fixes
  • \n
  • Bugfix : Typo in rewrite rules
  • \n
  • Bugfix : Flush rewrite rules during upgrade later
  • \n
\n\n

V1.8.0 - 12.06.2011

\n\n
    \n
  • NEW : Full rework of permalink url structure
  • \n
  • NEW : Adding Google Sitemaps for Images (require WordPress SEO plugin by YOAST )
  • \n
  • NEW : Support for WPML ( WordPress Multilingual Plugin )
  • \n
  • NEW : Adding support for arrow key in shutter effect (THX to Flyvans)
  • \n
  • NEW : Adding sort operation for galleries overview page
  • \n
  • Changed : Updated pagination to new WP3.1 style
  • \n
  • Bugfix : Create unique slug in a better way
  • \n
  • Bugfix : Rework screen options filter for gallery and image table
  • \n
  • Bugfix : Empty values in XMLRPC update calls are ignored
  • \n
  • Bugfix : Create gallery failed when safe-mode on
  • \n
  • Bugfix : Permalink didn\'t work in combination with album & imagebrowser
  • \n
\n\n

V1.7.4 - 15.02.2011

\n\n
    \n
  • Bugfix : Disallow direct call of ajax file to avoid path disclosure (THX to High-Tech Bridge SA)
  • \n
  • Bugfix : Rework jQuery Cycle slideshow for IE compat reason (THX to Justin Dickenson)
  • \n
  • Bugfix : Resize only larger images in slideshow
  • \n
  • Bugfix : Improved image format detection in gd.thumbnail class (THX to Kupar.b)
  • \n
\n\n

V1.7.3 - 20.01.2011

\n\n
    \n
  • NEW : Introduce plugin health check for conflicts with other plugins/themes
  • \n
  • NEW : Adding new XMLRPC method ngg.deleteImage
  • \n
  • NEW : Adding new XMLRPC method ngg.editImage
  • \n
  • Changed : Rework register script for autocomplete feature
  • \n
  • Bugfix : Bugfix for Multisite setup and flash upload
  • \n
  • Bugfix : WP3.1 compat issue, show site admin page only on Multisite installation
  • \n
\n\n

V1.7.2 - 13.12.2010

\n\n
    \n
  • Bugfix : Adding images to database require slug (NOT NULL)
  • \n
\n\n

V1.7.1 - 13.12.2010

\n\n
    \n
  • Changed : Disable upgrade for PHP4 user
  • \n
  • Changed : Disable colorpicker for option page
  • \n
  • Bugfix : Compat fix for upgrade
  • \n
\n\n

V1.7.0 - 11.12.2010

\n\n
    \n
  • NEW : Publish a new post direct from the gallery admin page
  • \n
  • NEW : Added filter hook \'ngg_get_image_metadata\' to add more exif/iptc information
  • \n
  • NEW : Adding Autocomplete field to TinyMCE Popup and Album page
  • \n
  • NEW : More methods for XMLRPC interface
  • \n
  • Changed : New hooks for gallery table (THX to Alexander Schneider)
  • \n
  • Changed : Introduce jQuery dialog as new UI element
  • \n
  • Changed : Call TinyMCE window via admin-ajax
  • \n
  • Bugfix : Better support for SSL blogs
  • \n
  • Bugfix : Install/Upgrade failed when table prefix contain captial letters
  • \n
  • Bugfix : Fix validation issues in Media-RSS
  • \n
  • Bugfix : Empty tags in XMP Meta causes PHP error
  • \n
  • Bugfix : Rework load mechanism for slideshow
  • \n
  • Bugfix : Copy meta data when image is copied
  • \n
  • Bugfix : Icon Support for Ozh\' Admin Drop Down Menu
  • \n
  • Bugfix : Use correct sort order in slideshow
  • \n
\n\n

V1.6.2 - 19.09.2010

\n\n
    \n
  • NEW : Added constant NGG_SKIP_LOAD_SCRIPTS to avoid script load
  • \n
  • Bugfix : Load Tags library with core files
  • \n
  • Bugfix : Slideshow script failed in IE7, load script now in header
  • \n
  • Bugfix : Load slideshow widget always
  • \n
  • Changed : New admin notice for database upgrade
  • \n
  • Changed : Rework crop feature for featured images
  • \n
  • Changed : Use site_url() instead get_option (\'siteurl\'), required for SSL support
  • \n
\n\n

V1.6.1 - 08.09.2010

\n\n
    \n
  • Bugfix : Script load of swfobject.js failed
  • \n
  • Bugfix : Show sideshow also with 1 or 2 images
  • \n
  • Bugfix : Rework null byte check in zip upload
  • \n
\n\n

V1.6.0 - 07.09.2010

\n\n
    \n
  • NEW : Wordpress 3.0 Network (Multi-Site) support
  • \n
  • NEW : Integrate jQuery Cycle as NON-Flash slideshow
  • \n
  • NEW : Adding jQuery File Tree for import folder (THX to Sergey Pasyuk )
  • \n
  • NEW : Added action hook \'ngg_show_imagebrowser_first\' on custom request
  • \n
  • NEW : Added filter hook \'ngg_slideshow_size\' to resize sildeshow for mobile browser plugins
  • \n
  • Changed : Reorder tabs for upload
  • \n
  • Changed : New menu icon and screen icon (THX to Ben Dunkle)
  • \n
  • Changed : Load frontend libs always
  • \n
  • Changed : Rework of overview page
  • \n
  • Bugfix : Security bugfix for Zip-Upload (THX to Dominic Szablewski)
  • \n
  • Bugfix : Allow JPG, PNG, GIF extension
  • \n
  • Bugfix : New German translation (THX to Martin Kramarz)
  • \n
  • Bugfix : Copy/Move also backup file
  • \n
  • Bugfix : Calculate correct ratio for fix thumbnail size (THX to Alekz Keck)
  • \n
\n\n

V1.5.5 - 14.06.2010

\n\n
    \n
  • Bugfix : Compat issue for post thumbnails with WP2.9
  • \n
  • NEW : Adding more hooks for custom fields plugin
  • \n
\n\n

V1.5.4 - 14.06.2010

\n\n
    \n
  • Bugfix : No resize of smaller images
  • \n
  • Bugfix : Compat issues for Post Thumbnails under WP3.0
  • \n
  • Bugfix : Esc_URL in Media RSS
  • \n
\n\n

V1.5.3 - 11.04.2010

\n\n
    \n
  • New : Adding pagination to footer
  • \n
  • Changed : Perpare new filter to replace slideshow
  • \n
  • Bugfix : Remove non-breaking space from navigation
  • \n
  • Bugfix : Pagination of galleries
  • \n
  • Bugfix : Fixed brackets position for old shortcode query
  • \n
  • Bugfix : Slideshow option \'Show next image on click\" has wrong default value
  • \n
\n\n

V1.5.2 - 25.03.2010

\n\n
    \n
  • Bugfix : XSS security vulnerability (THX to Core Security Advisories Team , Pedro Varangot)
  • \n
  • Bugfix : Missing $wpdb in shortcodes.php
  • \n
\n\n

V1.5.1 - 23.03.2010

\n\n
    \n
  • Bugfix : PHP4 compat issue for Add gallery & options page
  • \n
  • Bugfix : Gallery widget can now have a empty title
  • \n
  • Bugfix : Adding correct stripslash for gallery title
  • \n
\n\n

V1.5.0 - 18.03.2010

\n\n
    \n
  • NEW : Support for Post thumbnail feature
  • \n
  • NEW : Backup and Recover function for images (THX to Simone Fumagalli)
  • \n
  • NEW : Resize images after upload (THX to Simone Fumagalli)
  • \n
  • NEW : Added a JSON class for fetching galleries in a RESTful way (see xml/json.php)
  • \n
  • NEW : Adding various new capabilities for user roles
  • \n
  • NEW : Auto downloader for translation file
  • \n
  • Changed : Rename query var from slideshow to callback for compat reason with other plugin
  • \n
  • Changed : Convert widget function to new WP structure
  • \n
  • Changed : Include lookup for tags into the backend search
  • \n
  • Changed : Restructure addgallery and settings page to enable custom tabs
  • \n
  • Bugfix : Select album preview from gallery preview pics instead random list
  • \n
  • Bugfix : Keep fix dimension in edit thumbnail operation
  • \n
  • Bugfix : Import meta data didn\'t work correct for existing images
  • \n
  • Bugfix : Fix onload bug for Chrome 4 in Shutter script
  • \n
  • Bugfix : Remove various PHP notices for a better world
  • \n
  • Removed : Canonical link is now part of Wordpress 2.9
  • \n
','NextGEN Gallery - WordPress Gallery Plugin','The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 17 million downloads.','publish','open','closed','','nextgen-gallery','','','2017-04-05 17:04:53','2017-04-05 17:04:53','',0,'https://wordpress.org/plugins-wp/nextgen-gallery/',0,'plugin','',0), (170,6539712,'2011-03-25 05:34:35','2011-03-25 05:34:35','\n

Advanced Custom Fields is the perfect solution for any WordPress website which needs more flexible data like other Content Management Systems.

\n\n
    \n
  • Visually create your Fields
  • \n
  • Select from multiple input types (text, textarea, wysiwyg, image, file, page link, post object, relationship, select, checkbox, radio buttons, date picker, true / false, repeater, flexible content, gallery and more to come!)
  • \n
  • Assign your fields to multiple edit pages (via custom location rules)
  • \n
  • Easily load data through a simple and friendly API
  • \n
  • Uses the native WordPress custom post type for ease of use and fast processing
  • \n
  • Uses the native WordPress metadata for ease of use and fast processing
  • \n
\n\n

Field Types

\n\n
    \n
  • Text (type text, api returns text)
  • \n
  • Text Area (type text, api returns text)
  • \n
  • Number (type number, api returns integer)
  • \n
  • Email (type email, api returns text)
  • \n
  • Password (type password, api returns text)
  • \n
  • WYSIWYG (a wordpress wysiwyg editor, api returns html)
  • \n
  • Image (upload an image, api returns the url)
  • \n
  • File (upload a file, api returns the url)
  • \n
  • Select (drop down list of choices, api returns chosen item)
  • \n
  • Checkbox (tickbox list of choices, api returns array of choices)
  • \n
  • Radio Buttons ( radio button list of choices, api returns chosen item)
  • \n
  • True / False (tick box with message, api returns true or false)
  • \n
  • Page Link (select 1 or more page, post or custom post types, api returns the selected url)
  • \n
  • Post Object (select 1 or more page, post or custom post types, api returns the selected post objects)
  • \n
  • Relationship (search, select and order post objects with a tidy interface, api returns the selected post objects)
  • \n
  • Taxonomy (select taxonomy terms with options to load, display and save, api returns the selected term objects)
  • \n
  • User (select 1 or more WP users, api returns the selected user objects)
  • \n
  • Google Maps (interactive map, api returns lat,lng,address data)
  • \n
  • Date Picker (jquery date picker, options for format, api returns string)
  • \n
  • Color Picker (WP color swatch picker)
  • \n
  • Tab (Group fields into tabs)
  • \n
  • Message (Render custom messages into the fields)
  • \n
  • Custom (Create your own field type!)
  • \n
\n\n

ACF PRO

\n\n

The Advanced Custom Fields plugin is also available in a professional version which includes more fields, more functionality, and more flexibility!\nAt the core of ACF PRO is a brand new version of ACF (version 5) which includes searchable drop downs, smarter and faster DB calls, improved UI and much much more!

\n\n
    \n
  • Repeater - Create a set of sub fields which can be repeated again and again whilst editing content!
  • \n
  • Gallery - Simple and intuitive interface for managing a collection of images.
  • \n
  • Flexible Content - Define groups of sub fields and add, edit, and re-order them to create highly customised content!
  • \n
  • Options pages - Add extra admin pages to edit ACF fields!
  • \n
\n\n

http://www.advancedcustomfields.com/pro/

\n\n

Tested on

\n\n
    \n
  • Mac Firefox :)
  • \n
  • Mac Safari :)
  • \n
  • Mac Chrome :)
  • \n
  • PC Safari :)
  • \n
  • PC Chrome :)
  • \n
  • PC Firefox :)
  • \n
  • iPhone Safari :)
  • \n
  • iPad Safari :)
  • \n
  • PC ie7 :S
  • \n
\n\n

Website

\n\n

http://www.advancedcustomfields.com/

\n\n

Documentation

\n\n\n\n

Bug Submission and Forum Support

\n\n

http://support.advancedcustomfields.com/

\n\n

Please Vote and Enjoy

\n\n

Your votes really make a difference! Thanks.

\n\n\n
    \n
  1. Upload \'advanced-custom-fields\' to the \'/wp-content/plugins/\' directory
  2. \n
  3. Activate the plugin through the \'Plugins\' menu in WordPress
  4. \n
  5. Click on the new menu item \"Custom Fields\" and create your first Custom Field Group!
  6. \n
  7. Your custom field group will now appear on the page / post / template you specified in the field group\'s location rules!
  8. \n
  9. Read the documentation to display your data:
  10. \n
\n\n\n
\n
Q. I have a question
\n

A. Chances are, someone else has asked it. Check out the support forum at: \nhttp://support.advancedcustomfields.com/

\n\n
\n\n\n

4.4.11

\n\n
    \n
  • Core: Improved logic to better delete term meta during \'delete_term\' action
  • \n
  • Core: Fixed bug causing potential conflict between user and post object cache names
  • \n
  • Language: Updated Italian translation - thanks to Ste Yeu
  • \n
\n\n

4.4.10

\n\n
    \n
  • WYSIWYG field: Fixed JS error preventing tinymce from initializing
  • \n
\n\n

4.4.9

\n\n
    \n
  • Image field: Added nicer \'Edit image\' view
  • \n
  • File field: Added nicer \'Edit file\' view
  • \n
\n\n

4.4.8

\n\n
    \n
  • Google Map: Added new \'acf/fields/google_map/api\' filter
  • \n
\n\n

4.4.7

\n\n
    \n
  • Relationship field: Fixed bug preventing values from being selected in WP 4.5
  • \n
  • Google Map field: Fixed bug preventing map to load within repeater field
  • \n
  • Core: Fixed PHP error when loading ACF values on \'The Events Calendar\' (plugin) page
  • \n
  • Language: Updated Portuguese translation - thanks to Pedro Mendonca
  • \n
\n\n

4.4.6

\n\n
    \n
  • Google Map field: Improved compatibility with 3rd party plugins including Google JS API
  • \n
  • API: Improved get_ functions to load value from the current queried object (post, user, term)
  • \n
  • Core: Added support for new WP 4.5 term edit page
  • \n
  • Language: Updated Portuguese translation - thanks to Pedro Mendonca
  • \n
  • Language: Added Welsh translation - thanks to Carl Morris
  • \n
  • Language: Added Indonesian translation - thanks to Rio Bermano
  • \n
\n\n

4.4.5

\n\n
    \n
  • Core: Fixed metabox title appearing on seamless field groups
  • \n
  • Language: Updated Portuguese translation
  • \n
  • Language: Updated Polish translation
  • \n
\n\n

4.4.4

\n\n
    \n
  • Field group: Fixed disabled update button after saving with empty title
  • \n
  • Core: Minor fixes and improvements
  • \n
  • Language: Updated Portuguese translation
  • \n
  • Language: Updated French translation
  • \n
  • Language: Updated Polish translation
  • \n
  • Language: Added Finnish translation
  • \n
\n\n

4.4.3

\n\n
    \n
  • WYSIWYG field: Added compatibility for WP 4.3 filters
  • \n
  • Core: Minor fixes and improvements
  • \n
  • Language: Updated Polish translation - thanks to Maciej
  • \n
\n\n

4.4.2

\n\n
    \n
  • Image field: Fixed UI bug when image has been removed via media library
  • \n
  • Core: Minor fixes and improvements
  • \n
\n\n

4.4.1

\n\n
    \n
  • Taxonomy field: Added compatibility for upcoming \'term splitting\' in WP 4.2
  • \n
  • Taxonomy field: Major improvement to save/load setting allowing for different values on multiple sub fields
  • \n
  • Core: Minor fixes and improvements
  • \n
\n\n

4.4.0

\n\n
    \n
  • Core: Fixed depreciated warnings
  • \n
\n\n

4.3.9

\n\n
    \n
  • Core: Added compatibility for WP4 media grid
  • \n
  • Relationship field: Fixed bug showing incorrect post type
  • \n
  • Language: Added Slovak translations - Thanks to wp.sk
  • \n
  • Language: Added Serbo-Croatian translation - thanks to Borisa Djuraskovic
  • \n
  • Language: Updating Persian translation - Thanks to Ghaem Omidi
  • \n
\n\n

4.3.8

\n\n
    \n
  • Validation: Fixed disabled button issue in WP 3.9
  • \n
\n\n

4.3.7

\n\n
    \n
  • WYSIWYG field: Fixed missing tinyMCE buttons in WP 3.9
  • \n
\n\n

4.3.6

\n\n
    \n
  • Core: Improved efficiency and speed when saving values by removing ACF meta from the native WP postmeta box
  • \n
  • Field Group: Fixed cache issue causing field settings to not update
  • \n
  • WYSIWYG field: Added support for new tinymce 4 in WP 3.9
  • \n
  • Number field: Fixed bug causing blank values to save as 0
  • \n
  • Google Maps field: Fixed JS bug causing google maps to not render when Google library is already loaded
  • \n
  • Validation: Fixed JS bug where hidden field groups\'s fields were being validated
  • \n
\n\n

4.3.5

\n\n
    \n
  • Textarea field: Added new rows setting
  • \n
  • API: Added $format_value parameter to the get_fields function
  • \n
  • Core: Improved conditional logic & tab JS performance
  • \n
  • Core: Removed changelog anouncement in plugins update list
  • \n
  • Core: Fixed anoying wp is not defined JS error
  • \n
  • Core: Added logic to load full or minified scripts using the SCRIPT_DEBUG constant
  • \n
  • Core: Improved loading structure to better allow ACF functions within the functions.php file
  • \n
  • Core: Fixed revisions bug causing sub field data to not restore
  • \n
  • Core: Made use of WP datepicker UI
  • \n
  • Field Group: Changed post location rule to show all post types
  • \n
  • Field Group: Changed page location rule to show only page post type
  • \n
  • Field Group: Added new filter for meta box priority acf/input/meta_box_priority
  • \n
  • Language: Added missing translation support in multiple fields
  • \n
  • Language: Added Hebrew translation - Thanks to Erez Lieberman
  • \n
  • Language: Updating Czech translations - Thanks to webeescz
  • \n
\n\n

4.3.4

\n\n
    \n
  • Post Object field: Fixed get_pages bug cuasing \'pages\' to not appear
  • \n
  • Page Link field: Fixed get_pages bug cuasing \'pages\' to not appear
  • \n
  • Tab field: Fixed JS bug causing multiple tab groups on page to render incorrectly
  • \n
  • Language: Updated Russian translation - Thanks to Alex Torscho
  • \n
\n\n

4.3.3

\n\n
    \n
  • Core: Updated styling to suit WP 3.8
  • \n
  • Core: Added new logic to set \'autoload\' to \'off\' on all values saved to the wp_options table to help improve load speed
  • \n
  • API: Added new logic to the $post_id parameter to accept an object of type post, user or taxonomy term
  • \n
  • Tab field: Added compatibility with taxonomy term and user edit screens (table layout)
  • \n
  • Tab field: Fixed JS bug causing incorrect tab to show when validation fails
  • \n
  • Text field: Fixed bug causing append setting of \'+50\' to appear as \'50\'
  • \n
\n\n

4.3.2

\n\n
    \n
  • Color Picker field: Fixed JS bug preventing wpColorPicker from updating value correctly
  • \n
  • Google Map field: Added new setting for initial zoom level
  • \n
  • Relationship field: minor update to fix compatibility issue with Polylang plugin
  • \n
  • Relationship field: Fixed bug causing filters / actions using $field[\'name\'] to not fire correctly
  • \n
  • API: Fixed bug with have_rows/has_sub_field function where looping through multiple posts each containing nested repeater fields would result in an endless loop
  • \n
  • Export: Fixed bug causing exported XML fields to become corrupt due to line breaks
  • \n
  • Core: Fixed bug where duplicating a field would cause conditional logic to appear blank
  • \n
  • Core: Added Conditional Logic support to hide entire column of a repeater field where max_row is 1.
  • \n
  • Core: Added new field group \'hide on screen\' option for \'permalink\' which hides the permalink URL and buttons below the post title
  • \n
\n\n

4.3.1

\n\n
    \n
  • API: Fixed bug with has_sub_field and have_rows functions causing complicated nested loops to produce incorrect results
  • \n
  • API: Fixed bug with get_fields function preventing values to be returned from options page and taxonomy terms
  • \n
  • Core: Fixed bug causing some SQL LIKE statements to not work correctly on windows servers
  • \n
  • Core: Removed __() wrappers from PHP export, as these did not work as expected
  • \n
  • Core: Fixed bug with get_pages() causing sort order issue in child page location rule
  • \n
  • Core: Added specific position to ACF menu item to reduce conflicts with 3rd party plugins
  • \n
  • JS: Fixed bug where conditional logic rules did not save when added using a \'+\' button above the last rule
  • \n
  • Radio field: Fixed bug where \'other\' would be selected when no value exists
  • \n
  • WYSIWYG field: Added support for users with disabled visual editor setting
  • \n
  • JS: Improved validation for fields that are hidden by a tab
  • \n
  • Google maps field: Add refresh action when hidden / shown by a tab
  • \n
\n\n

4.3.0

\n\n
    \n
  • Core: get_field can now be used within the functions.php file
  • \n
  • Core: Added new Google maps field
  • \n
  • Core: Added conditional logic support for sub fields - will also require an update to the repeater / flexible content field add-on to work
  • \n
  • Core: Added required validation support for sub fields - will also require an update to the repeater / flexible content field add-on to work
  • \n
  • API: Added new function have_rows()
  • \n
  • API: Added new function the_row()
  • \n
  • API: Fixed front end form upload issues when editing a user - http://support.advancedcustomfields.com/forums/topic/repeater-image-upload-failing/
  • \n
  • API: Fixed front end form bug where the wrong post_id is being passed to JS - http://support.advancedcustomfields.com/forums/topic/attachments-parent-id/
  • \n
  • Export: wrapped title and instructions in () function - http://support.advancedcustomfields.com/forums/topic/wrap-labels-and-descriptions-with--in-the-php-export-file/
  • \n
  • Core: Filter out ACF fields from the native custom field dropdown - http://support.advancedcustomfields.com/forums/topic/meta-key-instead-of-name-on-add-new-custom-field-instead-of-name/ - http://support.advancedcustomfields.com/forums/topic/odd-sub-field-names-in-custom-fields/
  • \n
  • Revisions: Improved save functionality to detect post change when custom fields are edited - http://support.advancedcustomfields.com/forums/topic/wordpress-3-6-revisions-custom-fields-no-longer-tracked/
  • \n
  • Core: Add field group title for user edit screen - http://support.advancedcustomfields.com/forums/topic/can-you-add-a-title-or-hr-tag-when-using-acf-in-taxonomy-edit-screen/
  • \n
  • Field group: Add \'toggle all\' option to hide from screen - http://support.advancedcustomfields.com/forums/topic/hidecheck-all-single-checkbox-when-hiding-items-from-pagepost-edit-screen/
  • \n
  • Taxonomy field: Add new filter for wp_list_categories args - http://support.advancedcustomfields.com/forums/topic/taxonomy-field-type-filter-to-only-show-parents/
  • \n
  • Taxonomy field: Fixed JS bug causing attachment field groups to disappear due to incorrect AJAX location data - http://support.advancedcustomfields.com/forums/topic/taxonomy-checkboxes/
  • \n
  • WYSIWYG field: Fixed JS bug where formatting is removed when drag/drop it\'s repeater row
  • \n
  • Tab field: Corrected minor JS bugs with conditional logic - http://support.advancedcustomfields.com/forums/topic/tabs-logic-hide-issue/
  • \n
  • Relationship field: Values now save correctly as an array of strings (for LIKE querying)
  • \n
  • Post object field: Values now save correctly as an array of strings (for LIKE querying)
  • \n
  • Image field: Added mime_type data to returned value
  • \n
  • Field field: Added mime_type data to returned value
  • \n
  • Core: Lots of minor improvements
  • \n
\n\n

4.2.2

\n\n
    \n
  • Field group: Added \'High (after title)\' position for a metabox - http://support.advancedcustomfields.com/forums/topic/position-after-title-solution-inside/
  • \n
  • Relationship field: Fixed bug with \'exclude_from_search\' post types
  • \n
  • Image / File field: Improved edit popup efficiency and fixed bug when \'upload\' is last active mode - http://support.advancedcustomfields.com/forums/topic/edit-image-only-shows-add-new-screen/
  • \n
  • JS: Added un compressed input.js file
  • \n
  • JS: Fixed but with options page / taxonomy field - http://support.advancedcustomfields.com/forums/topic/checkbox-issues/
  • \n
  • Language: Updated Persian Translation - thanks to Ghaem Omidi
  • \n
\n\n

4.2.1

\n\n
    \n
  • Taxonomy field: Fixed issue causing selected terms to appear as numbers - http://support.advancedcustomfields.com/forums/topic/latest-update-4-2-0-taxonomy-field-not-working-correctly/
  • \n
  • Revisions: Fixed WP 3.6 revisions - http://support.advancedcustomfields.com/forums/topic/wordpress-3-6-revisions-custom-fields-no-longer-tracked/
  • \n
  • Relationship Field: Add new option for return_format
  • \n
  • Location Rule - Add new rule for post status - http://support.advancedcustomfields.com/forums/topic/location-rules-post-status/
  • \n
  • Location Rule: Add \'super admin\' to users rule - thanks to Ryan Nielson - https://github.com/RyanNielson/acf/commit/191abf35754c242f2ff75ac33ff8a4dca963a6cc
  • \n
  • Core: Fixed pre_save_post $post_id issue - http://support.advancedcustomfields.com/forums/topic/frontend-form-issues-pre_save_post-save_post/
  • \n
  • Core: Fix minor CSS but in media modal - http://support.advancedcustomfields.com/forums/topic/minor-css-issue-in-media-upload-lightbox/#post-2138
  • \n
  • File field: Fix minor \'strict standards\' warning - http://support.advancedcustomfields.com/forums/topic/strict-standards-error-on-file-upload/
  • \n
  • Image field: Fix minor CSS issue - http://support.advancedcustomfields.com/forums/topic/firefox-repeaterimage-css/
  • \n
\n\n

4.2.0

\n\n
    \n
  • IMPORTANT: ACF now requires a minimum WordPress version of 3.5.0
  • \n
  • Full integration between attachments and custom fields!
  • \n
  • Text field: Added new options for prepend, append, placeholder and character limit
  • \n
  • Textarea field: Added new options for prepend, append, placeholder and character limit
  • \n
  • Number field: Added new options for prepend, append and placeholder
  • \n
  • Email field: Added new options for prepend, append and placeholder
  • \n
  • Password field: Added new options for prepend, append and placeholder
  • \n
  • Image field: fixed safari bug causing all images to appear small
  • \n
  • Core: Improved save_lock functionality to prevent inifinite loops when creating a post on the fly
  • \n
  • Core: Major JS improvements including .live changed to .on
  • \n
  • Compatibility: Fixed WYSIWYG JS bug with Visual Composer plugin
  • \n
  • Language: Added Persian Translation - thanks to Ghaem Omidi
  • \n
  • Language: Updated German translation - thanks to Thomas Meyer
  • \n
  • Language: Added Swedish translation - thanks to Mikael Jorhult
  • \n
\n\n

4.1.8.1

\n\n
    \n
  • Select field: Revert choices logic - http://support.advancedcustomfields.com/forums/topic/select-field-label-cut-off-at/#post-529
  • \n
  • CSS: Revert metabox CSS - http://support.advancedcustomfields.com/forums/topic/standard-metabox-margins-reversed/#post-456
  • \n
  • Core: Fixed save_post conflict with Shopp plugin - http://support.advancedcustomfields.com/forums/topic/no-data-is-saving-with-shopp-acf-4-1-8/
  • \n
\n\n

4.1.8

\n\n
    \n
  • Core: Fix issue with cache $found variable preventing values from being loaded
  • \n
  • Select field: Improve choices textarea detection - http://old.support.advancedcustomfields.com/discussion/6598/select-on-repeater-field
  • \n
  • Language: Added Swedish translation - https://github.com/elliotcondon/acf/pull/93
  • \n
  • Language: Updated Russian translation - https://github.com/elliotcondon/acf/pull/94
  • \n
\n\n

4.1.7

\n\n
    \n
  • Language: Added Russian translation - Thanks to Alex Torscho
  • \n
  • Core: Improved the save_post function to compare post_id and only run once.
  • \n
  • Core: Improved cache handling
  • \n
  • Number field: Fixed step size decimal bug
  • \n
  • Radio button field: Add option for \'other\' and to also update field choices
  • \n
  • Image / File field: Updated JS to add multiple items to the correct sub field - http://support.advancedcustomfields.com/discussion/6391/repeater-with-images-bug
  • \n
  • JS: Remove redundant return ajax value - http://support.advancedcustomfields.com/discussion/6375/js-syntax-error-in-ie
  • \n
  • Add-ons page: fix JS issue - http://support.advancedcustomfields.com/discussion/6405/add-ons-page-div-height-problem
  • \n
  • Options Page: Fixed issue with load_value preventing the options page using default values - http://support.advancedcustomfields.com/discussion/4612/true-false-field-allow-default-value
  • \n
  • AJAX: Fix chrome bug - untick category - http://support.advancedcustomfields.com/discussion/6419/disabling-a-category-still-shows-fields
  • \n
  • JS: Fixed multiple Internet Explorer issues
  • \n
\n\n

4.1.6

\n\n
    \n
  • General: Improved load_value function to better handle false and default values
  • \n
  • Number field: Added new options for min, max and step - http://support.advancedcustomfields.com/discussion/6263/fork-on-numbers-field
  • \n
  • Radio field: Improved logic for selecting the value. Now works with 0, false, null and any other \'empty\' value - http://support.advancedcustomfields.com/discussion/6305/radio-button-issue-with-0-values-fix-included-
  • \n
  • Date picker field: Fixed PHP error - http://support.advancedcustomfields.com/discussion/6312/date-picker-php-error-date_picker-php-line-138-screenshot-attached
  • \n
  • Language: Added Portuguese translation - https://github.com/elliotcondon/acf/pull/64
  • \n
  • Taxonomy: Updated JS to clear image / file and checkbox elements when a new category is added via AJAX - http://support.advancedcustomfields.com/discussion/6326/image-field-added-to-categories-field-remains-set-after-category-created
  • \n
  • Validation: Added logic to allow a field to bypass validation if it is part of a tab group which is hidden via conditional logic
  • \n
  • API: Improved the acf_form function to better handle form attributes
  • \n
\n\n

4.1.5.1

\n\n
    \n
  • Image field: Fixed JS error causing uploader to not work correctly
  • \n
  • File field: Fixed JS error causing uploader to not work correctly
  • \n
  • Gallery field: Fixed JS error causing uploader to not work correctly
  • \n
  • General: Fixed JS error causing field groups to not appear when dynamically loaded
  • \n
\n\n

4.1.5

\n\n
    \n
  • WYSIWYG Field: Fixed WYSIWYG the_content / shortcode issues - http://support.advancedcustomfields.com/discussion/5939/inconsistencies-between-standard-wysiwyg-and-acf-wysiwyg
  • \n
  • Image field: Added option for library restriction - http://support.advancedcustomfields.com/discussion/6102/making-uploaded-to-this-post-default-state-for-image-upload
  • \n
  • File field: Added option for library restriction
  • \n
  • File field: Field UI refresh
  • \n
  • Checkbox field: Added horizontal option - http://support.advancedcustomfields.com/discussion/5925/horizontal-select-boxes
  • \n
  • Image field: fixed UI bug when image is deleted in file system - http://support.advancedcustomfields.com/discussion/5988/provide-a-fallback-if-
  • \n
  • Validation: Added support for email field - http://support.advancedcustomfields.com/discussion/6125/email-field-required-validation-on-submit
  • \n
  • Validation: Added support for taxonomy field - http://support.advancedcustomfields.com/discussion/6169/validation-of-taxonomy-field
  • \n
  • Language: Added Chinese Translation - https://github.com/elliotcondon/acf/pull/63
  • \n
  • General: Added changelog message to update plugin screen
  • \n
  • General: Lots of minor improvements
  • \n
\n\n

4.1.4

\n\n
    \n
  • [Fixed] Page Link: Fixed errors produced by recent changes to post object field - http://support.advancedcustomfields.com/discussion/6044/page-links-hierarchy-broken-and-does-not-order-correctly
  • \n
\n\n

4.1.3

\n\n
    \n
  • [Fixed] Relationship field: Fix global $post conflict issues - http://support.advancedcustomfields.com/discussion/6022/bug-with-4-1-2-acf-rewrite-global-post
  • \n
\n\n

4.1.2

\n\n
    \n
  • [Added] Post Object field: Add filter to customize choices - http://support.advancedcustomfields.com/discussion/5883/show-extra-post-info-in-a-post-object-dropdown-list
  • \n
  • [Fixed] Relationship field: Fix error when used as grand child - http://support.advancedcustomfields.com/discussion/5898/in_array-errors-on-relationship-field
  • \n
  • [Added] User field: Add sanitisation into update_value function to allow for array / object with ID attribute
  • \n
  • [Added] Relationship field: Add sanitisation into update_value function to allow for array of post object to be saved
  • \n
  • [Added] Post Object field: Add sanitisation into update_value function to allow for a post object or an array of post objects to be saved
  • \n
  • [Added] Image field: Add sanitisation into update_value function to allow for a post object or an image array to be saved
  • \n
  • [Added] File field: Add sanitisation into update_value function to allow for a post object or an file array to be saved
  • \n
  • [Fixed] Revisions: Fix PHP warning if array value exists as custom field - http://support.advancedcustomfields.com/discussion/984/solvedwarning-htmlspecialchars-text-php-on-line-109
  • \n
  • [Updated] Translation: Update French Translation - http://support.advancedcustomfields.com/discussion/5927/french-translation-for-4-1-1
  • \n
  • [Fixed] General: Minor PHP errors fixed
  • \n
\n\n

4.1.1

\n\n
    \n
  • [Fixed] Relationship field: Fix bug causing sub field to not load $field object / use elements option correctly
  • \n
  • [Updated] Update German translations
  • \n
\n\n

4.1.0

\n\n
    \n
  • [Added] Field group: location rules can now be grouped into AND / OR statements
  • \n
  • [Added] Relationship field: Add option for filters (search / post_type)
  • \n
  • [Added] Relationship field: Add option for elements (featured image / title / post_type)
  • \n
  • [Added] Relationship field: Add post_id and field parameters to both ajax filter functions
  • \n
  • [Added] Date Picker field: Add options for first_day
  • \n
  • [Added] Date Picker field: Add text strings for translation
  • \n
  • [Added] Select field: Add support for multiple default values
  • \n
  • [Added] Checkbox field: Add support for multiple default values - http://support.advancedcustomfields.com/discussion/5635/checkbox-field-setting-multiple-defaults
  • \n
  • [Updated] Minor JS + CSS improvements
  • \n
  • [Added] Added free Add-ons to the admin page
  • \n
  • [Fixed] Fixed minor bugs
  • \n
\n\n

4.0.3

\n\n
    \n
  • [Fixed] Fix bug when appending taxonomy terms - http://support.advancedcustomfields.com/discussion/5522/append-taxonomies
  • \n
  • [Fixed] Fix embed shortcode for WYSIWYG field - http://support.advancedcustomfields.com/discussion/5503/embed-video-wysiwyg-field-doesn039t-work-since-update
  • \n
  • [Fixed] Fix issues with loading numbers - http://support.advancedcustomfields.com/discussion/5538/zero-first-number-problem-in-text-fields
  • \n
  • [Fixed] Fix bug with user field and format_value_for_api - http://support.advancedcustomfields.com/discussion/5542/user-field-weirdness-after-update
  • \n
  • [Fixed] Fix capitalization issue on field name - http://support.advancedcustomfields.com/discussion/5527/field-name-retains-capitalization-from-field-title
  • \n
  • [Fixed] Fix tabs not hiding from conditional logic - http://support.advancedcustomfields.com/discussion/5506/conditional-logic-not-working-with-tabs
  • \n
  • [Updated] Update dir / path to allow for SSL - http://support.advancedcustomfields.com/discussion/5518/in-admin-page-got-error-javascript-when-open-with-https
  • \n
  • [Updated] Updated relationship JS - http://support.advancedcustomfields.com/discussion/5550/relationship-field-search-box
  • \n
\n\n

4.0.2

\n\n
    \n
  • [Added] Add auto video filter to WYSIWYG value - http://support.advancedcustomfields.com/discussion/5378/video-embed-in-wysiwyg-field
  • \n
  • [Fixed] Fix Repeater + WYSIWYG loosing p tags on drag/drop - http://support.advancedcustomfields.com/discussion/5476/acf-4-0-0-wysiwyg-p-tag-disappearing-after-drag-drop-save
  • \n
  • [Fixed] Fix upgrade message appearing in iframe
  • \n
  • [Fixed] Fix value sanitation - http://support.advancedcustomfields.com/discussion/5499/post-relationship-field-value-storage-in-update-to-acf4
  • \n
  • [Added] Add JS field name validation - http://support.advancedcustomfields.com/discussion/5500/replace-foreign-letters-when-creating-input-name-from-label-in-javascript
  • \n
  • [Fixed] Fix error when duplicating field group in WPML - http://support.advancedcustomfields.com/discussion/5501/4-0-1-broke-wpml-functionality-
  • \n
  • [Fixed] Fix pares_type issue. Maybe remove it? - http://support.advancedcustomfields.com/discussion/5502/zeros-get-removed-major-bug
  • \n
\n\n

4.0.1

\n\n
    \n
  • [Improved] Improving welcome message with download instructions
  • \n
  • [Fixed] Text / Fix JS issue where metaboxes are not hiding - http://support.advancedcustomfields.com/discussion/5443/bug-content-editor
  • \n
  • [Fixed] Test / Fix lite mode issue causing category / user fields not to show
  • \n
  • [Fixed] Sanitize field names - http://support.advancedcustomfields.com/discussion/5262/sanitize_title-on-field-name
  • \n
  • [Fixed] Test / Fix conditional logic not working for mutli-select - http://support.advancedcustomfields.com/discussion/5409/conditional-logic-with-multiple-select-field
  • \n
  • [Fixed] Test / Fix field group duplication in WooCommerce category w SEO plugin - http://support.advancedcustomfields.com/discussion/5440/acf-woocommerce-product-category-taxonomy-bug
  • \n
\n\n

4.0.0

\n\n
    \n
  • [IMPORTANT] This update contains major changes to premium and custom field type Add-ons. Please read the Migrating from v3 to v4 guide
  • \n
  • [Optimized] Optimize performance by removing heavy class structure and implementing light weight hooks & filters!
  • \n
  • [Changed] Remove all Add-on code from the core plugin and separate into individual plugins with self hosted updates
  • \n
  • [Added] Add field \'Taxonomy\'
  • \n
  • [Added] Add field \'User\'
  • \n
  • [Added] Add field \'Email\'
  • \n
  • [Added] Add field \'Password\'
  • \n
  • [Added] Add field group title validation
  • \n
  • [Fixed] Fix issue where get_field_object returns the wrong field when using WPML
  • \n
  • [Fixed] Fix duplicate functionality - http://support.advancedcustomfields.com/discussion/4471/duplicate-fields-in-admin-doesn039t-replicate-repeater-fields
  • \n
  • [Added] Add conditional statements to tab field - http://support.advancedcustomfields.com/discussion/4674/conditional-tabs
  • \n
  • [Fixed] Fix issue with Preview / Draft where preview would not save custom field data - http://support.advancedcustomfields.com/discussion/4401/cannot-preview-or-schedule-content-to-be-published
  • \n
  • [Added] Add function get_field_groups()
  • \n
  • [Added] Add function delete_field() - http://support.advancedcustomfields.com/discussion/4788/deleting-a-field-through-php
  • \n
  • [Added] Add get_sub_field_object function - http://support.advancedcustomfields.com/discussion/4991/select-inside-repeaterfield
  • \n
  • [Added] Add \'Top Level\' option to page type location rule
  • \n
  • [Fixed] Fix taxonomy location rule - http://support.advancedcustomfields.com/discussion/5004/field-group-rules-issue
  • \n
  • [Fixed] Fix tab field with conditional logic - https://github.com/elliotcondon/acf4/issues/14
  • \n
  • [Fixed] Revert back to original field_key idea. attractive field key\'s cause too many issues with import / export
  • \n
  • [Added] Add message field - http://support.advancedcustomfields.com/discussion/5263/additional-description-field
  • \n
  • [Removed] Removed the_content filter from WYSIWYG field
  • \n
\n\n

3.5.8.1

\n\n
    \n
  • [Fixed] Fix PHP error in text / textarea fields
  • \n
\n\n

3.5.8

\n\n
    \n
  • [Fixed] Fix bug preventing fields to load on user / taxonomy front end form - http://support.advancedcustomfields.com/discussion/4393/front-end-user-profile-field-form-causes-referenceerror
  • \n
  • [Added] Added \'acf/fields/wysiwyg/toolbars\' filter to customize WYSIWYG toolbars - http://support.advancedcustomfields.com/discussion/2205/can-we-change-wysiwyg-basic-editor-buttons
  • \n
  • [Fixed] Fix acf_load_filters as they are not working! - http://support.advancedcustomfields.com/discussion/comment/12770#Comment_12770
  • \n
  • [Added] Clean up wp_options after term delete - http://support.advancedcustomfields.com/discussion/4396/delete-taxonomy-term-custom-fields-after-term-delete
  • \n
  • [Fixed] Fix location rule - category / taxonomy on new post - http://support.advancedcustomfields.com/discussion/3635/show-custom-fields-on-post-adding
  • \n
  • [Added] Added \'acf/create_field\' action for third party usage - docs to come soon
  • \n
  • [Added] Add support for new media uploader in WP 3.5!
  • \n
  • [Fixed] Fix conditional logic error - http://support.advancedcustomfields.com/discussion/4502/conditional-logic-script-output-causes-events-to-fire-multiple-times
  • \n
  • [Fixed] Fix Uploader not working on taxonomy edit screens - http://support.advancedcustomfields.com/discussion/4536/media-upload-button-for-wysiwyg-does-not-work-when-used-on-a-taxonomy-term
  • \n
  • [Added] Add data cleanup after removing a repeater / flexible content row - http://support.advancedcustomfields.com/discussion/1994/deleting-single-repeater-fields-does-not-remove-entry-from-database
  • \n
\n\n

3.5.7.2

\n\n
    \n
  • [Fixed] Fix fields not showing on attachment edit page in WP 3.5 - http://support.advancedcustomfields.com/discussion/4261/after-upgrading-to-3-5-acf-fields-assigned-to-show-on-attachments-media-edit-are-not-showing
  • \n
  • [Fixed] Fix sub repeater css bug - http://support.advancedcustomfields.com/discussion/4361/repeater-add-button-inappropriately-disabled
  • \n
  • [Fixed] Fix issue where acf_form includes scripts twice - http://support.advancedcustomfields.com/discussion/4372/afc-repeater-on-front-end
  • \n
  • [Fixed] Fix location rule bug with new shopp product - http://support.advancedcustomfields.com/discussion/4406/shopp-idnew-product-page-doesn039t-have-acf-fields
  • \n
  • [Fixed] Fix location rule bug with taxonomy / post_taxonomy - http://support.advancedcustomfields.com/discussion/4407/taxonomy-rules-ignored-until-toggling-the-taxonomy
  • \n
\n\n

3.5.7.1

\n\n
    \n
  • [Fixed] Fix issues with location rules wrongly matching
  • \n
\n\n

3.5.7

\n\n
    \n
  • [Fixed] Fix sub field default value - http://support.advancedcustomfields.com/discussion/3706/select-field-default-value-not-working
  • \n
  • [Added] Add filters for custom location rules - http://support.advancedcustomfields.com/discussion/4285/how-to-retrieve-a-custom-field-within-the-function-php
  • \n
  • [Fixed] Fix XML import to create unique field ID\'s - http://support.advancedcustomfields.com/discussion/4328/check-acf_next_field_id-to-avoid-data-corruption
  • \n
  • [Fixed] Fix conditional logic with validation - http://support.advancedcustomfields.com/discussion/4295/issue-with-conditional-logic-and-obrigatory-fields
  • \n
  • [Fixed] Fix repeater + relationship bug - http://support.advancedcustomfields.com/discussion/4296/relationship-field-bug
  • \n
\n\n

3.5.6.3

\n\n
    \n
  • [Fixed] Fix bug with 3.5.6 not showing front end form
  • \n
\n\n

3.5.6.2

\n\n
    \n
  • [Fixed] Fix WYSIWYG webkit browser issues.
  • \n
\n\n

3.5.6.1

\n\n
    \n
  • [Fixed] Fix bug causing field groups to not display on the options page.
  • \n
\n\n

3.5.6

\n\n
    \n
  • [Fixed] Fix content editor double in webkit browser - http://support.advancedcustomfields.com/discussion/4223/duplicate-editor-box-safari-bug-has-returned
  • \n
  • [Fixed] Fix bug with post format location rule not working - http://support.advancedcustomfields.com/discussion/4264/not-recognizing-post-type-formats-following-upgrade-to-version-3-5-5
  • \n
  • [Fixed] Fix conditional logic with tabs - http://support.advancedcustomfields.com/discussion/4201/tabs-and-logical-condition
  • \n
  • [Fixed] Fix missing icons for conditional logic / menu in older WP
  • \n
  • [Added] Add PHP fix for new lines in field key - http://support.advancedcustomfields.com/discussion/4087/can039t-add-new-field
  • \n
\n\n

3.5.5

\n\n
    \n
  • [Added] Add new Tab field
  • \n
  • [Fixed] Improve WYSIWYG code for better compatibility
  • \n
  • [Fixed] Fix PHP / AJAX error during database update for older versions
  • \n
  • [Fixed] WYSIWYG insert attachment focus bug - http://support.advancedcustomfields.com/discussion/4076/problem-with-upload-in-wysiwyg-editors-in-combination-with-flexible-content
  • \n
  • [Fixed] Fix JS coma issues for IE - http://support.advancedcustomfields.com/discussion/4064/ie-javascript-issues-on-editing-field-group
  • \n
  • [Added] Add no cache to relationship field results - http://support.advancedcustomfields.com/discussion/2325/serious-memory-issue-using-post-objectrelationship-field-with-only-5000-posts
  • \n
  • [Added] Add retina support
  • \n
  • [Fixed] Fix WYSIWYG validation for preview post - http://support.advancedcustomfields.com/discussion/4055/validation-failing-on-required-wysiwyg-field
  • \n
  • [Fixed] Fix undefined index error in field\'s conditional logic - http://support.advancedcustomfields.com/discussion/4165/undefined-index-notice-on-php-export
  • \n
  • [Updated] Update post types in field options - http://support.advancedcustomfields.com/discussion/3656/acf-for-custom-post-type
  • \n
  • [Added] Add filters to relationship field results
  • \n
  • [Added] Add file name bellow title in popup for selecting a file
  • \n
\n\n

3.5.4.1

\n\n
    \n
  • [Fixed] Fix bug preventing options pages from appearing in the field group\'s location rules
  • \n
\n\n

3.5.4

\n\n
    \n
  • [Added] Add new filter for ACF settings - http://www.advancedcustomfields.com/docs/filters/acf_settings/
  • \n
  • [Updated] Updated field keys to look nicer. eg field_12
  • \n
  • [Added] Update admin_head to use hooks / enque all scripts / styles
  • \n
  • [Added] Add duplicate function for flexible content layouts
  • \n
  • [Fixed] Fix $post_id bug - http://support.advancedcustomfields.com/discussion/3852/acf_form-uses-global-post_id-instead-of-argument
  • \n
  • [Fixed] Fix WYSIWYG JS issue - http://support.advancedcustomfields.com/discussion/3644/flexible-layout-field-reordering-breaks-when-visual-editor-disabled
  • \n
  • [Fixed] Fix Gallery PHP error - http://support.advancedcustomfields.com/discussion/3856/undefined-index-error-gallery-on-options-page
  • \n
  • [Added] Add compatibility for Shopp categories - http://support.advancedcustomfields.com/discussion/3647/custom-fields-not-showing-up-in-shopp-catalog-categories
  • \n
  • [Fixed] Fix \"Parent Page\" location rule - http://support.advancedcustomfields.com/discussion/3885/parent-page-type-check
  • \n
  • [Fixed] Fix options page backwards compatibility - support.advancedcustomfields.com/discussion/3908/acf-options-page-groups-are-not-backward-compatible
  • \n
  • [Fixed] Fix update_field for content - http://support.advancedcustomfields.com/discussion/3916/add-flexible-layout-row-with-update_field
  • \n
  • [Added] Add new filter for acf_defaults! - http://support.advancedcustomfields.com/discussion/3947/options-page-plugin-user-capabilites-limitation
  • \n
  • [Fixed] Fix gallery detail update after edit - http://support.advancedcustomfields.com/discussion/3899/gallery-image-attributes-not-updating-after-change
  • \n
  • [Fixed] Fix front end uploading issue - http://support.advancedcustomfields.com/discussion/comment/10502#Comment_10502
  • \n
\n\n

3.5.3.1

\n\n
    \n
  • Minor bug fixes for 3.5.3
  • \n
\n\n

3.5.3

\n\n
    \n
  • [Updated] Update / overhaul flexible content field UI
  • \n
  • [Added] Add Show / Hide for flexible content layouts
  • \n
  • [Added] Add column width for flexible content - http://support.advancedcustomfields.com/discussion/3382/percentage-widths-on-fc-fields
  • \n
  • [Added] Add instructions for flexible content sub fields
  • \n
  • [Added] Add new parameter to get_field to allow for no formatting - http://support.advancedcustomfields.com/discussion/3188/update_field-repeater
  • \n
  • [Fixed] Fix compatibility issue with post type switcher plugin - http://support.advancedcustomfields.com/discussion/3493/field-group-changes-to-post-when-i-save
  • \n
  • [Added] Add new location rules for \"Front Page\" \"Post Page\" - http://support.advancedcustomfields.com/discussion/3485/groups-association-whit-page-slug-instead-of-id
  • \n
  • [Fixed] Fix flexible content + repeater row limit bug - http://support.advancedcustomfields.com/discussion/3557/repeater-fields-inside-flexible-field-on-backend-not-visible-before-first-savingpublishing
  • \n
  • [Added] Add filter \"acf_load_value\" for values - http://support.advancedcustomfields.com/discussion/3725/a-filter-for-get_field
  • \n
  • [Fixed] Fix choices backslash issue - http://support.advancedcustomfields.com/discussion/3796/backslash-simple-quote-bug-in-radio-button-values-fields
  • \n
  • [Updated] acf_options_page_title now overrides the menu and title. If your field groups are not showing after update, please re-save them to update the location rules.
  • \n
  • [Updated] Update location rules to show all post types in page / page_parent / post
  • \n
  • [Added] Change all \"pre_save_field\" functions to \"acf_save_field\" hooks
  • \n
  • [Improved] Improve general CSS / JS
  • \n
\n\n

3.5.2

\n\n
    \n
  • Security update
  • \n
\n\n

3.5.1

\n\n
    \n
  • [Added] Add Conditional logic for fields (toggle fields are select, checkbox, radio and true / false)
  • \n
  • [Added] More hooks + filters - acf_options_page_title, acf_load_field, acf_update_value - http://support.advancedcustomfields.com/discussion/3454/more-hooks-filters-ability-for-inheritance
  • \n
  • [Removed] Remove public param from post types list - http://support.advancedcustomfields.com/discussion/3251/fields-on-a-non-public-post-type
  • \n
  • [Added] Add field group headings into the acf_form function
  • \n
  • [Updated] Update button design to match WP 3.5
  • \n
  • [Fixed] Test / Fix XML export issue - http://support.advancedcustomfields.com/discussion/3415/can039t-export-xml-since-upgrade-to-3-5-0
  • \n
  • [Added] Add more options to the \"hide on screen\" - http://support.advancedcustomfields.com/discussion/3418/screen-options
  • \n
  • [Added] Add compatibility for Tabify plugin - http://wordpress.org/support/topic/plugin-tabify-edit-screen-compatibility-with-other-custom-fields-plugins/page/2?replies=36#post-3238051
  • \n
  • [Added] Add compatibility for Duplicate Post plugin
  • \n
  • [Added] Add new params to acf_form function - http://support.advancedcustomfields.com/discussion/3445/issue-with-the-acf_form-array
  • \n
  • [Updated] Increase date picker range to 100
  • \n
  • [Fixed] WYSIWYG looses formatting when it\'s row gets reordered (in a repeater / flexible content field)
  • \n
  • [Fixed] Fix has_sub_field break issue - http://support.advancedcustomfields.com/discussion/3528/ability-to-reset-has_sub_field
  • \n
  • [Fixed] Fix Textarea / Text encoding bugs - http://support.advancedcustomfields.com/discussion/comment/5147#Comment_5147
  • \n
  • [Added] Add publish status for field groups - http://support.advancedcustomfields.com/discussion/3695/draft-status-for-field-groups
  • \n
  • [Updated] General tidy up & improvement of HTML / CSS / Javascript
  • \n
\n\n

3.5.0

\n\n
    \n
  • [Fixed] Fix missing title of PHP registered field groups on the media edit page
  • \n
  • [Added] Add revision support
  • \n
  • [Added] Allow save draft to bypass validation
  • \n
  • [Updated] Update Czech translation
  • \n
  • [Fixed] Fix XML export issue with line break - http://support.advancedcustomfields.com/discussion/3219/export-and-import-problem-mixed-line-endings
  • \n
  • [Fixed] Fix export to XML abspath issue - http://support.advancedcustomfields.com/discussion/2641/require-paths-in-export-php
  • \n
  • Update location rules for post_type - http://support.advancedcustomfields.com/discussion/3251/fields-on-a-non-public-post-type
  • \n
  • Add \"revisions\" to list of hide-able options
  • \n
  • [Fixed] Fix bug with custom post_id param in acf_form - http://support.advancedcustomfields.com/discussion/2991/acf_form-outside-loop
  • \n
  • [Fixed] Fix bug in has_sub_field function where new values are not loaded for different posts if the field name is the same - http://support.advancedcustomfields.com/discussion/3331/repeater-field-templating-help-categories
  • \n
  • [Updated] Allow get_field to use field_key or field_name
  • \n
  • [Fixed] Fix update_field bug with nested repeaters
  • \n
  • [Updated] Update German translation files - thanks to Martin Lettner
  • \n
\n\n

3.4.3

\n\n
    \n
  • [Fixed] Fix PHP registered field groups not showing via AJAX - http://support.advancedcustomfields.com/discussion/3143/exported-php-code-doesnt-work-with-post-formats
  • \n
  • [Added] Add new return value for file { file object
  • \n
  • [Fixed] Test / Fix save_post priority with WPML + events + shopp plugin
  • \n
  • [Fixed] Fix bug where field groups don\'t appear on shopp product edit screens
  • \n
  • [Fixed] Fix bug with image field { selecting multiple images puts first image into the .row-clone tr - http://support.advancedcustomfields.com/discussion/3157/image-field-repeater
  • \n
\n\n

3.4.2

\n\n
    \n
  • [Fixed] Fix API functions for \'user_$ID\' post ID parameter
  • \n
  • [Added] Color Picker Field: Default Value
  • \n
  • [Added] Add custom save action for all saves - http://support.advancedcustomfields.com/discussion/2954/hook-on-save-options
  • \n
  • [Updated] Update Dutch translations
  • \n
  • [Updated] Update get_field_object function to allow for field_key / field_name + option to load_value
  • \n
\n\n

3.4.1

\n\n
    \n
  • [Added] Save user fields into wp_usermeta http://support.advancedcustomfields.com/discussion/2758/get_users-and-meta_key
  • \n
  • [Added] Add compatibility with media tags plugin - http://support.advancedcustomfields.com/discussion/comment/7596#Comment_7596
  • \n
  • [Added] Wysiwyg Field: Add Default value option
  • \n
  • [Added] Number Field: Add Default value option
  • \n
  • [Fixed] Validate relationship posts - http://support.advancedcustomfields.com/discussion/3033/relationship-field-throws-error-when-related-item-is-trashed
  • \n
  • [Added] Allow \"options\" as post_id for get_fields - http://support.advancedcustomfields.com/discussion/1926/3-1-8-broke-get_fields-for-options
  • \n
  • [Added] Repeater Field: Add sub field width option
  • \n
  • [Added] Repeater Field: Add sub field description option
  • \n
  • [Updated] Repeater Field: Update UI design
  • \n
  • [Fixed] Fix missing ajax event on page parent - http://support.advancedcustomfields.com/discussion/3060/show-correct-box-based-on-page-parent
  • \n
  • [Updated] Update french translation - http://support.advancedcustomfields.com/discussion/3088/french-translation-for-3-4-0
  • \n
\n\n

3.4.0

\n\n
    \n
  • [Fixed] Fix validation rules for multiple select - http://support.advancedcustomfields.com/discussion/2858/multiple-select-validation-doesnt-work
  • \n
  • [Added] Add support for options page toggle open / close metabox
  • \n
  • [Fixed] Fix special characters in registered options page - http://support.advancedcustomfields.com/discussion/comment/7500#Comment_7500
  • \n
  • [Updated] CSS tweak for relationship field - http://support.advancedcustomfields.com/discussion/2877/relation-field-with-multiple-post-types-css-styling-problem-
  • \n
  • [Fixed] Fix datepicker blank option bug - http://support.advancedcustomfields.com/discussion/2896/3-3-9-date-picker-not-popping-up
  • \n
  • [Added] Add new function get_field_object to API - http://support.advancedcustomfields.com/discussion/290/field-label-on-frontend
  • \n
  • [Fixed] Fix field groups not showing for Shopp add new product - http://support.advancedcustomfields.com/discussion/3005/acf-shopp
  • \n
  • [Fixed] Move acf.data outside of the doc.ready in input-ajax.js
  • \n
  • [Fixed] Fix IE7 JS bug - http://support.advancedcustomfields.com/discussion/3020/ie7-fix-on-is_clone_field-function
  • \n
  • [Fixed] Fix relationship search - Only search title, not content
  • \n
  • [Updated] Update function update_field to use field_key or field_name
  • \n
  • [Added] Add field group screen option to show field keys (to use in save_field / update field)
  • \n
  • [Added] Add actions on all save events (action is called \"acf_save_post\", 1 param = $post_id)
  • \n
\n\n

3.3.9

\n\n
    \n
  • [Added] Add basic support for WPML - duplicate field groups, pages and posts for each language without corrupting ACF data!
  • \n
  • [Fixed] Fix date picker save null - http://support.advancedcustomfields.com/discussion/2844/bug-with-the-date-picker
  • \n
  • [Fixed] Fix color picker save null - http://support.advancedcustomfields.com/discussion/2683/allow-null-on-colour-pickers#Item_1
  • \n
  • [Fixed] Fix image object null result - http://support.advancedcustomfields.com/discussion/2852/3.3.8-image-field-image-object-always-returns-true-
  • \n
  • [Updated] Update Japanese translation - http://support.advancedcustomfields.com/discussion/comment/7384#Comment_7384
  • \n
  • [Added] WYSIWYG field option - disable \"the_content\" filter to allow for compatibility issues with plugins / themes - http://support.advancedcustomfields.com/discussion/comment/7020#Comment_7020
  • \n
\n\n

3.3.8

\n\n
    \n
  • [Added] Gallery field { auto add image on upload, new style to show already added images
  • \n
  • [Fixed] Fix saving value issue with WP e-commerce http://support.advancedcustomfields.com/discussion/comment/7026#Comment_7026
  • \n
  • [Updated] Date picker field { new display format option (different from save format), UI overhaul
  • \n
  • [Added] Add new field - Number
  • \n
  • [Fixed] Test post object / select based fields for saving empty value - http://support.advancedcustomfields.com/discussion/2759/post-object-and-conditional-statement
  • \n
\n\n

3.3.7

\n\n
    \n
  • [Added] Add new return value for image { image object
  • \n
  • [Updated] Update Dutch translation (thanks to Derk Oosterveld - www.inpoint.nl)
  • \n
  • [Updated] Update UI Styles
  • \n
  • [Updated] Refresh settings page UI and fix exported PHP code indentation Styles
  • \n
  • [Fixed] Fix post object hierarchy display bug - http://support.advancedcustomfields.com/discussion/2650/post_object-showing-posts-in-wrong-hierarchy
  • \n
  • [Fixed] Fix metabox position from high to core - http://support.advancedcustomfields.com/discussion/comment/6846#Comment_6846
  • \n
  • [Fixed] Fix flexible content field save layout with no fields - http://support.advancedcustomfields.com/discussion/2639/flexible-content-field-support-for-empty-layoutss
  • \n
  • [Fixed] Text / Fix field group limit - http://support.advancedcustomfields.com/discussion/2675/admin-only-showing-20-fields-groups
  • \n
\n\n

3.3.6

\n\n
    \n
  • [Fixed] Fix IE regex issue (thanks to Ben Heller - http://spruce.it)
  • \n
  • [Added] Check for more translatable strings (thanks to Derk Oosterveld - www.inpoint.nl)
  • \n
  • [Fixed] Fix location rule post category bug
  • \n
  • [Updated] Added all post status to page / post location rules - http://support.advancedcustomfields.com/discussion/2624/scheduled-pages
  • \n
  • [Updated] Updated the page link field to rely on the post_object field
  • \n
  • [Added] Add $post_id parameter to the [acf] shortcode
  • \n
\n\n

3.3.5

\n\n
    \n
  • [Fixed] Fix location rule bug for taxonomy.
  • \n
\n\n

3.3.4

\n\n
    \n
  • [Added] Added new API function: has_sub_field - replacement for the_repeater_field and the_flexible_field. Allows for nested while loops!
  • \n
  • [Improved] Improve save_post functions- http://support.advancedcustomfields.com/discussion/2540/bug-fix-for-taxonomies-and-revisions-solved
  • \n
  • [Fixed] Fix relationship AJAX abort for multiple fields - http://support.advancedcustomfields.com/discussion/2555/problem-width-relationship-after-update-the-latest-version
  • \n
\n\n

3.3.3

\n\n
    \n
  • [Upgrade] Database Upgrade is required to modify the taxonomy filtering data for fields. This allows for performance boosts throughout ACF.
  • \n
  • [Improved] relationship field: Improve querying posts / results and use AJAX powered search to increase performance on large-scale websites
  • \n
  • [Improved] post object field: Improve querying posts / results
  • \n
\n\n

3.3.2

\n\n
    \n
  • [Fixed] Integrate with Shopp plugin
  • \n
\n\n

3.3.1

\n\n
    \n
  • [Fixed] Fix gallery sortable in repeater - http://support.advancedcustomfields.com/discussion/2463/gallery-within-a-repeater-image-reorder-not-working
  • \n
  • [Fixed] Test / Fix two gallery fields - http://support.advancedcustomfields.com/discussion/2467/gallery-two-gallery-fieldss
  • \n
  • [Fixed] Fix tinymce undefined visual editor off - http://support.advancedcustomfields.com/discussion/2465/solved-admin-conflicts-after-upgrade
  • \n
  • [Updated] Update Polish translation - Thanks to www.digitalfactory.pl
  • \n
\n\n

3.3.0

\n\n
    \n
  • [Fixed] Gallery not returning correct order
  • \n
\n\n

3.2.9

\n\n
    \n
  • [Added] Add new Gallery Field
  • \n
  • [Fixed] Test / Fix update_field on repeater / flexible content
  • \n
  • [Fixed] Fix regex JS issue with adding nested repeaters
  • \n
  • [Added] Add new Czech translation - Thanks to Webees ( http://www.webees.cz/ )
  • \n
\n\n

3.2.8

\n\n
    \n
  • [Added] Repeater - Add option for min rows + max rows - http://www.advancedcustomfields.com/support/discussion/2111/repeater-empty-conditional-statements#Item_4
  • \n
  • [Fixed] Test / Fix Chrome Double WYSIWYG. Again...
  • \n
  • [Added] Add \"future\" to post status options - http://advancedcustomfields.com/support/discussion/1975/changed-line-81-and-94-of-corefieldspost_object-to-show-future-entries
  • \n
  • [Added] Make image sizes strings \"Pretty\" for preview size options
  • \n
  • [Fixed] Test / Fix WYSIWYG insert image inside a repeater bug - http://www.advancedcustomfields.com/support/discussion/2404/problem-with-repeater-wysiwyg-fields-and-images
  • \n
\n\n

3.2.7

\n\n
    \n
  • [Fixed] Rename controller classes - http://www.advancedcustomfields.com/support/discussion/2363/fatal-error-after-update-to-3.2.6
  • \n
  • [Added] Add edit button to image / file fields
  • \n
  • [Fixed] WYSIWYG toolbar buttons dissapearing in HTML tab mode
  • \n
\n\n

3.2.6

\n\n
    \n
  • [Fixed] Fix flexible content inside repeater add extra row jquery bug - http://www.advancedcustomfields.com/support/discussion/2134/add-flexible-content-button-in-repeater-field-adds-new-repeater-row
  • \n
  • [Added] Add suppress_filters to relationship field for WPML compatibility - http://www.advancedcustomfields.com/support/discussion/comment/5401#Comment_5401
  • \n
  • [Added] Add new German translation - http://www.advancedcustomfields.com/support/discussion/2197/german-translation
  • \n
  • [Added] Add new Italian translation - Alessandro Mignogna (www.asernet.it)
  • \n
  • [Added] Add new Japanese translation - http://www.advancedcustomfields.com/support/discussion/2219/japanese-translation
  • \n
  • [Fixed] Test / Fix WYSIWYG removing p tags - http://www.advancedcustomfields.com/support/discussion/comment/5482#Comment_5482
  • \n
  • [Added] edit basic toolbar buttons to match WP teeny mode - WYSIWYG
  • \n
  • [Fixed] Test front end form hiding - http://www.advancedcustomfields.com/support/discussion/2226/frontend-form-disppears-on-acf-3.2.5
  • \n
  • [Fixed] Test saving user custom fields - http://www.advancedcustomfields.com/support/discussion/2231/custom-fields-not-saving-data-on-initial-user-registration
  • \n
  • [Fixed] Fix options page translation bug - http://www.advancedcustomfields.com/support/discussion/2098/change-language-and-options-page-fields-disappear
  • \n
  • [Fixed] Pages rule not returning private pages - http://www.advancedcustomfields.com/support/discussion/2275/attach-field-group-to-privately-published-pages
  • \n
  • [Added] Add custom add_image_size() Image field preview sizes - http://www.advancedcustomfields.com/support/discussion/comment/5800#Comment_5800
  • \n
\n\n

3.2.5

\n\n
    \n
  • [IMPORTANT] Change field group option \"Show on page\" to \"Hide on Screen\" to allow for future proof adding new elements to list. Previously exported and registered field groups via PHP will still work as expected! This change will prompt you for a database upgrade.
  • \n
  • [Added] Add in edit button to upload image / file thickbox
  • \n
  • [Improved] Changed loading default values. Now behaves as expected!
  • \n
  • [Fixed] Test / Fix full screen mode dissapearing from editor - http://www.advancedcustomfields.com/support/discussion/2124/full-screen-button-for-zen-mode-is-gone
  • \n
  • [Fixed] get_field returning false for 0 - http://advancedcustomfields.com/support/discussion/2115/get_field-returns-false-if-field-has-value-0
  • \n
  • [Improved] Improve relationship sortable code with item param - http://www.advancedcustomfields.com/support/discussion/comment/3536#Comment_3536
  • \n
  • [Fixed] IE category js bug - http://www.advancedcustomfields.com/support/discussion/2127/ie-78-category-checkbox-bug
  • \n
  • [Fixed] Flexible content field row css bug - http://www.advancedcustomfields.com/support/discussion/2126/space-between-fields-is-a-little-tight-in-3.2.33.2.4
  • \n
  • [Fixed] Repeater row limit in flexible field bug - http://www.advancedcustomfields.com/support/discussion/1635/repeater-with-row-limit-of-1-inside-flexible-field-no-rows-show
  • \n
  • [Fixed] Fix update message - appears on first activation
  • \n
  • [Fixed] Fix options page sidebar drag area - no border needed
  • \n
  • [Fixed] Fix export options page activation - http://www.advancedcustomfields.com/support/discussion/2112/options-page-not-working-in-functions.php
  • \n
\n\n

3.2.4

\n\n
    \n
  • [Fixed] Remove translation from validation class - http://www.advancedcustomfields.com/support/discussion/2110/custom-validation-broken-in-other-languages
  • \n
  • [Fixed] Test fix WYSIWYG insert media issues
  • \n
  • [Added] Add Excerpt to the field group \"show on page\" options
  • \n
\n\n

3.2.3

\n\n
    \n
  • [Fixed] Include Wysiwyg scripts / styles through the editor class
  • \n
  • [Fixed] Wysiwyg in repeater not working
  • \n
  • [Fixed] Remove Swedish translation until string / js bugs are fixed
  • \n
  • [Fixed] Checkbox array value issue: http://wordpress.org/support/topic/plugin-advanced-custom-fields-php-warning-in-corefieldscheckboxphp?replies=6
  • \n
  • [Added] Add inherit to relationship posts query - http://www.advancedcustomfields.com/support/discussion/comment/3826#Comment_3826
  • \n
  • [Fixed] Relationship shows deleted posts - http://www.advancedcustomfields.com/support/discussion/2080/strange-behavior-of-relationship-field-trash-posts
  • \n
  • [Fixed] Wysiwyg editor not working on taxonomy edit page
  • \n
\n\n

3.2.2

\n\n
    \n
  • [Fixed] Fix layout bug: Nested repeaters of different layouts
  • \n
  • [Fixed] Fix strip slashes bug
  • \n
  • [Fixed] Fix nested repeater bug - http://www.advancedcustomfields.com/support/discussion/2068/latest-update-broken-editing-environment-
  • \n
  • [Fixed] Test / Fix add multiple images to repeater
  • \n
\n\n

3.2.1

\n\n
    \n
  • Field groups can now be added to options page with layout \"side\"
  • \n
  • Fixed debug error when saving a taxonomy:
  • \n
  • Fixed unnecessary code: Remove Strip Slashes on save functions
  • \n
  • Added new add row buttons to the repeater field and upgraded the css / js
  • \n
  • Fixed debug error caused by the WYSIWYG field: wp_tiny_mce is deprecated since version 3.3! Use wp_editor() instead.
  • \n
  • Fixed duplicate field error where all sub fields became repeater fields.
  • \n
  • Add Swedish translation: http://advancedcustomfields.com/support/discussion/1993/swedish-translation
  • \n
  • CSS improvements
  • \n
  • Fixed IE9 Bug not returning an image preview on upload / select
  • \n
  • Fixed Multi export php syntax bug.
  • \n
\n\n

3.2.0

\n\n
    \n
  • Fixed Browser bug with Flexible Field: Add Row button works again
  • \n
  • Added Brazilian Translation. Thanks to Marcelo Paoli Graciano - www.paolidesign.com.br
  • \n
  • Reverted input CSS to separate field label / instructions onto new lines.
  • \n
\n\n

3.1.9

\n\n
    \n
  • Updated Images / JS - Please hard refresh your browser to clear your cache
  • \n
  • Remove caching from acf_field_groups, replace with temp cache
  • \n
  • Add \"Duplicate Field\" on field group edit page
  • \n
  • Fix link to documentation on field group edit page
  • \n
  • add \"update_value\" to API
  • \n
  • Include new Polish translation
  • \n
  • Create a nicer style for flexible content
  • \n
  • Create a nicer style for repeater fields with row layout
  • \n
  • Create a nicer style for \"no metabox\" fields
  • \n
  • Add Spanish translation. Thanks to @hectorgarrofe
  • \n
  • Fix css for options page no metabox
  • \n
  • Added custom post_updated_messages
  • \n
  • Changed \"Drag and drop to reorder\" from an image to a string for translation
  • \n
\n\n

3.1.8

\n\n
    \n
  • Options page fields now save their data in the wp_options table. This will require a \"Database Upgrade\" when you update ACF. This upgrade will move your Options page data from the postmeta table to the options table.
  • \n
  • Added _e() and __() functions to more text throughout plugin
  • \n
  • Added new French translation. Thanks to Martin Vauchel @littlbr http://littleboyrunning.com
  • \n
  • Fixed duplicate WYSIWYG in chrome bug
  • \n
  • New Location rules: add fields to a user / taxonomy / attachment
  • \n
  • Bug Fix: Color picker now shows color on page load. Thanks to Kevin Ruscoe http://github.com/kevdotbadger\"
  • \n
  • CSS tweaks File clearfix, new style for selects with optgroups
  • \n
  • Simplified get_value to return default value if value == \"\"
  • \n
  • API now allows for \"option\" and \"options\" for the $post_id value in API functions
  • \n
\n\n

3.1.7

\n\n
    \n
  • Bug fix: Image field returns correct url after selecting one or more images
  • \n
  • Translation: Added Polish translation. Thank you Bartosz Arendt - Digital Factory - www.digitalfactory.pl
  • \n
  • Update : Added id attribute to all div.field (id=\"acf-$field_name\")
  • \n
\n\n

3.1.6

\n\n
    \n
  • New style for buttons
  • \n
  • Bug Fix: Repeater maximum row setting was disabling the \"add row\" button 1 row early.
  • \n
  • Performance: Field options are now loaded in via ajax. This results in much less HTML on the edit field group page
  • \n
  • Performance: Field inputs are now loaded in via ajax. Again, less HTML on edit screens improves load times / memory usage
  • \n
  • Bug Fix: Field groups registered by code were not showing on ajax change (category / page type / page template / etc). To fix this, your field group needs a unique ID. When you export a field group, you will now be given a unique ID to fix this issue. Field groups without a fixed id will still show on page load.
  • \n
  • New Option: Repeater field can now have a custom button label
  • \n
  • New Option: Flexible content field can now have a custom button label
  • \n
  • Improvement: Updated the HTML / CSS for file fields with icon
  • \n
  • Bug Fix: Fixed multi upload / select image in repeater.
  • \n
  • Performance: Added caching to the get_field function. Templates will now render quicker.
  • \n
  • Bug Fix: Fixed Post formats location rule - it now works.
  • \n
  • Nested repeaters are now possible!
  • \n
\n\n

3.1.5

\n\n
    \n
  • Improvement: Redesigned the experience for uploading and selecting images / files in fields and sub fields. Image / File fields within a repeater can now add multiple images / files
  • \n
\n\n

3.1.4

\n\n
    \n
  • New Feature: Front end form (Please read documentation on website for usage)
  • \n
  • Performance: compiled all field script / style into 1 .js file
  • \n
  • Bug Fix: Editor now remembers mode (Visual / HTML) without causing errors when loading in HTML mode
  • \n
  • Improvement: Added draft / private labels to post objects in relationship, post object and page link fields
  • \n
\n\n

3.1.3

\n\n
    \n
  • Bug Fix: Options page fields were rendered invisible in v3.1.2 (now fixed)
  • \n
  • Updated POT file with new texts
  • \n
\n\n

3.1.2

\n\n
    \n
  • New Feature: Required field validation. Note: Repeater / Flexible content fields can be required but their sub fields can not.
  • \n
  • Field update: Select field: API now returns false when \"null\" is selected
  • \n
  • Field update: Radio button: When editing a post / page, the radio button will select the first choice if there is no saved value for the field
  • \n
  • Bug fix: You can now use a repeater field inside a flexible field! Please note that the_repeater_field will not work as expected. Please use get_sub_field to get the sub repeater field, then use php to loop through it.
  • \n
\n\n

3.1.1

\n\n
    \n
  • New Feature: Added shortcode support. usage: [acf field=\"field_name\"]
  • \n
  • Bug Fix: Fixed menu disappearing by changing the function \"add_menu\" to \"add_utility_page\"
  • \n
  • Visual: Changed post object / page link fields to display post type label instead of post type name for the select optgroup label. Thanks to kevwaddell for the code
  • \n
\n\n

3.1.0

\n\n
    \n
  • New Field: Flexible Content Field (license required)
  • \n
  • Bug Fix: ACF data now saves for draft posts (please do a hard refresh on an edit screen to remove cached js)
  • \n
  • Bug fix: Fixed multiple content editors
  • \n
\n\n

3.0.7

\n\n
    \n
  • Added export / register support via PHP
  • \n
  • Moved menu position under Settings
  • \n
  • Improve speed / php memory by introducing cached data
  • \n
  • Temp bug fix: sets content editor to \"visual mode\" to stop wysiwyg breaking
  • \n
  • Visual: Removed \"Screen Options\" tab from the admin acf edit page. Added filter to always show 99 acf\'s
  • \n
  • Minor JS improvements
  • \n
\n\n

3.0.6

\n\n
    \n
  • Bug Fix: Location meta box now shows all pages / posts
  • \n
  • Bug Fix: upgrade and settings url should now work / avoid conflicts with other plugins
  • \n
\n\n

3.0.5

\n\n
    \n
  • Support: use wp native functions to add all user roles to location metabox
  • \n
  • Update: gave acf a css update + new menu structure
  • \n
  • Bug fix: fixed a few issues with wysiwyg js/css in wp3.3
  • \n
  • Bug fix: fixed page_name conflicting with normal pages / posts by adding a \"acf_\" to the page_name on save / update
  • \n
  • Performance: location metabox - limited taxonomies to hierarchial only. Posts and Pages have now been limited to 25
  • \n
\n\n

3.0.4

\n\n
    \n
  • Bug fix: WYSIWYG is now compatible with WP 3.3 (May have incidentally added support for gravity forms media button! But not 100% sure...)
  • \n
  • Fix : Taxonomy Location rule now only shows hierarchal taxonomies to improve speed and reduce php memory issues
  • \n
\n\n

3.0.3

\n\n
    \n
  • New translation: French (thanks to Netactions)
  • \n
  • Support: added support for new wp3.3 editor
  • \n
  • Bug fix: fixed WYSIWYG editor localised errors
  • \n
  • Bug fix: removed trailing commas for ie7
  • \n
\n\n

3.0.2

\n\n
    \n
  • New Feature: Added Export tab to export a WP native .xml file
  • \n
  • New Option: Relationship / Post type - filter by taxonomy
  • \n
  • New Option: default values for checkbox, select and radio
  • \n
  • New Function: register_options_page - add custom options pages (Requires the option page addon)
  • \n
  • Bug fix: WYSIWYG + repeater button issues
  • \n
  • Bug fix: general house keeping
  • \n
\n\n

3.0.1

\n\n
    \n
  • Bug Fix - repeater + wysiwyg delete / add duplicate id error
  • \n
  • Bug fix - repeater + file - add file not working
  • \n
  • Bug Fix - image / file no longer need the post type to support \"editor\"
  • \n
  • WYSIWYG - fixed broken upload images
  • \n
  • misc updates to accommodate the soon to be released \"Flexible Field\"
  • \n
\n\n

3.0.0

\n\n
    \n
  • ACF doesn\'t use any custom tables anymore! All data is saved as post_meta!
  • \n
  • Faster and more stable across different servers
  • \n
  • Drag-able / order-able metaboxes
  • \n
  • Fields extend from a parent object! Now you can create you own field types!
  • \n
  • New location rule: Taxonomy
  • \n
  • New function: register_field($class, $url);
  • \n
  • New Field: Color Picker
  • \n
  • New Option: Text + Textarea formatting
  • \n
  • New Option: WYSIWYG Show / Hide media buttons, Full / Basic Toolbar buttons (Great for a basic wysiwyg inside a repeater for your clients)
  • \n
  • Lots of bug fixes
  • \n
\n\n

2.1.4

\n\n
    \n
  • Fixed add image tinymce error for options Page WYSIWYG
  • \n
  • API: added new function: update_the_field($field_name, $value, $post_id)
  • \n
  • New field: Relationship field
  • \n
  • New Option for Relationship + Post Object: filter posts via meta_key and meta_value
  • \n
  • Added new option: Image preview size (thumb, medium, large, full)
  • \n
  • Fixed duplicate posts double value problem
  • \n
  • API update: get_field($repeater) will return an array of values in order, or false (like it used to!)
  • \n
  • Radio Button: added labels around values
  • \n
  • Post object + Page Link: select drop down is now hierarchal
  • \n
  • Input save errors fixed
  • \n
  • Add \'return_id\' option to get_field / get_sub_field
  • \n
  • Many bug fixes
  • \n
\n\n

2.1.3

\n\n
    \n
  • Fixed API returning true for repeater fields with no data
  • \n
  • Added get_fields back into the api!
  • \n
  • Fixed field type select from showing multiple repeater activation messages
  • \n
\n\n

2.1.2

\n\n
    \n
  • Fixed repeater sortable bug on options page
  • \n
  • Fixed wysiwyg image insert on options page
  • \n
  • Fixed checkbox value error
  • \n
  • Tidied up javascript + wysiwyg functions
  • \n
\n\n

2.1.1

\n\n
    \n
  • Fixed Javascript bugs on edit pages
  • \n
\n\n

2.1.0

\n\n
    \n
  • Integrate acf_values and wp_postmeta! Values are now saved as custom fields!
  • \n
  • Ajax load in fields + update fields when the page / post is modified
  • \n
  • API has been completely re written for better performance
  • \n
  • Default Value - text / textarea
  • \n
  • New upgrade database message / system
  • \n
  • Separate upgrade / activate scripts
  • \n
  • Select / page link / post object add Null option
  • \n
  • Integrate with Duplicate Posts plugin
  • \n
  • New location rule: post format
  • \n
  • Repeater field attach image to post
  • \n
  • Location: add children to drop down menu for page parent
  • \n
  • Update script replaces image urls with their id\'s
  • \n
  • All images / Files save as id\'s now, api formats the value back into a url
  • \n
  • Simple CSS + JS improvements
  • \n
  • New Field: Radio Buttons (please note Firefox has a current bug with jquery and radio buttons with the checked attribute)
  • \n
\n\n

2.0.5

\n\n
    \n
  • New Feature: Import / Export
  • \n
  • Bug Fixed: Wysiwyg javascript conflicts
  • \n
  • Bug Fixed: Wysiwyg popups conflicting with the date picker field
  • \n
  • New style for the date picker field
  • \n
\n\n

2.0.4

\n\n
    \n
  • New Addon: Options Page (available on the plugins store: http://plugins.elliotcondon.com/shop/)
  • \n
  • API: all functions now accept \'options\' as a second parameter to target the options page
  • \n
  • API: the_field() now implodes array\'s and returns as a string separated by comma\'s
  • \n
  • Fixed Bug: Image upload should now work on post types without editor
  • \n
  • Fixed Bug: Location rule now returns true if page_template is set to \'Default\' and a new page is created
  • \n
  • General Housekeeping
  • \n
\n\n

2.0.3

\n\n
    \n
  • Added Option: Repeater Layout (Row / Table)
  • \n
  • Fixed bug: Now you can search for media in the image / file fields
  • \n
  • Added Option: Image field save format (image url / attachment id)
  • \n
  • Added Option: File field save format (file url / attachment id)
  • \n
  • Fixed bug: Location rules for post categories now work
  • \n
  • Added rule: Page parent
  • \n
  • Fixed bug: \"what\'s new\" button now shows the changelog
  • \n
  • included new css style to fit in with WordPress 3.2
  • \n
  • minor JS improvements
  • \n
\n\n

2.0.2

\n\n
    \n
  • Added new database table \"acf_rules\"
  • \n
  • Removed database table \"ac_options\"
  • \n
  • Updated location meta box to now allow for custom location queries
  • \n
  • Hid Activation Code from logged in users
  • \n
  • Fixed JS bugs with wp v3.2 beta 2
  • \n
  • Added new option \"Field group layout\" - you can now wrap your fields in a metabox!
  • \n
  • General housekeeping
  • \n
\n\n

2.0.1

\n\n
    \n
  • Added Field Option: Field Instructions
  • \n
  • Added Field Option: Is field searchable? (saves field value as a normal custom field so you can use the field against wp queries)
  • \n
  • Added Media Search / Pagination to Image / File thickbox
  • \n
  • Added Media Upload support to post types which do not have a Content Editor.
  • \n
  • Fixed \"Select Image\" / \"Select File\" text on thickbox buttons after upload
  • \n
  • Repeater field now returns null if no data was added
  • \n
\n\n

2.0.0

\n\n
    \n
  • Completely re-designed the ACF edit page
  • \n
  • Added repeater field (unlocked through external purchase)
  • \n
  • Fixed minor js bugs
  • \n
  • Fixed PHP error handling
  • \n
  • Fixed problem with update script not running
  • \n
  • General js + css improvements
  • \n
\n\n

1.1.4

\n\n
    \n
  • Fixed Image / File upload issues
  • \n
  • Location now supports category names
  • \n
  • Improved API - now it doesn\'t need any custom fields!
  • \n
  • Fixed table encoding issue
  • \n
  • Small CSS / Field changes to ACF edit screen
  • \n
\n\n

1.1.3

\n\n
    \n
  • Image Field now uses WP thickbox!
  • \n
  • File Field now uses WP thickbox!
  • \n
  • Page Link now supports multiple select
  • \n
  • All Text has been wrapped in the _e() / __() functions to support translations!
  • \n
  • Small bug fixes / housekeeping
  • \n
  • Added ACF_WP_Query API function
  • \n
\n\n

1.1.2

\n\n
    \n
  • Fixed WYSIWYG API format issue
  • \n
  • Fixed Page Link API format issue
  • \n
  • Select / Checkbox can now contain a url in the value or label
  • \n
  • Can now unselect all user types form field options
  • \n
  • Updated value save / read functions
  • \n
  • Lots of small bug fixes
  • \n
\n\n

1.1.1

\n\n
    \n
  • Fixed Slashes issue on edit screens for text based fields
  • \n
\n\n

1.1.0

\n\n
    \n
  • Lots of Field Type Bug Fixes
  • \n
  • Now uses custom database tables to save and store data!
  • \n
  • Lots of tidying up
  • \n
  • New help button for location meta box
  • \n
  • Added $post_id parameter to API functions (so you can get fields from any post / page)
  • \n
  • Added support for key and value for select and checkbox field types
  • \n
  • Re wrote most of the core files due to new database tables
  • \n
  • Update script should copy across your old data to the new data system
  • \n
  • Added True / False Field Type
  • \n
\n\n

1.0.5

\n\n
    \n
  • New Field Type: Post Object
  • \n
  • Added multiple select option to Select field type
  • \n
\n\n

1.0.4

\n\n
    \n
  • Updated the location options. New Override Option!
  • \n
  • Fixed un ticking post type problem
  • \n
  • Added JS alert if field has no type
  • \n
\n\n

1.0.3

\n\n
    \n
  • Heaps of js bug fixes
  • \n
  • API will now work with looped posts
  • \n
  • Date Picker returns the correct value
  • \n
  • Added Post type option to Page Link Field
  • \n
  • Fixed Image + File Uploads!
  • \n
  • Lots of tidying up!
  • \n
\n\n

1.0.2

\n\n
    \n
  • Bug Fix: Stopped Field Options from loosing data
  • \n
  • Bug Fix: API will now work with looped posts
  • \n
\n\n

1.0.1

\n\n
    \n
  • New Api Functions: get_fields(), get_field(), the_field()
  • \n
  • New Field Type: Date Picker
  • \n
  • New Field Type: File
  • \n
  • Bug Fixes
  • \n
  • You can now add multiple ACF\'s to an edit page
  • \n
  • Minor CSS + JS improvements
  • \n
\n\n

1.0.0

\n\n
    \n
  • Advanced Custom Fields.
  • \n
','Advanced Custom Fields','Customise WordPress with powerful, professional and intuitive fields','publish','open','closed','','advanced-custom-fields','','','2016-10-23 22:37:59','2016-10-23 22:37:59','',0,'https://wordpress.org/plugins-wp/advanced-custom-fields/',0,'plugin','',0), (171,360,'2008-08-28 02:20:46','2008-08-28 02:20:46','\n

Regenerate Thumbnails allows you to regenerate the thumbnails for your image attachments. This is very handy if you\'ve changed any of your thumbnail dimensions (via Settings -> Media) after previously uploading images or have changed to a theme with different featured post image dimensions.

\n\n

You can either regenerate the thumbnails for all image uploads, individual image uploads, or specific multiple image uploads.

\n\n

See the screenshots tab for more details.

\n\n\n
    \n
  1. Go to your admin area and select Plugins -> Add new from the menu.
  2. \n
  3. Search for \"Regenerate Thumbnails\".
  4. \n
  5. Click install.
  6. \n
  7. Click activate.
  8. \n
\n\n\n

Version 2.2.6

\n\n
    \n
  • PHP 7 compatibility.
  • \n
\n\n

Version 2.2.5

\n\n
    \n
  • Updates relating to plugin language pack support.
  • \n
\n\n

Version 2.2.4

\n\n
    \n
  • Better AJAX response error handling in the JavaScript. This should fix a long-standing bug in this plugin. Props Hew Sutton.
  • \n
\n\n

Version 2.2.3

\n\n
    \n
  • Make the capability required to use this plugin filterable so themes and other plugins can change it. Props Jackson Whelan.
  • \n
\n\n

Version 2.2.2

\n\n
    \n
  • Don\'t check the nonce until we\'re sure that the action called was for this plugin. Fixes lots of \"Are you sure you want to do this?\" error messages.
  • \n
\n\n

Version 2.2.1

\n\n
    \n
  • Fix the bottom bulk action dropdown. Thanks Stefan for pointing out the issue!
  • \n
\n\n

Version 2.2.0

\n\n
    \n
  • Changes to the Bulk Action functionality were made shortly before the release of WordPress 3.1 which broke the way I implemented the specific multiple image regeneration feature. This version adds to the Bulk Action menu using Javascript as that\'s the only way to do it currently.
  • \n
\n\n

Version 2.1.3

\n\n
    \n
  • Move the error_reporting() call in the AJAX handler to the beginning so that we\'re more sure that no PHP errors are outputted. Some hosts disable usage of set_time_limit() and calling it was causing a PHP warning to be outputted.
  • \n
\n\n

Version 2.1.2

\n\n
    \n
  • When regenerating all images, newest images are done first rather than the oldest.
  • \n
  • Fixed a bug with regeneration error reporting in some browsers. Thanks to pete-sch for reporting the error.
  • \n
  • Supress PHP errors in the AJAX handler to avoid sending an invalid JSON response. Thanks to pete-sch for reporting the error.
  • \n
  • Better and more detailed error reporting for when wp_generate_attachment_metadata() fails.
  • \n
\n\n

Version 2.1.1

\n\n
    \n
  • Clean up the wording a bit to better match the new features and just be easier to understand.
  • \n
  • Updated screenshots.
  • \n
\n\n

Version 2.1.0

\n\n

Lots of new features!

\n\n
    \n
  • Thanks to a lot of jQuery help from Boris Schapira, a failed image regeneration will no longer stop the whole process.
  • \n
  • The results of each image regeneration is now outputted. You can easily see which images were successfully regenerated and which failed. Was inspired by a concept by Boris.
  • \n
  • There is now a button on the regeneration page that will allow you to abort resizing images for any reason. Based on code by Boris.
  • \n
  • You can now regenerate single images from the Media page. The link to do so will show up in the actions list when you hover over the row.
  • \n
  • You can now bulk regenerate multiple from the Media page. Check the boxes and then select \"Regenerate Thumbnails\" form the \"Bulk Actions\" dropdown. WordPress 3.1+ only.
  • \n
  • The total time that the regeneration process took is now displayed in the final status message.
  • \n
  • jQuery UI Progressbar version upgraded.
  • \n
\n\n

Version 2.0.3

\n\n
    \n
  • Switch out deprecated function call.
  • \n
\n\n

Version 2.0.2

\n\n
    \n
  • Directly query the database to only fetch what the plugin needs (the attachment ID). This will reduce the memory required as it\'s not storing the whole row for each attachment.
  • \n
\n\n

Version 2.0.1

\n\n
    \n
  • I accidentally left a check_admin_referer() (nonce check) commented out.
  • \n
\n\n

Version 2.0.0

\n\n
    \n
  • Recoded from scratch. Now uses an AJAX request per attachment to do the resizing. No more PHP maximum execution time errors or anything like that. Also features a pretty progress bar to let the user know how it\'s going.
  • \n
\n\n

Version 1.1.0

\n\n
    \n
  • WordPress 2.7 updates -- code + UI. Thanks to jdub and Patrick F.
  • \n
\n\n

Version 1.0.0

\n\n
    \n
  • Initial release.
  • \n
','Regenerate Thumbnails','Allows you to regenerate your thumbnails after changing the thumbnail sizes.','publish','open','closed','','regenerate-thumbnails','','','2016-07-29 00:41:13','2016-07-29 00:41:13','',0,'https://wordpress.org/plugins-wp/regenerate-thumbnails/',0,'plugin','',0), (172,287655,'2007-12-05 17:39:09','2007-12-05 17:39:09','\n

This plugin allows users to clone posts of any type, or copy them to new drafts for further editing.\nIf you find this useful, please consider donating whatever sum you choose, even just 10 cents. Just a few cents from every user would help me develop the plugin and improve support.

\n\n

How it works:

\n\n
    \n
  1. In \'Edit Posts\'/\'Edit Pages\', you can click on \'Clone\' link below the post/page title: this will immediately create a copy and return to the list.

  2. \n
  3. NEW! In \'Edit Posts\'/\'Edit Pages\', you can select one or more items, then choose \'Clone\' in the \'Bulk Actions\' dropdown to copy them all at once.

  4. \n
  5. In \'Edit Posts\'/\'Edit Pages\', you can click on \'New Draft\' link below the post/page title.

  6. \n
  7. On the post edit screen, you can click on \'Copy to a new draft\' above \"Cancel\"/\"Move to trash\".

  8. \n
  9. While viewing a post as a logged in user, you can click on \'Copy to a new draft\' as a dropdown link under \"Edit Post\" in the admin bar.

  10. \n
\n\n

3, 4 and 5 will lead to the edit page for the new draft: change what you want, click on \'Publish\' and you\'re done.

\n\n

There is also a template tag, so you can put it in your templates and clone your posts/pages from the front-end. Clicking on the link will lead you to the edit page for the new draft, just like the admin bar link.

\n\n

Duplicate Post has many useful settings to customize its behavior and restrict its use to certain roles or post types. Check out the extensive documentation on the plugin\'s site.

\n\n

If you\'re a plugin developer, I suggest you to read the Developer\'s Guide to ensure compatibility between your plugin(s) and mine. Feel free to contact me so we can keep in touch and collaborate.

\n\n

Thanks for all the suggestions, bug reports, translations and donations, they\'re frankly too many to be listed here!

\n\n

Contribute

\n\n

If you find this useful and if you want to contribute, there are three ways:

\n\n
    \n
  1. You can write me and submit your bug reports, suggestions and requests for features;
  2. \n
  3. If you want to translate it to your language (there are just a few lines of text), you can use the translation project;
  4. \n
  5. Using the plugin is free, but if you want you can support my efforts by donating with PayPal here
  6. \n
\n\n\n
\n
Installation Instructions
\n

Use WordPress\' Add New Plugin feature, searching \"Duplicate Post\", or download the archive and:

\n\n
    \n
  1. Unzip the archive on your computer
  2. \n
  3. Upload duplicate-post directory to the /wp-content/plugins/ directory
  4. \n
  5. Activate the plugin through the \'Plugins\' menu in WordPress
  6. \n
  7. Go to Settings -> Duplicate Post and customize behaviour as needed
  8. \n
\n
The plugin doesn\'t work, why?
\n

First, check your version of WordPress: the plugin is not supposed to work on old versions anymore. Make sure also to upgrade to the last version of the plugin!

\n\n

Then try to deactivate and re-activate it, some user have reported that this fixes some problems.

\n\n

Pay also attention to the \"Permissions\" tab in the Settings: make sure the plugin is enabled for the desired roles and post types.

\n\n

If it still doesn\'t work, maybe there is some kind of conflict with other plugins: feel free to write in the forum and we\'ll try to discover a solution (it will be really helpful if you try to deactivate all your other plugins one by one to see which one conflicts with mine... But do it only if you know what you\'re doing, I will not be responsible of any problem you may experience).

\n
The plugin is not translated in my language!
\n

From version 3.0 the plugin\'s translations are managed by the WordPress.org platform and the plugin is shipped without language files, so first of all update translations under Dashboard->Updates.

\n\n

If Duplicate Post is still in English, or if there are some untraslated strings, you can help traslating to your language here: you only need a WordPress.org account.\nContact me if you wish to become an editor for your language.

\n\n
\n\n\n

3.2 (2017-04-04)

\n\n
    \n
  • new website with extensive documentation
  • \n
  • WPML compatibility, thanks to WPML team
  • \n
  • improved Jetpack compatibility (Subscriptions, Markdown)
  • \n
  • small changes to hooks
  • \n
  • improved security with nonces
  • \n
  • various small fixes
  • \n
\n\n

3.1.2 (2016-12-13)

\n\n
    \n
  • Fix for custom fields not copied
  • \n
\n\n

3.1.1 (2016-12-13)

\n\n
    \n
  • Fix for nasty update nag (plus a failsafe checkbox)
  • \n
\n\n

3.1 (2016-12-13)

\n\n
    \n
  • Bulk clone action added (WP 4.7+)
  • \n
  • Wildcards enabled for custom fields to skip
  • \n
  • Options to copy post author, post format (moved from taxonomies), menu order, post template
  • \n
  • Check publish_posts/publish_pages capability to prevent Contributors from publishing by cloning
  • \n
  • Using wp_slash (WP 3.6+) or a better workaround (WP 4.4+) on the post and its meta, should also fix some compatibility issues
  • \n
  • Check if admin bar is showing before enqueueing CSS
  • \n
  • Probable fix for repeated clone bug
  • \n
  • Other minor bugs fixed
  • \n
\n\n

3.0.3 (2016-10-29)

\n\n
    \n
  • Notices in admin after copying
  • \n
  • Fixes warning in custom post type archives
  • \n
  • Uses site options for version and notice
  • \n
  • Minor fixes
  • \n
\n\n

3.0.2 (2016-10-18)

\n\n
    \n
  • Can now be enabled for every custom post type with visible UI (not just public ones)
  • \n
  • Admin bar CSS only enqueued when needed
  • \n
  • New \"Donate\" button
  • \n
  • Fixes for minor bugs and typos
  • \n
\n\n

3.0.1 (2016-10-09)

\n\n
    \n
  • Fixes the issues for people upgrading from an older version
  • \n
\n\n

3.0 (2016-10-09)

\n\n
    \n
  • Settings page redesigned
  • \n
  • More options to enable/disable copy of every part of a post
  • \n
  • Enable/disable cloning for every custom post type
  • \n
  • Jetpack Publicize compatibility
  • \n
  • Fixed a possible XSS
  • \n
  • Fixed other little bugs
  • \n
  • Translations removed to use WP.org\'s official translation project
  • \n
  • Checked PHP 7 compatibility
  • \n
\n\n

2.6 (2014-04-27)

\n\n
    \n
  • PHP 5.4 (Strict Standards) compatible
  • \n
  • Fixed possible XSS and SQL injections
  • \n
  • other bugs
  • \n
  • Updated and added translations
  • \n
  • Tested up to WP 3.8.1
  • \n
\n\n

2.4.1 (2014-02-22)

\n\n
    \n
  • Fixed regression about draft permalinks
  • \n
  • Fixed bug with guid
  • \n
  • Don\'t clone to_ping and pinged (maybe there will be an option about those later)
  • \n
\n\n

2.4 (2012-04-29)

\n\n
    \n
  • New option to clone the children of the original page
  • \n
  • Licence changed to GPLv2 or later
  • \n
  • Fixed publishing dates for drafts
  • \n
  • Fixed bug with prefix/suffix
  • \n
  • Translation project moved to GlotPress
  • \n
\n\n

2.3 (2012-04-06)

\n\n
    \n
  • Added options to choose where to show the \"Clone\" links
  • \n
  • Clone attachments (i.e. references in the DB, not physical files)
  • \n
  • Fix for untranslated user roles
  • \n
  • Some other fixes (missing checks, PHP warnings and errors, etc.)
  • \n
\n\n

2.2 (2012-02-01)

\n\n
    \n
  • Fix for problems when copying serialized meta fields
  • \n
  • Fix for multiple _dp_original field
  • \n
  • Removed deprecated parameter when adding options
  • \n
\n\n

2.1.1 (2012-01-04)

\n\n
    \n
  • Can\'t rely on activation hook for upgrade, this caused problems with new options
  • \n
\n\n

2.1 (2012-01-03)

\n\n
    \n
  • Even more code cleaning (no more custom queries, using WP API)
  • \n
  • Term order preserved when copying
  • \n
  • Stopped using deprecated User levels, now it uses Roles and Capabilities
  • \n
  • \'Copy to a new draft\' link in admin bar
  • \n
  • duplicate_post_get_original template tag
  • \n
  • Settings link in plugin list, \'Donate\' and \'Translate\' link in option page
  • \n
\n\n

2.0.2 (2011-12-12)

\n\n
    \n
  • Fixed bug for permalinks
  • \n
  • Two links on posts list: clone immediately or copy to a new draft to edit.
  • \n
  • Tested on multisite mode.
  • \n
\n\n

2.0.1 (2011-12-08)

\n\n
    \n
  • Fixed bug for action filters
  • \n
  • New option so you can choose if cloning from the posts list must copy the post status (draft, published, pending) too.
  • \n
\n\n

2.0 (2011-12-08)

\n\n
    \n
  • WP 3.3 compatibility (still not tested against multiblog feature, so beware)
  • \n
  • Minimum WP version: 3.0
  • \n
  • Code cleanup
  • \n
  • Immediate cloning from post list
  • \n
  • Added options for taxonomies and post excerpt
  • \n
  • Added suffix option
  • \n
  • Added template tag
  • \n
\n\n

1.1.2 (2011-04-08)

\n\n
    \n
  • WP 3.1.1 compatibility (still not tested against multiblog feature, so beware)
  • \n
  • Added complete Polish language files
  • \n
\n\n

1.1.1 (2010-06-30)

\n\n
    \n
  • Plugin split in two files for faster opening in Plugins list page
  • \n
  • fix conflicts with a few other plugins
  • \n
  • Added Dutch language files
  • \n
\n\n

1.1 (2010-06-24)

\n\n
    \n
  • WP 3.0 compatibility (not tested against multiblog feature, so beware)
  • \n
  • Option page: minimum user level, title prefix, fields not to be copied, copy post/page date also
  • \n
  • Added German, Swedish, Romanian, Hebrew, Catalan (incomplete) and Polish (incomplete) language files
  • \n
\n\n

1.0 (2010-06-15)

\n\n
    \n
  • Better integration with WP 2.7+ interface
  • \n
  • Added actions for plugins which store post metadata in self-managed tables
  • \n
  • Added French and Spanish language files
  • \n
  • Dropped WP 2.6.5 compatibility
  • \n
\n\n

0.6.1 (2009-12-03)

\n\n
    \n
  • Tested WP 2.9 compatibility
  • \n
\n\n

0.6 (2007-07-21)

\n\n
    \n
  • Fix for WP 2.8.1
  • \n
  • WPMU compatibility
  • \n
  • Internationalization (Italian and Japanese language files shipped)
  • \n
\n\n

0.5 (2009-01-09)

\n\n
    \n
  • Fix for post-meta
  • \n
  • WP2.7 compatibility
  • \n
\n\n

0.4 (2008-11-23)

\n\n
    \n
  • Support for new WP post revision feature
  • \n
\n\n

0.3 (2008-03-01)

\n\n
    \n
  • Initial version on WP repository
  • \n
','Duplicate Post','Copy posts of any type with a click!','publish','open','closed','','duplicate-post','','','2017-04-04 23:48:56','2017-04-04 23:48:56','',0,'https://wordpress.org/plugins-wp/duplicate-post/',0,'plugin','',0), (173,3738271,'2009-07-29 18:46:31','2009-07-29 18:46:31','\n

W3 Total Cache improves the SEO and user experience of your site by increasing website performance, reducing download times via features like content delivery network (CDN) integration.

\n\n

The only web host agnostic WordPress Performance Optimization (WPO) framework recommended by countless web developers and web hosts. Trusted by numerous companies like: AT&T, stevesouders.com, mattcutts.com, mashable.com, smashingmagazine.com, makeuseof.com, kiss925.com, pearsonified.com, lockergnome.com, johnchow.com, ilovetypography.com, webdesignerdepot.com, css-tricks.com and tens of thousands of others.

\n\n

An inside look:

\n\n

http://www.youtube.com/watch?v=rkmrQP8S5KY

\n\n

BENEFITS

\n\n
    \n
  • Improvements in search engine result page rankings, especially for mobile-friendly websites and sites that use SSL
  • \n
  • At least 10x improvement in overall site performance (Grade A in WebPagetest or significant Google Page Speed improvements) when fully configured
  • \n
  • Improved conversion rates and \"site performance\" which affect your site\'s rank on Google.com
  • \n
  • \"Instant\" repeat page views: browser caching
  • \n
  • Optimized progressive render: pages start rendering quickly and can be interacted with more quickly
  • \n
  • Reduced page load time: increased visitor time on site; visitors view more pages
  • \n
  • Improved web server performance; sustain high traffic periods
  • \n
  • Up to 80% bandwidth savings via minify and HTTP compression of HTML, CSS, JavaScript and feeds
  • \n
\n\n

KEY FEATURES

\n\n
    \n
  • Compatible with shared hosting, virtual private / dedicated servers and dedicated servers / clusters
  • \n
  • Transparent content delivery network (CDN) management with Media Library, theme files and WordPress itself
  • \n
  • Mobile support: respective caching of pages by referrer or groups of user agents including theme switching for groups of referrers or user agents
  • \n
  • Accelerated Mobile Pages (AMP) support
  • \n
  • Secure Socket Layer (SSL) support
  • \n
  • Caching of (minified and compressed) pages and posts in memory or on disk or on (FSD) CDN (by user agent group)
  • \n
  • Caching of (minified and compressed) CSS and JavaScript in memory, on disk or on CDN
  • \n
  • Caching of feeds (site, categories, tags, comments, search results) in memory or on disk or on CDN
  • \n
  • Caching of search results pages (i.e. URIs with query string variables) in memory or on disk
  • \n
  • Caching of database objects in memory or on disk
  • \n
  • Caching of objects in memory or on disk
  • \n
  • Caching of fragments in memory or on disk
  • \n
  • Minification of posts and pages and feeds
  • \n
  • Minification of inline, embedded or 3rd party JavaScript (with automated updates)
  • \n
  • Minification of inline, embedded or 3rd party CSS (with automated updates)
  • \n
  • Browser caching using cache-control, future expire headers and entity tags (ETag) with \"cache-busting\"
  • \n
  • JavaScript grouping by template (home page, post page etc) with embed location control
  • \n
  • Non-blocking JavaScript embedding
  • \n
  • Import post attachments directly into the Media Library (and CDN)
  • \n
  • WP-CLI support for cache purging, query string updating and more
  • \n
  • Various security features
  • \n
  • Caching statistics for performance insights
  • \n
  • Extension framework for customization or extensibility e.g. New Relic, Cloudflare, WPML and more
  • \n
  • Reverse proxy integration via Nginx or Varnish
  • \n
\n\n

Improve the user experience for your readers without having to change WordPress, your theme, your plugins or how you produce your content.

\n\n

What users have to say:

\n\n\n\n

Press: Mentions, Tutorials & Reviews

\n\n

March 2015

\n\n\n\n

February 2015

\n\n\n\n

December 2014

\n\n\n\n

November 2014:

\n\n\n\n

October 2014:

\n\n\n\n

September 2014:

\n\n\n\n

July 2014:

\n\n\n\n

April 2014:

\n\n\n\n

February 2014:

\n\n\n\n

August 2013:

\n\n\n\n

June 2013:

\n\n\n\n

March 2013:

\n\n\n\n

January 2013:

\n\n\n\n

December 2012:

\n\n\n\n

November 2012:

\n\n\n\n

October 2012:

\n\n\n\n

September 2012:

\n\n\n\n

August 2012:

\n\n\n\n

July 2012:

\n\n\n\n

June 2012:

\n\n\n\n

May 2012:

\n\n\n\n

April 2012:

\n\n\n\n

March 2012:

\n\n\n\n

February 2012:

\n\n\n\n

January 2012:

\n\n\n\n

December 2011:

\n\n\n\n

November 2011:

\n\n\n\n

October 2011:

\n\n\n\n

September 2011:

\n\n\n\n

August 2011:

\n\n\n\n

July 2011:

\n\n\n\n

June 2011:

\n\n\n\n

May 2011:

\n\n\n\n

April 2011:

\n\n\n\n

March 2011:

\n\n\n\n

February 2011:

\n\n\n\n

January 2011:

\n\n\n\n

December 2010:

\n\n\n\n

November 2010:

\n\n\n\n

October 2010:

\n\n\n\n

September 2010:

\n\n\n\n

August 2010:

\n\n\n\n

July 2010:

\n\n\n\n

June 2010:

\n\n\n\n

May 2010:

\n\n\n\n

April 2010:

\n\n\n\n

March 2010:

\n\n\n\n

February 2010:

\n\n\n\n

January 2010:

\n\n\n\n

December 2009:

\n\n\n\n

November 2009:

\n\n\n\n

October 2009:

\n\n\n\n

September 2009:

\n\n\n\n

August 2009:

\n\n\n\n

July 2009:

\n\n\n\n

Who do I thank for all of this?

\n\n

It\'s quite difficult to recall all of the innovators that have shared their thoughts, code and experiences in the blogosphere over the years, but here are some names to get you started:

\n\n\n\n

Please reach out to all of these people and support their projects if you\'re so inclined.

\n\n\n
    \n
  1. Deactivate and uninstall any other caching plugin you may be using. Pay special attention if you have customized the rewrite rules for fancy permalinks, have previously installed a caching plugin or have any browser caching rules as W3TC will automate management of all best practices. Also make sure wp-content/ and wp-content/uploads/ (temporarily) have 777 permissions before proceeding, e.g. in the terminal: # chmod 777 /var/www/vhosts/domain.com/httpdocs/wp-content/ using your web hosting control panel or your FTP / SSH account.
  2. \n
  3. Login as an administrator to your WordPress Admin account. Using the \"Add New\" menu option under the \"Plugins\" section of the navigation, you can either search for: w3 total cache or if you\'ve downloaded the plugin already, click the \"Upload\" link, find the .zip file you download and then click \"Install Now\". Or you can unzip and FTP upload the plugin to your plugins directory (wp-content/plugins/). In either case, when done wp-content/plugins/w3-total-cache/ should exist.
  4. \n
  5. Locate and activate the plugin on the \"Plugins\" page. Page caching will automatically be running in basic mode. Set the permissions of wp-content and wp-content/uploads back to 755, e.g. in the terminal: # chmod 755 /var/www/vhosts/domain.com/httpdocs/wp-content/.
  6. \n
  7. Now click the \"Settings\" link to proceed to the \"General Settings\" tab; in most cases, \"disk enhanced\" mode for page cache is a \"good\" starting point.
  8. \n
  9. The \"Compatibility mode\" option found in the advanced section of the \"Page Cache Settings\" tab will enable functionality that optimizes the interoperablity of caching with WordPress, is disabled by default, but highly recommended. Years of testing in hundreds of thousands of installations have helped us learn how to make caching behave well with WordPress. The tradeoff is that disk enhanced page cache performance under load tests will be decreased by ~20% at scale.
  10. \n
  11. Recommended: On the \"Minify Settings\" tab, all of the recommended settings are preset. If auto mode causes issues with your web site\'s layout, switch to manual mode and use the help button to simplify discovery of your CSS and JS files and groups. Pay close attention to the method and location of your JS group embeddings. See the plugin\'s FAQ for more information on usage.
  12. \n
  13. Recommended: On the \"Browser Cache\" tab, HTTP compression is enabled by default. Make sure to enable other options to suit your goals.
  14. \n
  15. Recommended: If you already have a content delivery network (CDN) provider, proceed to the \"Content Delivery Network\" tab and populate the fields and set your preferences. If you do not use the Media Library, you will need to import your images etc into the default locations. Use the Media Library Import Tool on the \"Content Delivery Network\" tab to perform this task. If you do not have a CDN provider, you can still improve your site\'s performance using the \"Self-hosted\" method. On your own server, create a subdomain and matching DNS Zone record; e.g. static.domain.com and configure FTP options on the \"Content Delivery Network\" tab accordingly. Be sure to FTP upload the appropriate files, using the available upload buttons.
  16. \n
  17. Optional: On the \"Database Cache\" tab, the recommended settings are preset. If using a shared hosting account use the \"disk\" method with caution, the response time of the disk may not be fast enough, so this option is disabled by default. Try object caching instead for shared hosting.
  18. \n
  19. Optional: On the \"Object Cache\" tab, all of the recommended settings are preset. If using a shared hosting account use the \"disk\" method with caution, the response time of the disk may not be fast enough, so this option is disabled by default. Test this option with and without database cache to ensure that it provides a performance increase.
  20. \n
  21. Optional: On the \"User Agent Groups\" tab, specify any user agents, like mobile phones if a mobile theme is used.
  22. \n
\n\n\n
\n
Why does speed matter?
\n

Search engines like Google, measure and factor in the speed of web sites in their ranking algorithm. When they recommend a site they want to make sure users find what they\'re looking for quickly. So in effect you and Google should have the same objective.

\n\n

Speed is among the most significant success factors web sites face. In fact, your site\'s speed directly affects your income (revenue) — it\'s a fact. Some high traffic sites conducted research and uncovered the following:

\n\n
    \n
  • Google.com: +500 ms (speed decrease) -> -20% traffic loss [1]
  • \n
  • Yahoo.com: +400 ms (speed decrease) -> -5-9% full-page traffic loss (visitor left before the page finished loading) [2]
  • \n
  • Amazon.com: +100 ms (speed decrease) -> -1% sales loss [1]
  • \n
\n\n

A thousandth of a second is not a long time, yet the impact is quite significant. Even if you\'re not a large company (or just hope to become one), a loss is still a loss. However, there is a solution to this problem, take advantage.

\n\n

Many of the other consequences of poor performance were discovered more than a decade ago:

\n\n
    \n
  • Lower perceived credibility (Fogg et al. 2001)
  • \n
  • Lower perceived quality (Bouch, Kuchinsky, and Bhatti 2000)
  • \n
  • Increased user frustration (Ceaparu et al. 2004)
  • \n
  • Increased blood pressure (Scheirer et al. 2002)
  • \n
  • Reduced flow rates (Novak, Hoffman, and Yung 200)
  • \n
  • Reduced conversion rates (Akamai 2007)
  • \n
  • Increased exit rates (Nielsen 2000)
  • \n
  • Are perceived as less interesting (Ramsay, Barbesi, and Preece 1998)
  • \n
  • Are perceived as less attractive (Skadberg and Kimmel 2004)
  • \n
\n\n

There are a number of resources that have been documenting the role of performance in success on the web, W3 Total Cache exists to give you a framework to tune your application or site without having to do years of research.

\n
Why is W3 Total Cache better than other caching solutions?
\n

It\'s a complete framework. Most cache plugins available do a great job at achieving a couple of performance aims. Our plugin remedies numerous performance reducing aspects of any web site going far beyond merely reducing CPU usage (load) and bandwidth consumption for HTML pages alone. Equally important, the plugin requires no theme modifications, modifications to your .htaccess (mod_rewrite rules) or programming compromises to get started. Most importantly, it\'s the only plugin designed to optimize all practical hosting environments small or large. The options are many and setup is easy.

\n
I\'ve never heard of any of this stuff; my site is fine, no one complains about the speed. Why should I install this?
\n

Rarely do readers take the time to complain. They typically just stop browsing earlier than you\'d prefer and may not return altogether. This is the only plugin specifically designed to make sure that all aspects of your site are as fast as possible. Google is placing more emphasis on the speed of a site as a factor in rankings; this plugin helps with that too.

\n\n

It\'s in every web site owner\'s best interest is to make sure that the performance of your site is not hindering its success.

\n
Which WordPress versions are supported?
\n

To use all features in the suite, a minimum of version WordPress 2.8 with PHP 5.3 is required. Earlier versions will benefit from our Media Library Importer to get them back on the upgrade path and into a CDN of their choosing.

\n
Why doesn\'t minify work for me?
\n

Great question. W3 Total Cache uses several open source tools to attempt to combine and optimize CSS, JavaScript and HTML etc. Unfortunately some trial and error is required on the part of developers is required to make sure that their code can be successfully minified with the various libraries W3 Total Cache supports. Even still, if developers do test their code thoroughly, they cannot be sure that interoperability with other code your site may have. This fault does not lie with any single party here, because there are thousands of plugins and theme combinations that a given site can have, there are millions of possible combinations of CSS, JavaScript etc.

\n\n

A good rule of thumb is to try auto mode, work with a developer to identify the code that is not compatible and start with combine only mode (the safest optimization) and increase the optimization to the point just before functionality (JavaScript) or user interface / layout (CSS) breaks in your site.

\n\n

We\'re always working to make this more simple and straight forward in future releases, but this is not an undertaking we can realize on our own. When you find a plugin, theme or file that is not compatible with minification reach out to the developer and ask them either to provide a minified version with their distribution or otherwise make sure their code is minification-friendly.

\n
Who do you recommend as a CDN (Content Delivery Network) provider?
\n

That depends on how you use your site and where most of your readers read your site (regionally). Here\'s a short list:

\n\n
\n
What about comments? Does the plugin slow down the rate at which comments appear?
\n

On the contrary, as with any other action a user can perform on a site, faster performance will encourage more of it. The cache is so quickly rebuilt in memory that it\'s no trouble to show visitors the most current version of a post that\'s experiencing Digg, Slashdot, Drudge Report, Yahoo Buzz or Twitter effect.

\n
Will the plugin interfere with other plugins or widgets?
\n

No, on the contrary if you use the minify settings you will improve their performance by several times.

\n
Does this plugin work with WordPress in network mode?
\n

Indeed it does.

\n
Does this plugin work with BuddyPress (bbPress)?
\n

Yes.

\n
Will this plugin speed up WP Admin?
\n

Yes, indirectly - if you have a lot of bloggers working with you, you will find that it feels like you have a server dedicated only to WP Admin once this plugin is enabled; the result, increased productivity.

\n
Which web servers do you support?
\n

We are aware of no incompatibilities with apache 1.3+, nginx 0.7+, IIS 5+ or litespeed 4.0.2+. If there\'s a web server you feel we should be actively testing (e.g. lighttpd), we\'re interested in hearing.

\n
Is this plugin server cluster and load balancer friendly?
\n

Yes, built from the ground up with scale and current hosting paradigms in mind.

\n
What is the purpose of the \"Media Library Import\" tool and how do I use it?
\n

The media library import tool is for old or \"messy\" WordPress installations that have attachments (images etc in posts or pages) scattered about the web server or \"hot linked\" to 3rd party sites instead of properly using the media library.

\n\n

The tool will scan your posts and pages for the cases above and copy them to your media library, update your posts to use the link addresses and produce a .htaccess file containing the list of of permanent redirects, so search engines can find the files in their new location.

\n\n

You should backup your database before performing this operation.

\n
How do I find the JS and CSS to optimize (minify) them with this plugin?
\n

Use the \"Help\" button available on the Minify settings tab. Once open, the tool will look for and populate the CSS and JS files used in each template of the site for the active theme. To then add a file to the minify settings, click the checkbox next to that file. The embed location of JS files can also be specified to improve page render performance. Minify settings for all installed themes can be managed from the tool as well by selecting the theme from the drop down menu. Once done configuring minify settings, click the apply and close button, then save settings in the Minify settings tab.

\n
I don\'t understand what a CDN has to do with caching, that\'s completely different, no?
\n

Technically no, a CDN is a high performance cache that stores static assets (your theme files, media library etc) in various locations throughout the world in order to provide low latency access to them by readers in those regions.

\n
How do I use an Origin Pull (Mirror) CDN?
\n

Login to your CDN providers control panel or account management area. Following any set up steps they provide, create a new \"pull zone\" or \"bucket\" for your site\'s domain name. If there\'s a set up wizard or any troubleshooting tips your provider offers, be sure to review them. In the CDN tab of the plugin, enter the hostname your CDN provider provided in the \"replace site\'s hostname with\" field. You should always do a quick check by opening a test file from the CDN hostname, e.g. http://cdn.domain.com/favicon.ico. Troubleshoot with your CDN provider until this test is successful.

\n\n

Now go to the General tab and click the checkbox and save the settings to enable CDN functionality and empty the cache for the changes to take effect.

\n
How do I configure Amazon Simple Storage Service (Amazon S3) or Amazon CloudFront as my CDN?
\n

First create an S3 account (unless using origin pull); it may take several hours for your account credentials to be functional. Next, you need to obtain your \"Access key ID\" and \"Secret key\" from the \"Access Credentials\" section of the \"Security Credentials\" page of \"My Account.\" Make sure the status is \"active.\" Next, make sure that \"Amazon Simple Storage Service (Amazon S3)\" is the selected \"CDN type\" on the \"General Settings\" tab, then save the changes. Now on the \"Content Delivery Network Settings\" tab enter your \"Access key,\" \"Secret key\" and enter a name (avoid special characters and spaces) for your bucket in the \"Create a bucket\" field by clicking the button of the same name. If using an existing bucket simply specify the bucket name in the \"Bucket\" field. Click the \"Test S3 Upload\" button and make sure that the test is successful, if not check your settings and try again. Save your settings.

\n\n

Unless you wish to use CloudFront, you\'re almost done, skip to the next paragraph if you\'re using CloudFront. Go to the \"General Settings\" tab and click the \"Enable\" checkbox and save the settings to enable CDN functionality. Empty the cache for the changes to take effect. If preview mode is active you will need to \"deploy\" your changes for them to take effect.

\n\n

To use CloudFront, perform all of the steps above, except select the \"Amazon CloudFront\" \"CDN type\" in the \"Content Delivery Network\" section of the \"General Settings\" tab. When creating a new bucket, the distribution ID will automatically be populated. Otherwise, proceed to the AWS Management Console and create a new distribution: select the S3 Bucket you created earlier as the \"Origin,\" enter a CNAME if you wish to add one or more to your DNS Zone. Make sure that \"Distribution Status\" is enabled and \"State\" is deployed. Now on \"Content Delivery Network\" tab of the plugin, copy the subdomain found in the AWS Management Console and enter the CNAME used for the distribution in the \"CNAME\" field.

\n\n

You may optionally, specify up to 10 hostnames to use rather than the default hostname, doing so will improve the render performance of your site\'s pages. Additional hostnames should also be specified in the settings for the distribution you\'re using in the AWS Management Console.

\n\n

Now go to the General tab and click the \"Enable\" checkbox and save the settings to enable CDN functionality and empty the cache for the changes to take effect. If preview mode is active you will need to \"deploy\" your changes for them to take effect.

\n
How do I configure Rackspace Cloud Files as my CDN?
\n

First create an account. Next, in the \"Content Delivery Network\" section of the \"General Settings\" tab, select Rackspace Cloud Files as the \"CDN Type.\" Now, in the \"Configuration\" section of the \"Content Delivery Network\" tab, enter the \"Username\" and \"API key\" associated with your account (found in the API Access section of the rackspace cloud control panel) in the respective fields. Next enter a name for the container to use (avoid special characters and spaces). If the operation is successful, the container\'s ID will automatically appear in the \"Replace site\'s hostname with\" field. You may optionally, specify the container name and container ID of an existing container if you wish. Click the \"Test Cloud Files Upload\" button and make sure that the test is successful, if not check your settings and try again. Save your settings. You\'re now ready to export your media library, theme and any other files to the CDN.

\n\n

You may optionally, specify up to 10 hostnames to use rather than the default hostname, doing so will improve the render performance of your site\'s pages.

\n\n

Now go to the General tab and click the \"Enable\" checkbox and save the settings to enable CDN functionality and empty the cache for the changes to take effect. If preview mode is active you will need to \"deploy\" your changes for them to take effect.

\n
What is the purpose of the \"modify attachment URLs\" button?
\n

If the domain name of your site has changed, this tool is useful in updating your posts and pages to use the current addresses. For example, if your site used to be www.domain.com, and you decided to change it to domain.com, the result would either be many \"broken\" images or many unnecessary redirects (which slow down the visitor\'s browsing experience). You can use this tool to correct this and similar cases. Correcting the URLs of your images also allows the plugin to do a better job of determining which images are actually hosted with the CDN.

\n\n

As always, it never hurts to back up your database first.

\n
Is this plugin comptatible with TDO Mini Forms?
\n

Captcha and recaptcha will work fine, however you will need to prevent any pages with forms from being cached. Add the page\'s URI to the \"Never cache the following pages\" box on the Page Cache Settings tab.

\n
Is this plugin comptatible with GD Star Rating?
\n

Yes. Follow these steps:

\n\n
    \n
  1. Enable dynamic loading of ratings by checking GD Star Rating -> Settings -> Features \"Cache support option\"
  2. \n
  3. If Database cache enabled in W3 Total Cache add wp_gdsr to \"Ignored query stems\" field in the Database Cache settings tab, otherwise ratings will not updated after voting
  4. \n
  5. Empty all caches
  6. \n
\n
I see garbage characters instead of the normal web site, what\'s going on here?
\n

If a theme or it\'s files use the call php_flush() or function flush() that will interfere with the plugins normal operation; making the plugin send cached files before essential operations have finished. The flush() call is no longer necessary and should be removed.

\n
How do I cache only the home page?
\n

Add /.+ to page cache \"Never cache the following pages\" option on the page cache settings tab.

\n
I\'m getting blank pages or 500 error codes when trying to upgrade on WordPress in network mode
\n

First, make sure the plugin is not active (disabled) network-wide. Then make sure it\'s deactivated network-wide. Now you should be able to successful upgrade without breaking your site.

\n
A notification about file owner appears along with an FTP form, how can I resolve this?
\n

The plugin uses WordPress FileSystem functionality to write to files. It checks if the file owner, file owner group of created files match process owner. If this is not the case it cannot write or modify files.

\n\n

Typically, you should tell your web host about the permission issue and they should be able to resolve it.

\n\n

You can however try adding define(\'FS_METHOD\', \'direct\'); to wp-config.php to circumvent the file and folder checks.

\n
This is too good to be true, how can I test the results?
\n

You will be able to see it instantly on each page load, but for tangible metrics, consider the following tools:

\n\n
\n
I don\'t have time to deal with this, but I know I need it. Will you help me?
\n

Yes! Please reach out to us and we\'ll get you acclimated so you can \"set it and forget it.\"

\n\n

Install the plugin to read the full FAQ on the plugins FAQ tab.

\n\n
\n\n\n

0.9.5.2

\n\n
    \n
  • Fixed security issue by protecting configuration data by adding .php to relevant files
  • \n
  • Fixed security issue with the creation of dot folders that could be abused
  • \n
  • Fixed handling HTTP compression for uncached pages
  • \n
  • Fixed handling of .svgz files
  • \n
  • Added expiration headers to webP images
  • \n
  • Added support for Microsoft Azure?s latest API
  • \n
  • Added ability to cache WP Admin. Recommended setting, is off. (Improved WP Admin performance with object caching enabled)
  • \n
  • Added HTTP/2 Push support for minified files
  • \n
  • Added option management support for wp-cli
  • \n
  • Improved handling of uncompressed minified files
  • \n
  • Improved handling of purging of modified pages / posts
  • \n
  • Improved compatibility with Rackspace Cloud Files
  • \n
  • Improved initial CDN configuration reliability
  • \n
  • Improved reliability of object caching
  • \n
  • Improved PHP 7.0 compatibility
  • \n
  • Improved PHP 4.3 compatibility
  • \n
  • Improved HTTP/2 support
  • \n
  • Improved CSS embed handling
  • \n
  • Improved reliability of object cache, transients now fallback to database
  • \n
  • Improved handling of cached http compressed objects
  • \n
\n\n

0.9.5.1

\n\n
    \n
  • Fixed missing namespace, which caused issues with other implementations of Google APIs
  • \n
  • Fixed handling Cloudflare zone list being incomplete for users with many zones
  • \n
  • Added extension to support Accelerated Mobile Pages (AMP)
  • \n
  • Added notification for users that are still using PHP 5.2 (end of life in 2011)
  • \n
  • Improved default settings
  • \n
  • Improved compatibility with Yoast SEO sitemap caching
  • \n
  • Improved compatability with Jetpack
  • \n
  • Improved directory handling on IIS
  • \n
  • Improved backwards compatibility for 3rd party implementations against legacy W3TC functions
  • \n
\n\n

0.9.5

\n\n
    \n
  • Fixed XSS vulnerability
  • \n
  • Fixed issues with dismissing overlays
  • \n
  • Fixed handling of tilde in URLs
  • \n
  • Fixed issue with HTTP compression header when using mfunc calls
  • \n
  • Fixed cache ID issue with minify in network mode
  • \n
  • Fixed rare issue of caching empty document when some PHP errors occur in themes or plugins
  • \n
  • Fixed caching of query strings
  • \n
  • Added support for APCu Opcode Cache
  • \n
  • Added support for Redis
  • \n
  • Added support for Google Drive
  • \n
  • Added support for Amazon S3-compatible stroage services
  • \n
  • Added support for PECL memcached
  • \n
  • Added support for srcset elements
  • \n
  • Added support for Rackspace CDN Origin Pull
  • \n
  • Added support for minification of external fonts
  • \n
  • Added support for WOFF2 font format
  • \n
  • Added support for FTPS (FTP-SSL, S-FTP)
  • \n
  • Added YUI Compressor\'s PHP Port of the CSS minifier
  • \n
  • Added Narcissus\' JS minifier
  • \n
  • Added purge of parent page when attachments are added or updated
  • \n
  • Added Highwinds CDN provider
  • \n
  • Added \"Validate Timestamps\" option for compatible opcode caches functions like apc.stat are enabled
  • \n
  • Added Full Site Delivery for Pro subscribers
  • \n
  • Added HTTP Strict Transport Security (HSTS) support
  • \n
  • Added a sample extension for developers to reference
  • \n
  • Added Rackspace Cloud Files Multi-Region Support
  • \n
  • Added more support for exclusions to database cache
  • \n
  • Added more optionality to minifiers
  • \n
  • Added WPML Performance Extension
  • \n
  • Added use of namespace which creates mininum dependency on version PHP 5.3
  • \n
  • Improved PHP 5.6 compatibility
  • \n
  • Improved PHP 7 compatibility
  • \n
  • Improved performance menu in admin bar, including purging of specific cache engines and more
  • \n
  • Improved SSL interoperability
  • \n
  • Improved reliablity of test buttons
  • \n
  • Improved nomenclature of caching files for higher cache hit rates
  • \n
  • Improved nginx compatibility
  • \n
  • Improved WP CLI support
  • \n
  • Improved Cloudflare compatibility (now using latest APIs), Cloudflare must be re-authorized
  • \n
  • Improved AWS API compatibility (now using latest APIs)
  • \n
  • Improved Rackspace Cloud Files compatibility (now using latest APIs)
  • \n
  • Improved page cache purge for extensions like cloudflare and other reverse proxy use cases
  • \n
  • Improved extension framework functionality
  • \n
  • Improved compatibility of headers like ETag and content encoding
  • \n
  • Improved template fragment caching
  • \n
  • Improved notifications, warnings and errors
  • \n
  • Improved moble user agents detection
  • \n
  • Improved security with nonces and form elements
  • \n
  • Improved security throughout the codebase
  • \n
  • Improved detail of debug messages
  • \n
  • Improved Amazon SNS security (validation)
  • \n
  • Improved minify\'s ability to match script tags without type attribute
  • \n
\n\n

0.9.4

\n\n
    \n
  • Fixed undefined w3tc_button_link
  • \n
  • Fixed support and other form submissions
  • \n
  • Fixed extension enabled key error
  • \n
  • Fixed Test CDN errors
  • \n
  • Fixed trailing slashes in custom wp content path and Minify
  • \n
  • Fixed WP_PLUGIN_DIR not being available when object-cache.php is loaded and W3TC constant not set
  • \n
  • Fixed Minify Auto and restructuring of JS code placement on page
  • \n
  • Fixed remove / replace drop in file on plugins page
  • \n
  • Fixed false positive check for legacy code
  • \n
  • Fixed deprecated wpdb escape
  • \n
  • Fixed Fragment Caching and APC anomalies
  • \n
  • Fixed cached configs causing 500 error on interrupted file writes
  • \n
  • Fixed readfile errors on servers with the functionality disabled
  • \n
  • Fixed false positives for license key verification
  • \n
  • Fixed debug information not printed on cached pages
  • \n
  • Fixed backwards compatibility and flushing and added doing it wrong notification
  • \n
  • Fixed \"Prevent caching of objects after settings change\"
  • \n
  • Fixed \"Use late init\" being shown as enabled with Disc:Enhanced
  • \n
  • Fixed missing param in APC cache method declaration
  • \n
  • Fixed user roles property not begin an array
  • \n
  • Fixed adding empty Vary header
  • \n
  • Fixed notice on failed upgrade licencing check
  • \n
  • Fixed Database Cache description text
  • \n
  • Fixed duplicate bb10 agents
  • \n
  • Fixed settings link in Minify Auto notification
  • \n
  • Fixed notice with undefined constant
  • \n
  • Fixed nginx configuration and Referrer, User Groups setting
  • \n
  • Fixed Genesis settings and Suhosin field name limit error
  • \n
  • Fixed Genesis and Fragment Caching (caching categories etc)
  • \n
  • Fixed CDN being enabled when creating NetDNA / MaxCDN pull zone
  • \n
  • Fixed NewRelic related notice in compatibility popup
  • \n
  • Fixed trailing slash issue in filename to url conversion
  • \n
  • Fixed issue with wp in subdirectory and relative minimal manual urls
  • \n
  • Fixed issue with widget styling
  • \n
  • Fixed issue with Purge All button action
  • \n
  • Fixed issue with exporting of settings
  • \n
  • Fixed issue with plugin interferring with preview theme
  • \n
  • Fixed issue with malformed config files
  • \n
  • Added caching of list of posts pages (tags, categories etc) to Genesis extension a long with flush it checkbox
  • \n
  • Added typecasting on expiration time in object cache drop-in
  • \n
  • Added capability check for save options
  • \n
  • Added FeedBurner extension
  • \n
  • Added woff support to Browser Cache
  • \n
  • Added new CloudFlare IPs
  • \n
  • Added support for WordPress defined charset and collate in CDN queue table creation
  • \n
  • Added WordPress SEO by Yoast extension
  • \n
  • Added *.less to CDN theme uploads and MIME
  • \n
  • Added default settings for MaxCDN Pull Zone creation
  • \n
  • Added call to change MaxCDN canonical header setting to match plugin setting
  • \n
  • Added one button default pull zone creation to MaxCDN without refresh
  • \n
  • Added MaxCDN authorization validation
  • \n
  • Added whitelist IPs notification for MaxCDN
  • \n
  • Added support for use of existing zones without refresh
  • \n
  • Added new mime types
  • \n
  • Added support for separate domains for frontend and admin backend
  • \n
  • Added CloudFlare as an extension
  • \n
  • Added nofollow to blogroll links
  • \n
  • Added DEV mode support to PRO version
  • \n
  • Added EDGE MODE functionality
  • \n
  • Improved wrapper functions in plugins.php for plugin / theme authors
  • \n
  • Improved reliability of NetDNA / MaxCDN API calls by using WP HTTP and not cURL
  • \n
  • Improved Fragment Caching debug information
  • \n
  • Improved preview mode, removed query string requirement
  • \n
  • Improved FAQ structure
  • \n
  • Improved empty minify/pgcache cache notification when using CDN
  • \n
  • Improved default settings for MaxCDN zone creation
  • \n
  • Improved CDN queue performance
  • \n
  • Improved blogmap url sanitation
  • \n
  • Improved MaxCDN automatic zone creation process
  • \n
  • Improved license key saving and Pro mode activation on Pro license purchases
  • \n
  • Updated EDGE MODE: Full site mirroring support for MaxCDN
  • \n
  • Updated translations
  • \n
','W3 Total Cache','W3 Total Cache improves the SEO and user experience of your site by increasing website performance, reducing download times via features like content …','publish','open','closed','','w3-total-cache','','','2017-01-17 18:36:10','2017-01-17 18:36:10','',0,'https://wordpress.org/plugins-wp/w3-total-cache/',0,'plugin','',0); INSERT INTO `wporg_367_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 (174,259,'2006-01-03 07:45:56','2006-01-03 07:45:56','\n

Want to replace the old ← Older posts | Newer posts → links with some page links?

\n\n

This plugin provides the wp_pagenavi() template tag which generates fancy pagination links.

\n\n

Usage

\n\n

In your theme, you need to find calls to next_posts_link() and previous_posts_link() and replace them.

\n\n

In the Twentyten theme, it looks like this:

\n\n
<div class=\"nav-previous\"><?php next_posts_link( __( \'<span class=\"meta-nav\">&larr;</span> Older posts\', \'twentyten\' ) ); ?></div>\n<div class=\"nav-next\"><?php previous_posts_link( __( \'Newer posts <span class=\"meta-nav\">&rarr;</span>\', \'twentyten\' ) ); ?></div>\n
\n\n

You would replace those two lines with this:

\n\n
<?php wp_pagenavi(); ?>\n
\n\n

For multipart pages, you would look for code like this:

\n\n
<?php wp_link_pages( ... ); ?>\n
\n\n

and replace it with this:

\n\n
<?php wp_pagenavi( array( \'type\' => \'multipart\' ) ); ?>\n
\n\n

Go to WP-Admin -> Settings -> PageNavi for configuration.

\n\n

Changing the CSS

\n\n

If you need to configure the CSS style of WP-PageNavi, you can copy the pagenavi-css.css file from the plugin directory to your theme\'s directory and make your modifications there. This way, you won\'t lose your changes when you update the plugin.

\n\n

Alternatively, you can uncheck the \"Use pagenavi.css?\" option from the settings page and add the styles to your theme\'s style.css file directly.

\n\n

Changing Class Names

\n\n

There are filters that can be used to change the default class names that are assigned to page navigation elements.

\n\n

Filters

\n\n
    \n
  • wp_pagenavi_class_pages
  • \n
  • wp_pagenavi_class_first
  • \n
  • wp_pagenavi_class_previouspostslink
  • \n
  • wp_pagenavi_class_extend
  • \n
  • wp_pagenavi_class_smaller
  • \n
  • wp_pagenavi_class_page
  • \n
  • wp_pagenavi_class_current
  • \n
  • wp_pagenavi_class_larger
  • \n
  • wp_pagenavi_class_nextpostslink
  • \n
  • wp_pagenavi_class_last
  • \n
\n\n

Filter Usage

\n\n
// Simple Usage - 1 callback per filter\nadd_filter(\'wp_pagenavi_class_previouspostslink\', \'theme_pagination_previouspostslink_class\');\nadd_filter(\'wp_pagenavi_class_nextpostslink\', \'theme_pagination_nextpostslink_class\');\nadd_filter(\'wp_pagenavi_class_page\', \'theme_pagination_page_class\');\n\nfunction theme_pagination_previouspostslink_class($class_name) {\n  return \'pagination__control-link pagination__control-link--previous\';\n}\n\nfunction theme_pagination_nextpostslink_class($class_name) {\n  return \'pagination__control-link pagination__control-link--next\';\n}\n\nfunction theme_pagination_page_class($class_name) {\n  return \'pagination__current-page\';\n}\n\n\n// More Concise Usage - 1 callback for all filters\nadd_filter(\'wp_pagenavi_class_previouspostslink\', \'theme_pagination_class\');\nadd_filter(\'wp_pagenavi_class_nextpostslink\', \'theme_pagination_class\');\nadd_filter(\'wp_pagenavi_class_page\', \'theme_pagination_class\');\n\nfunction theme_pagination_class($class_name) {\n  switch($class_name) {\n    case \'previouspostslink\':\n      $class_name = \'pagination__control-link pagination__control-link--previous\';\n      break;\n    case \'nextpostslink\':\n      $class_name = \'pagination__control-link pagination__control-link--next\';\n      break;\n    case \'page\':\n      $class_name = \'pagination__current\'\n      break;\n  }\n  return $class_name;\n}\n
\n\n

Build Status

\n\n

\n\n

Development

\n\n\n\n

Credits

\n\n\n\n

Donations

\n\n

I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appreciate it. If not feel free to use it without any obligations.

\n\n\n
\n
Error on activation: \"Parse error: syntax error, unexpected...\"
\n

Make sure your host is running PHP 5. The only foolproof way to do this is to add this line to wp-config.php (after the opening <?php tag):

\n\n
var_dump(PHP_VERSION);\n
\n\n


\n
When I go to page 2, I see the same posts as on page 1!
\n

You\'re using query_posts() wrong. See The Right Way To use query_posts()

\n
Does PageNavi work with secondary WP_Query instances?
\n

Yes; read this tutorial

\n
How do I ignore the options page?
\n

If you are running a multi-language plugin, you will probably want to ignore the strings in the options page.

\n\n

You can do that like so:

\n\n
<?php wp_pagenavi( array( \'options\' => PageNavi_Core::$options->get_defaults() ) ); ?>\n
\n\n
\n\n\n

2.91

\n\n
    \n
  • Validate text option against kses
  • \n
  • Update SCB Framework
  • \n
\n\n

2.90

\n\n
    \n
  • Remove po/mo files from the plugin
  • \n
  • Use translate.wordpress.org to translate the plugin
  • \n
\n\n

2.89.1

\n\n
    \n
  • FIXED: before and after args
  • \n
\n\n

2.89

\n\n
    \n
  • NEW: wrapper_tag option to allow other HTML tag besides DIV and wrapper_class option to allow other class name besides wp-pagenavi. Props @Mahjouba91.
  • \n
\n\n

2.88

\n\n
    \n
  • NEW: Added filters for altering class names. Props @bookwyrm
  • \n
\n\n

2.87

\n\n
    \n
  • NEW: Uses WordPress native uninstall.php
  • \n
\n\n

2.86

\n\n
    \n
  • NEW: Bump to 4.0
  • \n
  • NEW: Added rel=next and rel=previous
  • \n
\n\n

2.85

\n\n
    \n
  • FIXED: \"Use pagenavi-css.css\" & \"Always Show Page Navigation\" in the options are not being saved
  • \n
\n\n

2.84

\n\n
    \n
  • FIXED: Updated scb framework to fix scbAdminPage incompatible error
  • \n
\n\n

2.83

\n\n
    \n
  • added \'echo\' parameter
  • \n
  • added Estonian and Bengali translations
  • \n
  • updated scbFramework
  • \n
\n\n

2.82

\n\n
    \n
  • fixed prev/next links not appearing in some conditions
  • \n
  • added Hebrew, Georgian and Azerbaijani translations
  • \n
  • updated scbFramework
  • \n
\n\n

2.81

\n\n
    \n
  • require an explicit type; fixes bugs with multipart pages
  • \n
\n\n

2.80

\n\n
    \n
  • support for multi-part pages and user queries
  • \n
  • moved prev/next links before/after first/last links
  • \n
  • more info
  • \n
\n\n

2.74 (2011-02-17)

\n\n
    \n
  • added \'smaller\' and \'larger\' classes
  • \n
  • added $query arg to wp_pagenavi()
  • \n
  • updated translations
  • \n
  • more info
  • \n
','WP-PageNavi','Adds a more advanced paging navigation interface.','publish','open','closed','','wp-pagenavi','','','2016-12-08 03:35:34','2016-12-08 03:35:34','',0,'https://wordpress.org/plugins-wp/wp-pagenavi/',0,'plugin','',0), (175,268768,'2013-04-13 08:08:52','2013-04-13 08:08:52','\n

[vimeo https://vimeo.com/114529361]

\n\n

Page Builder by SiteOrigin is the most popular page creation plugin for WordPress. It makes it easy to create responsive column based content, using the widgets you know and love. Your content will accurately adapt to all mobile devices, ensuring your site is mobile-ready. Read more on SiteOrigin.

\n\n

We\'ve created an intuitive interface that looks just like WordPress itself. It\'s easy to learn, so you\'ll be building beautiful, responsive content in no time.

\n\n

Page Builder works with standard WordPress widgets, so you\'ll always find the widget you need. We\'ve created the SiteOrigin Widgets Bundle to give you all the most common widgets, and with a world of plugins out there, you\'ll always find the widget you need.

\n\n

It works with your theme.

\n\n

Page Builder gives you complete freedom to choose any WordPress theme you like. It\'s not a commitment to a single theme or theme developer. The advantage is that you\'re free to change themes as often as you like. Your content will always come along with you.

\n\n

We\'ve also made some fantastic free themes that work well with Page Builder.

\n\n

No coding required.

\n\n

Page Builder\'s simple drag and drop interface means you\'ll never need to write a single line of code. Page Builder generates all the highly efficient code for you.

\n\n

We don\'t limit you with a set of pre-defined row layouts. Page Builder gives you complete flexibility. You can choose the exact number of columns for each row and the precise weight of each column - down to the decimal point. This flexibility is all possible using our convenient row builder. And, if you\'re not sure what you like, the Row Builder will guide you towards beautifully proportioned content using advanced ratios.

\n\n

Live Editing.

\n\n

Page Builder supports live editing. This tool lets you see your content and edit widgets in real-time. It\'s the fastest way to adjust your content quickly and easily.

\n\n

History Browser.

\n\n

This tool lets you roll forward and back through your changes. It gives you the freedom to experiment with different layouts and content without the fear of breaking your content.

\n\n

Row and widget styles.

\n\n

Row and widget styles give you all the control you need to make your content uniquely your own. Change attributes like paddings, background colours and column spacing. You can also enter custom CSS and CSS classes if you need even finer grained control.

\n\n

It\'s free, and always will be.

\n\n

Page Builder is our commitment to the democratization of content creation. Like WordPress, Page Builder is, and always will be free. We\'ll continue supporting and developing it for many years to come. It\'ll only get better from here.

\n\n

We offer free support on the SiteOrigin support forums.

\n\n

Actively Developed

\n\n

Page Builder is actively developed with new features and exciting enhancements all the time. Keep track on the Page Builder GitHub repository.

\n\n

Read the Page Builder developer docs if you\'d like to develop for Page Builder.

\n\n

Available in 17 Languages

\n\n

Through the efforts of both professional translators and our community, Page Builder is available in the following languages: Afrikaans, Bulgarian, Chinese (simplified), Danish, Dutch, English, Finnish, French, German, Hindi, Italian, Japanese, Polish, Portuguese (BR), Russian, Spanish and Swedish.

\n\n

Documentation

\n\n

Documentation is available on SiteOrigin.

\n\n\n
    \n
  1. Upload and install Page Builder in the same way you\'d install any other plugin.
  2. \n
  3. Read the usage documentation on SiteOrigin.
  4. \n
\n\n\n
\n
How do I move a site created with Page Builder from one server to another?
\n

We recommend the duplicator plugin. We\'ve tested it in several instances and it always works well with Page Builder data.

\n
Can I bundle Page Builder with my theme?
\n

Yes, provided your theme is licensed under GPL or a compatible license. If you\'re publishing your theme on ThemeForest, you must select the GPL license instead of their regular license.

\n\n

Page Builder is actively developed and updated, so generally I\'d recommend that you have your users install the original plugin so they can receive updates. You can try TGM Plugin Activation.

\n
Will plugin X work with Page Builder?
\n

We\'ve tried to ensure that Page Builder is compatible with most plugin widgets. It\'s best to just download Page Builder and test for yourself.

\n\n
\n\n\n

2.4.25 - 21 February 2017

\n\n
    \n
  • Fixed how widget wrapper IDs are generated.
  • \n
\n\n

2.4.24 - 3 February 2017

\n\n
    \n
  • Add row ID to style wrapper instead of actual row.
  • \n
  • Use more specific selectors for padding CSS.
  • \n
\n\n

2.4.23 - 31 January 2017

\n\n
    \n
  • Fixed padding issue introduced by new mobile padding setting.
  • \n
\n\n

2.4.22 - 31 January 2017

\n\n
    \n
  • Add WP Color Picker as a dependency for admin script.
  • \n
  • Include and check post ID in Live Editor. Fixes some issues with widgets using the_excerpt in Live Editor.
  • \n
  • Added mobile padding settings.
  • \n
  • Made all learning links/buttons removable in Page Builder settings.
  • \n
\n\n

2.4.21 - 19 December 2016

\n\n
    \n
  • Removed course toolbar links.
  • \n
  • Added filter for post loop query.
  • \n
  • Replace TinyMCE _.isUndefined() check with a typeof to prevent JS errors.
  • \n
\n\n

2.4.20 - 7 December 2016

\n\n
    \n
  • Removed Premium and contribution links.
  • \n
  • Added course links.
  • \n
\n\n

2.4.19 - 22 November 2016

\n\n
    \n
  • Added fixed background support.
  • \n
  • Cycle addon and contribution link.
  • \n
  • Small type and translation fixes.
  • \n
\n\n

2.4.18 - 7 November 2016

\n\n
    \n
  • Fixes for PHP 7 checker.
  • \n
  • Properly provide post ID on custom home page.
  • \n
  • Fixed CSS and JS URLs.
  • \n
  • Corrected post__not_in issue for query builder.
  • \n
\n\n

2.4.17 - 14 October 2016

\n\n
    \n
  • Removed old Stellar JS library.
  • \n
  • Added parallax setup after small timeout.
  • \n
  • Added way to add affiliate ID.
  • \n
  • Added tips signup link.
  • \n
\n\n

2.4.16 - 27 September 2016

\n\n
    \n
  • Added disableable upgrade notice.
  • \n
\n\n

2.4.15 - 6 September 2016

\n\n
    \n
  • Fixed legacy widgets check.
  • \n
\n\n

2.4.14 - 1 September 2016

\n\n
    \n
  • Fixes to sidebar emulator to prevent early rewrite rule building.
  • \n
  • Added option to completely disable sidebar emulator.
  • \n
\n\n

2.4.13 - 18 August 2016

\n\n
    \n
  • Fixed: layout directory imports in WordPress 4.6
  • \n
\n\n

2.4.12 - 17 August 2016

\n\n
    \n
  • Fixed layout directory requests for WordPress 4.6
  • \n
\n\n

2.4.11 - 15 August 2016

\n\n
    \n
  • Added esc_url to all add_query_arg calls.
  • \n
  • Improved measurement style field to handle multiple values.
  • \n
  • Hide empty columns after mobile collapse.
  • \n
\n\n

2.4.10 - 4 July 2016

\n\n
    \n
  • Made Live Editor quick link optional from Page Builder settings page.
  • \n
  • Added option to specify parallax motion.
  • \n
  • Fixed settings help link.
  • \n
  • Renamed Prebuilt to Layouts
  • \n
  • Reverted sidebars emulator change.
  • \n
  • Skip empty attributes in CSS generator class.
  • \n
\n\n

2.4.9 - May 26 2016

\n\n
    \n
  • Improved parallax library to upscale images to ensure enough of a parallax.
  • \n
  • Allow negative values in measurement fields.
  • \n
\n\n

2.4.8 - May 13 2016

\n\n
    \n
  • Reverted Wordfence fix from 2.4.7 - it raised other issues.
  • \n
\n\n

2.4.7 - May 13 2016

\n\n
    \n
  • Replaced parallax with custom implementation.
  • \n
  • Added more filters and actions.
  • \n
  • Allow other plugins to enable/disable certain builder functionality.
  • \n
  • Added unique IDs (UUID) to all widgets.
  • \n
  • Added fallback previewer for Live Editor.
  • \n
  • Prevent double filtering of $panels_data.
  • \n
  • Developer support for read-only widgets.
  • \n
  • Fixed issue that resulted in Wordfence blocking some Page Builder requests.
  • \n
  • Small interface improvements.
  • \n
\n\n

2.4.6 - April 13 2016

\n\n
    \n
  • Fixed Javascript errors with layout builder widget.
  • \n
\n\n

2.4.5 - April 13 2016

\n\n
    \n
  • Only trigger contextual menu for topmost dialog.
  • \n
  • Improved design of Live Editor preview.
  • \n
  • Added Live Editor link in the admin menu bar.
  • \n
\n\n

2.4.4 - April 6 2016

\n\n
    \n
  • Fixed ordering of new rows, widgets and cells in builder interface.
  • \n
  • Fixed Layout Builder widget sanitization error. Was causing fatal error on older versions of PHP.
  • \n
\n\n

2.4.3 - April 6 2016

\n\n
    \n
  • Fixed measurement style fields.
  • \n
  • Properly process raw widgets in Live Editor.
  • \n
  • Remove empty widgets from raw widget processing.
  • \n
\n\n

2.4.2 - April 4 2016

\n\n
    \n
  • Improved error handling and reporting.
  • \n
  • Don\'t add widget class for TwentySixteen theme.
  • \n
\n\n

2.4.1 - April 2 2016

\n\n
    \n
  • Fixed: Copying content from standard editor to Page Builder
  • \n
  • Fixed: Plugin conflict with Jetpack Widget Visibility and other plugins.
  • \n
\n\n

2.4 - April 1 2016

\n\n
    \n
  • Created new Live Editor.
  • \n
  • Changes to Page Builder admin HTML structure for Live Editor.
  • \n
  • New layout for prebuilt dialog.
  • \n
  • Now possible to append, prepend and replace layouts in prebuilt dialog.
  • \n
  • Fixed contextual menu in Layout Builder widget.
  • \n
  • Added row/widget actions to contextual menu.
  • \n
  • Clarified functionality of \"Switch to Editor\" button by renaming to \"Revert to Editor\".
  • \n
  • refreshPanelsData function is called more consistently.
  • \n
  • Various background performance enhancements.
  • \n
  • Full JS code refactoring.
  • \n
  • Fixed cell bottom margins with reverse collapse order.
  • \n
  • Improved window scroll locking for dialogs.
  • \n
  • Added in_widget_form action when rendering widget forms
  • \n
  • Custom home page now saves revisions.
  • \n
\n\n

2.3.2 - March 11 2016

\n\n
    \n
  • Fixed compatibility with WordPress 4.5
  • \n
\n\n

2.3.1 - February 10 2016

\n\n
    \n
  • Fixed fatal error on RTL sites.
  • \n
  • Made setting to enable tablet layout. Disabled by default.
  • \n
\n\n

2.3 - February 10 2016

\n\n
    \n
  • Delete preview panels data if there are no widgets.
  • \n
  • Added a collapse order field.
  • \n
  • Added custom row ID field.
  • \n
  • Fixed copy content setting.
  • \n
  • Added tablet responsive level.
  • \n
  • Fixed admin templates.
  • \n
  • Fix to ensure live editor works with HTTPs admin requests.
  • \n
  • Fix for Yoast SEO compatibility.
  • \n
  • Removed use of filter_input for HHVM issues.
  • \n
  • Added panelsStretchRows event after frontend row stretch event.
  • \n
  • Minor performance enhancements.
  • \n
  • Merged all separate JS files into a single Browserify compiled file.
  • \n
  • Added version numbers to some JS files to ensure cache busting.
  • \n
\n\n

2.2.2 - December 09 2015

\n\n
    \n
  • Fix tab name for WordPress 4.4. Was displaying undefined.
  • \n
  • Fix to ensure siteorigin-panels class is added to Page Builder pages.
  • \n
\n\n

2.2.1 - October 22 2015

\n\n
    \n
  • Various fixes to widget class names.
  • \n
  • Added option to remove default widget class from Page Builder widgets.
  • \n
  • Added action to saving home page.
  • \n
  • Added support for defaults in widget and row styles.
  • \n
  • Improve check for the homepage in sidebars simulator.
  • \n
  • Changed parallax library to improve theme compatibility.
  • \n
  • List privately published posts and pages under the prebuilt layout dialog Clone options.
  • \n
\n\n

2.2 - September 7 2015

\n\n
    \n
  • Added prebuilt layout directory.
  • \n
  • Added contextual menu for quick actions.
  • \n
  • Added parallax background images.
  • \n
  • Properly handle missing widgets when saving forms.
  • \n
  • Don\'t revert to default page template when using custom home page interface.
  • \n
  • Various minor bug fixes and improvements.
  • \n
\n\n

2.1.5 - August 19 2015

\n\n
    \n
  • Fixed handling of checkboxes and array fields.
  • \n
  • Properly position Page Builder tab in WordPress 4.3.
  • \n
\n\n

2.1.4

\n\n
    \n
  • Fixed handling of raw forms.
  • \n
\n\n

2.1.3

\n\n
    \n
  • Removed use of filter_input for compatibility with HHVM
  • \n
  • Fixed checkbox handling in forms.
  • \n
  • Removed unnecessary sprintf calls to lower chance of translations causing issues.
  • \n
  • More generic handling of builder instances to allow them to be used in different places.
  • \n
  • Use implicit check for whether editor is undefined or null.
  • \n
  • Added optional $widget_id parameter to siteorigin_panels_render_form.
  • \n
  • Improved checking for home page in sidebars emulator.
  • \n
  • Added a builder \"type\" to allow more targetted instances.
  • \n
\n\n

2.1.2

\n\n
    \n
  • Removed rendered content cache introduced in 2.1.1
  • \n
\n\n

2.1.1

\n\n
    \n
  • Added translations for 16 additional languages
  • \n
  • Modified strings to improve translatability.
  • \n
  • Row and Widget style measurement fields now allow multiple values.
  • \n
  • New rows now added below row of currently selected cell.
  • \n
  • Orphaned widgets in edited rows are now moved into remaining cell.
  • \n
  • Made panels javascript object globally accessible.
  • \n
  • panels_info array now passed into widget rendering function.
  • \n
  • Removed unnecessary action triggers from customizer that was breaking some themes.
  • \n
  • Disabling Page Builder on a page now properly creates history entry.
  • \n
  • Small fixes to sidebars emulator.
  • \n
  • Fixed import/export on custom home page interface.
  • \n
  • Removed call to filter_input from global space.
  • \n
  • Fixed bundled widgets conflict with Yoast SEO.
  • \n
  • Prevented double rendering issue with Yoast SEO.
  • \n
\n\n

2.1

\n\n
    \n
  • Improved Page Builder settings page.
  • \n
  • Added sidebar emulation, which makes a Page Builder page appear to be a sidebar. Improves compatibility with other widgets.
  • \n
  • Removed jPlayer. Self hosted widget (legacy) now uses MediaElement.
  • \n
  • Small usability improvements.
  • \n
  • Added legacy widget migration for gallery widget.
  • \n
  • Layout file based import/export feature.
  • \n
  • Added widget title setting to change widget title HTML.
  • \n
  • Added setting to control full width container.
  • \n
  • Fixed: Handling of namespaced widgets.
  • \n
  • Fixed: Layout Builder widget now works in the Customizer.
  • \n
  • Fixed: Custom home page interface now properly uses page_on_front.
  • \n
  • Fixed: Page URL for home page in custom home page.
  • \n
  • Fixed: Custom home page encoding.
  • \n
\n\n

2.0.7

\n\n
    \n
  • Fixed issue that prevented prebuilt layouts from showing up.
  • \n
\n\n

2.0.6

\n\n
    \n
  • Added nonce to all admin requests.
  • \n
  • Fixed live editor for missing widgets.
  • \n
  • Fixed handling of multi-line row/widget custom CSS.
  • \n
  • Fixed issue with encoding of panels_data.
  • \n
\n\n

2.0.5

\n\n
    \n
  • Added proper escaping in widget form.
  • \n
\n\n

2.0.4

\n\n
    \n
  • Changed how data is json encoded to prevent malformed Page Builder data.
  • \n
  • Fixed import/export.
  • \n
  • Added layout widget notification (doesn\'t work in customizer).
  • \n
  • Fixed translation domains.
  • \n
  • Additional hooks and filters.
  • \n
\n\n

2.0.3

\n\n
    \n
  • Fixed issue with double calling sidebar_admin_setup that was breaking some widgets.
  • \n
  • Fixed fetching content from TinyMCE in text mode.
  • \n
\n\n

2.0.2

\n\n
    \n
  • Fixed fatal error in validation for PHP < 5.5
  • \n
\n\n

2.0.1

\n\n
    \n
  • Fixed issue with preview causing content loss in standard editor.
  • \n
  • Fixed issue with Black Studio TinyMCE
  • \n
  • Changed templating tags in js-templates.php to prevent fatal errors with some server configurations.
  • \n
\n\n

2.0

\n\n
    \n
  • Complete rewrite of Page Builder Javascript using Backbone.
  • \n
  • Complete UI redesign.
  • \n
  • Grid Engine rewrite for more efficient CSS.
  • \n
  • Various performance enhancements and bug fixes.
  • \n
','Page Builder by SiteOrigin','Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.','publish','open','closed','','siteorigin-panels','','','2017-02-21 13:01:56','2017-02-21 13:01:56','',0,'https://wordpress.org/plugins-wp/siteorigin-panels/',0,'plugin','',0), (176,146877,'2011-05-27 08:31:48','2011-05-27 08:31:48','\n

This plugin allows administrators to globally disable comments on any post type (posts, pages, attachments, etc.) so that these settings cannot be overridden for individual posts. It also removes all comment-related fields from edit and quick-edit screens. On multisite installations, it can be used to disable comments on the entire network.

\n\n

Additionally, comment-related items can be removed from the Dashboard, Widgets, the Admin Menu and the Admin Bar.

\n\n

Important note: Use this plugin if you don\'t want comments at all on your site (or on certain post types). Don\'t use it if you want to selectively disable comments on individual posts - WordPress lets you do that anyway. If you don\'t know how to disable comments on individual posts, there are instructions in the FAQ.

\n\n

If you come across any bugs or have suggestions, please use the plugin support forum. I can\'t fix it if I don\'t know it\'s broken! Please check the FAQ for common issues.

\n\n

Want to contribute? Here\'s the GitHub development repository.

\n\n

A must-use version of the plugin is also available.

\n\n

Details

\n\n

The plugin provides the option to completely disable the commenting feature in WordPress. When this option is selected, the following changes are made:

\n\n
    \n
  • All \"Comments\" links are hidden from the Admin Menu and Admin Bar;
  • \n
  • All comment-related sections (\"Recent Comments\", \"Discussion\" etc.) are hidden from the WordPress Dashboard;
  • \n
  • All comment-related widgets are disabled (so your theme cannot use them);
  • \n
  • The \"Discussion\" settings page is hidden;
  • \n
  • All comment RSS/Atom feeds are disabled (and requests for these will be redirected to the parent post);
  • \n
  • The X-Pingback HTTP header is removed from all pages;
  • \n
  • Outgoing pingbacks are disabled.
  • \n
\n\n

Please delete any existing comments on your site before applying this setting, otherwise (depending on your theme) those comments may still be displayed to visitors. You can use the Delete Comments tool to delete any existing comments on your site.

\n\n

Advanced Configuration

\n\n

Some of the plugin\'s behaviour can be modified by site administrators and plugin/theme developers through code:

\n\n
    \n
  • Define DISABLE_COMMENTS_REMOVE_COMMENTS_TEMPLATE and set it to false to prevent the plugin from replacing the theme\'s comment template with an empty one.
  • \n
\n\n

These definitions can be made either in your main wp-config.php or in your theme\'s functions.php file.

\n\n\n
    \n
  1. Upload the plugin folder to the /wp-content/plugins/ directory
  2. \n
  3. Activate the plugin through the \'Plugins\' menu in WordPress
  4. \n
  5. The plugin settings can be accessed via the \'Settings\' menu in the administration area (either your site administration for single-site installs, or your network administration for network installs).
  6. \n
\n\n\n
\n
Nothing happens after I disable comments on all posts - comment forms still appear when I view my posts.
\n

This is because your theme is not checking the comment status of posts in the correct way.

\n\n

You may like to point your theme\'s author to this explanation of what they are doing wrong, and how to fix it.

\n
How can I remove the text that says \"comments are closed\" at the bottom of articles where comments are disabled?
\n

The plugin tries its very best to hide this (and any other comment-related) messages.

\n\n

If you still see the message, then it means your theme is overriding this behaviour, and you will have to edit its files manually to remove it. Two common approaches are to either delete or comment out the relevant lines in wp-content/your-theme/comments.php, or to add a declaration to wp-content/your-theme/style.css that hides the message from your visitors. In either case, make you you know what you are doing!

\n
I only want to disable comments on certain posts, not globally. What do I do?
\n

Don\'t install this plugin!

\n\n

Go to the edit page for the post you want to disable comments on. Scroll down to the \"Discussion\" box, where you will find the comment options for that post. If you don\'t see a \"Discussion\" box, then click on \"Screen Options\" at the top of your screen, and make sure the \"Discussion\" checkbox is checked.

\n\n

You can also bulk-edit the comment status of multiple posts from the posts screen.

\n
I want to delete comments from my database. What do I do?
\n

Go to the settings page for the disable comments plugin and utlize the Delete Comments tool to delete all comments or according to the specified post types from your database.

\n\n
\n\n\n

1.6

\n\n
    \n
  • Added a tool for deleting comments in bulk.
  • \n
\n\n

1.5.2

\n\n
    \n
  • Fix Javascript errors when the Meta widget is enabled.
  • \n
  • Hide comments link from the Welcome panel.
  • \n
\n\n

1.5.1

\n\n
    \n
  • Hide existing comments if there are any.
  • \n
  • Filter the comments link in the Meta widget if it is enabled.
  • \n
\n\n

1.5

\n\n
    \n
  • Remove the comments feed link from the head in WP 4.4 and higher.
  • \n
\n\n

1.4.2

\n\n
    \n
  • Delay loading of translation text domain until all plugins are loaded. This allows plugins to modify translations.
  • \n
\n\n

1.4

\n\n
    \n
  • Hide the troublesome \"persistent mode\" option for all sites where it is not in use. This option will be removed in a future release.
  • \n
\n\n

1.3.2

\n\n
    \n
  • Compatibility updates and code refactoring for WordPress 4.3
  • \n
  • Adding a few new translations
  • \n
\n\n

1.3.1

\n\n
    \n
  • Change the behaviour for comment feed requests. This removes a potential security issue.
  • \n
\n\n

1.3

\n\n
    \n
  • Move persistent mode filter into a define.
  • \n
  • Add an advanced option to show the theme\'s comment template even when comments are disabled.
  • \n
\n\n

1.2

\n\n
    \n
  • Allow network administrators to disable comments on custom post types across the whole network.
  • \n
\n\n

1.1.1

\n\n
    \n
  • Fix PHP warning when active_sitewide_plugins option doesn\'t contain expected data type.
  • \n
\n\n

1.1

\n\n
    \n
  • Attempt to hide the comments template (\"Comments are closed\") whenever comments are disabled.
  • \n
\n\n

1.0.4

\n\n
    \n
  • Fix CSRF vulnerability in the admin. Thanks to dxw for responsible disclosure.
  • \n
\n\n

1.0.3

\n\n
    \n
  • Compatibility fix for WordPress 3.8
  • \n
\n\n

1.0.2

\n\n
    \n
  • Disable comment-reply script for themes that don\'t check comment status properly.
  • \n
  • Add French translation
  • \n
\n\n

1.0.1

\n\n
    \n
  • Fix issue with settings persistence in single-site installations.
  • \n
\n\n

1.0

\n\n
    \n
  • Prevent theme comments template from being displayed when comments are disabled everywhere.
  • \n
  • Prevent direct access to comment admin pages when comments are disabled everywhere.
  • \n
\n\n

0.9.2

\n\n
    \n
  • Make persistent mode option filter available all the time.
  • \n
  • Fix redirection for feed requests
  • \n
  • Fix admin bar filtering in WP 3.6
  • \n
\n\n

0.9.1

\n\n
    \n
  • Short life in the wild.
  • \n
\n\n

0.9

\n\n
    \n
  • Added gettext support and German translation.
  • \n
  • Added links to GitHub development repo.
  • \n
  • Allow network administrators to prevent the use of persistent mode.
  • \n
\n\n

0.8

\n\n
    \n
  • Remove X-Pingback header when comments are completely disabled.
  • \n
  • Disable comment feeds when comment are completely disabled.
  • \n
  • Simplified settings page.
  • \n
\n\n

0.7

\n\n
    \n
  • Now supports Network Activation - disable comments on your entire multi-site network.
  • \n
  • Simplified settings page.
  • \n
\n\n

0.6

\n\n
    \n
  • Add \"persistent mode\" to deal with themes that don\'t use filterable comment status checking.
  • \n
\n\n

0.5

\n\n
    \n
  • Allow temporary disabling of comments site-wide by ensuring that original comment statuses are not overwritten when a post is edited.
  • \n
\n\n

0.4

\n\n
    \n
  • Added the option to disable the Recent Comments template widget.
  • \n
  • Bugfix: don\'t show admin messages to users who don\'t can\'t do anything about them.
  • \n
\n\n

0.3.5

\n\n
    \n
  • Bugfix: Other admin menu items could inadvertently be hidden when \'Remove the \"Comments\" link from the Admin Menu\' was selected.
  • \n
\n\n

0.3.4

\n\n
    \n
  • Bugfix: A typo on the settings page meant that the submit button went missing on some browsers. Thanks to Wojtek for reporting this.
  • \n
\n\n

0.3.3

\n\n
    \n
  • Bugfix: Custom post types which don\'t support comments shouldn\'t appear on the settings page
  • \n
  • Add warning notice to Discussion settings when comments are disabled
  • \n
\n\n

0.3.2

\n\n
    \n
  • Bugfix: Some dashboard items were incorrectly hidden in multisite
  • \n
\n\n

0.3.1

\n\n
    \n
  • Compatibility fix for WordPress 3.3
  • \n
\n\n

0.3

\n\n
    \n
  • Added the ability to remove links to comment admin pages from the Dashboard, Admin Bar and Admin Menu
  • \n
\n\n

0.2.1

\n\n
    \n
  • Usability improvements to help first-time users configure the plugin.
  • \n
\n\n

0.2

\n\n
    \n
  • Bugfix: Make sure pingbacks are also prevented when comments are disabled.
  • \n
','Disable Comments','Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.','publish','open','closed','','disable-comments','','','2016-12-07 04:11:45','2016-12-07 04:11:45','',0,'https://wordpress.org/plugins-wp/disable-comments/',0,'plugin','',0), (177,163169,'2011-07-14 12:08:06','2011-07-14 12:08:06','\n

Multibyte functionality enhancement for the WordPress Japanese package.\n?????????

\n\n\n
    \n
  1. Upload the wp-multibyte-patch folder to the /wp-content/plugins/ directory.
  2. \n
  3. Activate the plugin through the Plugins menu in WordPress.
  4. \n
','WP Multibyte Patch','Multibyte functionality enhancement for the WordPress Japanese package.','publish','open','closed','','wp-multibyte-patch','','','2016-12-06 19:33:29','2016-12-06 19:33:29','',0,'https://wordpress.org/plugins-wp/wp-multibyte-patch/',0,'plugin','',0), (178,8445617,'2011-11-10 17:22:12','2011-11-10 17:22:12','\n

This plugin adds a new Visual Editor widget type that allows you to insert rich text and media objects in your sidebars with no hassle. The default WordPress text widget lacks of functionalities and it requires HTML knowledge, this plugin was born to overcome these limitations. With Black Studio TinyMCE Widget you will be able to edit your widgets in a WYSIWYG manner using the native WordPress TinyMCE editor, just like you do in posts and pages. And if you are a developer you may still switch back and forth from Visual to HTML mode.

\n\n

Features

\n\n
    \n
  • Add rich text widgets to your sidebars and edit them using visual editor
  • \n
  • Switch between Visual mode and HTML mode (including Quicktags toolbar)
  • \n
  • Insert images/videos from WordPress Media Library
  • \n
  • Insert links to existing WordPress pages/posts or external resources
  • \n
  • Support for fullscreen editing mode
  • \n
  • Support for widgets accessibility mode
  • \n
  • Support for WordPress networks (multi-site)
  • \n
  • Support for WPML (multi-language)
  • \n
  • Live preview in theme customizer
  • \n
  • Available in 20+ languages
  • \n
\n\n

Links

\n\n\n\n

Get involved

\n\n\n\n\n

This section describes how to install and use the plugin.

\n\n
    \n
  1. Install automatically through the Plugins menu and Add New button (or upload the entire black-studio-tinymce-widget folder to the /wp-content/plugins/ directory)
  2. \n
  3. Activate the plugin
  4. \n
  5. Go to Appearance => Widgets
  6. \n
  7. Drag and drop the Visual Editor widget to the desired sidebar (or, if using Accesibility mode, click the Add link)
  8. \n
  9. Fill in title and (rich) text
  10. \n
\n\n\n
\n
Troubleshooting
\n

If you are experiencing issues with the plugin please read entirely these FAQ before posting a new topic in our support forum. Most of the times issues are caused by incompatibility with other plugins or themes, which may prevent our plugin from working as expected. In order to troubleshoot issues please complete the following steps:

\n\n
    \n
  1. First, ensure you have understood the purpose of the plugin. What this plugin does is to give you the ability to use the WordPress visual editor (TinyMCE) in widgets as you do in posts and pages, but it doesn\'t alter the editor behavior itself or its functionalities. So if you are experiencing issues with the editor even when editing posts or pages, they\'re definitely not related to our plugin (unless you\'re using some additional plugins that provides widgets support for pages, i.e. Page Builder).
  2. \n
  3. Ensure that you are running the latest versions of both WordPress and the plugin.
  4. \n
  5. Search in our support forum for threads with similar issues.
  6. \n
  7. Disable all other plugins and check if the problem is fixed. In that case enable the other plugins one by one and figure out which one is causing the issue. Please see Conflict Diagnosis Guide for WordPress plugins for further info.
  8. \n
  9. If the problem persists even with all other plugins disabled, try to switch to a WordPress default theme (i.e. Twenty Fifteen) and check if that fixes the issue.
  10. \n
\n\n

If you found a conflict with a plugin or theme, or if your problem is still present after the steps above, open a topic in the support forum and provide the following information:

\n\n
    \n
  • Detailed description of the problem, including the steps to reproduce it
  • \n
  • Location(s) where the problem occurs (Appearance -> Widgets, Theme Customizer, Accessibility mode, Page Builder, etc)
  • \n
  • Error messages, if any, in particular in browser\'s javascript console
  • \n
  • Browser and Operating System in use
  • \n
  • Plugin version in use
  • \n
  • WordPress version in use
  • \n
  • WordPress theme in use
  • \n
  • WordPress language in use, if other than english
  • \n
  • WordPress plugins causing conflicts, if any
  • \n
  • A link to a screenshot, if it can be useful to understand the problem
  • \n
  • A link to your website, if it can be useful to show the problem
  • \n
\n
Can\'t find it in my available widgets
\n

Since version 1.3.1 the name of the widget changed from Black Studio TinyMCE Widget to Visual Editor to enhance user friendliness. Black Studio TinyMCE Widget is still the name of the plugin, but it was a bit too long and not very intuitive for inexperienced users. You may find references to the old name in articles and videos on the web, so don\'t panic if you don\'t see the Black Studio TinyMCE Widget in your available widgets, just look for Visual Editor. Note: if you are using WordPress in a language other than english you may have a corresponding name translated in your language.

\n
Widgets disappeared after migrating or changing the site URL
\n

When dealing with a WordPress site URL change it is necessary to face the serialized fields issue: data may become corrupted if using a simple search/replace (see the Codex for further info). This is not an issue specifically related to our plugin, but it affects all the parts (plugins, themes and WordPress core files too) that use serialized data archiviation. When changing the site URL, the recommended way is to use the Search and Replace for WordPress Databases Script, as suggested by the Codex.

\n
How to translate widgets using WPML
\n

WPML is the leading commercial plugin for WordPress multi-language sites.\nIf you\'re using WPML, we recommend to install also the 3rd party WPML Widgets plugin, which will allow you to create widgets and assign them to specific languages, keeping the ability to work with the visual editor.\nAlternatively you may use the WPML String Translation plugin, provided by the WPML team. In this case, you\'ll have to create the widgets in the widgets admin panel, using the Visual Editor provided by the Black Studio TinyMCE Widget plugin, and then go to WPML => String Translation and translate title and body of widgets. If you installed WPML after the creation of the widgets, just re-save them and they will appear on the String Translation list. Unfortunately the WPML String Translation interface has no Visual Editor, that\'s why we no longer recommend this method. If you were using WPML String Translation, we recommend to switch to WPML Widgets and remove the entries in WPML String Translation list after you moved them to be real widgets.

\n
How to embed video and other contents
\n

WordPress has a nice autoembed feature that allows you to embed videos and other stuff in an easy way, by just putting the URL in the content area. This is also possible for widgets created with this plugin.\nIf you are using a version of WordPress prior to 4.0 or a version of Black Studio TinyMCE Widget prior to 2.0, for best results it is recommended to put the URL inside an [embed] shortcode. Example: \n [embed]http://www.youtube.com/watch?v=XXXXXXXXXXX[/embed]\nEnsure that the URL has not an hyperlink on it.\nAlternatively, if you don\'t want to use [embed] shortcode, ensure that the URL is not surrounded by a <p> tag.

\n
How to customize widget appearance
\n

The appearance of widgets in the frontend depends on both CSS and HTML. This plugin does not insert any additional CSS to your website frontend, so if you need to customize the styling you\'ll have to do at theme level, or you have to insert explicitely insert <style> in your widget using the the Text / HTML mode (this option is not recommended though).\nAs for the HTML, most of the markup is controlled by WordPress and by the theme.\nThe HTML output of a widget includes the following parts:

\n\n
{before_widget}\n    {before_title}\n        {title}\n    {after_title}\n    {before_text}\n        {text}\n    {after_text}\n{after_widget}\n
\n\n

which can be customized as following:

\n\n
    \n
  • The {title} and {text} are the values that you insert in Widgets administration panel.
  • \n
  • The markup of {before_widget}, {after_widget}, {before_title}, {after_title} is usually defined by your theme when registering a sidebar with the register_sidebar function.
  • \n
  • The {before_text} and {after_text} are the only piece of HTML markup added by the plugin. The default markup is the same as native WordPress text widgets to ensure visual compatibility with styles created for text widgets: {text} . You may customize the markup using the black_studio_tinymce_before_text and black_studio_tinymce_after_text filter hooks. They both take two parameters, the first is the default text and the second is the widget instance. See examples below.
  • \n
\n\n

Example 1: Custom markup for {before_text} and {after_text}

\n\n
add_filter( \'black_studio_tinymce_before_text\', \'my_widget_before_text\', 10, 2 );\nfunction my_widget_before_text( $before_text, $instance ) {\n    return \'\';\n}\nadd_filter( \'black_studio_tinymce_after_text\', \'my_widget_after_text\', 10, 2 );\nfunction my_widget_after_text( $after_text, $instance ) {\n    return \'\';\n}\n
\n\n

Example 2: Totally remove markup for [before_text] and [after_text]

\n\n
add_filter( \'black_studio_tinymce_before_text\', \'__return_empty_string\' );\nadd_filter( \'black_studio_tinymce_after_text\', \'__return_empty_string\' );\n
\n\n

There\'s also an additional hook, that you may use to specify to not display widgets if their content is empty:

\n\n
add_filter( \'black_studio_tinymce_hide_empty\', \'__return_true\' );\n
\n
How to customize widget contents (using hooks)
\n

You may alter widget title and text via code using the widget_title and widget_text filter hooks (see Codex for details).\nThe plugin also internally uses widget_text filter to apply specific features:

\n\n
    \n
  • icl_t (priority 2): applies WPML translation (called only if WPML is activated on the site).
  • \n
  • autoembed (priority 4): converts embed urls to relevant embed codes.
  • \n
  • convert_smilies (priority 6): converts text equivalent of smilies to images.
  • \n
  • wpautop (priority 8): applies paragraphs automatically (if the relevant option is selected).
  • \n
  • do_shortcode (priority 10): processes the shortcodes.
  • \n
\n\n

If for any reason you need to remove the filters above, you may use the following code snippet (or a custom version of it):

\n\n
add_action( \'init\', \'remove_bstw_widget_text_filters\' );\nfunction remove_bstw_widget_text_filters() {\n    if ( function_exists( \'bstw\' ) ) {\n        remove_filter( \'widget_text\', array( bstw()->compatibility()->plugins(), \'wpml_widget_text\' ), 2 );\n        remove_filter( \'widget_text\', array( bstw()->text_filters(), \'autoembed\' ), 4 );\n        remove_filter( \'widget_text\', array( bstw()->text_filters(), \'convert_smilies\' ), 6 );\n        remove_filter( \'widget_text\', array( bstw()->text_filters(), \'wpautop\' ), 8 );\n        remove_filter( \'widget_text\', array( bstw()->text_filters(), \'do_shortcode\' ), 10 );\n    }\n}\n
\n
Plugin\'s data location and cleanup
\n

Plugin\'s data is stored in serialized format inside a record in the wp_options table having option_name = \'widget_black-studio-tinymce\'. Data storage is handled by WordPress and not directly by the plugin itslef. The widgets data is intentionally kept in the datatbase upon plugin deactivation / deletion to avoid content loss. If you want to totally remove the plugin including its data, just remove that record after plugin removal.

\n\n
\n\n\n

2.3.1 (2016-11-18)

\n\n
    \n
  • Fix: Prevent unwanted translations for widget titles when WPML Widgets plugin is active
  • \n
\n\n

2.3.0 (2016-11-17)

\n\n
    \n
  • Enhanced integration with WPML and Page Builder
  • \n
  • Added new action hooks (black_studio_tinymce_before_widget and black_studio_tinymce_after_widget)
  • \n
\n\n

2.2.12 (2016-09-23)

\n\n
    \n
  • Fixed issue with Page Builder\'s Live Editor
  • \n
\n\n

2.2.11 (2016-08-19)

\n\n
    \n
  • Fixed compatibility issue with Polylang in Customizer
  • \n
\n\n

2.2.10 (2016-06-08)

\n\n
    \n
  • Fixed menubar transparency issue with Page Builder + TinyMCE Advanced
  • \n
\n\n

2.2.9 (2016-04-22)

\n\n
    \n
  • Fixed compatibility issue with Page Builder + WPML String Translation
  • \n
  • Fixed minor z-index issue with new inline link dialog (WordPress 4.5)
  • \n
\n\n

2.2.8 (2015-09-16)

\n\n
    \n
  • Fixed link dialog z-index issue in Customizer
  • \n
\n\n

2.2.7 (2015-09-03)

\n\n
    \n
  • Fixed issue with Customizer when clicking on the widget title arrow (courtesy of Syhlver)
  • \n
\n\n

2.2.6 (2015-08-25)

\n\n
    \n
  • Fixed content duplication issue with Page Builder + WPML String Translation
  • \n
\n\n

2.2.5 (2015-07-11)

\n\n
    \n
  • Fixed z-index issue on Styles dropdown in Customizer
  • \n
  • Added workaround to avoid glitches in Customizer
  • \n
  • Fixed extra slashes in inclusions using plugin_dir_path
  • \n
  • Added Persian translation (courtesy of WP-Translation.org team on Transifex)
  • \n
\n\n

2.2.4 (2015-05-14)

\n\n
    \n
  • Fixed issue with WordPress Theme Customizer
  • \n
  • For developers: added ability to create subclasses of WP_Widget_Black_Studio_TinyMCE class (courtesy of @andreamk)
  • \n
  • Added Khmer and updated Spanish translations (courtesy of WP-Translation.org team on Transifex)
  • \n
\n\n

2.2.3 (2015-02-17)

\n\n
    \n
  • Fixed bug on reordering gallery images
  • \n
  • Added Czech and Lithuanian translations (courtesy of WP-Translation.org team on Transifex)
  • \n
\n\n

2.2.2 (2014-12-24)

\n\n
    \n
  • Fixed bug on visual/text mode not being saved in WordPress 4.1
  • \n
  • Updated German and French translations (courtesy of WP-Translation.org team on Transifex)
  • \n
  • Added support for Composer dependency manager (courtesy of @cfoellmann)
  • \n
\n\n

2.2.1 (2014-11-18)

\n\n
    \n
  • Fixed paragraph formatting bug on saving
  • \n
  • Fixed real-time update bug in Theme Customizer
  • \n
  • Enhanced editor initialization
  • \n
  • Simplified internal integration with Page Builder
  • \n
  • Simplified internal initialization for accessibility mode
  • \n
  • Minor changes for coding standard compliance
  • \n
\n\n

2.2.0 (2014-11-18)

\n\n
    \n
  • Added filter to hide empty widgets
  • \n
  • Added workaround for WordPress Core bug #28403
  • \n
  • Enhanced compatibility for widgets created with 1.x plugin versions
  • \n
  • Enhanced compatibility for editor instances used by other plugins
  • \n
  • Fixed bug on line breaks being stripped in text mode
  • \n
  • Updated translations (courtesy of WP-Translation.org team on Transifex)
  • \n
\n\n

2.1.6 (2014-10-23)

\n\n
    \n
  • Fixed bug on line breaks being changed on editor load
  • \n
  • Improved TinyMCE editor stuff loading
  • \n
\n\n

2.1.5 (2014-10-21)

\n\n
    \n
  • Fixed bug when saving in text mode
  • \n
\n\n

2.1.4 (2014-10-19)

\n\n
    \n
  • Fixed compatibility issue on TinyMCE initialization filtering
  • \n
  • Fixed z-index issue when both thickbox and media dialog windows were used (i.e. using Hover Effects Pack plugin)
  • \n
\n\n

2.1.3 (2014-10-18)

\n\n
    \n
  • Added ability to disable automatic addition of paragraphs when editing (i.e. using TinyMCE Advanced plugin option)
  • \n
  • Enhanced real time rendering in theme customizer
  • \n
  • Fixed compatibility issue with Page Builder related to comment reply in admin
  • \n
  • Fixed compatibility issue with Styles plugin related to plugins_loaded hook
  • \n
\n\n

2.1.2 (2014-10-13)

\n\n
    \n
  • Hotfix for fullscreen mode when using Page Builder
  • \n
\n\n

2.1.1 (2014-10-13)

\n\n
    \n
  • Hotfix for CSS compatibility with Page Builder
  • \n
\n\n

2.1.0 (2014-10-13)

\n\n
    \n
  • Added option to automatically add paragraphs
  • \n
  • Added admin pointer to help new users identify the widget
  • \n
  • Added loading overlay when saving widget
  • \n
  • Added check for multiple instances of the plugin
  • \n
  • Fixed issue related to multiple line breaks not being saved
  • \n
  • Fixed issues with RTL locales
  • \n
  • Enhanced compatibility for widgets created with 1.x versions of the plugin
  • \n
  • Updated documentation about widget customization
  • \n
\n\n

2.0.4 (2014-10-07)

\n\n
    \n
  • Changed widget_text filters order to ensure better compatibility
  • \n
\n\n

2.0.3 (2014-10-07)

\n\n
    \n
  • Removed wp_kses_post filter on widget text to ensure better compatibility
  • \n
\n\n

2.0.2 (2014-10-06)

\n\n
    \n
  • Hotfix for Contact Form 7 compatibility
  • \n
\n\n

2.0.1 (2014-10-06)

\n\n
    \n
  • Hotfix for widget_text hook compatibility
  • \n
\n\n

2.0.0 (2014-10-06)

\n\n
    \n
  • Total refactoring of plugin\'s source code
  • \n
  • Enhanced integration with TinyMCE editor for better compatibility with other plugins
  • \n
  • Added support for QuickTags toolbar in HTML mode
  • \n
  • Added support for mobile devices (responsive width in widgets administration page)
  • \n
  • Added project to GitHub
  • \n
  • Added project to Transifex translation platform
  • \n
  • Added many new translations thanks to WP-Translation.org team
  • \n
  • Added several filter and action hooks
  • \n
  • Improved code quality and security thanks to Scrutinizer service
  • \n
  • Improved development workflow thanks to Grunt
  • \n
  • Improved performance and user experience
  • \n
  • A huge Thanks to @cfoellmann for his precious support and contributions
  • \n
\n\n

1.4.8 (2014-09-13)

\n\n
    \n
  • Fixed bug on image captions on WordPress 4.0 (part 2)
  • \n
\n\n

1.4.7 (2014-09-11)

\n\n
    \n
  • Fixed bug on image captions on WordPress 4.0
  • \n
\n\n

1.4.6 (2014-07-25)

\n\n
    \n
  • Bugfix on widget display
  • \n
\n\n

1.4.5 (2014-07-25)

\n\n
    \n
  • Fixed compatibility issue with Page Builder + WPML String Translation
  • \n
\n\n

1.4.4 (2014-07-16)

\n\n
    \n
  • Fixed z-index compatibility issue with Shortcodes Ultimate plugin
  • \n
\n\n

1.4.3 (2014-07-13)

\n\n
    \n
  • Added filter hooks to modify the markup before and after the widget text
  • \n
  • Fixed z-index issue in fullscreen mode
  • \n
  • Added widget icon for theme customizer
  • \n
  • Updated danish translation
  • \n
  • Updated FAQ and readme.txt
  • \n
\n\n

1.4.2 (2014-07-07)

\n\n
    \n
  • Added support for wp_enqueue_editor hook
  • \n
  • Added compatibility with Advanced Image Styles plugin
  • \n
  • Added danish translation (Contributor: Mikkel Rommelhoff)
  • \n
\n\n

1.4.1 (2014-06-12)

\n\n
    \n
  • Enhanced HTML source code formatting
  • \n
\n\n

1.4 (2014-06-12)

\n\n
    \n
  • HTML and CSS optimization by using WordPress native editor markup and styles
  • \n
  • Adoption of WordPress JS minification conventions (.min suffix)
  • \n
  • Integration with WordPress SCRIPT_DEBUG constant for javascript debugging purposes
  • \n
  • Enhanced compatibility with 3rd party media buttons provider (i.e. Shortcodes Ultimate)
  • \n
  • Enhanced plugin internal version handling
  • \n
  • Duplicated widget IDs detection
  • \n
  • Added Rate link
  • \n
  • Added compatibility with WordPress Language packs
  • \n
  • Added ukrainian translation (Contributor: Michael Yunat getvoip.com)
  • \n
  • Fixed notice on theme_advanced_buttons1 parameter
  • \n
  • Fixed z-index issue with WordPress 3.9 admin menu on small screens
  • \n
\n\n

1.3.3 (2014-04-04)

\n\n
    \n
  • Fixed visualization bug upon widget saving
  • \n
  • Enhanced support WordPress 3.9 Theme Customizer (live edit)
  • \n
\n\n

1.3.2 (2014-04-03)

\n\n
    \n
  • Fixed compatibility issue with WordPress 3.9 Beta 3
  • \n
  • Added support for WordPress 3.9 Theme Customizer
  • \n
  • Added swedish translation (Contributor: macsolve)
  • \n
  • Updated installation documentation
  • \n
  • Updated FAQ
  • \n
\n\n

1.3.1 (2014-03-06)

\n\n
    \n
  • Renamed the widget to Visual Editor for better user friendliness
  • \n
  • Fixed compatibility issue with FirmaSite Theme Enhancer plugin
  • \n
\n\n

1.3.0 (2014-01-29)

\n\n
    \n
  • Added support for smilies conversion (based on the general WordPress option)
  • \n
  • Updated styling to match the new default WordPress editor appearence
  • \n
  • Refactoring of PHP and JS code to be compliant to WordPress coding standard
  • \n
  • Fixed compatibility issue with WordPress 3.9 alpha and TinyMCE 4.0
  • \n
  • Fixed compatibility issue with Jetpack / After the Deadline plugin
  • \n
  • Fixed editor behavior on widget title clicks
  • \n
  • Fixed CSS issue affecting Firefox on WordPress 3.8
  • \n
  • Added finnish translation (Contributor: Timo Leiniö)
  • \n
  • Better handling of More tag button
  • \n
  • Included JS dev version
  • \n
\n\n

1.2.0 (2013-05-04)

\n\n
    \n
  • Fixed issue with WordPress widgets accessibility mode
  • \n
  • Fixed compatibility issue with WPML plugin generating an error in debug mode
  • \n
  • Fixed compatibility issue with WP Page Widget plugin
  • \n
  • Added slovak translation (Contributor: Branco Radenovich - WebHostingGeeks.com)
  • \n
  • Tested compatibility with Worpdress 3.6 beta
  • \n
\n\n

1.1.1 (2012-12-31)

\n\n
    \n
  • Fixed editor issue when dragging widgets from a sidebar to another
  • \n
\n\n

1.1.0 (2012-11-15)

\n\n
    \n
  • Compatibility fixes for upcoming WordPress 3.5
  • \n
  • Added support for the new WordPress media library dialog
  • \n
  • Enhanced javascript event handling using jquery .on(...) method
  • \n
\n\n

1.0.0 (2012-10-19)

\n\n
    \n
  • Added full image options when adding content from media library
  • \n
  • Added german translation (Contributor: Christian Foellmann)
  • \n
  • Overall Javascript code optimization
  • \n
  • Better Javascript compression
  • \n
  • Fixed editor background color
  • \n
  • Fixed compatibility issue with WP Page Widget plugin
  • \n
  • Fixed issue about editor partially hidden on narrow screens
  • \n
\n\n

0.9.5 (2012-10-01)

\n\n
    \n
  • Added support for autoembed urls (youtube, etc)
  • \n
\n\n

0.9.4 (2012-07-31)

\n\n
    \n
  • Bug fixes
  • \n
\n\n

0.9.3 (2012-07-31)

\n\n
    \n
  • Added support for accessibility mode
  • \n
\n\n

0.9.2 (2012-07-27)

\n\n
    \n
  • Optimized for use in conjunction with Ultimate TinyMCE plugin
  • \n
\n\n

0.9.1 (2012-06-07)

\n\n
    \n
  • Added spanish translation (Contributor: Lucia García Martínez)
  • \n
  • Increased width of editor window
  • \n
\n\n

0.9 (2012-01-20)

\n\n
    \n
  • Added support for WPML plugin (for multilanguage sites)
  • \n
\n\n

0.8.2 (2011-12-21)

\n\n
    \n
  • Added support for shortcodes in widget text
  • \n
\n\n

0.8.1 (2011-12-20)

\n\n
    \n
  • Fixed issue when inserting images on WordPress 3.3
  • \n
\n\n

0.8 (2011-11-29)

\n\n
    \n
  • Added support for WordPress networks (Multisite)
  • \n
\n\n

0.7 (2011-11-24)

\n\n
    \n
  • Added compatibility for upcoming WordPress 3.3
  • \n
  • Added compatibility for previous WordPress 3.0 and 3.1
  • \n
  • Optimization/compression of javascript code
  • \n
\n\n

0.6.5 (2011-11-17)

\n\n
    \n
  • Forced TinyMCE editor to not automatically add/remove paragraph tags when switching to HTML mode (you may need to re-edit your widgets to adjust linebreaks, if you were using multiple paragraphs)
  • \n
\n\n

0.6.4 (2011-11-14)

\n\n
    \n
  • Fixed compatibility issue with Jetpack / After the Deadline plugin
  • \n
  • Optimization of javascript/css loading
  • \n
\n\n

0.6.3 (2011-11-13)

\n\n
    \n
  • Fixed javascript issue preventing the plugin from working correctly with some browsers
  • \n
\n\n

0.6.2 (2011-11-12)

\n\n
    \n
  • Fixed javascript issue with WordPress Media Library inserts in HTML mode
  • \n
\n\n

0.6.1 (2011-11-12)

\n\n
    \n
  • Fixed javascript issue preventing editor to show up in some cases
  • \n
\n\n

0.6 (2011-11-11)

\n\n
    \n
  • Added support for WordPress Media Library
  • \n
\n\n

0.5 (2011-11-10)

\n\n
    \n
  • First Beta release
  • \n
','Black Studio TinyMCE Widget','The visual editor widget for Wordpress.','publish','open','closed','','black-studio-tinymce-widget','','','2016-11-18 10:37:51','2016-11-18 10:37:51','',0,'https://wordpress.org/plugins-wp/black-studio-tinymce-widget/',0,'plugin','',0), (179,8922318,'2013-03-12 20:10:00','2013-03-12 20:10:00','\n

This Google Analytics for WordPress plugin enables you to track your site using the latest Google Analytics tracking code and allows you to view key Google Analytics stats in your WordPress install.

\n\n

In addition to a set of general Google Analytics stats, in-depth Page reports and in-depth Post reports allow further segmentation of your analytics data, providing performance details for each post or page from your website.

\n\n

The Google Analytics tracking code is fully customizable through options and hooks, allowing advanced data collection using custom dimensions and events.

\n\n

= Google Analytics Real-Time Stats=

\n\n

Google Analytics reports, in real-time, in your dashboard screen:

\n\n
    \n
  • Real-time number of visitors
  • \n
  • Real-time acquisition channels
  • \n
  • Real-time traffic sources details
  • \n
\n\n

Google Analytics Reports

\n\n

The Google Analytics reports you need, on your dashboard, in your All Posts and All Pages screens, and on site\'s frontend:

\n\n
    \n
  • Sessions, organic searches, page views, bounce rate analytics stats
  • \n
  • Locations, pages, referrers, keywords, 404 errors analytics stats
  • \n
  • Traffic channels, social networks, traffic mediums, search engines analytics reports
  • \n
  • Device categories, browsers, operating systems, screen resolutions, mobile brands analytics reports
  • \n
  • User access control over analytics reports
  • \n
\n\n

Google Analytics Basic Tracking

\n\n

Installs the latest Google Analytics tracking code and allows full code customization:

\n\n
    \n
  • Switch between Universal Google Analytics and Classic Google Analytics code
  • \n
  • IP address anonymization
  • \n
  • Enhanced link attribution
  • \n
  • Remarketing, demographics and interests tracking
  • \n
  • Google AdSense linking
  • \n
  • Page Speed sampling rate control
  • \n
  • Cross domain tracking
  • \n
  • Exclude user roles from tracking
  • \n
\n\n

Google Analytics Event Tracking

\n\n

Google Analytics Dashboard for WP enables you to easily track events like:

\n\n
    \n
  • Downloads
  • \n
  • Emails
  • \n
  • Outbound links
  • \n
  • Affiliate links
  • \n
  • Fragment identifiers
  • \n
\n\n

Google Analytics Custom Dimensions

\n\n

With Google Analytics Dashboard for WP you can use custom dimensions to track:

\n\n
    \n
  • Authors
  • \n
  • Publication year
  • \n
  • Publication month
  • \n
  • Categories
  • \n
  • Tags
  • \n
  • User engagement
  • \n
\n\n

Google Analytics Dashboard for WP on Multisite

\n\n

This plugin is fully compatible with multisite network installs, allowing three setup modes:

\n\n
    \n
  • Mode 1: network activated using multiple Google Analytics accounts
  • \n
  • Mode 2: network activated using a single Google Analytics account
  • \n
  • Mode 3: network deactivated using multiple Google Analytics accounts
  • \n
\n\n
\n

Google Analytics Dashboard for WP on GitHub
\n You can submit feature requests or bugs on Google Analytics Dashboard for WP repository.

\n
\n\n

Further reading

\n\n\n\n

Localization

\n\n

You can translate Google Analytics Dashboard for WP on translate.wordpress.org.

\n\n

License

\n\n

Google Analytics Dashboard for WP it\'s released under the GPLv2, you can use it free of charge on your personal or commercial website.

\n\n\n
    \n
  1. Upload the full google-analytics-dashboard-for-wp directory into your wp-content/plugins directory.
  2. \n
  3. In WordPress select Plugins from your sidebar menu and activate the Google Analytics Dashboard for WP plugin.
  4. \n
  5. Open the plugin configuration page, which is located under Google Analytics menu.
  6. \n
  7. Authorize the plugin to connect to Google Analytics using the Authorize Plugin button.
  8. \n
  9. Go back to the plugin configuration page, which is located under Google Analytics menu to update/set your settings.
  10. \n
  11. Go to Google Analytics -> Tracking Code to configure/enable/disable tracking.
  12. \n
\n\n\n
\n
Do I have to insert the Google Analytics tracking code manually?
\n

No, once the plugin is authorized and a default domain is selected the Google Analytics tracking code is automatically inserted in all webpages.

\n
Some settings are missing in the video tutorial
\n

We are constantly improving Google Analytics Dashboard for WP, sometimes the video tutorial may be a little outdated.

\n
How can I suggest a new feature, contribute or report a bug?
\n

You can submit pull requests, feature requests and bug reports on our GitHub repository.

\n
Documentation, Tutorials and FAQ
\n

For documentation, tutorials, FAQ and videos check out: Google Analytics Dashboard for WP documentation.

\n\n
\n\n\n

4.9.6.2

\n\n
    \n
  • Enhancements:\n\n
      \n
    • switching sampling level to higher precision to increase the accuracy of reports
    • \n
  • \n
\n\n

4.9.6.1

\n\n
    \n
  • Enhancements:\n\n
      \n
    • enable anonymization for all hits instead of single hits to avoid false-positives from IP Anonymization checking tools
    • \n
  • \n
\n\n

4.9.6

\n\n
    \n
  • Enhancements:\n\n
      \n
    • introducing average time on page, average page load time, average exit rate, and average session duration metrics
    • \n
  • \n
  • Bug Fixes:\n\n
      \n
    • use Google Maps API key only if available
    • \n
    • fixes gadwp_sites_limit filter
    • \n
  • \n
\n\n

4.9.5

\n\n
    \n
  • Enhancements:\n\n
      \n
    • introducing the gadwp_curl_options filter to allow changes on CURL options for the Google_IO_Curl class, props by Alexandre Simard
    • \n
  • \n
  • Bug Fixes:\n\n
      \n
    • correction of some files with mixed endings, props by Edward Dekker
    • \n
    • only load the necessary resources for frontend widget
    • \n
    • corrected a JavaScript error on frontend sidebar widget
    • \n
  • \n
\n\n

4.9.4

\n\n
    \n
  • Enhancements: \n\n
      \n
    • always load analytics.js over SSL
    • \n
    • gadwp_backenditem_uri filter passes post ID as an additional variable
    • \n
    • option to use a Google Maps API key for the Locations report
    • \n
  • \n
  • New Features:\n\n
      \n
    • a new year-month dimension is now available, to allow further segmentation of the most successful publication years, by month; props by Antoine Girard
    • \n
    • a new 404 Errors report designed to analyze and easily identify the source of 404 errors
    • \n
  • \n
  • Bug Fixes:\n\n
      \n
    • switch to get_sites() while maintaining compatibility with older WP installs
    • \n
    • fix for multisite installs, Properties/Views Settings list was not properly displayed on PHP7
    • \n
    • prevent autoloading of reports\' cache entries; props by Alex Bradaric
    • \n
  • \n
\n\n

The full changelog is available here.

','Google Analytics Dashboard for WP','Displays Google Analytics stats in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.','publish','closed','closed','','google-analytics-dashboard-for-wp','','','2017-02-19 09:54:55','2017-02-19 09:54:55','',0,'https://wordpress.org/plugins-wp/google-analytics-dashboard-for-wp/',0,'plugin','',0), (180,5713099,'2010-10-23 17:33:42','2010-10-23 17:33:42','\n

iThemes Security is the #1 WordPress Security Plugin

\n\n

iThemes Security (formerly Better WP Security) gives you over 30+ ways to secure and protect your WordPress site. On average, 30,000 new websites are hacked each day. WordPress sites can be an easy target for attacks because of plugin vulnerabilities, weak passwords and obsolete software.

\n\n

Most WordPress admins don\'t know they\'re vulnerable, but iThemes Security works to lock down Wordpress, fix common holes, stop automated attacks and strengthen user credentials. With advanced features for experienced users, our WordPress security plugin can help harden WordPress.

\n\n

Maintained and Supported by iThemes

\n\n

iThemes has been building and supporting WordPress tools since 2008 like BackupBuddy, our WordPress backup plugin. With our full range of WordPress plugins, themes and training, WordPress security is the next step in providing you with everything you need to build the WordPress web.

\n\n

Get Plugin Support and Pro Features

\n\n

Get added peace of mind with professional support from our expert team and pro features to take your site\'s security to the next level with iThemes Security Pro.

\n\n

Pro Features:

\n\n
    \n
  • Two-Factor Authentication - Use a mobile app such as Google Authenticator or Authy to generate a code or have a generated code emailed to you.
  • \n
  • WordPress Salts & Security Keys - The iThemes Security plugin makes updating your WordPress keys and salts easy.
  • \n
  • Malware Scan Scheduling - Have your site scanned for malware automatically each day. If an issue is found, an email is sent with the details.
  • \n
  • Password Security - Generate strong passwords right from your profile screen.
  • \n
  • Password Expiration - Set a maximum password age and force users to choose a new password. You can also force all users to choose a new password immediately (if needed).
  • \n
  • Google reCAPTCHA - Protect your site against spammers.
  • \n
  • User Action Logging - Track when users edit content, login or logout.
  • \n
  • Import/Export Settings - Saves time setting up multiple WordPress sites.
  • \n
  • Dashboard Widget - Manage important tasks such as user banning and system scans right from the WordPress dashboard.
  • \n
  • Online File Comparison - When a file change is detected it will scan the origin of the files to determine if the change was malicious or not. Currently works only in WordPress core but plugins and themes are coming.
  • \n
  • Temporary Privilege Escalation - give a contractor or someone else temporary admin or editor access to your site that will automatically reset itself.
  • \n
  • wp-cli Integration - Manage your site\'s security from the command line.
  • \n
\n\n

iThemes Sync Integration

\n\n

Manage more than one WordPress site? Manage Away Mode, release lockouts and keep your themes, plugins and WordPress core up to date from one dashboard with iThemes Sync. Start managing 10 WordPress sites for free with iThemes Sync.

\n\n

iThemes Brute Force Attack Protection Network

\n\n

iThemes Security takes brute force attack protection to the next level by banning users who have tried to break into other sites from breaking into yours. The iThemes Brute Force Attack Protection Network will automatically report IP addresses of failed login attempts and will block them for a length of time necessary to protect your site based on the number of sites that have seen a similar attack.

\n\n

Protect

\n\n

iThemes Security works to protect your site by blocking bad users and increasing the security of passwords and other vital information.

\n\n
    \n
  • Prevents brute force attacks by banning hosts and users with too many invalid login attempts
  • \n
  • Scans your site to instantly report where vulnerabilities exist and fixes them in seconds
  • \n
  • Bans troublesome user agents, bots and other hosts
  • \n
  • Strengthens server security
  • \n
  • Enforces strong passwords for all accounts of a configurable minimum role
  • \n
  • Forces SSL for admin pages (on supporting servers)
  • \n
  • Forces SSL for any page or post (on supporting servers)
  • \n
  • Turns off file editing from within WordPress admin area
  • \n
  • Detects and blocks numerous attacks to your filesystem and database
  • \n
\n\n

Detect

\n\n

iThemes Security monitors your site and reports changes to the filesystem and database that might indicate a compromise. iThemes Security also works to detect bots and other attempts to search vulnerabilities.

\n\n
    \n
  • Detects bots and other attempts to search for vulnerabilities.
  • \n
  • Monitors filesystem for unauthorized changes.
  • \n
  • Run a scan for malware and blacklists on the homepage of your site.
  • \n
  • Receive email notifications when someone gets locked out after too many failed login attempts or when a file on your site has been changed.
  • \n
\n\n

Obscure

\n\n

iThemes Security hides common WordPress security vulnerabilities, preventing attackers from learning too much about your site and away from sensitive areas like your site\'s login, admin, etc.

\n\n
    \n
  • Changes the URLs for WordPress dashboard areas including login, admin and more
  • \n
  • Completely turns off the ability to login for a given time period (away mode)
  • \n
  • Removes theme, plugin, and core update notifications from users who do not have permission to update them
  • \n
  • Removes Windows Live Write header information
  • \n
  • Removes RSD header information
  • \n
  • Renames \"admin\" account
  • \n
  • Changes the ID on the user with ID 1
  • \n
  • Changes the WordPress database table prefix
  • \n
  • Changes wp-content path
  • \n
  • Removes login error messages
  • \n
\n\n

Recover

\n\n

iThemes Security makes regular backups of your WordPress database, allowing you to get back online quickly in the event of an attack. Use iThemes Security to create and email database backups on a customizable schedule.

\n\n

For complete site backups and the ability to restore or move WordPress to a new host or domain, check out BackupBuddy.

\n\n

Other WordPress Security Benefits

\n\n
    \n
  • Makes it easier for users not accustomed to WordPress to remember login and admin URLs by customizing default admin URLs
  • \n
  • Detects hidden 404 errors on your site that can affect your SEO such as bad links and missing images
  • \n
\n\n

WordPress Security Tutorials

\n\n

Learn how to use our WordPress security plugin with our series of in-depth tutorial videos:

\n\n\n\n

Compatibility

\n\n
    \n
  • Works on multi-site (network) and single site installations
  • \n
  • Works with Apache, LiteSpeed or NGINX (Note: NGINX will require you to manually edit your virtual host configuration)
  • \n
  • Features like database backups and file checks can be problematic on servers without a minimum of 64MB of RAM. All testing servers allocate 128MB to WordPress and usually don\'t have any other plugins installed.
  • \n
\n\n

Translations

\n\n\n\n

Please let us know if you would like to contribute a translation.

\n\n

Warning

\n\n

Please read the installation instructions and FAQ before installing this WordPress security plugin. iThemes Security makes significant changes to your database and other site files which can be problematic, so a backup is strongly recommended before making any changes to your site with this plugin. While problems are rare, most support requests involve the failure to make a proper backup before installation.

\n\n

License

\n\n

Released under the terms of the GNU General Public License.

\n\n\n

NOTE: iThemes Security makes significant changers to your database and other site files which can be problematic, so a backup is strongly recommended before making any changes to your site with this plugin. While problems are rare, most support requests involve the failure to make a proper backup before installation.

\n\n
    \n
  1. BEFORE YOU BEGIN: Back up your WordPress database, config file, and .htaccess file. We recommend using BackupBuddy, our WordPress backup plugin for a complete site backup.
  2. \n
  3. Upload the zip file to the /wp-content/plugins/ directory
  4. \n
  5. Unzip
  6. \n
  7. Activate the plugin through the \'Plugins\' menu in WordPress
  8. \n
  9. Visit the Security menu for checklist and options
  10. \n
\n\n

DISCLAIMER: Under no circumstances do we release this plugin with any warranty, implied or otherwise. We cannot be held responsible for any damage that might arise from the use of this plugin.

\n\n\n
\n
Why does iThemes Security require the latest WordPress version? Can\'t I use a slightly older version?
\n
    \n
  • One of the best security practices for a WordPress site owner is keeping software up to date. Because of this, we only test this plugin on the latest stable version of WordPress and will only guarantee it works in the latest version.
  • \n
\n
Will this plugin completely stop all attacks on my site?
\n
    \n
  • No. iThemes Security is designed to help improve the security of your WordPress installation from many common attack methods, but it cannot prevent every possible attack. Nothing replaces diligence and good practice. This plugin makes it a little easier for you to apply both.
  • \n
\n
Is this plugin only for new WordPress installs or can I use it on existing sites, too?
\n
    \n
  • Many of the changes made by this plugin are complex and can break existing sites. While iThemes Security can be installed on either a new or existing site, we strongly recommend making a complete backup of your existing site before applying any features included in this plugin.
  • \n
\n
Will this plugin work on all servers and hosts?
\n
    \n
  • iThemes Security requires Apache or LiteSpeed and mod_rewrite or NGINX to work.
  • \n
  • While this plugin should work on all hosts with Apache or LiteSpeed and mod_rewrite or NGINX, it has been known to experience problems in shared hosting environments where it runs out of resources such as available CPU or RAM. For this reason, it is extremely important that you make a backup of your site before installing on any existing site. If you run out of resources during an operation such as renaming your database table, you may need your backup to be able to restore access to your site.
  • \n
  • Finally, please make sure you have adequate RAM if you plan to use the file change detector or make large backups.
  • \n
\n
Does this work with network or multisite installations?
\n
    \n
  • Yes. We\'re in the process of developing more documentation, so we\'ll update this as soon as it\'s ready.
  • \n
\n
Can I help?
\n
\n
What changes does this plugin make that can break my site?
\n
    \n
  • iThemes Security makes significant changes to your database and other site files which can be problematic for existing WordPress sites. Again, we strongly recommended making a complete backup of your site before using this plugin. While problems are rare, most support requests involve the failure to make a proper backup before installation. DISCLAIMER: Under no circumstances do we release this plugin with any warranty, implied or otherwise. We cannot be held responsible for any damage that might arise from the use of this plugin.
  • \n
  • Note that renaming the wp-content directory will not update the path in existing content. Use this feature only on new sites or in a situation where you can easily update all existing links.
  • \n
  • Fixing iThemes Security Lockouts
  • \n
  • What is Changed By iThemes Security
  • \n
\n
I\'ve enabled the Enforce SSL option, and it broke my site. How do I get back in?
\n
    \n
  • Open your wp-config.php file in a text editor and remove the following 2 lines:
  • \n
  • define(\'FORCE_SSL_LOGIN\', true);
  • \n
  • define(\'FORCE_SSL_ADMIN\', true);
  • \n
\n
Where can I get help if something goes wrong?
\n
    \n
  • Official support for this plugin is available for iThemes Security Pro customers. Our team of experts is ready to help.
  • \n
\n\n

Free support may be available with the help of the community in the WordPress.org support forums (Note: this is community-provided support. iThemes does not monitor the WordPress.org support forums).

\n\n
\n\n\n

6.2.1

\n\n
    \n
  • Bug Fix: When a requesting IP address cannot be found, default to 127.0.0.1. This fixes issues with some alternate cron setups.
  • \n
  • Bug Fix: Having more than one iThemes Security modification in a .htaccess, nginx.conf, or wp-config.php file will no longer result in having all the file content between each section removed when updating the file.
  • \n
  • Bug Fix: Modifications to the wp-config.php file added by W3 Total Cache now have their Windows-style newlines preserved when iThemes Security updates the file.
  • \n
\n\n

6.2.0

\n\n
    \n
  • Enhancement: Improved plugin performance by reducing the number of queries made on each page.
  • \n
  • Enhancement: Reduced memory and CPU usage due to various code improvements.
  • \n
  • Bug Fix: A database backup will no longer be created when first activating the plugin.
  • \n
  • Bug Fix: Added compatibility for MySQL strict mode in database creation syntax.
  • \n
  • Bug Fix: Removed warning about a \"non well formed numeric value encountered\" in PHP 7.1.
  • \n
  • Bug Fix: Modifications to wp-config.php, .htaccess, and nginx.conf files are now properly re-added upon reactivation.
  • \n
  • Bug Fix: Fixed full settings for Hide Backend being displayed after disabling the feature and saving the settings.
  • \n
  • Bug Fix: Enabling or disabling the Hide Backend feature will update the \"Log Out\" link so that it works as expected without having to load a new page.
  • \n
  • Bug Fix: Enabling or disabling the Hide Backend feature now properly updates the .htaccess/nginx.conf file on enable and disable rather than at some future point.
  • \n
  • Bug Fix: Fixed issue that could cause improper database table creation on multisite sites.
  • \n
  • Bug Fix: Fixed a bug that could prevent settings from saving properly if the site was migrated to a new server or a new home path on the server.
  • \n
\n\n

6.1.1

\n\n
    \n
  • Bug Fix: Fixed bug that prevented Away Mode from activating on some sites.
  • \n
\n\n

6.1.0

\n\n
    \n
  • Enhancement: Added logging for failed two-factor, OAuth, and REST API authentications.
  • \n
  • Enhancement: Added logging details about the source of login failures and the type of authentication that failed.
  • \n
  • Enhancement: Due to improvements in tracking authentication failures, brute force attempts using alternate authentication methods are more reliably found and blocked.
  • \n
  • Enhancement: The server\'s IP is treated as whitelisted and will not be considered for lockouts or bans.
  • \n
  • Enhancement: Reduced memory usage when creating a backup.
  • \n
  • Enhancement: Changed log entry description of \"IP Flagged as bad by iThemes IPCheck\" to \"IP Flagged by Network Brute Force Protection\". This should help clarify the meaning of the log entry.
  • \n
  • Enhancement: Improved efficiency of the Network Brute Force Protection feature.
  • \n
  • Bug Fix: Fixed bug that prevented Network Brute Force Protection from working properly on some sites.
  • \n
\n\n

6.0.0

\n\n
    \n
  • Bug Fix: Removed \"comodo\" from the list of user agents blocked by the HackRepair.com blacklist. This ensures that Comodo\'s AutoSSL feature of cPanel/WHM is able to function.
  • \n
  • Updated Feature: Updated the \"REST API\" feature in the WordPress Tweaks section. The feature now has proper support for protecting privacy on your site without preventing the REST API from functioning.
  • \n
  • Enhancement: Updated Security Check to enforce setting the \"REST API\" setting to \"Restricted Access\".
  • \n
\n\n

5.9.0

\n\n
    \n
  • New Feature: Added a \"REST API\" feature in the WordPress Tweaks section. This new feature allows you to block or restrict access to the REST API.
  • \n
\n\n

5.8.1

\n\n
    \n
  • Bug Fix: Fixed issue that could cause database backup emails to be sent without the backup zip attached.
  • \n
\n\n

5.8.0

\n\n
    \n
  • Enhancement: Updated the lockouts notification email to a new design. This new design also cleaned up the translation strings to allow better translations.
  • \n
  • New Feature: Added a \"Protect Against Tabnapping\" feature in the WordPress Tweaks section. Details of what this feature protects against can be found here: https://www.jitbit.com/alexblog/256-targetblank---the-most-underestimated-vulnerability-ever/
  • \n
  • Misc: Updated the description for the Lockout Period setting to indicate that the default value of 15 minutes is recommended.
  • \n
\n\n

5.7.1

\n\n
    \n
  • Bug Fix: Remote IP is now correctly identified if the server is behind a reverse proxy that sends requests with more than one IP listed in a single header.
  • \n
  • Bug Fix: Fixed the link for a user in the logs page so that it properly works on sites that are inside a subdirectory.
  • \n
  • Bug Fix: Improved how Strong Password Enforcement works on password resets to improve compatibility with various plugins.
  • \n
  • Bug Fix: Improved the logic for determining whether a user should have Strong Password Enforcement applied. This covers situations where the user may have a custom role, a customized default role, or added capabilities beyond their role.
  • \n
  • Enhancement: Improved the logic for determing the requesting IP address to better handle situations where the site is behind a reverse proxy.
  • \n
  • Enhancement: Strong Password Enforcement now uses a PHP port of zxcvbn to ensure that a strong password was selected.
  • \n
  • Enhancement: All links in Security that have target=\"_blank\" now have added rel attributes to protect against tabnapping.
  • \n
  • Misc: Updated remaining ip-lookup.net links to instead link to traceip.net in keeping with other links that were previously updated to traceip.net.
  • \n
\n\n

5.7.0

\n\n
    \n
  • Bug Fix: Fixed data save issue that could cause multiple notification emails to be sent in a short period of time.
  • \n
  • Bug Fix: Fixed issue that could cause the malware scanner to fail on sites that change the arg_separator.output php.ini value from its default value.
  • \n
  • Bug Fix: Removed redundant entries in the HackRepair blacklist.
  • \n
  • Bug Fix: Enabling Protect System Files in System Tweaks will now only block install.php for the current site. This fixes the issue where the setting can block installation of a site in a subdirectory.
  • \n
  • Bug Fix: Fixed problem that could cause requests for iThemes Security data from iThemes Sync to fail due to large amounts of log entries.
  • \n
  • Bug Fix: Scheduled backups now run if the ITSEC_BACKUP_CRON define is set with a non-boolean value.
  • \n
  • Bug Fix: Replaced static references to wp-includes with the WPINC define.
  • \n
  • Bug Fix: Moved blocking of query strings containing %0[0-9A-F] characters from the Non-English Characters setting to the Suspicious Query Strings setting as those characters are control code characters and are not associated with a language.
  • \n
  • Bug Fix: Added escaping to some translation strings.
  • \n
  • Bug Fix: Removed unused files from the WordPress Tweaks module directory.
  • \n
  • Bug Fix: Fixed the Daily Digest email reversing the user and host lockout counts.
  • \n
  • Bug Fix: The database backup email no longer sends from the email address configured in Settings > General. It now defaults to the same from address that the wp_mail() function uses. This will fix the mail being blocked by some mail servers due to a spoofed from address.
  • \n
  • Enhancement: Updated the server config rules generated by the System Tweaks settings. They are now more consistent between Apache, LiteSpeed, and nginx. They are also more efficient and have been improved to limit accidentally blocking non-targeted requests.
  • \n
  • Enhancement: Updated the database backup email to a new design.
  • \n
  • Enhancement: Added a note that the Filter Request Methods setting in System Tweaks should not be enabled if the WordPress REST API is used. This is becasue the DELETE HTTP method is blocked when the setting is enabled.
  • \n
  • New Feature: Added setting to block requests for PHP files in the plugins directory in System Tweaks.
  • \n
  • New Feature: Added setting to block requests for PHP files in the themes directory in System Tweaks.
  • \n
\n\n

5.6.4

\n\n
    \n
  • Bug Fix: Fixed issue that reported invalid counts for host and user lockouts in the daily digest email.
  • \n
  • Bug Fix: Fixed issue that caused the daily digest email to be sent every day, even if no lockouts occurred and no file changes were found.
  • \n
  • Bug Fix: Fixed issue that could prevent saving of File Change settings, resulting in an error messages of \"A validation function for file-change received data that did not have the required entry for latest_changes.\"
  • \n
  • Bug Fix: Fixed iThemes Security Pro logo appearing in daily digest emails.
  • \n
\n\n

5.6.3

\n\n
    \n
  • Bug Fix: Removed the \"Wget\" user agent from the Hack Repair blacklist as it can block wp-cron jobs on some hosts.
  • \n
  • Bug Fix: Fixed error \"PHP message: PHP Fatal error: \'continue\' not in the \'loop\' or \'switch\' context\".
  • \n
  • Enhancement: Added new Daily Digest email design.
  • \n
\n\n

5.6.2

\n\n
    \n
  • Security Fix: Fixed issue where a locked out but not yet blacklisted IP/user could receive different HTTP headers when testing a valid username/password combination. Thanks Leon Atkinson of 18INT for contacting us about this issue.
  • \n
  • Security Fix: Updated log output to prevent specific kinds of logged requests from displaying without sanitization. Thanks to Slavco Mihajloski for contacting us about this issue.
  • \n
  • Bug Fix: The Security > Security Check link now works as expected in multisite.
  • \n
  • Bug Fix: Fixed bug that could prevent the \"Filter Long URL Strings\" feature from working properly.
  • \n
  • Bug Fix: Removed restrictions in the \"Filter Long URL Strings\" feature that were unrelated to request length.
  • \n
  • Bug Fix: Corrected a settings description typo in Global Settings.
  • \n
  • Bug Fix: Fixed bug that could result in issues authenticating over XML-RPC when the WordPress Tweaks > Multiple Authentication Attempts per XML-RPC Request setting is set to \"Block\".
  • \n
  • Misc: Added placeholder for the Version Management module of iThemes Security Pro.
  • \n
  • Misc: Updated build number to trigger some updates.
  • \n
\n\n

5.6.1

\n\n
    \n
  • Bug Fix: Fixed a potential logging issue that could prevent some lockout notices from being properly logged on non-English sites.
  • \n
  • Bug Fix: Prevented some notices from displaying to users who do not need to see them.
  • \n
  • Bug Fix: Limited notices to only display on specific pages on the dashboard.
  • \n
  • Compatibility Fix: Changed name of the $HTTP_RAW_POST_DATA variable to avoid erroneously tripping PHP 7 compatibility checks.
  • \n
  • Code Cleanup: Removed legacy code that is no longer needed.
  • \n
  • Enhancement: Started tracking when a user was last seen as logged in and active for future use.
  • \n
  • Misc: Added a placeholder for the Pro feature \"User Security Check\".
  • \n
\n\n

5.6.0

\n\n
    \n
  • New Feature: Added a new Security Check section on the settings page. This new feature adds a tool to quickly ensure that the recommended features are enabled and the recommended settings are used.
  • \n
  • Bug Fix: Fixed the ability to remove the itsec_away.confg file in order to disable Away Mode.
  • \n
  • Enhancement: The \"Ban Lists\" setting of Banned Users is now enabled by default.
  • \n
\n\n

5.5.0

\n\n
    \n
  • New Feature: Added a new File Permissions section on the settings page to bring back the directory and file permissions listing feature found on the Security > Dashboard page of older plugin versions.
  • \n
  • Bug Fix: Fixed a situation where adding a very large list of IP\'s in the Ban Hosts list would generate an invalid .htaccess file on some servers.
  • \n
  • Enhancement: The Database Backups, Local Brute Force Protection, Network Brute Force Protection, Strong Password Enforcement, and WordPress Tweaks features are now active by default on new installations.
  • \n
  • Enhancement: The WordPress Tweaks feature now uses the \"Disable File Editor\" setting by default on new installations.
  • \n
  • Enhancement: The WordPress Tweaks feature now sets the \"Multiple Authentication Attempts per XML-RPC Request\" setting to \"Block\" by default on new installations.
  • \n
  • Enhancement: Improved the styling of notices.
  • \n
\n\n

5.4.5

\n\n
    \n
  • Bug Fix: Fixed SQL query for Database Backups when \"Backup Full Database\" is enabled.
  • \n
\n\n

5.4.4

\n\n
    \n
  • Bug Fix: Fixed bug that could cause some sites to lose settings when upgrading.
  • \n
\n\n

5.4.3

\n\n
    \n
  • Bug Fix: Don\'t rely on externally loaded MailChimp JavaScript.
  • \n
\n\n

5.4.2

\n\n
    \n
  • Bug Fix: Fixed links to Settings, Logs, and creating a backup on Multisite.
  • \n
  • Enhancement: The \"Write to Files\" setting is now enabled by default.
  • \n
\n\n

5.4.1

\n\n
    \n
  • Bug Fix: Fixed error that would prevent nginx servers from being able to make use of the \"Reduce Comment Spam\" feature of the WordPress Tweaks module.
  • \n
  • Bug Fix: Restored missing log filter for 404 Detection log entries.
  • \n
\n\n

5.4.0

\n\n
    \n
  • Enhancement: New user interface with both grid and list views for managing settings.
  • \n
  • Enhancement: New automatic temp whitelisting of IPs for users that manage iThemes Security settings.
  • \n
  • Enhancement: Better feedback on errors when modifying wp-config.php or server config files.
  • \n
  • Enhancement: Improved code efficiency of the Away Mode feature so that it takes less processing time when active.
  • \n
  • Enhancement: Rather than disabling features that have invalid user input, the user now can fix the issue before saving.
  • \n
  • Enhancement: Improved the efficiency of the plugin\'s loading code, reducing the amount of time taken to run the plugin.
  • \n
  • New Feature: Global settings now has a \"Show Error Codes\" setting that can provide an error message\'s specific error code when it is enabled.
  • \n
  • Bug Fix: More than one IP can now be temp whitelisted.
  • \n
  • Bug Fix: Fixed a bug where some modules would be enabled or disabled when they shouldn\'t be after upgrading to the latest version.
  • \n
  • Bug Fix: Will not send notification emails about the new login address when Hide Backend is enabled and doing an upgrade.
  • \n
  • Compatibility Fix: Updated handling of wp_remote_get() responses in preparation for changes coming in WordPress 4.6.
  • \n
\n\n

5.3.7

\n\n
    \n
  • Bug Fix: Throw a real 403 instead of a faked 404 for hide backend - Fixes compatability with certain plugins including WordPress SEO. Hat tip to Joost de Valk (@jdevalk) and the @Yoast team for bringing this issue to our attention.
  • \n
\n\n

5.3.6

\n\n
    \n
  • Security Fix: Better caps checks for dismissal of changed file dialog - Thanks to Julio Potier for notifying us of this issue.
  • \n
  • Bug Fix: Make file change warning dialog text properly translatable
  • \n
  • Enhancement: Adding \'itsec_log_event\' action for logged events
  • \n
\n\n

5.3.5

\n\n
    \n
  • Security Fix: No longer using document.location to build \'Show Intro\' link in admin - Thanks to David Lodge (Pen Test Partners) for notifying us of this issue.
  • \n
  • Bug Fix: Fixed some notices when certain multisite options are used on BuddyPress
  • \n
  • Enhancement: New itsec_white_ips filter to allow plugins that work with external services to whitelist service IPs
  • \n
\n\n

5.3.4

\n\n
    \n
  • Bug Fix: Fixed issue that could cause a fatal error after changing the content directory.
  • \n
  • Bug Fix: Updated the link to sign up for security guide download to point to a https address. This is better security and prevents warnings when submitting from a http site in some browsers.
  • \n
  • Bug Fix: If a cryptographically secure log file name can\'t be generated, queue up log file writes until we can.
  • \n
\n\n

5.3.3

\n\n
    \n
  • Bug Fix: Fixed temporary whitelisting by preventing a temporarily whitelisted IP from being locked out.
  • \n
\n\n

5.3.2

\n\n
    \n
  • Bug Fix: Updated code that generates the backups and logs directories to ensure that it attempts to create the parent directory if it does not exist yet.
  • \n
  • Bug Fix: Removed warnings that could be generated if the logs directory could not be created.
  • \n
  • Bug Fix: Database backup files sent via email no longer have a name without an extension if zipping up the file fails.
  • \n
\n\n

5.3.1

\n\n
    \n
  • Security Fix: Hardened the created backups and logs directories. Thanks to Nicolas Chatelain (SYSDREAM IT Security Services) for notifying us of this issue.
  • \n
  • Security Fix: More secure backup and log file names. Thanks to Nicolas Chatelain (SYSDREAM IT Security Services) for notifying us of this issue.
  • \n
  • Bug Fix: The \"NGINX Conf File\" setting is now properly respected, causing the generated NGINX configuration file to be stored in that location.
  • \n
  • Enhancement: Generated database backup file names now contain a human-readable timestamp in the format of YYYYMMDD-HHMMSS.
  • \n
  • Enhancement: Zipped database backup files no longer contain a deeply nested directory structure. Instead, they only contain the sql file.
  • \n
  • Enhancement: When the \"Force Unique Nickname\" feature is enabled, the generated display name now uses an improved randomization function.
  • \n
  • Enhancement: Improved tabbing of rules in generated nginx.conf files.
  • \n
  • Enhancement: Removed the \"See what\'s new button\" as it has fulfilled its purpose.
  • \n
\n\n

5.3.0

\n\n
    \n
  • New Feature: Added support for IPv6 addresses. This includes support for IPv6 in lockouts, ban hosts, and white lists.
  • \n
  • Bug Fix: Fixed issue that could cause username-based lockouts to fail for long usernames.
  • \n
  • Bug Fix: Fixed issue that prevented wildcard IP ranges from being blacklisted or whitelisted.
  • \n
  • Bug Fix: Removed warnings generated when the Away Mode module is disabled and iThemes Sync contacts the site.
  • \n
  • Enhancement: Updated descriptions of valid IP and IP range formats for the Lockout White List and the Ban Hosts settings.
  • \n
  • Enhancement: Updated host entries in log details to link to traceip.net rather than ip-adress.com. This is because ip-adress.com does not support IPv6 addresses.
  • \n
  • Enhancement: Updated some translatable strings relating to blacklisting and whitelisting to allow for better translations.
  • \n
  • Enhancement: Added details about how wildcard IP ranges are converted to CIDR format (this improves performance).
  • \n
\n\n

5.2.1

\n\n
    \n
  • Bug Fix: Comparisons of IPv4 addresses and ranges now include the IP\'s at the edge of the ranges.
  • \n
  • Bug Fix: IPv4 tests now work as expected when deciding if a blacklisted IP or range overlaps a whitelisted IP\'s and ranges.
  • \n
  • Bug Fix: Fixed styling issue that affected the display of the horizontal tabs on settings pages in WordPress 4.5.
  • \n
  • Bug Fix: Replaced old module sorting order in settings screens.
  • \n
  • Bug Fix: Fixed PHP 7 compatibility issue that triggers the following error: \"Uncaught Error: Call to undefined function mysql_get_client_info()\".
  • \n
  • Bug Fix: Fixed warnings and errors that could occur when deleting the plugin.
  • \n
  • Bug Fix: Fixed warning that could occur on a failed login when Local Brute Force Detection is disabled.
  • \n
  • Bug Fix: All data added to the options table by iThemes Security is removed on uninstall.
  • \n
  • Bug Fix: Fixed the cause of the following warning: call_user_func_array() expects parameter 1 to be a valid callback, class \'ITSEC_SSL_Setup\' does not have a method \'execute_deactivate\'
  • \n
  • Enhancement: When a lockout is being executed, wp_logout() will only be called if the current page request comes from a logged in user. This prevents plugins that log logout events from logging log outs from unknown users.
  • \n
  • Enhancement: Improved the descriptions used for some of the data displayed in the \"System Information\" section of Security > Dashboard.
  • \n
  • Enhancement: Added \"Use MySQLi\" entry to the \"System Information\" section of Security > Dashboard to show whether the MySQLi driver is enabled.
  • \n
  • Enhancement: Updated the \"SQL Mode\" entry in the \"System Information\" section of Security > Dashboard to show the full details if that value is set.
  • \n
  • Enhancement: Improved code that ensures that tables and options table entries created by iThemes Security are removed on uninstall only when no other iThemes Security plugin is active.
  • \n
\n\n

5.2.0

\n\n
    \n
  • Security Fix: Fixed PHP code that could allow AJAX requests to list directories and files outside the directory structure of the WordPress installation. Note that these AJAX requests required a logged in user with admin-level privileges. This vulnerability was unable to be exploited by non-privileged or anonymous requests.
  • \n
  • Bug Fix: Updated the SSL feature to use 301 redirects rather than 302 redirects.
  • \n
  • Bug Fix: Fixed situations where security nonces would incorrectly trigger \"security check\" errors when enabling specific combinations of features on the settings page.
  • \n
  • Bug Fix: Enabling scheduled database backups and setting a backup interval of 0 days no longer results in a backup being created on every page load.
  • \n
  • Bug Fix: Module-specific data is properly initialized/removed on plugin activation, deactivation, and uninstallation.
  • \n
  • Feature Removal: Removed the \"Security Status\" portion of the Security > Dashboard page. This is in preparation for a new tool that provides suggestions tailored to the site and server that Security is running on.
  • \n
  • Enhancement: Updated the way the feature modules function in order to allow them to be redesigned in a more efficient and flexible way for future releases.
  • \n
  • Enhancement: Updated the File Change Detection feature to attempt a max memory limit of 256M rather than 128M as some users experience out of memory issues which could be fixed with the higher memory limit.
  • \n
  • Enhancement: Updated the Database Backup feature to attempt a max memory limit of 256M rather than 128M as some users experience out of memory issues which could be fixed with the higher memory limit.
  • \n
  • Enhancement: Added localization support for some non-localized strings.
  • \n
  • Enhancement: Improved detection of multiple active versions of iThemes Security.
  • \n
\n\n

5.1.1

\n\n
    \n
  • Enhancement: Removed Yandex and Sogou from the HackRepair blacklist as they are legitimate search engine bots.
  • \n
  • Enhancement: Added detailed information about Sucuri malware scan errors to Malware Scan log details.
  • \n
  • Bug Fix: No longer enables display of database errors when an event is logged.
  • \n
\n\n

5.1.0

\n\n
    \n
  • New Feature: Added \"Multiple Authentication Attempts per XML-RPC Request\" setting to the WordPress Tweaks section. When this setting is set to \"Block\", iThemes Security will block brute force login attacks against XML-RPC as described by Sucuri in this blog post: https://blog.sucuri.net/2015/10/brute-force-amplification-attacks-against-wordpress-xmlrpc.html
  • \n
  • Enhancement: Updated text describing the XML-RPC setting in the WordPress Tweaks section to better explain what the setting is for and which setting is recommended.
  • \n
  • Enhancement: Improved IP detection when proxy detection is active by processing the header set by CloudFlare.
  • \n
  • Enhancement: Added a filter named itsec_filter_remote_addr_headers which can be used to change which headers are searched for the client IP. This allows for tailoring the IP detection for specific reverse proxies and load balancers.
  • \n
  • Bug Fix: Updated the Banned Users settings to no longer add a newline to the Ban Hosts input each time the settings page is saved.
  • \n
  • Compatibility Fix: Updated code triggered by the ITSEC_TEST_MALWARE_SCAN_DISABLE_SSLVERIFY define. This avoids plugin compatibility issues that prevent disabling the SSL peer verification.
  • \n
\n\n

5.0.1

\n\n
    \n
  • Compatibility Fix: Added support for ITSEC_TEST_MALWARE_SCAN_DISABLE_SSLVERIFY. Setting it to true can bypass \"SSL peer certificate or SSH remote key was not OK\" errors on servers with bad SSL configurations.
  • \n
\n\n

5.0.0

\n\n
    \n
  • Compatibility Fix: Changed translation domain from it-l10n-better-wp-security to better-wp-security. This change was necessary in order to be included in the translate.wordpress.org project.
  • \n
  • New Feature: Added malware scanning provided by Sucuri SiteCheck.
  • \n
\n\n

4.9.0

\n\n
    \n
  • Feature Removal: Removed the \"Remove WordPress Generator Meta Tag\" and \"Display Random Version\" features as they are not recommended due to limited security benefit and creating compatibility issues.
  • \n
  • Enhancement: Added the ability to undo the Content Directory change.
  • \n
  • Bug Fix: No longer tries to load a non-existent JavaScript file for the salts module.
  • \n
  • Bug Fix: Fixed an issue with one-time database backups on multi-site installs.
  • \n
  • Bug Fix: Fixed issues related to locating .htaccess or nginx.conf files on sites with WordPress installed in a separate directory.
  • \n
  • Bug Fix: Fixed issues with PHP blocking in uploads directory not working with certain non-standard setups.
  • \n
  • Bug Fix: Minor change to fix a warning that can appear after changing the Content Directory.
  • \n
  • Bug Fix: Fixed a PHP fatal error that could occur on some servers when adding a ban to the site\'s .htaccess or nginx.conf file.
  • \n
\n\n

4.8.0

\n\n
    \n
  • Feature Removal: Removed the malware scanning features as VirusTotal no longer supports scanning from WordPress sites. A replacement is in the works.
  • \n
  • Bug Fix: The close button on the \"Thank you for activating iThemes Security\" message now appears in the correct location.
  • \n
  • Bug Fix: Removed the site\'s URL being displayed in the \"Replace jQuery With a Safe Version\" setting details.
  • \n
  • Bug Fix: Updated .htaccess rules to be compatible with Apache 2.4 without the auth compat module.
  • \n
  • Bug Fix: Enabling and disabling the \"Remove File Writing Permissions\" setting now updates the file permissions properly.
  • \n
  • Bug Fix: Web servers that cannot be recognized now default to Apache.
  • \n
  • Enhancement: Updated the hackrepair lists.
  • \n
\n\n

4.7.0

\n\n
    \n
  • Enhancement: Updated to use new file modification API.
  • \n
  • Enhancement: Added HackRepair.com blacklist for Nginx.
  • \n
  • Enhancement: Improved Nginx support for System Tweak features.
  • \n
  • Enhancement: Updates to wp-config.php, .htaccess, and nginx.conf files now support more systems.
  • \n
  • Enhancement: Combined the \"Force SSL for Dashboard\" and \"Force SSL for Login\" settings to a unified \"Force SSL for Dashboard\" setting. This is due to how the FORCE_SSL_LOGIN define was deprecated in WP 4.0.0.
  • \n
  • Enhancement: Added comments to wp-config.php, .htaccess, and nginx.conf updates that indicate which settings affect the specific entries.
  • \n
  • Enhancement: Added translation support for previously static strings, including strings used for comments in wp-config.php, .htaccess, and nginx.conf files.
  • \n
  • Enhancement: Improved generation of valid referers for use by the Reduce Comment Spam feature.
  • \n
  • Enhancement: Broadened the server support in the import settings code.
  • \n
  • Enhancement: Added new library classes for managing files, directories, and config files.
  • \n
  • Enhancement: Improved error messages for when file writes fail.
  • \n
  • Enhancement: Improved error messages for when export file creation fails.
  • \n
  • Enhancement: Improved error messages for situations when the .htaccess, nginx.conf, or wp-config.php files may need to be manually updated.
  • \n
  • Bug Fix: Added support for Apache 2.4 without the access_compat module.
  • \n
  • Bug Fix: Fixed condition where forcing SSL on front-end pages could cause infinite redirection loops with specific setups of nginx to Apache reverse proxy servers.
  • \n
  • Bug Fix: Fixed scenarios where the site would be forced to load via https but scripts, stylesheets, and images would load via http.
  • \n
  • Bug Fix: Fixed invalid nginx.conf rule generation for the Reduce Comment Spam feature.
  • \n
  • Bug Fix: Corrected invalid parsing of some IP formats in Ban Hosts list.
  • \n
  • Bug Fix: Improved error handling when reading or updating config files.
  • \n
  • Bug Fix: Fixed various warnings that would display when changing settings.
  • \n
  • Bug Fix: Fixed a situation where creation of a zipped export file would fail, but an email would still be sent as if the zip was created successfully.
  • \n
\n\n

4.6.13

\n\n
    \n
  • Security fix for XSS vulnerability. Thanks to Ole Aass (@oleaass) for finding and disclosing this vulnerability to the iThemes Security team.
  • \n
\n\n

4.6.12

\n\n
    \n
  • Enhancement: Translation files can now be stored in WP_LANG_DIR/plugins/better-wp-security/ so that translation files will not be overwritten on when the plugin updates.
  • \n
  • Bug Fix: The file permissions check will no longer list a warning if the plugins directory has permissions of 755.
  • \n
  • Bug Fix: Fixed incorrect text describing the \"Backups to Retain\" database backup setting.
  • \n
\n\n

4.6.10

\n\n
    \n
  • Bug Fix: Fixed regression that prevented adding wildcard IP\'s in the form of \'XXX.XXX.XXX.*\' to Ban Hosts.
  • \n
  • Bug Fix: When a file scan is run from iThemes Sync, a warning will no longer be added to the site\'s error log.
  • \n
\n\n

4.6.8

\n\n
    \n
  • Enhancement: Minor refactoring for performance and scalability.
  • \n
  • Enhancement: Add ITSEC_BACKUP_CRON constant to replace plugin\'s backup scheduler with wp_cron.
  • \n
  • Enhancement: Add dashboard reminder to salts to prompt for periodic salt changes.
  • \n
  • Enhancement: Limit the number of lockouts that can be displayed at any given time in the dashboard.
  • \n
  • Fix: Make sure header error messages are suppressed when performing a lockout.
  • \n
  • Fix: Fix error message from missing login information when displaying lockouts.
  • \n
\n\n

4.6.6

\n\n
    \n
  • Fix: Quick banning IPs will now work correctly if existing htaccess rules are in place
  • \n
  • Fix: minor bug fixes and typo corrections.
  • \n
\n\n

4.6.2

\n\n
    \n
  • New Feature: Change WordPress Salts
  • \n
  • Enhancement: Refactored ITSEC_Lib and ITSEC_Files for better usability and new functions to make changing salts possible
  • \n
\n\n

4.5.10

\n\n
    \n
  • Fix: Fixed typo on file change warning emails.
  • \n
  • Fix: Fixed duplicate module listsing on log page dropdown
  • \n
  • Fix: Fixed missing lockouts on iThemes Sync dashboard
  • \n
\n\n

4.5.8

\n\n
    \n
  • New Feature: Add file/folder permissions check to Dashboard
  • \n
  • Fix/Enhancement: Code refactoring of numerous modules
  • \n
  • Fix: Hiding available updates in multi-site will no longer block wp-cli from detecting updates.
  • \n
  • Fix: Removed leftover JavaScript debugging statements.
  • \n
\n\n

4.5.6

\n\n
    \n
  • New Pro Feature: Google reCAPTCHA
  • \n
  • Fixed: Removed unneeded fields in malware
  • \n
\n\n

4.5.2

\n\n
    \n
  • New Pro Feature: wp-cli integration
  • \n
  • New Feature: Temporarily whitelist your IP address via iThemes Sync
  • \n
  • New Feature: Override proxy IP detection
  • \n
  • New feature: Hide admin bar (if desired)
  • \n
  • New Feature: Perform file scan via iThemes Sync
  • \n
  • New Feature: Perform malware scan via iThemes Sync
  • \n
  • Enhancement: Added filter to allow for custom log pages
  • \n
  • Enhancement: Added debug constant to help troubleshoot multiple emails
  • \n
  • Enhancement: Added constant to force digest emails via wp-cron instead of custom timing
  • \n
  • Fixed: Various missing variable fixes were added
  • \n
  • Fixed: MySQL errors on MySQL 5.6 during activation were fixed.
  • \n
  • Fixed: HTML emails now contain HTML tag
  • \n
  • Fixed: Lockout count in emails should now be more accurate
  • \n
  • Fixed: Make sure to esc urls on SSL redirects (unreported minor security fix)
  • \n
  • Fixed: Added filters to SSL to try to catch more assets
  • \n
  • Fixed: Suspicious query strings feature should no longer conflict with many plugins
  • \n
  • Fixed: File change detection should no longer throw an error if opendir failed
  • \n
\n\n

4.4.23

\n\n
    \n
  • Fixed: App passwords in two-factor authentication will now correctly authenticate themselves.
  • \n
\n\n

4.4.22

\n\n
    \n
  • New Pro Feature: Temporary privilege escalation
  • \n
\n\n

4.4.21

\n\n
    \n
  • Enhancement: More time/date information is now shown in the logs for file change scanning
  • \n
  • Fixed: Filechange will no longer show false positives with every change in DST (although this will cause run round of such notifications on update).
  • \n
  • Fixed: Link to malware scanning logs will work.
  • \n
\n\n

4.4.20

\n\n
    \n
  • New Pro Feature: File change scanning will now compare WordPress core files to the WordPress.org repository.
  • \n
  • Fixed: Make sure php_gid is always defined to prevent error message if the function is not usable.
  • \n
  • Fixed: Link to BackupBuddy in admin bar will now work correctly.
  • \n
\n\n

4.4.18

\n\n
    \n
  • New Pro Feature: Dashboard widget. Get important information and handle user blocking right from the WordPress Dashboard.
  • \n
  • Fixed: When using wp-cron for file checking cron check will run daily instead of hourly.
  • \n
\n\n

4.4.16

\n\n
    \n
  • Fixed: Error on line 1312 when iThemes API is actived with version 4.4.15
  • \n
\n\n

4.4.15

\n\n
    \n
  • Enhancement: File change summary emails are more concise and will avoid extra information
  • \n
  • Fixed: Hide backend will now work with Jetpack\'s JSON API authorization.
  • \n
  • Fixed: Option to change user ID 1 will correctly disappear when not present
  • \n
  • Fixed: Removed empty user agent from default blacklist to avoid issues with external services
  • \n
  • Fixed: File change folder check will no longer scan directories outside of ABSPATH for any reason
  • \n
  • Fixed: Adding define( \'ITSEC_FILE_CHANGE_CRON\', true ); to wp-config.php will cause the file change scanner to only run once daily via wp-cron.
  • \n
  • Fixed: Compatibility issue where strong password enforcement could cause an error if passwords are changed outside of the core of WordPress
  • \n
  • Fixed: Lost password url should now be correct on multisite.
  • \n
  • Fixed: fixed duplicate ID issue from user_id_exists calls.
  • \n
  • Fixed: Fixed an error in the lockout module that results in an error for users of multisite
  • \n
  • Fixed: Notification emails will no longer send if not turned on
  • \n
  • Fixed: Duplicate messages will not be allowed in digest emails
  • \n
  • Fixed: Duplicate digest emails will have a far lesser chance of sending
  • \n
  • Fixed: User lockout count in email notifications will now be correct
  • \n
\n\n

4.4.13

\n\n
    \n
  • Enhancement: Default log rotation changed from 30 days to 14 days
  • \n
  • Fixed: All logs page will properly display even with 50,000+ entries in the log
  • \n
\n\n

4.4.11

\n\n
    \n
  • Enhancement: Updated copy on Virustotal API key to indicate that a private key is not needed.
  • \n
  • Fixed: More complete check for user id when resettings password will prevent undefined index login on line 62 error.
  • \n
  • Fixed: Fixed a bug that prevented the api key from saving after resetting the key.
  • \n
  • Fixed: Removed errors that could occur due to the use of custom capabilities and roles.
  • \n
\n\n

4.4.9

\n\n
    \n
  • New Pro Feature: Automatically generate strong passwords
  • \n
  • New Pro Feature: Password expiration
  • \n
  • Enhancement: Added a link to the actual timezone settings in the general settings page (instead of the top of the page)
  • \n
  • Fixed: When an invalid log directory is detected it will not fail but will instead reset it to the original.
  • \n
  • Fixed: No more duplicate digest emails
  • \n
  • Fixed: No more \"Array\" message appearing in digest emails from user lockouts
  • \n
  • Fixed: HTML in traditional file log emails will display correctly.
  • \n
  • Fixed: From address in notification emails will now display correctly.
  • \n
  • Fixed: MySQL errors will no longer appear for missing iThemes Security tables. Instead it will attempt to recreate them.
  • \n
  • Fixed: Fixed missing \"no changes\" text in file change emails.
  • \n
  • Fixed: Formatting of individual file change emails will now work.
  • \n
  • Fixed: Fixed a bug in ban users user agents that would cause a crash on Apache if the user agent contained a space
  • \n
  • Fixed: When an invalid backup directory is detected it will not fail but will instead reset it to the original.
  • \n
\n\n

4.4.6

\n\n
    \n
  • Fixed: fixed possible undefined api_error variable on line 316 if WordPress believes the email address is invalid.
  • \n
  • Fixed: failed calls to various apis will no longer throw a php error on failure.
  • \n
\n\n

4.4.5

\n\n
    \n
  • Fixed: Fixed typos in digest email.
  • \n
  • Fixed: Fixed typos in default network lockout message.
  • \n
  • Fixed: Force stylesheet reload for new nags and other items by pushing plugin build number to stylesheet registrations
  • \n
\n\n

4.4.3

\n\n
    \n
  • Fixed: Fixed an error that could occur on multisite due to a missing \"core\" object
  • \n
\n\n

4.4.2

\n\n
    \n
  • New Feature: Add IPCheck Brute Force API integration
  • \n
  • New Feature: Add ability to receive a daily digest email instead of individual emails per event.
  • \n
  • Enhancement: Added \"Go Pro\" menu item to admin menus.
  • \n
  • Enhancement: Added button to release IP address from temporary whitelist.
  • \n
  • Enhancement: Reordered sidebar items to make it easier for the user to get to the information they need from iThemes
  • \n
  • Fixed: introduction screen should now display completely on computers with low-resolution screens.
  • \n
  • Fixed: multisite bug that still showed BackupBuddy (if present) even though BackupBuddy is not multisite compatible.
  • \n
  • Fixed: Scrolling table of contents should not cover side-bar items on pro.
  • \n
  • Fixed: When changing admin user login form will no show the correct path when WordPress is not installed in the same directory as the website address.
  • \n
  • Fixed: The plugins_loaded hook which fires on logout will now fire later to improve compatibility with iThemes Exchange
  • \n
  • Fixed: multisite bug that still showed BackupBuddy (if present) even though BackupBuddy is not multisite compatible.
  • \n
  • Fixed: Added an extra flag in an attempt to reduce duplicate file-change detection executions.
  • \n
  • Fixed: Added missing index.php files to directories that were missing them to ensure no information could be attained if directory is turned on.
  • \n
  • Fixed: Make sure hide backend rewrite rules are consistent with the correct location of the WordPress login page when WordPress is not installed in the main website folder.
  • \n
  • Fixed: File locking will try to create the iThemes Directory if it isn\'t already present rather than just saying a lock could not be attained.
  • \n
  • Fixed: Fixed an error whereas an empty filter could display an error when building the log tables.
  • \n
\n\n

4.3.11

\n\n
    \n
  • Low Severity Security Fix - Lack of access control patched - Sucuri (reported 19Aug2014)
  • \n
  • Fixed an error in XMLRPC blocking when $username variable cannot be found
  • \n
\n\n

4.3.9

\n\n
    \n
  • Remove error message if WP_Error is returned with wp_remote_post in malware scan
  • \n
  • Fixed bug where away-mode was still enabled after one-time period has passed which could result in away mode activating when it should not
  • \n
  • Ensure that individual module updates fire when updating the plugin
  • \n
  • Added function to retrieve current URL from the front-end
  • \n
  • Fixed error in brute force protection that counts valid logins with XML-RPC as bad logins towards a brute force lockout
  • \n
\n\n

4.3.7

\n\n
    \n
  • Updated descriptions an instructions in malware scheduling to make the feature easier to use
  • \n
  • Numerous typo corrections throughout dashboard
  • \n
  • Clean up notifications for file change detection and malware scanning
  • \n
\n\n

4.3.3

\n\n
    \n
  • Fixed an accidental disabling of file change scans introduced in 4.3
  • \n
\n\n

4.3.2

\n\n
    \n
  • Added on-demand malware scanning for the homepage
  • \n
  • Added better URL validation to ITSEC_LIB
  • \n
  • Added exception for 127.0.0.1 to prevent a local server from being locked out of a site during wp-cron or other calls
  • \n
  • Added button to quickly add current IP address to permanent whitelist
  • \n
  • Added appropriate message for logs page when logs are not available due to \"file only\" logging being selected
  • \n
  • Fixed Error in 404 scanning if path field was empty
  • \n
  • Updated hackrepair.com\'s default blacklist
  • \n
  • Modified support reminder to ask users to upgrade rather than donate
  • \n
  • Use get_home_path() in place of ABSPATH to account for WordPress core in a different directory than wp-content
  • \n
  • Use PHP comments in index.php file to account for the possibility of a scan including the file in which case the html comment could result in an error
  • \n
  • Fixed various typos throughout the plugin dashboard
  • \n
  • Added ability to prevent file change scanning from running on a given page load by defining ITSEC_FILE_CHECK_CRON to true
  • \n
  • Cleaned up file change logging reports to me more clear when no files have been changed
  • \n
  • Added feature to immediately ban user \"admin\" when no user \"admin\" exists on the site and a host tries to log in with it anyway
  • \n
  • Added blank line to end of all textarea input to make it easier to input data
  • \n
  • Added brute force checks to XMLRPC calls to prevent brute force attacks against XMLRPC
  • \n
\n\n

4.2.15

\n\n
    \n
  • Fixed a bug preventing file-change scanning from running when manually executed from the \"Logs\" page
  • \n
  • Fixed a bug where an error could be generated if the saved files from the file change feature weren\'t properly saved
  • \n
  • Fixed comment approval email links to make sure they work when a user is not logged in and hide backend is in effect
  • \n
  • Fixed an issue that was preventing an IP from being permanently banned due to too many lockouts
  • \n
  • Updated .htaccess rules for an IP that has been banned from too many lockouts to be more effective in more hosting environments
  • \n
  • Fixed responsive issues in iThemes notifications that prevented notifications from being easily read on small screens.
  • \n
\n\n

4.2.13

\n\n
    \n
  • Fixed error for missing function in hide backend
  • \n
\n\n

4.2.12

\n\n
    \n
  • Fixed an error that could cause a 404 on the admin with hide-backend enabled.
  • \n
\n\n

4.2.11

\n\n
    \n
  • Fixed error on line 55 of class-itsec-four-oh-four.php that could occur under certain circumstances
  • \n
\n\n

4.2.10

\n\n
    \n
  • Don\'t filter hide backend hash until after schema redirect
  • \n
  • don\'t send file change email on first scan
  • \n
  • Fixed verbage when changing login URL
  • \n
  • Modified ban users rewrites for apache. Should work with proxy and if setenvif isn\'t enabled.
  • \n
  • Fixed get_module_path to prevent 404 errors on plugin assets
  • \n
  • Fixed misplaced parenthesis forcing computer to always display it isn\'t whitelisted
  • \n
  • Updated readme.txt
  • \n
\n\n

4.2.8

\n\n
    \n
  • Added call to settings import/export module (pro)
  • \n
  • Added button to restore default log location
  • \n
  • Don\'t automatically load front-end classes in dashboard pages
  • \n
  • Avoid errors on save if htaccess is completely empty
  • \n
  • Only register activation/deactivation/install hooks in admin
  • \n
  • Make sure temporary white-list is always available
  • \n
  • Improved check for white-listed IP during lockout
  • \n
  • Added ability to use constant to override server detection
  • \n
  • Don\'t remove extra line spaces in .htaccess
  • \n
  • Minor reformating and typo fixes
  • \n
  • Make sure front-end classes are available only when needed
  • \n
  • Fixed default types in file change settings
  • \n
  • Added file type exclusion to 404 settings
  • \n
  • Allow for Jetpack SSO to function with suspicious queries turned on
  • \n
  • Use WordPress\' PclZip for backup zip
  • \n
\n\n

4.2.6

\n\n
    \n
  • Make sure backup disables itself when other backup solutions are present
  • \n
  • Fix tweet link
  • \n
  • Minor fixes and cleanup
  • \n
  • Added call to two-factor module
  • \n
\n\n

4.2.4

\n\n
    \n
  • Consolidate white lists into one option
  • \n
  • Fix IP mask calculations
  • \n
  • Fix NGINX IP range blocking
  • \n
  • Update modules to use new logging
  • \n
  • Minor refactoring
  • \n
  • Add metabox for iThemes Sync
  • \n
  • Update jQuery version in tweaks
  • \n
  • Shortened file change array names to save space
  • \n
  • Fixed links in lockout emails
  • \n
  • Fixed IP mask calculations
  • \n
  • Add call to pro user-logging module
  • \n
  • Add ability to temporarily whitelist an IP address
  • \n
\n\n

4.2.2

\n\n
    \n
  • Don\'t allow empty file types in file change exclusions
  • \n
  • Add Sync integration for Away Mode
  • \n
  • Minor typo and other fixes
  • \n
  • Better cache clearing and formatting updates
  • \n
  • Make sure rewrite rules are updated on this update
  • \n
  • Remove extra (settings) items from admin bar menu (leave logs and important information)
  • \n
  • Add WP_CONTENT_DIR to system information on dashboard
  • \n
  • Move support nag to free version only and make sure it properly redirects
  • \n
  • Fix check for presence of BackupBuddy to work with BackupBuddy >=4.2.16.0
  • \n
  • Clean up details views on log pages
  • \n
  • Add username column to temp and lockouts tables
  • \n
  • Lockout usernames whether they exist or not
  • \n
  • Don\'t duplicate lockouts
  • \n
  • Fixed malformed lockout error on lockout message
  • \n
  • Don\'t display a host lockout when none exists
  • \n
  • Add Sync integration to release lockouts
  • \n
  • Improved reliability of brute force user lockouts
  • \n
\n\n

4.1.5

\n\n
    \n
  • Miscelaneous typos and other fixes
  • \n
  • Remove extra file lock on saving .htaccess, nginx.conf and wp-config.php. Only flock will be used in these operations
  • \n
  • Fixed a function not found error in the brute force module
  • \n
  • Improved content filtering in SSL so that more images and other content will link with appropriate protocol.
  • \n
  • Fixed hide backend in cases where a lockout has expired
  • \n
  • Miscelaneous typos and other fixes.
  • \n
\n\n

4.1.3

\n\n
    \n
  • Make sure \"remove write permissions\" works
  • \n
  • Better descriptions on white list
  • \n
  • Add pro table of contents if needed
  • \n
  • Make sure security admin bar item works
  • \n
  • Make sure lockout message only happens when needed
  • \n
  • Suppress errors on readlink calls
  • \n
  • Make sure class is present for permanent ban
  • \n
  • Make sure white list is an array
  • \n
  • Fix white listed IPs not working
  • \n
  • Log when Away-mode is triggered
  • \n
  • Make sure away mode file isn\'t accidently deleted
  • \n
  • Make sure away mode doesn\'t even allow access to the login form (as it didn\'t in 3.x)
  • \n
  • Enhance warnings on \"Change content directory\" settings
  • \n
  • Better descriptions on white lists
  • \n
  • Fixed XMLRPC label
  • \n
  • Better XMLRPC Dashboard status
  • \n
  • Don\'t allow logout action on wp-login.php with hide backend
  • \n
  • Better check for variable in SSL admin
  • \n
\n\n

4.0.27

\n\n
    \n
  • XMLRPC soft block should now work with WordPress mobile app
  • \n
  • Make sure uploads directory is only working in blog 1 in multisite
  • \n
  • Better checks for run method in module loader
  • \n
\n\n

4.0.25

\n\n
    \n
  • Make sure backup directory is present before trying to use it
  • \n
  • Make sure backup file method is respected on all backup operations
  • \n
  • Added ability to limit number of backups saved to disk
  • \n
  • Minor typo and other fixes
  • \n
  • Only load front-end classes as needed
  • \n
  • Add link to free support at .org forums
  • \n
  • Remove select(?ed) from suspicious query strings for 3.9 compatibility
  • \n
  • Fixed domain mapping issue (requires http://wordpress.org/plugins/wordpress-mu-domain-mapping/ domain mapping plugin)
  • \n
  • Remove array type errors on 404 pages
  • \n
  • Remove remaining create function calls
  • \n
  • Make sure logs directory is present before trying to use it
  • \n
  • Log a message when witelisted host triggers a lockout
  • \n
  • Don\'t create log files if they\'re not going to be used
  • \n
  • Add pro tab if pro modules need it
  • \n
  • Upgrade module loader to only load what is needed
  • \n
\n\n

4.0.23

\n\n
    \n
  • Fix sorting by count in 404 Logs
  • \n
  • Minor code cleanup
  • \n
  • Make sure all wp_enqueue_script dependencies are in proper format
  • \n
  • Reduce priority of hide backend init for better compatibility with other plugins
  • \n
  • SSL now logs users out when activating to prevent cookie conflicts
  • \n
  • When activating SSL Log out the user to prevent cookie conflicts
  • \n
  • Use LOCK_EX as a second file locking method on wp-config.php and .htaccess
  • \n
  • Minor code cleanup
  • \n
  • Make sure all wp_enqueue_script dependencies are in proper format
  • \n
\n\n

4.0.21

\n\n
    \n
  • Added ability to \"soft\" block XMLRPC to prevent pingback vulnerability while still allowing other access
  • \n
  • Updated \"Suspicious queary strings\" to not block plugin updates
  • \n
  • Update NGINX comment spam rewrite rules to better work with multi-site domain mapping
  • \n
  • Move 404 hook in hide backend from wp to wp_loaded
  • \n
  • Make sure super-admin role is maintained on multi-site when changing user id 1 and admin username at the same time
  • \n
  • Make sure all redirects for hide backend and ssl are 302, not 301
  • \n
  • Better resetting of SSL and disallow file editor on deactivation to account for more states
  • \n
  • Make sure hide backend works with registration
  • \n
  • Minor copy and other fixes
  • \n
  • Update nginx rewrite rule on comment spam when domain mapping is active
  • \n
  • Added the ability to disable file locking (old behavior)
  • \n
  • Better file lock release (try more than 1 method) before failing
  • \n
  • Don\'t automatically show file lock error on first attempt
  • \n
  • Added Spanish translation by Andrew Kurtis
  • \n
\n\n

4.0.19

\n\n
    \n
  • Clean up away mode to prevent lockouts on update or other points
  • \n
\n\n

4.0.18

\n\n
    \n
  • Make sure unset admin user field remains if the other setting has been fixed
  • \n
  • Removed admin user from settings table of contents
  • \n
  • Make sure array input is trimmed in file change module
  • \n
  • Correct input type on file change settings sanitization
  • \n
  • Use full URL on file change warning redirect to prevent invalid target
  • \n
  • Reduce erroneous hide backend change warnings
  • \n
  • When accessing htaccess or wpconfig make sure opening settings changes are 664 instead of 644 to reduce issues
  • \n
  • Update hackrepair.com\'s Agents blacklist
  • \n
  • Make sure global settings save button matches others
  • \n
  • Fixed link in locout email
  • \n
  • Email address settings retain end of line
  • \n
  • Sanitize email addresses on save and not just use
  • \n
  • Make sure whitelist is actually an array before trying to process
  • \n
  • Make sure rewrite rules show on dashboard when file writing isnt allowed
  • \n
  • Added extra information to dashboard server information to help troubleshooting
  • \n
\n\n

4.0.16

\n\n
    \n
  • Fixed bug preventing file change scanning from advancing when chunked
  • \n
  • Don\'t autoload file list on non-multisite installations
  • \n
  • Make sure away mode settings transfer from 3.x or disable away mode
  • \n
  • Better descriptions on save buttons
  • \n
  • Admin use \"Fix it\" Correctly goes to advanced page
  • \n
\n\n

4.0.14

\n\n
    \n
  • Execute permanent ban on the correct lockout count, not the next one
  • \n
  • Updated quick ban rules to match standard ban rules (will work with proxy)
  • \n
  • Fixed an NGINX rule that didn\'t actually block XMLRPC.php
  • \n
  • Updated rule order on ban users
  • \n
  • Fixed a bug that could prevent away from from turning off in certain time configurations (this resulted in the return to homepage on login)
  • \n
  • Updated some function doc
  • \n
\n\n

4.0.12

\n\n
    \n
  • Added \"Show intro\" button next to screen options to bring the intro modal back
  • \n
  • Added ability to use HTML in error messages
  • \n
  • Minor copy and other tweaks
  • \n
  • Private posts will now work with hide backend
  • \n
  • Added an option for custom login action that can bypass hide login
  • \n
  • Allow admin-ajax.php to bypass hide backend
  • \n
  • Added filters for external backup plugins to register with the dashboard
  • \n
  • Enable theme compatibility mode by default
  • \n
  • Miscellaneous copy and function doc fixes
  • \n
\n\n

4.0.10

\n\n
    \n
  • only save post meta for ssl when the value is true
  • \n
  • fixed missing admin user settings if only one part had been changed
  • \n
  • SSL Redirection working properly on front end. No more redirect errors
  • \n
  • hide backend will warn of the new url when saving
  • \n
  • hide backend will now email the notification email(s) when the login area has been moved
  • \n
  • Added BackupBuddy coupon
  • \n
  • Added ability to manually purge log table
  • \n
\n\n

4.0.8

\n\n
    \n
  • Removed error message that could happen on user creation with strong passwords enabled
  • \n
  • Moved strong password js later in execution cycle to prevent errors
  • \n
  • More hide backend tweaks to cover remaining white screen issues
  • \n
  • Removed option to enqueue a new version of jQuery unless it is needed
  • \n
\n\n

4.0.7

\n\n
    \n
  • Removed extra quotes that could appear in user agents
  • \n
  • Removed error message on login page when jQuery replace in use
  • \n
  • Don\'t use WordPress rewrites for hide backend, we now create our own rewrite rule
  • \n
  • All modules now use newer upgrade method
  • \n
  • Fix modal dismiss button on settings page
  • \n
  • Ban users rules now should work with proxies
  • \n
  • Saving settings will always generate and write rewrite rules if file writing is allowed
  • \n
  • Hide backend now works with multisite and subdirectory installs
  • \n
  • Make sure tables exist if manually updating from 3.x
  • \n
  • Move admin user settings to advanced page
  • \n
  • Make sure logout happens after processing admin user changes
  • \n
  • All modules now rewritten to call rules on build
  • \n
  • Rename backup and logs folders when wp-content is renamed
  • \n
  • Delay file scan by at least 2 minutes when saving settings
  • \n
  • Added \"theme compatibility\" mode to remove errors in hide backend caused by themes conflicting with the feature.
  • \n
  • Fixed history.txt (for iThemes customers)
  • \n
  • Moved upgrade to separate function for more seamless update
  • \n
  • Upgrade system rewritten for better functionality
  • \n
  • Make sure 404 doesn\'t fail if there is not a 404.php in the theme
  • \n
  • Make sure WordPress root URLs render correctly
  • \n
  • Filewrite now only builds rules on demand.
  • \n
  • Fixed dismiss button on intro modal for small screens
  • \n
  • General cleanup and typo fixing
  • \n
  • New .pot file with updated iThemes .pot file generator
  • \n
\n\n

4.0.5

\n\n
    \n
  • Fixed away mode not allowing PM times.
  • \n
  • Fixed general copy typos.
  • \n
  • Non super admins will no longer see the \"Security\" menu item in the admin bar on multisite.
  • \n
  • Update to iThemes\' icon-fonts library to account for ABSPATH set to \'\' or \'/\'.
  • \n
  • Fixed relative paths on Windows servers.
  • \n
  • Removed the pingback URL from the header if XML-RPC disabled.
  • \n
  • Added file locking to admin user operations to [hopefully] avoid duplicated users.
  • \n
  • 404 white list should transfer to global white list
  • \n
  • White list implementation working across all lockouts
  • \n
  • Add extra dismiss box to close welcome modal (fix for smaller screens)
  • \n
\n\n

4.0.2

\n\n
    \n
  • Fixed bug in conversion of wildcard ip (ie 131.2.1.*) to proper netmask. Should prevent 500 errors on sites.
  • \n
\n\n

4.0.1

\n\n
    \n
  • Fix for issue whereas a blank deny ip line could be entered into wp-config.php during update if banned users was used.
  • \n
\n\n

4.0.0

\n\n

Better WP Security is now iThemes Security.

\n\n

This release is a complete rewrite from the ground up. Special thanks to Cory Miller of iThemes.com and Chris Wiegman for realizing the vision for this plugin and how far we can go with it together.

\n\n
    \n
  • New Security Features

    \n\n
      \n
    • jQuery Scanner looks for vulnerable versions of jQuery in your theme and gives you the option to replace it with the current version of jQuery from WordPress core.
    • \n
    • Remove author archives for users without any posts. This helps prevent bots from finding users on your site.
    • \n
    • Force a unique nicename. This forces the user to choose a Nickname that is different from the login name which will be used for the author slug and other appropriate areas.
    • \n
    • Disable PHP execution in uploads.
    • \n
  • \n
  • Improvements

    \n\n
      \n
    • New UI with streamlined options and other settings
    • \n
    • Hide features not in use
    • \n
    • Smart feature selection for easier use
    • \n
    • Central logs location
    • \n
    • Ability to better customize notification and backup emails by sending to one or more addresses
    • \n
    • Ability to save files anywhere on the host
    • \n
    • Uses file-system locking for all critical operations
    • \n
    • Global settings require setting options only once
    • \n
    • Full BackupBuddy integration
    • \n
    • Voluntary tracking of when options are turned on or off via Google Analytics
    • \n
    • Hide backend no longer uses keys
    • \n
    • Whitelist IPs for all lockouts
    • \n
    • File change detection can run in batches for better resource usage
    • \n
    • Backups can ignore unneeded table data such as logs
    • \n
    • File change detection can ignore specified file types completely
    • \n
    • All saved files now go to uploads
    • \n
    • Ban users now has its own whitelist
    • \n
    • Away mode and nearly all other features tweaked for speed and reliability
    • \n
    • Module feature includes to accommodate future features as well as possibility of 3rd party features
    • \n
    • No more insufficient permissions errors on settings tabs
    • \n
  • \n
\n\n

3.6.6

\n\n
    \n
  • Added notice about upgrade
  • \n
\n\n

3.6.5

\n\n
    \n
  • Reintroduced InfiniteWP compatibility
  • \n
\n\n

3.6.4

\n\n
    \n
  • Updated readme
  • \n
  • Removed FooPlugins support box as iThemes begins integration of all support
  • \n
  • Removed InfiniteWP Compatibility
  • \n
\n\n

3.6.3

\n\n
    \n
  • Turned off iThemes Survey
  • \n
  • Updated iThemes email subscription box
  • \n
\n\n

3.6.2

\n\n
    \n
  • Fixed error message in above support widget when WordPress debug active.
  • \n
  • Fixed error when creating user in iThemes Exchange
  • \n
\n\n

3.6.1

\n\n
    \n
  • Fixed iThemes image path for case-sensitive
  • \n
  • Add iThemes ITSEC survey to help plan further updates
  • \n
  • Added Customizable email to support form
  • \n
\n\n

3.6

\n\n
    \n
  • Added WP Security Lock as a partner for sites that have already been compromised.
  • \n
  • Changed social information to iThemes
  • \n
  • Better domain support (Mark Boudreau)
  • \n
  • Add username to notification email (Andreas Geibert)
  • \n
  • Changed author to iThemes
  • \n
  • Added links to backup buddy and iThemes subscription
  • \n
  • Fixed inconsistent count in logs
  • \n
  • updated German translation by Rene Wolf
  • \n
\n\n

3.5.6

\n\n
    \n
  • Updated Bulgarian translation by Martin Halachev
  • \n
  • Removed all instances of the deprecated $wpdb->escape
  • \n
  • Fixed possible XSS issue (Github Issue #64 with patch from i0wn)
  • \n
  • Wrapped all wp_mail calls in function_exists checks as it no longer seems to be reliably available after plugins_loaded in WordPress 3.6
  • \n
  • Minor refactoring
  • \n
  • Added (.*) to Zues in hackrepair.com list to mitigate possible issues
  • \n
  • Typo correction on SSL options courtesy of Roy Randolph.
  • \n
  • Changed minimum version to 3.6
  • \n
\n\n

3.5.5

\n\n
    \n
  • Fixed error that prevented manual backups from executing
  • \n
  • Updated Turkish translation by Hakan Er
  • \n
  • Updated shield logo by Martin Halachev
  • \n
  • Minor fixes for strict warnings occuring when on PHP 5.4
  • \n
  • Fix for lstat error for files in the ithemes-security/backups/ directory
  • \n
  • Fixed an error that prevented manual filecheck
  • \n
\n\n

3.5.4

\n\n
    \n
  • Bulgarian translation by Nikolay Kolev of Gymnastics and Bodyweight Tutorials
  • \n
  • Chinese (Traditional) translation by Toine Cheung
  • \n
  • Fixed an XSS vulnerability in the logevent function. Fix by Richard Warren
  • \n
  • Updated Turkish by Hakan Er
  • \n
  • 404 Logs now only accessible via the link on the logs page (thank you Marc-Alexandre Montpas)
  • \n
  • Added .htaccess to protect saved backups (thank you Marc-Alexandre Montpas)
  • \n
  • Added extra sanitization when downloading host info from database (was sanitized on upload) (thank you Marc-Alexandre Montpas)
  • \n
  • Brazilian Portuguese translation by Rafael Funchal
  • \n
  • German translation by Rene Wolf
  • \n
  • Removed timezone from email lockout notifications (GitHub Issue #35)
  • \n
  • Better variable checking to prevent error messages
  • \n
  • Force user 0 when logging filechecking (GitHub Issue #7)
  • \n
  • CSS update for MP6 from shivapoudel
  • \n
  • Small tweak to prevent email notifications being sent when they shouldn\'t
  • \n
  • Cleaned up variable checking throughout to eliminate activation errors if php errors or WP_DEBUG is turned on
  • \n
  • Added further checks to reduce errors if file change log is invalid
  • \n
  • Memory should now display correctly in file change email
  • \n
  • Use maybe_unserialize instead of unserialize
  • \n
  • Added option to filter foreign charcters as part of filter suspicious query string
  • \n
  • Updated .pot file
  • \n
\n\n

3.5.3

\n\n
    \n
  • Simplified Chinese by 海滨
  • \n
  • Persian by Ibrahim Jafari
  • \n
  • Typo correction by ihuston
  • \n
  • Fixed Bit51 Google+ Link
  • \n
  • Better proxy support for ban users by kalvindukes
  • \n
  • Updated Spanish translation by Pablo Romero
  • \n
  • Updated Readme
  • \n
  • Updated .pot file
  • \n
\n\n

3.5.2

\n\n
    \n
  • Fixed error message that could appear when creating backups
  • \n
  • Correct Changelog not displaying correctly on WordPress.org after version 3.5.1
  • \n
\n\n

3.5.1

\n\n
    \n
  • Replaced Turkish language version lost in when tagging 3.5 in the WordPress.org repository
  • \n
  • Solved a conflict with other Bit51 plugins that use the common Bit51 class
  • \n
\n\n

3.5

\n\n
    \n
  • Integrate with Foo Plugins support system
  • \n
  • Fixed role translation call for Strong password enforcement
  • \n
  • Turkish by Hakan Er
  • \n
  • Random version number no longer strips unrelated GET variables for better compatibility
  • \n
  • Upgrading no longer automatically rewrites .htaccess and wp-config resulting in much improved reliability
  • \n
  • Fixed possible error when login fails and PHP is set to report errors to screen
  • \n
\n\n

3.4.10

\n\n
    \n
  • Replaced feed with standard WordPress feed
  • \n
  • Added better error checking for feed should Feedburner (or any other provider) kill it again
  • \n
\n\n

3.4.9

\n\n
    \n
  • More secure user query thanks to John Cave
  • \n
  • Greatly improved intl date handling by SCUDELLER Eric
  • \n
  • Added: French translation by SCUDELLER Eric
  • \n
  • Fixed: bug preventing Jetpack\'s Infinite Scroll from working with long URL protection
  • \n
\n\n

3.4.8

\n\n
    \n
  • Fixed error message that may occur if InfiniteWP is not installed.
  • \n
\n\n

3.4.7

\n\n
    \n
  • Added compatibility with InfiniteWP (http://infinitewp.com/)
  • \n
  • Updated default ban list as it was a little too restrictive for my taste
  • \n
  • Added export of 404 logs in .csv format (experimental)
  • \n
  • Add X-Forwarded-For ability to IP logging
  • \n
  • Minor bug and typo fixes
  • \n
\n\n

3.4.6

\n\n
    \n
  • Updated usability on ban lists
  • \n
  • Ban list threshold now triggered on hit and not 1 after
  • \n
\n\n

3.4.5

\n\n
    \n
  • Replace database override of awaymode with wp-config constant
  • \n
  • Filecheck override is now done through wp-config constant
  • \n
  • Added option to generate new secret key in hide backend
  • \n
  • Added Slovak translation by Erich Szabó
  • \n
  • Possible Google Maps fix for Apache
  • \n
  • Improved time handling for away mode, lockouts, logs, and more
  • \n
  • Added Tagalog translation by Hanne of â??http://pointen.dk/
  • \n
  • Various table updates from Michael Conover (@sidtheduck) at sidtheduck.com.
  • \n
  • Load plugin as global to reduce multiple executions
  • \n
  • Fixed rewrite rules for banned hosts
  • \n
  • Updated .pot file
  • \n
  • Other minor bugfixes and refactoring
  • \n
\n\n

3.4.4

\n\n
    \n
  • fixed input vulnerability found at http://packetstormsecurity.org/files/116317/ithemes-security-3.4.3-Cross-Site-Scripting.html
  • \n
  • fixed email address in footer information on backup screen
  • \n
  • file check exclusions should now work properly for individual files.
  • \n
  • One-click protection is now part of the install script.
  • \n
  • Won\'t log or even check 404 if feature is off.
  • \n
  • Don\'t clear cache during away check. Let\'s see instead if the transients â?¦
  • \n
  • Don\'t clear Supercache page cache on clear logs
  • \n
\n\n

3.4.3

\n\n
    \n
  • Only clear WP Supercachce when full page cache clearing is required
  • \n
\n\n

3.4.2

\n\n
    \n
  • Gravatars will no longer dissappear after changing user 1 id
  • \n
  • Better cache clearing when changing options
  • \n
  • Reworked away mode for better cache handling
  • \n
  • Subdirectory redirects should now work
  • \n
  • Fixed error message on logout
  • \n
  • Fixed password reset email link
  • \n
  • Will no longer duplicate IPs in ban list when entered via auto-ban
  • \n
  • Minor style updates
  • \n
  • Better namespacing in content.php
  • \n
  • Removed 38.0.0.0/8 from hackrepair.com blacklist
  • \n
  • remove yandex from hackrepair.com blacklist
  • \n
\n\n

3.4.1

\n\n
    \n
  • Clean all logs when checked
  • \n
  • Better logic for SSL checking
  • \n
  • Removed echo statement in Filecheck
  • \n
  • Highly compressed NGINX rules
  • \n
  • Added to \"Filter Suspicious Query String\" Logic
  • \n
\n\n

3.4

\n\n
    \n
  • Added Russian Translation
  • \n
  • Updated Hindi contributor to Outshine Solutions
  • \n
  • Prevented file change warning from displaying to non-admins
  • \n
  • Fixed error causing multiple backup emails
  • \n
  • Added ability to change ID of user with ID 1
  • \n
  • Fixed bug in plugin base url
  • \n
  • Added extra warnings and \"escape route\" for away mode
  • \n
  • Fixed hide backend issues since WordPress 3.4
  • \n
  • Lookup IP addresses directly from logs
  • \n
  • Fixed dbdelta errors on upgrade
  • \n
  • Updated form styles and appearance
  • \n
  • Added tabs to settings pages for increased usability
  • \n
  • Duplicate IP addresses won\'t be saved to banned list
  • \n
  • Wildcards now correctly save to banned list
  • \n
  • Suppress errors on filecheck arrays
  • \n
  • Fixed link to permalink settings in hide backend
  • \n
  • Added extra save buttons to system tweaks
  • \n
  • Added logging memory usage to filecheck
  • \n
  • Updated readme.txt
  • \n
  • Updated .pot
  • \n
\n\n

3.3

\n\n
    \n
  • More checks to ensure blank \"Deny from\" lines don\'t appear in .htaccess
  • \n
  • Added host and user agent blacklist by HackRepair.com
  • \n
  • Changed \"Options All -Indexes\" to \"Options -Indexes\" in .htaccess rules
  • \n
  • Added log view for all bad login attempts to view logs
  • \n
  • Always show .htaccess and wp-config.php changes in Dashboard
  • \n
  • Database backups no longer turn on automatically with one-click secure.
  • \n
  • Replaced unique key in database tables with primary key (tested in 3.4)
  • \n
\n\n

3.2.7

\n\n
    \n
  • Hindi translation by Outshine Solutions
  • \n
  • Spanish translation by Pablo Romero
  • \n
\n\n

3.2.6

\n\n
    \n
  • Lithuanian translation by Vincent G
  • \n
  • Fixed bug that could allow blank hosts in .htaccess for ban users
  • \n
  • Removed obsolete translations from before version 3.0
  • \n
  • Fixed various typos
  • \n
  • Numerous minor bug fixes
  • \n
  • Support moved back to WordPress.org forums
  • \n
\n\n

3.2.5

\n\n
    \n
  • Users can now specify email address for database backups
  • \n
  • Fixed bug throwing error when saving changes to existing users
  • \n
  • Corrected typo in intl hook
  • \n
  • List banned IPs on separate lines for readability
  • \n
  • Replaced all instances of Wordpress with WordPress
  • \n
  • Logs no longer show errors when records are cleared while viewing file change details
  • \n
  • File check will no longer automatically enable on servers with low RAM
  • \n
  • An extra database key has been introduced to easily disable file checking if it causes memory errors
  • \n
  • updated .pot
  • \n
  • Sanitize ALL server variables to prevent XSS vulnerability
  • \n
\n\n

3.2.4

\n\n
    \n
  • Added configurable email address for all email notifications
  • \n
  • Added ability to turn off dashboard warning for file check
  • \n
  • Password reset form will now require strong passwords if configured
  • \n
  • Ability to automatically blacklist an IP address after a specified number of lockouts
  • \n
  • Various minor bugfixes
  • \n
  • Turning off front-end ssl will stop ssl redirect loops in sites with an existing ssl implementation
  • \n
  • Updated language and explanations for various features
  • \n
  • Updated .pot
  • \n
\n\n

3.2.3

\n\n
    \n
  • Fixed date offset in log views
  • \n
  • Fixed site admin renaming for multisite users
  • \n
  • Fixed typos throughout
  • \n
  • Block concat MySQL command
  • \n
  • Deny access to readme.txt in protect files
  • \n
  • Fixed 404 table description
  • \n
  • Added domain name to email notifications
  • \n
  • Improved folder check login
  • \n
  • Suppress error messages for file-check operations
  • \n
\n\n

3.2.2

\n\n
    \n
  • Fixed 500 error when ban-users in enabled and IP or agents list are empty
  • \n
  • Fixed error that logged bad logins and 404s even when features were turned off
  • \n
\n\n

3.2.1

\n\n
    \n
  • Added choice to completely disable front-end SSL, enable per page, or enable site-wide
  • \n
  • Fixed login URL on new user email when new user is created by an existing user and hide backend is enabled
  • \n
  • Default all SSL to off for new installations
  • \n
  • Fixed strong password roles to work correctly
  • \n
  • A little 418 humor
  • \n
  • Updated .pot file
  • \n
  • Updated readme.txt
  • \n
\n\n

3.2

\n\n
    \n
  • File checker checks for changed files
  • \n
  • SSL for individual pages and posts
  • \n
  • One-click protection removes all .htaccess and wp-config.php options
  • \n
  • Option to not allow the plugin to write to .htaccess and wp-config.php
  • \n
  • Tweaked NGINX rewrite rules
  • \n
  • Moved SSL options to separate page for better usability
  • \n
  • Tables now display in native WordPress format
  • \n
  • Updated language throughout
  • \n
  • Tweaked Apache rewrite rules
  • \n
  • Various minor bug-fixes
  • \n
  • New installation video (see plugin homepage)
  • \n
  • Updated .pot file
  • \n
\n\n

3.1

\n\n
    \n
  • Significantly less resource usage
  • \n
  • Fixed white screen errors on load
  • \n
  • Fixed backup scheduling errors
  • \n
  • updated .pot file
  • \n
  • numerous minor bugfixes
  • \n
\n\n

3.0.12

\n\n
    \n
  • Displays log messages for all lockouts
  • \n
  • Scheduled backup times can be much more easily customized
  • \n
  • Setting wp-config.php and .htaccess to 0444 is now optional
  • \n
  • Updated .pot file
  • \n
  • Fixes to Apache/LiteSpeed rules and NGINX rules
  • \n
  • Numerous minor bugfixes
  • \n
\n\n

3.0.11

\n\n
    \n
  • Fixed bug with redundant backup caller in admin script
  • \n
\n\n

3.0.10

\n\n
    \n
  • Better LiteSpeed support
  • \n
  • Better database backup scheduling
  • \n
  • Better line spacing in .htaccess and wp-config.php
  • \n
  • WordPress 3.3.1 now required
  • \n
  • Status area now links to proper options and not top of tweaks page
  • \n
  • NGINX rule fixes
  • \n
  • admin-ajax.php now works even with hide backend
  • \n
  • error surpression on file operations
  • \n
  • update .pot
  • \n
  • Many language updates
  • \n
  • Better update script for multisite installs
  • \n
\n\n

3.0.9

\n\n
    \n
  • Fixed multi-site issue due to 3.0.8 update support fix
  • \n
  • Fixed awaymode settings issues
  • \n
\n\n

3.0.8

\n\n
    \n
  • Fixed improper php open tags
  • \n
  • Fixed erroneous PHP_EOL in nginx rules
  • \n
  • LiteSpeed support
  • \n
  • Better update support (not relying on activation hook anymore)
  • \n
  • Added abstract keyword to bit51.php
  • \n
  • Removed itsec references in bit51.php
  • \n
  • updated .pot file
  • \n
\n\n

3.0.7

\n\n
    \n
  • Changed method of end of line character technique for better cross-platform server compatibility
  • \n
  • Fixed 2 lines of <? in content.php replacing them with <?php
  • \n
\n\n

3.0.6

\n\n
    \n
  • Another fix to the \"line 2072\" error. This would be a lot easier with a Windows host as those are the only folks that seem to have the issue
  • \n
\n\n

3.0.5

\n\n
    \n
  • Changes to language on ban users page
  • \n
  • fixed \"line 2072\" error
  • \n
\n\n

3.0.4

\n\n
    \n
  • Changed IP banning to only accept * wildcards for ranges
  • \n
  • All host banning is not done via server configuration rather than php
  • \n
  • Numerous minor bugfixes
  • \n
\n\n

3.0.3

\n\n
    \n
  • Fixed bug in backup file path
  • \n
\n\n

3.0.2

\n\n
    \n
  • Fixed default options on saving
  • \n
  • Fixed setup options
  • \n
  • Other minor bugfixes
  • \n
\n\n

3.0.1

\n\n
    \n
  • Turned off flag that caused plugin settings to reset on update.
  • \n
\n\n

3.0

\n\n
    \n
  • Complete rewrite from the ground up
  • \n
  • Menu changes
  • \n
  • UI completely rewritten
  • \n
  • Now supports NGINX
  • \n
  • Scheduled database backups
  • \n
  • Added ability to block user agents in addition to hosts
  • \n
  • Numerous bugfixes
  • \n
\n\n

2.18

\n\n
    \n
  • Another attempt to fix the login error that started with 2.16. Changed logic for determining hide backend feature.
  • \n
\n\n

2.17

\n\n
    \n
  • Fixed an error that started with version 2.16 and prevented user from being able to login to the WordPress Dashboard.
  • \n
\n\n

2.16

\n\n
    \n
  • Fixed login link in new user email after breaking it in version 2.15
  • \n
\n\n

2.15

\n\n
    \n
  • Now loads all features at init to [hopefully] eliminate function not found errors
  • \n
\n\n

2.14

\n\n
    \n
  • Bugfixes from 2.13
  • \n
  • Removed randomized version for all logged-in users due to conflicts with admin-bar
  • \n
\n\n

2.13

\n\n
    \n
  • Bugfixes from 2.12
  • \n
\n\n

2.12

\n\n
    \n
  • Bugfixes from 2.11
  • \n
\n\n

2.11

\n\n
    \n
  • Fixed login-slug in new user email
  • \n
  • Fixed login slugs throughout site
  • \n
  • Remove reset-password options
  • \n
  • Improved rewrite rules (I would credit the author but I\'m afraid in a bone headed move I never wrote down the author with the notes)
  • \n
  • No longer loads pluggable
  • \n
\n\n

2.10

\n\n
    \n
  • Added Romanian translation by Luke Tyler
  • \n
\n\n

2.9

\n\n
    \n
  • readme.txt typo correction
  • \n
  • Added ability to whitelist hosts and ip addresses for intrusion detection
  • \n
  • intrusion detection now lists 404 errors found to help ease troubleshooting
  • \n
  • intrusion detection now records referrer to make tracking 404 errors easier
  • \n
  • corrected error when attempting to list multiple hosts when banning users
  • \n
\n\n

2.8

\n\n
    \n
  • German Translation by Stefan Meier
  • \n
\n\n

2.7.1

\n\n
    \n
  • Fixed a logic bug caused by changes in 2.7
  • \n
\n\n

2.7

\n\n
    \n
  • Fixed a bug preventing login lockouts from releasing.
  • \n
\n\n

2.6

\n\n
    \n
  • Added link to author of Italian Translation
  • \n
  • Fixed bug preventing the \"Ban Users\" function from working.
  • \n
\n\n

2.5

\n\n
    \n
  • Italian translation by Paolo Stivanin
  • \n
  • Support information moved to separate page for easy access
  • \n
  • Minor bug fixes
  • \n
\n\n

2.4

\n\n
    \n
  • Fixed a bug that generated a 404 error when clicking the reset password link that is emailed to users
  • \n
  • Added the option to customize the error message displayed for the login lockdown and intrusion detection lockouts
  • \n
\n\n

2.3

\n\n
    \n
  • Fixed various typos
  • \n
  • meta.php require_once now works correctly
  • \n
  • fixed bug in which .htaccess and wp-config.php were not reporting correct permissions
  • \n
  • Version is now hidden on admin pages except for multi-site
  • \n
\n\n

2.2

\n\n
    \n
  • Emergency fix restoring version number display for backend as previous fix made multi-site installations unusable
  • \n
\n\n

2.1

\n\n
    \n
  • Added options to customize intrusion detection to allow custom lockout duration and error threshold
  • \n
  • Time now correctly displays for intrusion detection lockouts and lockouts are released at the correct time
  • \n
  • Version number now hidden for all users without administrator role on backend
  • \n
  • Saved hide backend key to database to allow for easier use in other plugins that link directly to wp-login.php (still has to be manually entered in each affected plugin)
  • \n
  • Will now use the correct wp-config.php file if it is located outside of the directory used for the wordpress installation
  • \n
  • Empties APC cache (when installed) after changing wp-content directory preventing the necessity to restart Apache
  • \n
  • Fixed display bugs for login and intrusion lockout lists.
  • \n
\n\n

2.0

\n\n
    \n
  • Now supported by Bit51.com
  • \n
  • Removed blocking of http HEAD requests to improve integration with social networking APIs such as Twitter
  • \n
  • French translation by Claude ALTAYRAC
  • \n
\n\n

1.9

\n\n
    \n
  • Error message on lockouts more ambiguous
  • \n
  • Added email notification for intrusion detection lockouts
  • \n
  • Added Bahasa Indonesia (Indonesian) translation by Belajar SEO, Jasa SEO Indonesia
  • \n
\n\n

1.8.1

\n\n
    \n
  • Minor bug fixes
  • \n
\n\n

1.8

\n\n
    \n
  • Changed plugin description
  • \n
  • Improved translation support
  • \n
  • Added Turn off file editor in WordPress backend
  • \n
  • Improved accuracy of version checking when upgrading
  • \n
  • Ban Users now allows for more than just IP address, it has been renamed accordingly
  • \n
\n\n

1.7

\n\n
    \n
  • Renamed detect 404s section to intrusion detection to include upcoming features
  • \n
  • general spelling and grammer corrections
  • \n
  • Moved configuration to network dashboard for multisite installations
  • \n
  • Improved multisite support
  • \n
  • Warns if .htaccess or wp-config.php files aren\'t writable where needed
  • \n
  • Added icon to menu for easier identification
  • \n
  • Cleaned up and refined status information
  • \n
\n\n

1.6

\n\n
    \n
  • Fixed WLManifest link removal from header
  • \n
  • Added nofollow to all meta links
  • \n
  • \"Away Mode\" page now displays current time even when feature has not been enabled
  • \n
  • Status page now shows system information
  • \n
  • htaccess contents moved to status page
  • \n
  • fixed fatal activation error affecting php 5.2 users
  • \n
\n\n

1.5

\n\n
    \n
  • Meta links update correctly when changing backend links
  • \n
\n\n

1.4

\n\n
    \n
  • Fixed another issue that prevented the \"htaccess\" options page from displaying on some hosts
  • \n
\n\n

1.3

\n\n
    \n
  • Fixed an issue that prevented the \"htaccess\" options page from displaying on some hosts
  • \n
\n\n

1.2

\n\n
    \n
  • Finished support for localization
  • \n
\n\n

1.1

\n\n
    \n
  • Fixed bug that prevented cleaning old lockouts from database
  • \n
\n\n

1.0

\n\n
    \n
  • More code documentation
  • \n
  • Added warnings to changing content directory (until I can find a good way to update all existing content)
  • \n
  • Added options to clean old entries out of the database
  • \n
  • Fixed minor typos throughout
  • \n
\n\n

0.16.BETA

\n\n
    \n
  • Updated Homepage
  • \n
\n\n

0.15.BETA

\n\n
    \n
  • Fixed error for potential conflicts with old htaccess rules
  • \n
\n\n

0.14.BETA

\n\n
    \n
  • Removed hotlinking protection as it has been deemed to be outside the scope of this project
  • \n
  • Removed protocol from hide backend htaccess rules for consistency between http and https
  • \n
  • Combined all httaccess rules into single iThemes Security Block
  • \n
  • 404 check now ignores all logged in users
  • \n
\n\n

0.13.BETA

\n\n
    \n
  • Fixed a bug that could erase part of the wp-config file= 0.12.BETA =

  • \n
  • Changing content directories should no longer break sites that were upgraded from versions prior to 3.0

  • \n
\n\n

0.11.BETA

\n\n
    \n
  • Update to project homepage and other minor changes
  • \n
\n\n

0.10.BETA

\n\n
    \n
  • Removed WP version check from status page as it was redundant
  • \n
  • On uninstall wp-content location will be returned to default
  • \n
  • Fixed setup error
  • \n
  • Error checking now correctly identifies database table prefix
  • \n
  • Rendom version # generator now removes version number from scripts and css where it can (thanks to Dave for this)
  • \n
\n\n

0.9.BETA

\n\n
    \n
  • Bug fixes
  • \n
  • Internationalization improvements
  • \n
\n\n

0.8.BETA

\n\n
    \n
  • Fixed more critical bugs
  • \n
\n\n

0.7.BETA

\n\n
    \n
  • Fixed more critical bugs
  • \n
\n\n

0.6.BETA

\n\n
    \n
  • Fixed 2 critical bugs
  • \n
\n\n

0.5.BETA

\n\n
    \n
  • Major refactoring
  • \n
  • Streamline database tables
  • \n
  • Numerous bugfixes
  • \n
  • Code documentation and continued internationalization prep
  • \n
\n\n

0.4.BETA

\n\n
    \n
  • Changed the main menu name to \"Security\"
  • \n
  • Minimum requirement raised to 3.0.2
  • \n
  • Begun code documentation and intl prep
  • \n
\n\n

0.3.BETA

\n\n
    \n
  • Numerous bugfixes
  • \n
  • 404 check will NOT ban logged in users
  • \n
  • Lockdown rules no longer apply to logged in users
  • \n
\n\n

0.2.BETA

\n\n
    \n
  • Updated hidebe to handle standard logout links
  • \n
  • Numerous other bugfixes
  • \n
\n\n

0.1.BETA

\n\n
    \n
  • Finished status reporting
  • \n
  • Force SSL for admin pages (on supporting servers)
  • \n
  • Change wp-content path
  • \n
\n\n

ALPHA 11

\n\n
    \n
  • Added security checklist
  • \n
  • Added option to rename existing admin account
  • \n
  • Added option to change DB table prefix
  • \n
  • Various bugfixes
  • \n
\n\n

ALPHA 10

\n\n
    \n
  • Added more htaccess security options
  • \n
  • All htaccess options have been moved to their own page
  • \n
  • Added simple intrusion detection based on 404s
  • \n
  • Bugfixes and code optimization
  • \n
\n\n

ALPHA 9

\n\n
    \n
  • Deactivating now removes all htaccess areas and turns off associated options
  • \n
  • Enforce strong passwords for all users of a given minimum role
  • \n
  • Minor bug fixes
  • \n
\n\n

ALPHA 8

\n\n
    \n
  • Added various .htaccess options to strengthen file security
  • \n
  • Modified \"hide backend\" rewrite rules to work with multi-site
  • \n
  • Removed non-security hide-backend options
  • \n
  • Various bug fixes
  • \n
  • Renamed \"General\" options page to \"System Tweaks\" to avoid confusion
  • \n
  • Added more options to clean up WordPress headers
  • \n
  • Added options to remove plugin notifications from non-super admin users
  • \n
\n\n

ALPHA 7

\n\n
    \n
  • Continued code refactoring and bug-fixes
  • \n
  • Improved error handling and upgrade support
  • \n
  • Combined status and support options pages
  • \n
\n\n

ALPHA 6

\n\n
    \n
  • Added sanitization and validation to user input
  • \n
  • Added \"away mode\" to limit backend access by time
  • \n
  • Script no longer dies when logged out and instead returns to homepage.
  • \n
\n\n

ALPHA 5

\n\n
    \n
  • Complete refactor of the existing code
  • \n
  • Divided settings sections for better UX
  • \n
  • Added htaccess checks
  • \n
  • Redesigned options system for less database calls
  • \n
  • Reduced table usage from 4 to 2
  • \n
  • Added email notifications for login limiter
  • \n
  • Added complete access blocker for login limiter
  • \n
\n\n

ALPHA 4

\n\n
    \n
  • Added login limiter to limit invalid attempts
  • \n
  • various Bug fixes
  • \n
\n\n

ALPHA 3

\n\n
    \n
  • Corrected error display
  • \n
  • Added registration rules regardless of whether registrations are on or off.
  • \n
  • Added \"Display random version to non-admins\"
  • \n
  • Fixed rewrite rules on hide admin urls so going to the admin slug will work whether the user is logged in or not
  • \n
  • Added crude upgrade warning to warn of old (not so great) rewrite rules
  • \n
\n\n

ALPHA 2

\n\n
    \n
  • Optimized and commented code
  • \n
  • Added uninstall function
  • \n
  • Numerous fixes to bugs and logic
  • \n
\n\n

0.1 ALPHA

\n\n
    \n
  • First alpha release including simple feature set.
  • \n
','iThemes Security (formerly Better WP Security)','iThemes Security is the #1 WordPress Security Plugin','publish','open','closed','','better-wp-security','','','2017-03-23 20:37:40','2017-03-23 20:37:40','',0,'https://wordpress.org/plugins-wp/better-wp-security/',0,'plugin','',0), (182,314851,'2012-05-22 05:13:18','2012-05-22 05:13:18','\n

UpdraftPlus simplifies backups (and restoration). Backup into the cloud (Amazon S3 (or compatible), Dropbox, Google Drive, Rackspace Cloud, DreamObjects, FTP, Openstack Swift, UpdraftPlus Vault and email) and restore with a single click. Backups of files and database can have separate schedules. The paid version also backs up to Microsoft OneDrive, Microsoft Azure, Google Cloud Storage, SFTP, SCP, and WebDAV.

\n\n

Top-quality: UpdraftPlus is the highest-ranking backup plugin on wordpress.org, with over a million currently active installs. Widely tested and reliable, this is the world\'s #1 most popular and mostly highly rated scheduled backup plugin. Millions of backups completed!

\n\n

[vimeo https://vimeo.com/154870690]

\n\n
    \n
  • Supports WordPress backups to UpdraftPlus Vault, Amazon S3 (or compatible), Dropbox, Rackspace Cloud Files, Google Drive, Google Cloud Storage, DreamHost DreamObjects, FTP, OpenStack (Swift) and email. Also (via a paid add-on) backup to Microsoft OneDrive, Microsoft Azure, Google Cloud Storage, FTP over SSL, SFTP, SCP, and WebDAV (and compatible services, e.g. Yandex, Cubby, OwnCloud). Examples of S3-compatible providers: Cloudian, Connectria, Constant, Eucalyptus, Nifty, Nimbula, Cloudn.
  • \n
  • Quick restore (both file and database backups)
  • \n
  • Backup automatically on a repeating schedule
  • \n
  • Site duplicator/migrator: can copy sites, and (with add-on) duplicate them at new locations
  • \n
  • Restores and migrates backup sets from other backup plugins (Premium) (currently supported: BackWPUp, BackupWordPress, Simple Backup, WordPress Backup To Dropbox)
  • \n
  • Files and database backups can have separate schedules
  • \n
  • Remotely control your backups on every site from a single dashboard with UpdraftCentral - hosted for you or self-hosted
  • \n
  • Failed uploads are automatically resumed/retried
  • \n
  • Large sites can be split into multiple archives
  • \n
  • Select which files to backup (plugins, themes, content, other)
  • \n
  • Select which components of a backup to restore
  • \n
  • Download backup archives direct from your WordPress dashboard
  • \n
  • Database backups can be encrypted for security (Premium)
  • \n
  • Debug mode - full logging of the backup
  • \n
  • Internationalised (translations welcome - see below)
  • \n
  • Premium version and support available (including free remote backup storage) - https://updraftplus.com
  • \n
  • Supported on all current PHP versions (5.2 - 7.1)
  • \n
\n\n

From our YouTube channel, here\'s how to install:

\n\n

https://www.youtube.com/watch?v=7ReY7Z19h2I&rel=0

\n\n

Don\'t risk your backups on anything less

\n\n

Your WordPress backups are worth the same as your entire investment in your website. The day may come when you get hacked, or your hosting company does, or they go bust - without good backups, you lose everything. Do you really want to entrust all your work to a backup plugin with only a few thousand downloads, or that has no professional backup or support? Believe us - writing a reliable backup plugin that works consistently across the huge range of WordPress deployments is hard.

\n\n

UpdraftPlus Premium

\n\n

UpdraftPlus Backup/Restore is not crippled in any way - it is fully functional for backing up and restoring your site. What we do have is various extra features (including site cloning), and guaranteed support, available from our website, updraftplus.com. See a comparison of the free/Premium versions, here.

\n\n

If you need WordPress multisite backup compatibility (you\'ll know if you do), then you need UpdraftPlus Premium.

\n\n

UpdraftCentral - Remote control

\n\n

As well as controlling your backups from within WordPress, you can also control all your sites\' backups from a single dashboard, with UpdraftCentral. UpdraftCentral can control both free and Premium versions of UpdraftPlus, and comes in two versions:

\n\n\n\n

Professional / Enterprise support agreements available

\n\n

UpdraftPlus Backup/Restore is written by professional WordPress developers. If your site needs guaranteed support, then we are available. Just go to our shop.

\n\n

More premium plugins

\n\n

If you are in the market for other WordPress premium plugins (especially WooCommerce addons), then try our shop, here: https://www.simbahosting.co.uk/s3/shop/

\n\n

Are you multi-lingual? Can you translate?

\n\n

Are you able to translate UpdraftPlus into another language? Are you ready to help speakers of your language? UpdraftPlus Backup/Restore itself is ready and waiting - the only work needed is the translating. The translation process is easy, and web-based - go here for instructions: https://updraftplus.com/translate/. (Or if you\'re an expert WordPress translator already, then just pick out the .pot file from the wp-content/plugins/updraftplus/languages/ directory - if you scan for translatable strings manually, then you need to get these functions: _x(), __(), _e(), _ex(), log_e()).

\n\n

Many thanks to the existing translators - listed at: https://updraftplus.com/translate/

\n\n

Other support

\n\n

We hang out in the WordPress support forum for this plugin - https://wordpress.org/support/plugin/updraftplus - however, to save time so that we can spend it on development, please read the plugin\'s FAQs - https://updraftplus.com/support/frequently-asked-questions/ - before going there, and ensure that you have updated to the latest released version of UpdraftPlus backup/restore.

\n\n

License

\n\n
Copyright 2011-16 David Anderson\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\n
\n\n

Furthermore, reliance upon any non-English translation is at your own risk. UpdraftPlus can give no guarantees that translations from the original English are accurate.

\n\n

We recognise and thank the following for code and/or libraries used and/or modified under the terms of their open source licences; see: https://updraftplus.com/acknowledgements/

\n\n\n

Full instructions for installing this plugin.

\n\n\n

Please go here for the full FAQs - there are many more than below. Below are just a handful which particularly apply to the free wordpress.org version, or which bear repeating.

\n
\n
Can UpdraftPlus do (something)?
\n

Check out our full list of features, and our add-ons shop and free/Premium comparison table.

\n
I found a bug. What do I do?
\n

Note - this FAQ is for users of the free plugin. If you\'re a paying customer, then you should go here: https://updraftplus.com/support/ - please don\'t ask question in the WordPress.Org forum about purchases, as that\'s against their rules.

\n\n

Next, please make sure you read this FAQ through - it may already have the answer you need. If it does, then please consider a donation (e.g. buy our \"No Adverts\" add-on - https://updraftplus.com/shop/); it takes time to develop this plugin and FAQ.

\n\n

If it does not, then contact us (the forum is the best way)! This is a complex backup plugin and the only way we can ensure it\'s robust is to get bug reports and fix the problems that crop up. Please make sure you are using the latest version of the plugin, and that you include the version in your bug report - if you are not using the latest, then the first thing you will be asked to do is upgrade.

\n\n

Please include the backup log if you can find it (there are links to download logs on the UpdraftPlus settings page; or you may be emailed it; failing that, it is in the directory wp-content/updraft, so FTP in and look for it there). If you cannot find the log, then I may not be able to help so much, but you can try - include as much information as you can when reporting (PHP version, your blog\'s site, the error you saw and how you got to the page that caused it, any other relevant plugins you have installed, etcetera). http://pastebin.com is a good place to post the log.

\n\n

If you know where to find your PHP error logs (often a file called error_log, possibly in your wp-admin directory (check via FTP)), then that\'s even better (don\'t send multi-megabytes; just send the few lines that appear when you run a backup, if any).

\n\n

If you are a programmer and can debug and send a patch, then that\'s even better.

\n
Anything essential to know?
\n

After you have set up UpdraftPlus, you must check that your WordPress backups are taking place successfully. WordPress is a complex piece of software that runs in many situations. Don\'t wait until you need your backups before you find out that they never worked in the first place. Remember, there\'s no warranty and no guarantees - this is free software.

\n
My enormous website is hosted by a dirt-cheap provider who starve my account of resources, and UpdraftPlus runs out of time! Help! Please make UpdraftPlus deal with this situation so that I can save two dollars!
\n

UpdraftPlus supports resuming backup runs right from the beginning, so that it does not need to do everything in a single go; but this has limits. If your website is huge and your web hosting company gives your tiny resources on an over-loaded server, then go into the \"Expert settings\" and reduce the size at which zip files are split (versions 1.6.53 onwards). UpdraftPlus is known to successfully back up websites that run into the multiple-gigabytes on web servers that are not resource-starved.

\n
My site was hacked, and I have no backups! I thought UpdraftPlus was working! Can I kill you?
\n

No, there\'s no warranty or guarantee, etc. It\'s completely up to you to verify that UpdraftPlus is creating your backups correctly. If it doesn\'t then that\'s unfortunate, but this is a free plugin.

\n
I am not running the most recent version of UpdraftPlus. Should I upgrade?
\n

Yes; especially before you submit any support requests.

\n
Do you have any other free plugins?
\n

Thanks for asking; yes, we\'ve got a few. Check out this profile page - https://profiles.wordpress.org/DavidAnderson/ .

\n\n
\n\n\n

The UpdraftPlus backup blog is the best place to learn in more detail about any important changes.

\n\n

N.B. Paid versions of UpdraftPlus Backup / Restore have a version number which is 1 higher in the first digit, and has an extra component on the end, but the changelog below still applies. i.e. changes listed for 1.12.38 of the free version correspond to changes made in 2.12.38.x of the paid version.

\n\n

1.12.40 - 01/Apr/2017

\n\n
    \n
  • TWEAK: The in-page log file display had stopped continuously updating in 1.12.32
  • \n
  • FIX: In some circumstances, settings for the storage modules refactored in 1.12.37 could fail to show
  • \n
  • FIX: The free version of 1.12.37/38 in some circumstances could fail to complete Dropbox authentication
  • \n
\n\n

1.12.38 - 31/Mar/2017

\n\n
    \n
  • TWEAK: Dropbox API v2 call to de-authorise a token was failing
  • \n
  • FIX: Prevent a fatal error when attempting to use a backup method with no options set
  • \n
\n\n

1.12.37 - 31/Mar/2017

\n\n
    \n
  • FEATURE: Browse the contents of a backup from within your WordPress dashboard, and (with Premium) download individual files from it
  • \n
  • FIX: Fix an issue that could occasionally cause corruption of interrupted Dropbox backups. All Dropbox users are recommended to update asap.
  • \n
  • TWEAK: Remove debugging statement inadvertently left in 1.12.36
  • \n
  • TWEAK: Re-factored remote storage handlers via add-ons so that there was a cleaner and more consistent class hierarchy (preparation for future improvements). N.B. If you subsequently downgrade to an older version of UpdraftPlus, you will need to re-enter the settings for some remote storage options.
  • \n
  • TWEAK: List of checksum algorithms run over backups and logged now includes SHA256, and is filterable (SHA1 now considered deprecated)
  • \n
  • TWEAK: Allow chunked database encryption to try and resume in the event of an error
  • \n
  • TWEAK: Improve the premium/extension tab content
  • \n
  • TWEAK: Fix an issue whereby the UpdraftVault settings section could show a bogus problem with checking quota immediately after initial setup
  • \n
  • TWEAK: When requesting a download, work around buggy browser/server that continued after Connection: close
  • \n
  • TWEAK: Improve the UI experience when downloading a log file for display fails
  • \n
  • TWEAK: Prevent PHP notice if another plugin cancels a cron event
  • \n
  • TWEAK: Tweak semaphore handling and enhance logging
  • \n
\n\n

1.12.35 - 03/Mar/2017

\n\n
    \n
  • FIX: Fix an issue causing corruption of interrupted Dropbox backups. All Dropbox users are recommended to update asap.
  • \n
  • TWEAK: Fix a regression that prevented information about a faulty WP scheduler from being shown in recent releases (incomplete fix in 1.12.34)
  • \n
  • TWEAK: submit_button() needs to be available (possible UpdraftCentral fatal when requesting filesystem creds)
  • \n
  • TWEAK: Remove an ES5 JavaScript construct (incompatible with some old browsers)
  • \n
  • TWEAK: Fix incorrect variable name in routine that triggered WP automatic update check
  • \n
  • TWEAK: Fix a logic error whereby if Google Drive and Google Cloud were both in use and partially set up, a notice about completing the setup of Cloud could fail to show
  • \n
\n\n

1.12.34 - 23/Feb/2017

\n\n
    \n
  • FEATURE: Added the ability to allow other plugins to call an automatic backup more easily
  • \n
  • FEATURE: Added the ability to select which tables you want to backup when using the \'Backup now\' modal (Premium)
  • \n
  • FIX: Re-scanning a Dropbox that contained more than 1000 backup archives only fetched the first 1000 (this was previously awaiting on Dropbox fixing a related bug on their API servers).
  • \n
  • FIX: Escape table names to allow table names with hyphens in, when reading data
  • \n
  • FIX: The \"Advanced Tools\" tab was appearing with no contents if you chose an unwritable backup directory (regression)
  • \n
  • TRANSLATIONS: Remove bundled Swedish (sv), Spanish (Spain) (es_ES) and Czeck (?e?tina?, cs_CZ) translations, since these are now retrieved from wordpress.org.
  • \n
  • TWEAK: Prevent a JavaScript message being logged when loading UD infrastructure on non-UD settings pages (e.g. plugins that integrate to do backups via UD)
  • \n
  • TWEAK: Make it easier for other plugins to get/set UpdraftPlus options with less code
  • \n
  • TWEAK: Make sure that the get_plugins() function is available before using it when generating notices
  • \n
  • TWEAK: Add the updraftplus_exclude_directory and updraftplus_exclude_file filters allowing arbitrary backup exclusions from code
  • \n
  • TWEAK: Add a work-around for a bug in some server/Firefox combinations in handling of the Content-Length header with non-ASCII characters
  • \n
  • TWEAK: Cause an informational message to be shown in the Rackspace module if php-json is not enabled
  • \n
  • TWEAK: Fix a regression that prevented information about a faulty WP scheduler from being shown in recent releases
  • \n
  • TWEAK: Made alert regarding plupload\'s \'HTTP -200\' error, when upload of file fails, more informative.
  • \n
  • TWEAK: Internal changes to the remote storage method API (future improvements which build on these are planned)
  • \n
\n\n

1.12.32 - 26/Jan/2017

\n\n
    \n
  • FEATURE: Add UpdraftCentral (https://updraftcentral.com) UpdraftVault listener
  • \n
  • FEATURE: Encryption and decryption is now chunked, meaning that large databases of any size can be encrypted without being prevented by memory limits
  • \n
  • FIX: Fix a bug whereby if a backup set containing a manual \"more files\" element was imported via a remote scan, then an error would show concerning it when attempting to restore.
  • \n
  • FIX: On certain combinations of changing the \"more files to back up\" settings, these changes might not be reflected in the \"Backup Now\" dialog without a page reload
  • \n
  • FIX: Remove a PHP 5.5+-only construction that crept into 1.12.31
  • \n
  • TWEAK: Allow UpdraftCentral command classes to provide commands via the __call method
  • \n
  • TWEAK: Move the existing backups table into the templating system
  • \n
  • TWEAK: When trying to restore before cleaning up a previous restore, the detailed error message shown needed tweaking
  • \n
  • TWEAK: Some refactoring of the dashboard JavaScript, to abstract/harmonise all AJAX calls
  • \n
  • TWEAK: Removed the triple click and replaced it with standard double click
  • \n
  • TWEAK: Some refactoring of the UpdraftCentral command interface, to facilitate reduction of duplicated dashboard control code
  • \n
  • TWEAK: One less HTTP round-trip when deleting from the dashboard
  • \n
  • TWEAK: Updated advanced tools to allow UpdraftCentral to use wipe settings and export / import
  • \n
  • TWEAK: Revamped the \'Premium / Extensions\' tab in the free version
  • \n
  • TWEAK: Work around HTTP 400 error from Dropbox on servers with several-year old version of curl, caused by bad interaction between curl and Dropbox over a specific header
  • \n
  • TWEAK: Add a notice advising of WP-Optimize (https://wordpress.org/plugins/wp-optimize/) to the available notices
  • \n
  • TWEAK: Prevent an unwanted PHP log notice when using Google Drive
  • \n
  • TWEAK: More file directories are now added using a directory browser
  • \n
  • TWEAK: Update plugin update checker library (paid versions) to version 3.1, which fixes some PHP 7 issues
  • \n
\n\n

1.12.30 - 23/Dec/2016

\n\n
    \n
  • FIX: Fix a Dropbox APIv2 issue where paths containing certain characters were incorrectly being encoded
  • \n
  • FEATURE: Add UpdraftCentral (https://updraftcentral.com) comment-control and advanced tools listeners
  • \n
  • TWEAK: Starting an operation to retrieve a remote backup from UpdraftCentral succeeded, but gave a UI error in UC when doing so
  • \n
  • TWEAK: Fix a Dropbox APIv2 issue where Team storage displayed an incorrect value
  • \n
  • TWEAK: Support for the new AWS S3 Canada Central 1 and London regions
  • \n
  • TWEAK: Some re-factoring of the settings page output code for easier maintenance
  • \n
  • TWEAK: Some re-factoring of the notices code, to allow re-use in other projects
  • \n
  • TWEAK: Make sure that a UpdraftCentral_Commands class is available before loading any external command classes, so that they can rely on its presence
  • \n
\n\n

1.12.29 - 22/Nov/2016

\n\n
    \n
  • FIX: Fix a PHP error in the notices code (regression in 1.12.28)
  • \n
  • FIX: Manual database search and replace now outputs logged operation information (regression in 1.12.28)
  • \n
\n\n

1.12.28 - 21/Nov/2016

\n\n
    \n
  • TWEAK: The UPDRAFTPLUS_DROPBOX_API_V1 constant will be ignored from 28th June 2017 (when Dropbox turn off that API entirely)
  • \n
  • TWEAK: A new internal infrastructure for handling user-visible notices in the dashboard and reports
  • \n
  • TWEAK: Small layout tweak to fix a malformatted error message
  • \n
\n\n

1.12.27 - 17/Nov/2016

\n\n
    \n
  • FIX: The WP 4.7 compatibility tweak in 1.12.26 introduced a regression that caused the question to appear when unwanted on other WP versions.
  • \n
\n\n

1.12.26 - 16/Nov/2016

\n\n
    \n
  • COMPATIBILITY: On WordPress 4.7, the behaviour of shiny updates has changed, necessitating a small tweak to prevent an unwanted \"do you really want to move away from this page?\" question from the browser on the updates/plugins pages in some situations.
  • \n
  • TWEAK: When the Dropbox quota state seems to imply that the next upload will fail, do not register this as an error before it actually happens.
  • \n
  • TWEAK: When an error occurs when re-scanning Dropbox, make sure the error details are logged in the browser developer console
  • \n
  • FIX: Fix ability to rescan a Dropbox sub-folder (regression in 1.12.25)
  • \n
\n\n

1.12.25 - 12/Nov/2016

\n\n
    \n
  • COMPATIBILITY: Dropbox APIv2 capability (see: https://updraftplus.com/dropbox-api-version-1-deprecation/) in 1.12.24 was not complete - this release now avoids all APIv1 use
  • \n
  • TWEAK: The \'site information\' advanced tool now contains information on loaded Apache modules.
  • \n
  • TWEAK: Small layout tweak to fix a malformatted error message
  • \n
\n\n

1.12.24 - 08/Nov/2016

\n\n
    \n
  • FIX: When importing a single site into a multisite install as a new site (experimental feature), the main multisite URL was being incorrectly adjusted
  • \n
  • FIX: Fix a bug with remote scans not returning more database archives correctly
  • \n
  • COMPATIBILITY: Add Dropbox APIv2 capability (see: https://updraftplus.com/dropbox-api-version-1-deprecation/)
  • \n
  • FEATURE: Look for mysqldump.exe in likely locations on Windows, for faster database backups
  • \n
  • TWEAK: UpdraftVault, Amazon S3 and DreamObjects downloaders have been rewritten without race conditions
  • \n
  • TWEAK: Introduce an abstraction layer for reporting on the status of restore operations
  • \n
  • TWEAK: Deleting remote backup sets from the dashboard is now batched for sets with many archives, to avoid potential PHP timeouts on slow remote services
  • \n
  • TWEAK: Updated bundled phpseclib library to version 1.0.4
  • \n
  • TWEAK: Introduce an internal templating layer, for improved long-term maintainability
  • \n
  • TWEAK: When importing a single site into a multisite install as a new site, remove any cron entries for backup runs on the new site
  • \n
  • TWEAK: Fix an inconsequential off-by-one in the chunked downloading algorithm so that the behaviour is as documented
  • \n
  • TWEAK: Improve accessibility of Labelauty components with keyboard navigation
  • \n
  • TWEAK: Tweak the algorithm for scheduling resumptions, to improve efficiency in the (once) seen corner-case of PHP usually having a predictable run-time, but with an instance of a much longer run-time
  • \n
  • TWEAK: Slightly more logging when an S3 error condition occurs, allowing easier diagnosis
  • \n
  • TWEAK: Add support for the new US East (Ohio) region to S3
  • \n
  • TWEAK: OneDrive authentication can now detect a block by CloudFlare, and direct the user accordingly
  • \n
  • TWEAK: If there are remote storage methods needing authentication, then pop up a box showing this to the user - so that it does not rely on them spotting the dashboard notice or having read the instructions
  • \n
\n\n

1.12.23 - 04/Oct/2016

\n\n
    \n
  • FIX: Fix a bug in URL replacement when cloning from a flat configuration to a WP-in-own-directory configuration
  • \n
  • FIX: The button for testing connections to extra databases added to the backup was not working
  • \n
  • FIX: Direct dashboard logins from UpdraftCentral were not working on WP 3.2 - 3.4 sites
  • \n
  • COMPATIBILITY: Will upgrade Dropbox OAuthv1 tokens to OAuthv2 (to handle Dropbox API v1 deprecation in summer 2017)
  • \n
  • TWEAK: Deleting an already-deleted backup set from UpdraftCentral now produces a more informative error message
  • \n
  • TWEAK: When restoring only a single site out of a multisite install, store less data in memory on irrelevant tables, and do less logging when skipping tables
  • \n
  • TWEAK: Update bundled UDRPC library to version 1.4.9 - fixes a bug with the admin URL used for contact via UpdraftCentral on multisite
  • \n
  • TWEAK: Explicitly store the UpdraftPlus object as a global
  • \n
  • TWEAK: Prevent a pointless \"unsaved settings\" warning if settings were changed then the \'wipe\' button used
  • \n
  • TWEAK: When using the Importer add-on, allow backups from WordPress Backup to Dropbox to be wrapped in an extra \'wpb2d\' folder
  • \n
  • TWEAK: Strengthen protections against resuming an already-complete backup after migration on servers with misbehaving WP schedulers
  • \n
  • TWEAK: Touch already-existing but incomplete files being downloaded, to reduce possibility of two processes downloading at once
  • \n
  • TWEAK: Add a link to more information about UpdraftCentral in the advanced tool
  • \n
  • TWEAK: The UPDRAFTPLUS_MYSQLDUMP_EXECUTABLE define can now be used on Windows (you will need to define a path to take advantage of it)
  • \n
  • TWEAK: Introduce the UPDRAFTPLUS_SKIP_CPANEL_QUOTA_CHECK constant to allow skipping of trying to check cPanel quota
  • \n
\n\n

1.12.21 - 08/Sep/2016

\n\n
    \n
  • FIX: Fix a bug in the updater code that caused updates checks to be run more often than intended
  • \n
  • TWEAK: Improve/tidy layout of the \"Advanced Tools\" tab
  • \n
  • TWEAK: Make it more obvious in the file uploading widget when an upload is 100% complete
  • \n
  • TWEAK: Prevent spurious OneDrive message being shown when re-scanning remote storage and not using OneDrive
  • \n
  • TWEAK: OneDrive storage now uses the refresh token yes frequently (less HTTP calls)
  • \n
\n\n

1.12.20 - 29/Aug/2016

\n\n
    \n
  • FEATURE: OpenStack uploads (including Rackspace Cloudfiles) can now adapt their upload rate to network conditions, leading to much faster uploads on many networks
  • \n
  • FEATURE: Updated the OneDrive configuration to make it easier to setup. A custom Microsoft Developer App is no longer required
  • \n
  • FEATURE: The \"Advanced Tools\" tab now has tools for importing and exporting settings
  • \n
  • TWEAK: Honour the \"do not verify SSL certificates\" setting with WebDAV storage on PHP 5.6+
  • \n
  • TWEAK: When there\'s a connection problem to updraftplus.com when claiming licences, provide more error info and guidance
  • \n
  • TWEAK: In particular circumstances (malfunctioning WP scheduler, expert option to keep backups after despatching remotely selected (non-default)), zips could be sent to Google Drive more than once
  • \n
  • TWEAK: Tweak issue in 1.12.18 with automatic backup pop-up appearing under another pop-up if you update themes via the themes pop-up (instead of the direct link)
  • \n
  • TWEAK: When rescanning remote storage, don\'t log a potentially confusing message for an unconfigured storage module
  • \n
  • TWEAK: Show a visual indicator and advice if an invalid hostname is entered for WebDAV
  • \n
  • TWEAK: Removed the no-longer-useful debug backup buttons
  • \n
  • TWEAK: Add a message when generating a key on a server without php-openssl, with information about how to make it faster
  • \n
  • TWEAK: Prevent PHP installs which print PHP logging information to the browser from messing up the WebDAV settings in some situations
  • \n
  • TWEAK: If PHP reports the current memory limit as a non-positive integer, do not display any message to the user about a low memory limit
  • \n
  • TWEAK: If the user deletes their Google API project, then show clearer information on what to do when a backup fails
  • \n
  • TWEAK: If you changed your OneDrive client ID, UD will now more clearly advise you of the need to re-authenticate
  • \n
  • COMPATABILITY: Updated the OneDrive authentication procedure to make it compatible with the new Microsoft Developer Apps
  • \n
\n\n

1.12.18 - 03/Aug/2016

\n\n
    \n
  • TWEAK: When Microsoft OneDrive quota is insufficient, the advisory message from UD now includes the available quota (as well as the used)
  • \n
  • FEATURE: The Azure add-on/Premium now supports new-style Azure storage, as well as classic
  • \n
  • FEATURE: The Rackspace enhanced wizard can now be accessed via UpdraftCentral
  • \n
  • TWEAK: Fix a regression in recent WP versions which caused remote keys to not always be retained after a migration
  • \n
  • TWEAK: When logging Azure upload locations, include the account name
  • \n
  • TWEAK: Make the entering of settings for WebDAV more user-friendly
  • \n
  • TWEAK: Update bundled select2 to version 4.0.3
  • \n
  • TWEAK: Clarify error message when a \'more files\' location is not found
  • \n
  • TWEAK: Add redirection_404 to the list of tables likely to be large, and not needing search/replacing
  • \n
  • COMPATIBILITY: Compatible with WP 4.6 (previous paid versions have incompatibilities with the changes made to \'shiny updates/installs/deletes\' in WP 4.6)
  • \n
\n\n

1.12.17 - 19/Jul/2016

\n\n
    \n
  • FIX: Previous free release included empty translation files
  • \n
  • TWEAK: Add \'snapshots\' to the default list of directories to exclude from the uploads backup (is used by another backup plugin - avoid backups-of-backups)
  • \n
  • TWEAK: Add et_bloom_stats to the list of tables likely to be large, and not needing search/replacing
  • \n
\n\n

1.12.16 - 07/Jul/2016

\n\n
    \n
  • TWEAK: Log FTP progress upload less often (slight resource usage improvement)
  • \n
  • TWEAK: For multi-archive backup sets, the HTML title attribute of download buttons had unnecessary duplicated information
  • \n
  • TWEAK: Improve OneDrive performance by cacheing directory listings
  • \n
  • TWEAK: Detect and handle a case in which OneDrive incorrectly reports a file as incompletely uploaded
  • \n
  • FIX: OneDrive scanning of large directories for existing backup sets was only detecting the first 200 files
  • \n
\n\n

1.12.15 - 06/Jul/2016

\n\n
    \n
  • TWEAK: S3 now supports the new Mumbai region
  • \n
  • TWEAK: If the user enters an AWS/S3 access key that looks prima facie invalid, then mention this in the error output
  • \n
  • TWEAK: Make the message that the user is shown in the case of no network connectivity to updraftplus.com when connecting for updates (paid versions) clearer
  • \n
  • TWEAK: Extend cacheing of enumeration of uploads that was introduced in 1.11.1 to other data in wp-content also
  • \n
  • TWEAK: Avoid fatal error in Migrator if running via WP-CLI with the USER environment variable unset
  • \n
  • TWEAK: When DB_CHARSET is defined but empty, treat it the same as if undefined
  • \n
  • TWEAK: Add updraftplus_remotesend_udrpc_object_obtained action hook, allowing customisation of HTTP transport options for remote sending
  • \n
  • TWEAK: Introduced new UPDRAFTPLUS_RESTORE_ALL_SETTINGS constant to assist in complicated load-balancing setups with duplicate install on the same URL
  • \n
  • TWEAK: Update bundled tripleclick script to fix bug in teardown handler
  • \n
  • TWEAK: Update bundled UDRPC library to version 1.4.8
  • \n
  • TWEAK: Patch Labelauty to be friendly to screen-readers
  • \n
  • TWEAK: Suppress the UD updates check on paid versions that immediately follows a WP automatic core security update
  • \n
  • TWEAK: Handle missing UpdraftCentral command classes more elegantly
  • \n
  • FEATURE: Endpoint handlers for forthcoming updates and user mangement features in UpdraftCentral
  • \n
  • TRANSLATIONS: Remove bundled German (de_DE) translation, since this is now retrieved from wordpress.org
  • \n
  • FIX: Fix inaccurate reporting of the current Vault quota usage in the report email
  • \n
  • FIX: Fix logic errors in processing return codes when no direct MySQL/MySQLi connection was possible in restoring that could cause UpdraftPlus to wrongly conclude that restoring was not possible
  • \n
\n\n

1.12.13 - 07/Jun/2016

\n\n
    \n
  • TWEAK: Default the S3 secret key field type to \'password\' instead of \'text\'
  • \n
  • TWEAK: Do more checks for active output buffers prior to spooling files to the browser (to prevent memory overflows)
  • \n
  • TWEAK: Update bundled UDRPC library to version 1.4.7
  • \n
\n\n

1.12.12 - 25/May/2016

\n\n
    \n
  • FIX: When restoring a plugins backup on multisite, old plugins were inactivated but not always removed
  • \n
  • TWEAK: Use POST instead of GET for OneDrive token requests - some new accounts seem to have begun requiring this
  • \n
  • TWEAK: When backing up user-configured directories, don\'t log confusing/misleading messages for unzippable directory symlinks
  • \n
  • TRANSLATIONS: wordpress.org is now serving up translations for fr_FR, pt_PT and ro_RO, so these can/have been removed from the plugin zip (1.2Mb released)
  • \n
\n\n

1.12.11 - 19/May/2016

\n\n
    \n
  • FIX: 1.12.8 (paid versions only) contained a regression that prevented S3 access if the user had a custom policy that did not include location permission. This fix means that the work-around of adding that permission to the policy is no longer required.
  • \n
  • FIX: Fix a regression in 1.12.8 that prevented non-existent DreamObjects buckets from being created
  • \n
  • FIX: Fix inaccurate reporting of the current Vault quota usage in the report email since 1.12.8
  • \n
  • FIX: The short-lived 1.12.10 had a duplicate copy of the plugin in the release zip
  • \n
  • TWEAK: Detect a particular obscure PHP bug in some versions that is triggered by the Amazon S3 SDK, and automatically switch to the older SDK if it is hit (N.B. Not compatible with Frankfurt region).
  • \n
  • TWEAK: Audit/update all use of wp_remote_ functions to reflect API changes in the upcoming WP 4.6
  • \n
  • TWEAK: Tweak to the settings saving, to avoid a false-positive trigger of a particular rule found in some mod_security installs
  • \n
  • TWEAK Update bundled UDRPC library to version 1.4.5
  • \n
\n\n

1.12.9 - 11/May/2016

\n\n
    \n
  • FIX: In yesterday\'s 1.12.8, some previously accessible Amazon S3 buckets could no longer be accessed
  • \n
\n\n

1.12.8 - 10/May/2016

\n\n
    \n
  • FEATURE: Support S3\'s \"infrequent access\" storage class (Premium)
  • \n
  • FIX: Fix bug in SFTP uploading algorithm that would corrupt archives if a resumption was necessary
  • \n
  • TWEAK: Add information on UpdraftVault quota to reporting emails
  • \n
  • TWEAK: Update the bundled AWS library to version 2.8.30
  • \n
  • TWEAK: Update the bundled Symfony library to version 2.8.5
  • \n
  • TWEAK: Update the bundled phpseclib library to version 1.0.2 (which includes a fix for SFTP on PHP 5.3)
  • \n
  • TWEAK: Improve the overlapping runs detection when writing out individual database tables, for helping servers with huge tables without mysqldump
  • \n
  • TWEAK: Prevent restoration from replacing the local record of keys of remote sites to send backups to (Migrator add-on)
  • \n
  • TWEAK: Re-order the classes in class-zip.php, to help misbehaving XCache (and perhaps other opcode cache) instances
  • \n
  • TWEAK: Do not include transient update availability data in the backup (which will be immediately out-of-date)
  • \n
  • TWEAK: Updated the URLs of various S3-compatible providers to use SSL, where available
  • \n
  • TWEAK: Added an endpoint drop-down for Dreamobjects, using their new/updated endpoint (currently only one choice, but they will have more in future)
  • \n
  • TWEAK: Suppress a log message from UpdraftVault when that message is not in use
  • \n
  • TWEAK: When key creation times out in the Migrator, display the error message in the UI
  • \n
\n\n

1.12.6 - 30/Apr/2016

\n\n
    \n
  • FIX: UpdraftVault quota usage was being shown incorrectly in recounts on sites connected to accounts backing up multiple sites
  • \n
  • TWEAK: In accordance with Barracuda\'s previous announcement, copy.com no longer exists - https://techlib.barracuda.com/CudaDrive/EOL
  • \n
  • TWEAK: Allow particular log lines to be cancelled
  • \n
  • TWEAK: Explicitly set the separator when calling http_build_query(), to prevent problems with non-default configurations
  • \n
  • TWEAK: Tweak the algorithm for sending data to a remote UD installation to cope with eventually-consistent filesystems that are temporarily inconsistent
  • \n
  • TWEAK: Make the automatic backups advert prettier
  • \n
  • TWEAK: Detect and combine file and database backups running on different schedules which coincide
  • \n
  • TWEAK: Update bundled Select2 to version 4.0.2
  • \n
  • TWEAK: Update UDRPC library to version 1.4.3
  • \n
\n\n

Older changes are found in the changelog.txt file in the plugin directory.

','UpdraftPlus WordPress Backup Plugin','Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).','publish','open','closed','','updraftplus','','','2017-04-02 00:05:34','2017-04-02 00:05:34','',0,'https://wordpress.org/plugins-wp/updraftplus/',0,'plugin','',0), (183,7652789,'2011-06-07 12:30:58','2011-06-07 12:30:58','\n
\n

Duplicator gives WordPress administrators the ability to migrate, copy or clone a site from one location to another. The plugin also serves as a simple backup utility. Duplicator supports both serialized and base64 serialized string replacement. If you need to move WordPress or backup WordPress this plugin can help simplify the process.

\n
\n\n

For complete details visit snapcreek.com.

\n\n

Quick Video Demo

\n\n

http://www.youtube.com/watch?v=yZ7pHmR9JC8

\n\n

Overview

\n\n

Duplicator enables you to:

\n\n
    \n
  • Move a site between domains or hosts
  • \n
  • Pull down a live site to localhost for development
  • \n
  • Manually back up a site
  • \n
  • Duplicate a live site to a staging area or vice versa
  • \n
  • Bundle up an entire WordPress site for easy reuse or distribution
  • \n
\n\n

Move and Backup

\n\n

Duplicator creates a package that bundles all the site\'s plugins, themes, content, database and WordPress core files into a simple zip file called a package. This package can then be used to easily restore a site to any location you wish. Move on the same server, across servers and pretty much any location a WordPress site can be hosted.

\n\n

Improve Your Workflow

\n\n

Duplicator can also eliminate repeat site configuration work if you have a favorite theme, set of plugins or content you install on all sites. Instead of manually configuring these over and over, with Duplicator you just need to configure a single site which you then bundle up into a package. From that point forward, you can install the package in different locations to instantly create pre-configured sites! Web designers/developers can even create a package collection of the various starter sites they regularly install to save them setup time.

\n\n

Duplicator Pro

\n\n

Duplicator Pro takes Duplicator to the next level with features you\'ll really appreciate, such as:

\n\n
    \n
  • Scheduled backups
  • \n
  • Cloud Storage to Dropbox, Google Drive, Amazon S3 and FTP
  • \n
  • MultiThreaded to support larger web sites & databases
  • \n
  • Multisite (MU) support
  • \n
  • Database creation in the installer
  • \n
  • Connect to cPanel directly from installer
  • \n
  • Email notifications
  • \n
  • Professional support
  • \n
  • ... and much more!
  • \n
\n\n

Check out Duplicator Pro today!

\n\n

Please Note

\n\n

The underlying logic to backup WordPress, move WordPress and transfer WordPress are very complex. It\'s impossible to know how each system is setup; this is why your feedback is important to us. Thanks for helping us to make WordPress the best blogging platform in the world.

\n\n

Disclaimer

\n\n

This plugin does require some technical knowledge. If you plan to move WordPress or backup WordPress please use it at your own risk and do not forget to back up your files and databases beforehand. If you\'re new to WordPress or have a very limited technical background you may consider seeking out professional help your first time using the plugin. If you need to move or backup WordPress and would like additional help please visit the Duplicator resources section .

\n\n

Active Contributors

\n\n

  • Paal Joachim Romdahl (Training)
  • \n
  • Hans-M. Herbrand (German)
  • \n
  • Nicolas Richer (French)
  • \n\n\n
      \n
    1. Upload duplicator folder to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the \'Plugins\' menu in WordPress
    4. \n
    5. Click on the Duplicator link from the main menu
    6. \n
    7. Check out the help by clicking the help icon and create your first package.
    8. \n
    \n\n

    The Duplicator requires php 5.3 or higher.

    \n\n\n
    \n
    Does Duplicator have a knowledge base or FAQ?
    \n

    Yes. Please see all documents at snapcreek.com.

    \n
    Are there any videos I can watch?
    \n

    Yes. Please see the video section on the FAQ.

    \n
    Is this plugin compatible with WordPress Multi-Site (MU)?
    \n

    No. However the Pro version does have minor support for MU

    \n
    Where can I get more help and support for this plugin?
    \n

    Visit the Duplicator support section at snapcreek.com

    \n\n
    \n\n\n

    Please see the following url:\nhttps://snapcreek.com/duplicator/docs/changelog?lite

    ','Duplicator','Duplicate, clone, backup, move and transfer an entire site from one location to another.','publish','open','closed','','duplicator','','','2017-04-04 14:45:28','2017-04-04 14:45:28','',0,'https://wordpress.org/plugins-wp/duplicator/',0,'plugin','',0), (184,11434696,'2013-02-15 17:38:02','2013-02-15 17:38:02','\n

    http://www.youtube.com/watch?v=o0f3uAvL6Ic

    \n\n

    The most popular WordPress slider plugin. Creating slideshows with Meta Slider is fast and easy. Simply select images from your WordPress Media Library, drag and drop them into place, set slide captions, links and SEO fields all from one page. You can choose from 4 different slideshow types (Flex Slider, Nivo Slider, Responsive Slides & Coin Slider) and use the provided shortcode or template include to easily embed slideshows in your blog.

    \n\n

    Includes

    \n\n
      \n
    • Flex Slider 2 - Responsive, 2 transition effects, carousel mode
    • \n
    • Nivo Slider - Responsive, 16 transition effects, 4 themes
    • \n
    • Responsive Slides - Responsive & incredibly light weight
    • \n
    • Coin Slider - 4 transition effects
    • \n
    \n\n

    Features

    \n\n
      \n
    • Simple, easy to use interface - perfect for individual users, developers & clients!
    • \n
    • Create Responsive, SEO optimised slideshows in seconds
    • \n
    • Unrestricted support for Image slides (supports caption, link, title text, alt text)
    • \n
    • Full width slideshow support
    • \n
    • Drag and drop slide reordering
    • \n
    • Admin preview
    • \n
    • Intelligent image cropping
    • \n
    • Set image crop position
    • \n
    • Built in Widget and Shortcode
    • \n
    • Loads of slideshow configuration options - transition effect, speed etc (per slideshow)
    • \n
    • Fully localised
    • \n
    • WordPress Multi Site compatible
    • \n
    • Compatible with translation plugins (WPML, PolyLang & qTranslate)
    • \n
    • Extensive Developer API (hooks & filters)
    • \n
    • Fast - only the minimum JavaScript/CSS is included on your page
    • \n
    • Free basic support (covering installation issues and theme/plugin conflicts)
    • \n
    • Lightbox support with the Meta Slider Lightbox addon
    • \n
    \n\n

    Upgrade to Meta Slider Pro to add support for:

    \n\n
      \n
    • YouTube & Vimeo slides
    • \n
    • HTML slides
    • \n
    • Layer slides with CSS3 animations & HTML5 Video backgrounds
    • \n
    • Dynamic Post Feed/Featured Image Slides (content slider)
    • \n
    • Custom Themes
    • \n
    • Thumbnail Navigation
    • \n
    • Premium Support
    • \n
    \n\n

    Read more and thanks to:

    \n\n\n\n

    Find out more at https://www.metaslider.com

    \n\n

    Follow us on Twitter: @wpmetaslider

    \n\n\n

    The easy way:

    \n\n
      \n
    1. Go to the Plugins Menu in WordPress
    2. \n
    3. Search for \"Meta Slider\"
    4. \n
    5. Click \"Install\"
    6. \n
    \n\n

    The not so easy way:

    \n\n
      \n
    1. Upload the ml-slider folder to the /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the \'Plugins\' menu in WordPress
    4. \n
    5. Manage your slideshows using the \'Meta Slider\' menu option
    6. \n
    \n\n\n

    https://www.metaslider.com/documentation/

    \n
    \n
    How do I include a slideshow in the header of my site?
    \n

    Video Guide:

    \n\n

    http://www.youtube.com/watch?v=gSsWgd66Jjk

    \n\n

    Text Guide:

    \n\n

    You will need to paste the \"Template Include\" code into your theme (you can find this in the \'Usage\' section underneath the slideshow settings)

    \n\n
      \n
    • Go to Appearance > Editor in WordPress
    • \n
    • Edit a file called \'header.php\' (or similar)
    • \n
    • Find the correct place to add it (for example above or below the logo)
    • \n
    • Paste in the code and save.
    • \n
    \n
    I only want to show the slideshow on my homepage, how can I do that?
    \n

    Add the \'restrict_to\' parameter to the shortcode, eg:

    \n\n
    [metaslider id=XXX restrict_to=home]\");\n
    \n\n

    Theme specific instructions:

    \n\n

    https://www.metaslider.com/documentation/theme-integration/

    \n
    It\'s not working - what can I do?
    \n

    Check out the troubleshooting page here:

    \n\n

    http://www.metaslider.com/documentation/troubleshooting/

    \n
    Meta Slider is cropping my images in the wrong place - what can I do?
    \n

    See https://www.metaslider.com/documentation/image-cropping/

    \n\n
    \n\n\n

    3.5 [13/03/17]

    \n\n
      \n
    • New slides will now be added as a new post type (ml-slide) (existing slideshows and slides will be unaffected)
    • \n
    • Workaround/Fix: Don\'t use WP_Image_Editor to load slide images that are missing metadata (invalid images)
    • \n
    • Fix: Load admin JavaScript in footer
    • \n
    • New: Add \"metaslider_after_resize_image\" action
    • \n
    \n\n

    3.4.2 [16/01/17]

    \n\n
      \n
    • Workaround/Fix: Don\'t use WP_Image_Editor to load admin slide thumbnails, use wp_get_attachment_image_src instead. Attempts to fix white screen issues affecting some users. Related: https://core.trac.wordpress.org/ticket/36534
    • \n
    • Fix: Load admin JavaScript in footer
    • \n
    \n\n

    3.4 [04/01/17]

    \n\n

    This is the first in a series of small updates which will eventually allow us to remove restrictions in the plugin which prevent us from implementing certain functionality, including:

    \n\n
      \n
    • Changing a slide image
    • \n
    • Using unique captions when the same slide has been added to more than one slideshow
    • \n
    • Adding the same slide to a slideshow multiple times
    • \n
    • Duplicating slides and sliders
    • \n
    • Drafting slides
    • \n
    • Scheduling slides
    • \n
    \n\n

    We are releasing this update in a number of small stages due to the number of users Meta Slider has. We are being overly cautious to ensure it\'s a smooth transition. This update does not make any major changes to the current plugin functionality, but it does put in place the \"scaffolding\" code which we will rely on to implement further updates.

    \n\n

    3.3.7 [06/05/16]

    \n\n
      \n
    • Fix: \"Maximum level reached\" error when inserting the shortcode for a slideshow into it\'s own caption. Thanks to Zhouyuan @ Fortinet for reporting this.
    • \n
    \n\n

    3.3.6 [14/12/15]

    \n\n
      \n
    • Fix: Save Spinner
    • \n
    \n\n

    3.3.5 [22/09/15]

    \n\n
      \n
    • Prepare plugin for WordPress.org translation project (rename textdomain from \'metaslider\' to \'ml-slider\')
    • \n
    • Small styling fix
    • \n
    \n\n

    3.3.4.1 [29/07/15]

    \n\n
      \n
    • Fix Roots theme CSS conflict
    • \n
    \n\n

    3.3.4 [16/07/15]

    \n\n
      \n
    • Add HTML5 validation by applying a property=\"stylesheet\" attribute to meta slider CSS tags
    • \n
    • Remove unused \"Resource Manager\" code
    • \n
    • Chinese language pack updated (thanks to mamsds!)
    • \n
    \n\n

    3.3.3 [11/06/15]

    \n\n
      \n
    • Ukrainian language pack added (thanks to mister_r!)
    • \n
    • Fix: Meta Slider hoplink incorrectly adding parameters to filtered url
    • \n
    • Add \"metaslider_attachment_url\" filter
    • \n
    \n\n

    3.3.2 [16/04/15]

    \n\n
      \n
    • Fix: FPD Security issue. Thanks to Ole Aass (@oleaass) for finding and disclosing this issue.
    • \n
    \n\n

    More information:

    \n\n

    The fix will prevent some servers (configured with \'display_errors\' set to \'on\') from disclosing the full path to certain files within Meta Slider.

    \n\n

    http://codex.wordpress.org/Security_FAQ#Why_are_there_path_disclosures_when_directly_loading_certain_files.3F

    \n\n

    3.3.1 [23/03/15]

    \n\n
      \n
    • Fix: Remove \'create video playlist\' option from Media Library (on Meta Slider page only)
    • \n
    • Fix: Support for Enhanced Media Library plugin
    • \n
    • Fix: Return public slide when DOING_AJAX
    • \n
    • Improvement: Use admin actions to save slideshow settings
    • \n
    \n\n

    3.3 [17/02/15]

    \n\n
      \n
    • New feature: Smart pad option (for Image Slides & Flex Slider only)
    • \n
    • Portuguese language files added (thanks to mauro.mascarenhas)
    • \n
    • Russian language files updated (thanks to asidoryak)
    • \n
    \n\n

    3.2.1 [16/12/14]

    \n\n
      \n
    • Change: Change slide image functionality backed out
    • \n
    • Fix: Apply FireFox mobile fix to Flex Slider (github #1110)
    • \n
    \n\n

    3.2 [26/11/14]

    \n\n
      \n
    • New feature: Change slide image (click top right of slide thumbnail)
    • \n
    • Update: German language files (thanks to Ov3rfly!)
    • \n
    \n\n

    3.1.1 [21/10/14]

    \n\n
      \n
    • Fix: restrict_to shortcode parameter
    • \n
    • Change: Add metaslider_flex_slider_list_item_attributes filter
    • \n
    \n\n

    3.1 [14/10/14]

    \n\n
      \n
    • New feature: Ajax delete slide (to stop users from losing changes when deleting a slide)
    • \n
    • New feature: restrict_to shortcode parameter now accepts page IDs
    • \n
    • Update: Change icon
    • \n
    • Fix: Minor admin styling fix
    • \n
    • Fix: Hide share buttons for pro users
    • \n
    • Change: Remove upgrade nags from media library, add Go Pro page (with an option to hide the page)
    • \n
    \n\n

    3.0.1 [19/08/14]

    \n\n
      \n
    • Fix: Escape admin setting text fields
    • \n
    • Fix: Escape admin tab names (thanks to Dylan Irzi for spotting and reporting this!)
    • \n
    • Change: Allow shortcode parameters to be filtered
    • \n
    \n\n

    3.0 [30/07/14]

    \n\n

    This is not a major update. We\'re just following the WordPress versioning conventions (3.0 comes after 2.9)

    \n\n
      \n
    • New feature: Set crop position for slides (requires WP 3.9+)
    • \n
    • New feature: Disable cropping setting
    • \n
    • Fix: Use get_posts instead of WP_Query to extract slideshows (fix conflicts with plugins using get_post_type in admin_footer hooks)
    • \n
    • Change: Add filter for capability required to use meta slider
    • \n
    \n\n

    2.9.1 [15/07/14]

    \n\n
      \n
    • New feature: Hungarian Language Pack added
    • \n
    • Fix: Escape attributes and JS in slideshow output (credit to jwenerd!)
    • \n
    • Fix: Escape attributes and text fields in admin
    • \n
    • New feature: Admin slide tabs can be modified with filters
    • \n
    \n\n

    2.9 [25/06/14]

    \n\n
      \n
    • New feature: Japanese Language Pack added
    • \n
    • New feature: Persian Language Pack added
    • \n
    • New feature: Switch between tab and list view
    • \n
    • New feature: Added ms-left and ms-right css classes to align slideshow to left or right
    • \n
    • Improvement: Flex Slider updated to 2.3.0-bleeding (fix initial image fade)
    • \n
    • Fix: reference to window.parent in media library
    • \n
    • Fix: Thumbnail outline in firefox
    • \n
    \n\n

    2.8.1 [28/04/14]

    \n\n
      \n
    • Fix: All in One Events Calendar conflict fix (Advanced Settings not toggling)
    • \n
    • Fix: CSS resets to avoid theme conflicts
    • \n
    • Fix: Autoload visibility conflict (http://wordpress.org/support/topic/autoload-visibillity-conflict)
    • \n
    • Fix: Layer Editor in IE11 - text fields not accessible in modal windows
    • \n
    • Fix: FlexSlider IE11 Fade transition
    • \n
    \n\n

    2.8 [28/04/14]

    \n\n
      \n
    • New feature: Russian Language Pack added
    • \n
    • Fix: Carousel image scaling in FireFox
    • \n
    • Fix: wpautop issue with double ampersand
    • \n
    • New feature: Shortcode parameter added to restrict slideshow to displaying on homepage only (see FAQ)
    • \n
    • Improvement: Save slideshow after reordering slides
    • \n
    • Fix: PHP Warning when no slideshows have been created
    • \n
    \n\n

    2.8-beta [16/04/14]

    \n\n
      \n
    • Improvement: Preview now uses admin-post action
    • \n
    • Improvement: Classes are now auto loaded to reduce memory footprint\n(Thanks to Viktor Szépe for the above suggestions!)
    • \n
    • Improvement: Slideshow initilisation time reduced
    • \n
    • Improvement: HTML5 Compatibility: Alt tags always present on image tag - even if empty.
    • \n
    • Improvement: Flex Slider slideshows should now \'reserve\' a space for themselves while they fully load
    • \n
    • Update: Flex Slider updated to v2.2.2
    • \n
    • New feature: Romanian Language Pack added (Thanks to Octav Madalin Stanoaia)
    • \n
    • New feature: Dutch Language Pack added
    • \n
    • New feature: WP Super Cache compatibility - cache is cleared when saving slideshow
    • \n
    • New feature: HTML5 Compatibility (Experimental). Set define(\'METASLIDER_ENABLE_RESOURCE_MANAGER\', true); in wp-config.php to move Meta Slider link tags head of the page.
    • \n
    \n\n

    2.7.2 [25/03/14]

    \n\n
      \n
    • Fix: Only apply carousel margin to slides
    • \n
    • Fix: Enqueue Easing library when carousel mode is enabled, regardless of effect selection
    • \n
    • Fix: Thumbnail margin when theme has #content div
    • \n
    \n\n

    2.7.1 [19/03/14]

    \n\n
      \n
    • Fix: Remove easing parameter when effect is set to fade
    • \n
    • Fix: Navigation options greyed out in IE
    • \n
    • Fix: qTranslate captions not being processed (typo)
    • \n
    \n\n

    2.7 [18/03/14]

    \n\n
      \n
    • New feature: Crotatian Lang pack added
    • \n
    • New feature: Carousel margin option added
    • \n
    • New feature: Process shortcodes in captions
    • \n
    • Improvement: Tab rename UX
    • \n
    • Improvement: Admin save spinner functionality improved
    • \n
    • Improvement: CSS Resets updated
    • \n
    • Improvement: Use plugins_loaded action to initialise plugin
    • \n
    • Fix: PHP Warnings when one slideshow exists
    • \n
    • Fix: Smart Cropping sometimes not returning smart cropped image
    • \n
    • Fix: Add z-index to meta slider, attempted conflict fix for themes with drop down menus.
    • \n
    • Fix: Only include the easing library when transition effect is set to slide
    • \n
    • Fix: White Label Branding plugin compatibility.
    • \n
    • Change: \"Responsive\" option renamed to \"R. Slides\". The (old) \"Responsive\" option refers to the \"Responsive Slides\" jQuery library, but users were getting confused as the naming suggested it was the only responsive option. Flex Slider & Nivo Slider are also responsive.
    • \n
    \n\n

    2.6.3 [23/01/14]

    \n\n
      \n
    • Improvement: Various admin screen styling improvements
    • \n
    • Fix: Add \'ms-\' prefix to Advanced settings toggle boxes and Preview button (avoid theme conflicts)
    • \n
    • Fix: RTL fixes
    • \n
    • Improvement: Filters added for complete slideshow output
    • \n
    • Improvement: Filter added for slide image label
    • \n
    • Improvement: \'No Conflict\' mode refactored
    • \n
    • Improvement: \'slider\' parameter added to flexslider before/start/after etc callbacks
    • \n
    • Change: Renamed in admin menu from \"Meta Slider Lite\" to \"Meta Slider\"
    • \n
    \n\n

    2.6.2 [02/01/14]

    \n\n
      \n
    • Fix: Vantage background image tiling
    • \n
    \n\n

    2.6.1 [31/12/13]

    \n\n
      \n
    • Fix: Advanced settings arrow toggle
    • \n
    • Fix: All in one SEO / Page builder / Meta Slider conflict
    • \n
    • Fix: NextGen \"Insert Gallery\" conflict
    • \n
    • New feature: Norwegian language pack added
    • \n
    \n\n

    2.6 [19/12/13]

    \n\n
      \n
    • Fix: Typo in metaslider_responsive_slide_image_attributes filter
    • \n
    • Fix: Caption not working in Nivo Slider
    • \n
    • Fix: Tab styling improved
    • \n
    • Fix: New window styling improved in WP3.7 and below
    • \n
    \n\n

    More info/Comments: http://www.metaslider.com/coming-soon-meta-slider-2-6-free/

    \n\n

    2.6-beta [15/12/13]

    \n\n
      \n
    • New feature: Interface update for WordPress 3.8 admin redesign
    • \n
    • New feature: \'Stretch\' setting for full width slideshows
    • \n
    • New feature: No conflict mode
    • \n
    • New feature: \'Add slider\' button for posts and pages
    • \n
    • New feature: SEO options (add title & alt text to slides)
    • \n
    • Change: CSS is now enqueued using wp_enqueue_style (Use a minification plugin or caching plugin to move styles to the if HTML5 validity is required - eg W3 Total Cache)
    • \n
    \n\n

    More info/Comments: http://www.metaslider.com/coming-soon-meta-slider-2-6-free/

    \n\n

    2.5 [25/11/13]

    \n\n
      \n
    • Fix: JetPack Photon conflict
    • \n
    • Improvement: German Language pack added (thanks to gordon34)
    • \n
    • Improvement: Chinese language pack updated (thanks to ???)
    • \n
    • Improvement: MP6 styling fixes
    • \n
    \n\n

    2.5-beta2 [14/11/13]

    \n\n
      \n
    • Fix: Vantage theme backwards compatibility
    • \n
    • Fix: Flexslider anchor attributes filter
    • \n
    \n\n

    2.5-beta1 [12/11/13]

    \n\n
      \n
    • Fix: Center align slideshow
    • \n
    \n\n

    2.5-beta [12/11/13]

    \n\n
      \n
    • New Feature: \'percentwidth\' parameter added to shortcode to allow for 100% wide slideshows
    • \n
    • Improvement: Generate resized images through multiple Ajax requests on save (blank screen fix)
    • \n
    • Improvement: IE9 admin styling tidied up
    • \n
    • Improvement: Filters added to add/change attributes in and tags
    • \n
    • Improvement: Security - nonce checking added
    • \n
    • Change: Remove bottom margin from flex slider when navigation is hidden (add a CSS Class of \'add-margin\' if you need the margin)
    • \n
    • Fix: Add slides to slideshow in the same order they\'re selected in the Media Library
    • \n
    • Fix: Symlink path resolution
    • \n
    • Fix: Do not try to resize/open images that are corrupt (missing metadata) (blank screen fix)
    • \n
    \n\n

    2.4.2 [17/10/13]

    \n\n
      \n
    • Fix: qTranslate caption & URL parsing for image slides
    • \n
    \n\n

    2.4.1 [17/10/13]

    \n\n
      \n
    • Fix: PHP Warning (reported by & thanks to: fgirardey)
    • \n
    \n\n

    2.4 [16/10/13]

    \n\n
      \n
    • Fix: FlexSlider styling in twenty twelve theme
    • \n
    • Fix: IE10 - \"Caption\" placeholder text being saved as actual caption
    • \n
    • Improvement: Settings table tidied up
    • \n
    • Improvement: New slides are resized during addition to the slideshow
    • \n
    • Improvement: Default slideshow size increased to 700x300
    • \n
    • Improvement: Image filename now displayed for each slide (instead of image dimensions)
    • \n
    • Improvement: Replace deprecated \'live()\' jQuery call with \'on()\'
    • \n
    • Improvement: Polish Language pack added (thanks to gordon34)
    • \n
    • Improvement: Chinese language pack added (thanks to ???)
    • \n
    • Improvement: \'metaslider_resized_image_url\' filter added (could be used to disable cropping)
    • \n
    • Change: qTranslate support for slide URLs (see: http://screencast.com/t/FrsrptyhoT)
    • \n
    • Change: PolyLang fix to ensure slides are extracted for all languages (set up a new slideshow for each language)
    • \n
    • Change: WPML fix to ensure slides are extracted for all languages (set up a new slideshow for each language)
    • \n
    \n\n

    2.3 [18/09/13]

    \n\n
      \n
    • Improvement: Flex Slider upgraded to v2.2
    • \n
    • Improvement: Responsive Slides upgraded to v1.54
    • \n
    • Improvement: \'Create first slideshow\' prompt added for new users
    • \n
    • Change: \'scoped\' attribute removed from inline CSS tag until browsers catch up with supporting it properly. A new filter has been added: \"metaslider_style_attributes\" if you wish to add the scoped attribute back in.
    • \n
    • Change: wp_footer check removed due to confusion
    • \n
    • New Feature: \'metaslider_max_tabs\' filter added to convert tab list to ordered drop down menu
    • \n
    • Fix: Remove \'Insert Media\' tab from \'Add Slide\' modal (WP 3.6 only)
    • \n
    • New Feature: Filters added to allow modification of image slide HTML
    • \n
    • Improvement: Settings area tidied up
    • \n
    • Improvement: Image URL Field less restrictive
    • \n
    • Improvement: HTML Output tidied up
    • \n
    \n\n

    2.2.2 [21/08/13]

    \n\n
      \n
    • Improvement: System check added with option to dismiss messages. Checks made for: role scoper plugin, wp_footer, wordpress version & GD/ImageMagick.
    • \n
    \n\n

    2.2.1 [08/08/13]

    \n\n
      \n
    • Fix: Responsive slides styling in FireFox (reported by and thanks to: dznr418)
    • \n
    • Fix: Flex Slider carousel causing browser to crash in some circumstances
    • \n
    \n\n

    2.2 [01/08/13]

    \n\n
      \n
    • Fix: Paragraph tags being added to output using Nivo Slider
    • \n
    \n\n

    2.1.6 [22/07/2013]

    \n\n
      \n
    • Fix: Use the original image file if the slideshow size is the same size as the image file
    • \n
    • Fix: Conflict with Advanced Post Types Order plugin
    • \n
    • Fix: Colorbox conflict when using resizable elements in lightbox
    • \n
    • Improvement: Refresh slides after clicking \'save\'
    • \n
    • Improvement: Ensure taxonomy category exists before tagging slide to slideshow
    • \n
    • Fix: Only submit form when submit button is clicked (not all buttons)
    • \n
    • Fix: Coin slider caption width in FireFox
    • \n
    • Improvement: Added hook to adjust carousel image margin
    • \n
    \n\n

    2.1.5 [24/05/13]

    \n\n
      \n
    • Fix: HTML 5 Validation
    • \n
    \n\n

    2.1.4 [21/05/13]

    \n\n
      \n
    • Fix: Widget markup invalid (reported by and thanks to: CarlosCanvas)
    • \n
    \n\n

    2.1.3 [21/05/13]

    \n\n
      \n
    • Fix: User Access Manager Plugin incompatibility issues (reported by and thanks to: eltipografico)
    • \n
    \n\n

    2.1.2 [21/05/13]

    \n\n
      \n
    • Fix: Nivo Slider theme select dropdown (reported by and thanks to: macks)
    • \n
    • Fix: HTML5 Validation fix for inline styles
    • \n
    • Improvement: Title field added to widget (suggested by and thanks to: pa_esp)
    • \n
    • New feature: Spanish language pack (thanks to eltipografico)
    • \n
    \n\n

    2.1.1 [13/05/13]

    \n\n
      \n
    • Fix: PHP version compatibility
    • \n
    \n\n

    2.1 [12/05/13]

    \n\n
      \n
    • New feature: Widget added
    • \n
    • New feature: System check added (checks for required image libraries and WordPress version)
    • \n
    • Fix: Multiple CSS fixes added for popular themes
    • \n
    • Fix: Flex slider shows first slide when JS is disabled
    • \n
    • Improvement: Display warning message when unchecking Print JS and Print CSS options
    • \n
    • Improvement: Coinslider navigation centered
    • \n
    \n\n

    2.0.2 [02/05/13]

    \n\n
      \n
    • Fix: PHP Error when using slides the same size as the slideshow
    • \n
    \n\n

    2.0.1 [28/04/13]

    \n\n
      \n
    • New feature: French language pack (thanks to: fb-graphiklab)
    • \n
    • Fix: Use transparent background on default flexslider theme
    • \n
    • Fix: Set direction to LTR for flexslider viewport (fix for RTL languages)
    • \n
    • Fix: Nivoslider HTML Captions
    • \n
    • Fix: Responsive slides navigation positioning
    • \n
    \n\n

    2.0 [21/04/13]

    \n\n
      \n
    • Fix: Responsive slides navigation styling
    • \n
    • Fix: Update slide order on save
    • \n
    • Fix: Smart crop edge cases
    • \n
    • Fix: Flexslider navigation overflow
    • \n
    \n\n

    2.0-betaX [17/04/13]

    \n\n
      \n
    • Improvement: Error messages exposed in admin is Meta Slider cannot load the slides
    • \n
    • Improvement: Load default settings if original settings are corrupt/incomplete
    • \n
    • Fix: Smart Crop ratio
    • \n
    • Fix: UTF-8 characters in captions (reported by and thanks to: javitopo)
    • \n
    • Fix: JetPack Photo not loading images (reported by and thanks to: Jason)
    • \n
    • Fix: Double slash on jQuery easing path
    • \n
    • Fix: Paragraph tags outputted in JavaScript (reported by and thanks to: CrimsonRaddish)
    • \n
    \n\n

    2.0-beta

    \n\n
      \n
    • New feature: Preview slideshows in admin control panel
    • \n
    • New feature: \'Easing\' options added to flex slider
    • \n
    • New feature: \'Carousel mode\' option added for flex slider
    • \n
    • New feature: \'Auto play\' option added
    • \n
    • New feature: \'Smart Crop\' setting ensures your slideshow size remains consitent regardless of image dimensions
    • \n
    • New feature: \'Center align slideshow\' option added for all sliders
    • \n
    • New feature: Coin Slider upgraded to latest version, new options now exposed in Meta Slider
    • \n
    • New feature: Captions now supported by responsive slides
    • \n
    • Improvement: Responsive AJAX powered administration screen
    • \n
    • Improvement: Code refactored
    • \n
    • Improvement: Flex Slider captions now sit over the slide
    • \n
    • Fix: Nivo slider invalid markup (reported by and thanks to: nellyshark)
    • \n
    • Fix: JS && encoding error (reported by and thanks to: neefje)
    • \n
    \n\n

    1.3 [28/02/13]

    \n\n
      \n
    • Renamed to Meta Slider (previously ML Slider)
    • \n
    • Improvement: Admin styling cleaned up
    • \n
    • Improvement: Code refactored
    • \n
    • Improvement: Plugin localised
    • \n
    • Improvement: Template include PHP code now displayed on slider edit page
    • \n
    • Improvement: jQuery tablednd replaced with jQuery sortable for reordering slides
    • \n
    • New feature: Open URL in new window option added
    • \n
    • Improvement: max-width css rule added to slider wrapper
    • \n
    • Fix: UTF-8 support in captions (reported by and thanks to: petergluk)
    • \n
    • Fix: JS && encoding error (reported by and thanks to: neefje)
    • \n
    • Fix: Editors now have permission to use MetaSlider (reported by and thanks to: rritsud)
    • \n
    \n\n

    1.2.1 [20/02/13]

    \n\n
      \n
    • Fix: Number of slides per slideshow limited to WordPress \'blog pages show at most\' setting (reported by and thanks to: Kenny)
    • \n
    • Fix: Add warning when BMP file is added to slider (reported by and thanks to: MadBong)
    • \n
    • Fix: Allow images smaller than default thumbnail size to be added to slider (reported by and thanks to: MadBong)
    • \n
    \n\n

    1.2 [19/02/13]

    \n\n
      \n
    • Improvement: Code refactored
    • \n
    • Fix: Unable to assign the same image to more than one slider
    • \n
    • Fix: JavaScript error when jQuery is loaded in page footer
    • \n
    • Improvement: Warning notice when the slider has unsaved changes
    • \n
    • Fix: Captions not being escaped (reported by and thanks to: papabeers)
    • \n
    • Improvement: Add multiple files to slider from Media Browser
    • \n
    \n\n

    1.1 [18/02/13]

    \n\n
      \n
    • Improvement: Code refactored
    • \n
    • Fix: hitting [enter] brings up Media Library
    • \n
    • Improvement: Settings for new sliders now based on the last edited slider
    • \n
    • Improvement: More screenshots added
    • \n
    \n\n

    1.0.1 [17/02/13]

    \n\n
      \n
    • Fix: min version incorrect (should be 3.5)
    • \n
    \n\n

    1.0 [15/02/13]

    \n\n
      \n
    • Initial version
    • \n
    ','Meta Slider','Easy to use WordPress slider plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.','publish','open','closed','','ml-slider','','','2017-03-14 10:37:40','2017-03-14 10:37:40','',0,'https://wordpress.org/plugins-wp/ml-slider/',0,'plugin','',0), (185,2690322,'2009-06-15 06:26:45','2009-06-15 06:26:45','\n

    Google Analytics plugin from ShareThis is the best way to add GA tracking code to your website without modifying any files. Just log in with Google right from your WP admin dashboard and choose which website you want to link. Then you can disable GA tracking of specific users, so that when you are browsing your own site it won\'t affect your analytics.

    \n\n

    Also, you will be able to see Google Analytics reports in the same interface you already use every day to write and manage your posts - in your WordPress dashboard. Now you can stay informed on how your website is doing without having to log into a separate tool.

    \n\n

    This Google Analytics plugin has a unique feature called Trending Content. It learns about your traffic patterns and shows you a list of content that is performing significantly better than average, so that you know what resonates with your audience the most. You can even sign up to receive alerts via email or Slack when content is taking off!

    \n\n

    One more thing - unlike other plugins, Google Analytics for WordPress has no monthly fees, and no paid upgrades. All the features are totally free.

    \n\n

    Features:

    \n\n
      \n
    • Simple setup - Adds latest version of Google Analytics javascript to every page
    • \n
    • Account linking - no need to copy and paste any code or know your GA ID, just log in with Google, select the required website and it will automatically include the appropriate code
    • \n
    • Visitor trends - Shows a summary dashboard with page views, users, pages per session and bounce rate for the past 7 days as compared to the previous 7 days
    • \n
    • Traffic sources - Shows top 5 traffic sources so you know where your visitors are coming from
    • \n
    • Trending Content - Shows a history of content that is performing better than average, so at any given time you know what content resonates with your audience the most
    • \n
    • Alerts - Sign up for alerts via email or Slack when your content is taking off
    • \n
    • Only track real visitors - Allows you to disable tracking for any role like Admins, or Editors so your analytics represent real visitors
    • \n
    • Mobile - Fully optimized for mobile, so you can view your dashboards on any device
    • \n
    • More updates coming - Continually updated and supported by a team of top Wordpress developers
    • \n
    \n\n

    If you don\'t have a Google Analytics account, you can sign up for free here: https://www.google.com/analytics/

    \n\n

    By downloading and installing this plugin you are agreeing to the Privacy Policy and Terms of Service.

    \n\n

    Support

    \n\n

    If you have any questions please let us know directly at support@googleanalytics.zendesk.com or create a new topic within our support portal here: https://googleanalytics.zendesk.com/hc/en-us/community/posts/new

    \n\n\n
    \n
    Installation Instructions
    \n
      \n
    1. Install Google Analytics either via WordPress.org plugin repository or directly by uploading the files to your server
    2. \n
    3. Activate the plugin through the Plugins menu in your WordPress dashboard
    4. \n
    5. Navigate to Google Analytics in the WordPress sidebar
    6. \n
    7. Authenticate via Google, copy and paste the access code and choose your property from the dropdown. You can also add the web property ID from Google Analytics manually but dashboards won\'t show up in this case.
    8. \n
    9. When any of your content takes off you will see the URLs inside the Trending Content section
    10. \n
    \n
    Do I need to touch any code to add Google Analytics?
    \n

    Nope, just sign in with google, choose your website, and our plugin will automatically add Google analytics code to all pages.

    \n
    How do I make sure Google Analytics is properly installed on all pages?
    \n

    If you signed it with google and selected your website (or manually added the property ID) the Google Analytics javascript will be added to all pages. To check what UA code it is adding, just open any page of your website in Chrome, right click to select Inspect, navigate to Network tab, reload the page and search for googleanalytics, you will see the google code with your UA ID. See example here.

    \n
    I see broken formatting inside the plugin, for example some buttons are not aligned?
    \n

    This is likely caused by AdBlocker that is blocking anything related to \"google analytics\". Please disable AdBlocker for your own website or add it to exceptions if you are using Opera.

    \n
    How does that cool \"Trending Content\" feature work?
    \n

    It learns about your traffic patterns to spot \"spikes\" of visitors and then sends an alert. If your website doesn\'t have good amount of visitors you might not see any Trending Content Alerts because the algorithm needs more data to see \"trends\".

    \n
    I have other questions, where I can get support or provide feedback?
    \n

    If you have any questions please let us know directly at support@googleanalytics.zendesk.com or create a new topic within our support portal here: https://googleanalytics.zendesk.com/hc/en-us/community/posts/new\nWe are always happy to help.

    \n\n
    \n\n\n

    2.1.2

    \n\n
      \n
    • Fixed authentication error issue experienced by some users.
    • \n
    • Added re-authentication button for easier changing or relinking of Google Analytics accounts.
    • \n
    • Added ?Send Debug? button for faster technical troubleshooting.
    • \n
    • Added refresh button for Google Analytics within dashboard.
    • \n
    • Included new alert for missing Google Analytics account.
    • \n
    • Included new alert for unsupported PHP version.
    • \n
    \n\n

    2.1.1

    \n\n
      \n
    • Reduced requests to Google API to help with Google Analytics quotas
    • \n
    \n\n

    2.1

    \n\n
      \n
    • NEW: Trending Content - trending content shows you a list of content that is performing better than average
    • \n
    • NEW: Alerts - option to sign up for alerts via email or Slack when your content is taking off
    • \n
    • Additional caching to always show Google Analytics dashboards
    • \n
    • User interface improvements
    • \n
    \n\n

    2.0.5

    \n\n
      \n
    • Better compatibility with the Google API quotas
    • \n
    • Undefined variable fix, thanks to charlesstpierre
    • \n
    \n\n

    2.0.4

    \n\n
      \n
    • Replaced Bootstrap with own scripts
    • \n
    \n\n

    2.0.3

    \n\n
      \n
    • Reliability improvements for Google Analytics access
    • \n
    • Better connection to Google Analytics API
    • \n
    • Fixed the save settings issue, thanks @biologix @tanshaydar
    • \n
    • Minor bug fixes
    • \n
    \n\n

    2.0.2

    \n\n
      \n
    • Fixed issues related to older versions of PHP
    • \n
    • Fixed terms of service notice
    • \n
    • Added better support for HTTP proxy, thanks @usrlocaldick for the suggestion
    • \n
    • Added better support when WP_PLUGIN_DIR are already set, thanks @heiglandreas for the tip
    • \n
    • Added support for PHP version 5.2.17
    • \n
    \n\n

    2.0.1

    \n\n
      \n
    • Fix for old versions of PHP
    • \n
    \n\n

    2.0.0

    \n\n
      \n
    • Completely redesigned with new features!
    • \n
    • Updated with the latest Google Analytics code
    • \n
    • No need to find your GA property ID and copy it over, just sign in with Google and choose your site
    • \n
    • See analytics right inside the plugin, the past 7 days vs your previous 7 days
    • \n
    • Shows pageviews, users, pages per session and bounce rate + top 5 traffic referrals
    • \n
    • Wordpress Dashboard widget for 7, 30 or 90 days graph and top site usage stats
    • \n
    • Disable tracking for logged in users like admins or editors for more reliable analytics
    • \n
    \n\n

    1.0.7

    \n\n
      \n
    • Added ability to include Google Analytics tracking code on every WordPress page
    • \n
    ','Google Analytics','Use Google Analytics on your Wordpress site without touching any code, and view visitor reports right in your Wordpress admin dashboard!','publish','open','closed','','googleanalytics','','','2017-04-05 16:44:53','2017-04-05 16:44:53','',0,'https://wordpress.org/plugins-wp/googleanalytics/',0,'plugin','',0); INSERT INTO `wporg_367_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 (186,7790647,'2011-04-06 12:19:44','2011-04-06 12:19:44','\n

    Shortcodes Ultimate is WordPress plugin that provides mega pack of shortcodes. This is really premium plugin that you can get absolutely for free!

    \n\n

    With this plugin you can easily create tabs, buttons, boxes, different sliders, responsive videos and much, much more. Turn your free theme to premium in just a few clicks. Using Shortcodes Ultimate you can quickly and easily retrieve premium themes features and display it on your site. See screenshots for more information.

    \n\n

    Premium Add-ons

    \n\n\n\n

    Features

    \n\n
      \n
    • 50+ amazing shortcodes
    • \n
    • Shortcode Generator
    • \n
    • Modern design
    • \n
    • Fully responsive
    • \n
    • CSS3-powered
    • \n
    • Custom CSS editor
    • \n
    • Custom widget
    • \n
    • Multilingual
    • \n
    • RTL support
    • \n
    • Works with any theme
    • \n
    • Easily extendable
    • \n
    \n\n

    Never stop learning

    \n\n\n\n

    Requirements

    \n\n
      \n
    • WordPress 3.5+
    • \n
    • PHP 5.1+
    • \n
    \n\n

    Got a bug or suggestion?

    \n\n\n\n

    Bundled translations

    \n\n\n\n

    Have a translation? Contact me

    \n\n

    Thanks

    \n\n\n\n\n

    Unzip plugin files and upload them under your \'/wp-content/plugins/\' directory.

    \n\n

    Resulted names will be:\n \'./wp-content/plugins/shortcodes-ultimate/*\'

    \n\n

    Activate plugin at \"Plugins\" administration page.

    \n\n\n

    Visit knowledge base

    \n\n\n

    4.9.9

    \n\n
      \n
    • Fixed: vote popup at plugins page
    • \n
    • Minor improvements, fixes
    • \n
    \n\n

    4.9.8.1

    \n\n
      \n
    • Fixed: compatibility with WordPress 4.3+
    • \n
    • Added: lightbox captions for slider, carousel and custom_gallery. Commit by Valentino Pistis
    • \n
    • Changed: text domain from \'su\' to \'shortcodes-ultimate\'
    • \n
    \n\n

    4.9.8

    \n\n
      \n
    • Added: Spanish translation
    • \n
    • Updated: Font Awesome updated to 4.4.0
    • \n
    • Fixed: buttons line-height on narrow screens
    • \n
    • Fixed: nested spoilers
    • \n
    \n\n

    4.9.7

    \n\n
      \n
    • Added: [document] is now compatible with https
    • \n
    • Fixed: carousel items width calculation
    • \n
    • Added: new attribute for [button title=\"\"], forum topic
    • \n
    • Fixed: stripslashes for [button] content
    • \n
    \n\n

    4.9.6

    \n\n
      \n
    • Fixed: Quick fix for disabled custom css since previous update
    • \n
    \n\n

    4.9.5

    \n\n
      \n
    • Added: basic RTL support
    • \n
    • Fixed: JS error (blocking shortcodes settings) on WordPress 3.5
    • \n
    • Fixed: minor improvement for slider/gallery posts query. Forum topic
    • \n
    • Fixed: minor imrovements on [quote], fixed markup bug for long values in cite, thanks to Anatoly Yumashev
    • \n
    • Added: completely redesigned search feature. Now it\'s like a Google, but for shortcodes =)
    • \n
    • Added: Insert shortcode popup window hotkey. So now, you can open Insert shortcode window, choose shortcode and insert it with just one click
    • \n
    • Updated: new demo video at plugin settings page (About tab)
    • \n
    • Updated: new plugin\'s banner and icon
    • \n
    \n\n

    4.9.4

    \n\n
      \n
    • Updated: Japanese translation
    • \n
    • Updated: Polish translation
    • \n
    • Fixed: minor fixes in shortcode settings window
    • \n
    • Fixed: vulnerability in Examples preview. Added wp_nonce check. Thanks to Kacper Szurek
    • \n
    • Fixed: vulnerability at Custom CSS page. Added wp_nonce check. Thanks to Ryan Satterfield
    • \n
    • Removed: skins directory creation
    • \n
    \n\n

    4.9.3

    \n\n
      \n
    • Updated: owl-carousel.js
    • \n
    • Added: minor UI improvements
    • \n
    • Fixed: [vimeo] ssl issue (thanks to Adam)
    • \n
    • Fixed: multiple errors on cheatsheet page
    • \n
    • Fixed: errors when updating user profile, forum topic
    • \n
    • Removed: global skin option at settings page
    • \n
    \n\n

    4.9.2

    \n\n
      \n
    • Added: minor improvements for tabs/spoilers anchors (auto-removing extra # characters)
    • \n
    • Added: compatibility with TablePress\'s advanced editor
    • \n
    • Added: new option for tabs. You can now link any tab to any webpage [su_tab url=\"http://\" target=\"blank\"]
    • \n
    • Added: new option wmode for [youtube_advanced], forum topic
    • \n
    • Added: new shortcode [lightbox_content]
    • \n
    • Fixed: lightbox and galleries scripts, forum topic
    • \n
    • Fixed: removed global function $.support.transition, forum topic
    • \n
    • Updated: Russian language
    • \n
    • Updated: Japanese language
    • \n
    • Updated: FontAwesome, 4.1.0
    • \n
    • Updated: Magnific Popup, 0.9.9
    • \n
    \n\n

    4.9.1

    \n\n
      \n
    • Added: New shortcode [scheduler]
    • \n
    • Added: New shortcode [expand]
    • \n
    • Added: New options for [divider]
    • \n
    • Added: New option rel for [button]
    • \n
    • Fixed: animations script has been changed. CSS animations will be skipped in non-supported browsers, forum topic
    • \n
    • Fixed: templates/default-loop.php - removed extra n character in comments number, forum topic
    • \n
    • Fixed: large DB query on sites with many users, forum topic
    • \n
    \n\n

    4.9.0

    \n\n
      \n
    • New shortcode [qrcode] allows you to generate colorful and responsive QR codes!
    • \n
    • Improved shortcode search. Just type shortcode name and hit Enter
    • \n
    • Updated Animate.css (animations library)
    • \n
    • Updated ACE editor (custom CSS editor)
    • \n
    • Responsive CSS for [tabs]
    • \n
    • Highly decreased plugin size
    • \n
    \n\n

    4.8

    \n\n
      \n
    • Minor UI fixes (compatibility with page builders)
    • \n
    • Czech translation by Punc00
    • \n
    • Added: full compatibility with multiple editors on same page - fourm topic
    • \n
    • Fixed: extra CSS class for [menu] - forum topic
    • \n
    • Fixed: Swiper click event, Swiper has been updated - forum topic
    • \n
    • Fixed: [spoiler]\'s content is now hidden until the page is loaded
    • \n
    • New dashboard page: Cheatsheet
    • \n
    • Minor [spoiler] fix, for hidden spoiler content
    • \n
    • Updated Japanese translation
    • \n
    \n\n

    4.7

    \n\n
      \n
    • Long-awaited feature: slider, carousel and custom_gallery links can now be open with lightbox
    • \n
    • Long-awaited feature: custom links in slider, carousel and custom_gallery shortcodes
    • \n
    • Fixed https bug in FontAwesome enqueue
    • \n
    • Fixed bug with multiple users queries - forum topic
    • \n
    • New Ghost style for [button]
    • \n
    • Minor UI fixes (for WP 3.9+)
    • \n
    • New shortcode [dailymotion]
    • \n
    • YouTube (advanced) can now use https protocol
    • \n
    • Additional help notes in Shortcode Generator
    • \n
    • Slovak language
    • \n
    \n\n

    4.6

    \n\n\n\n

    4.5

    \n\n
      \n
    • Updated some examples
    • \n
    • Removed import functions. Old versions of plugin (like 3.9.5) is not supported anymore
    • \n
    • Updated custom formatting filter
    • \n
    • Updated Japanese translation
    • \n
    • Added NL translation
    • \n
    • Minor fixes
    • \n
    • Presets. Now you need to adjust the shortcodes only once
    • \n
    • New WP filters for shortcodes attributes
    • \n
    • New option for compatibility mode prefix
    • \n
    • Compatibility mode is now enabled by default
    • \n
    • Font-awesome updated to 4.0.3
    • \n
    • New shortcode [meta]
    • \n
    • New shortcode [user]
    • \n
    • New shortcode [post]
    • \n
    • New attribute limit for [slider], [carousel] and [custom_gallery]
    • \n
    • Minor UX improvements
    • \n
    \n\n

    4.4

    \n\n
      \n
    • IMPORTANT: new galleries mechanism. Your created galleries will work but will not be visible in admin panel. Now, you\'re able to create galleries right in \"Insert shortcode\" window. Also, you can now create galleries from posts, categories or even custom taxonomies.
    • \n
    • Removed all default links (default youtube videos)
    • \n
    • Updated admin page framework Sunrise
    • \n
    • Minor admin panel fixes
    • \n
    • Fixed file_get_contents() (disabled http wrappers) issue at the examples page
    • \n
    • Added classes Shortcodes_Ultimate_Generator, Shortcodes_Ultimate_Shortcodes and Shortcodes_Ultimate_Data
    • \n
    • Removed unused classes MediaUpload and ImageMeta
    • \n
    • New shortocde [dummy_image]
    • \n
    • New shortocde [dummy_text]
    • \n
    • New shortocde [animate]
    • \n
    • New shortocde [youtube_advanced]
    • \n
    • New admin page - Examples
    • \n
    • New admin page - Add-ons
    • \n
    • Font Awesome updated to version 4
    • \n
    • New attr [spoiler icon=\"\"]
    • \n
    • Fixed issue with date format in [posts]
    • \n
    • New slider control for shortcode generator
    • \n
    • Small fixes
    • \n
    \n\n

    4.3

    \n\n
      \n
    • New text-shadow picker for [button]
    • \n
    • Anchor navigation for spoilers and tabs - forum topic
    • \n
    • Small fixes
    • \n
    • IMPORTANT: removed old list icons. These icons replaced with new font-awesome icons
    • \n
    • New icon picker for [service], [button] and [list]
    • \n
    • Media manager is now works on widgets page
    • \n
    • Shortcodes inside of [button]
    • \n
    • Fixed fatal error in [media]
    • \n
    • New media manager added for galleries manager
    • \n
    • New media manager added to the file fields in Generator
    • \n
    • Z-index for visual composer - forum topic
    • \n
    • New attr for [button] onclick
    • \n
    • Fixed settings page
    • \n
    • Fixed [video] player
    • \n
    \n\n

    4.2

    \n\n
      \n
    • Font Awesome icons (in Generator)
    • \n
    • Fixed warning in footer - forum topic
    • \n
    • Removed warning at settings page - forum topic
    • \n
    • Removed another warning (undefined index) - forum topic
    • \n
    • Changed syntax for shortcodes inside of attributes - documentation
    • \n
    • Small performance improvemets
    • \n
    • Aded font-awesome.css. Will be completely included in closest versions
    • \n
    • Added default taxonomy value for [posts]
    • \n
    • Added default post_type value for [posts]
    • \n
    • Added ability to use shortcodes inside of attributes
    • \n
    • Translated into Japanese
    • \n
    • Fixed [button wide=yes]
    • \n
    • Fixed media query for [column]
    • \n
    • Added new attr [column center=yes]
    • \n
    • Improved js code for spoilers and tabs
    • \n
    • Improved js code for generator
    • \n
    • Added pot file
    • \n
    • Fixed [button] css code
    • \n
    • Updated [accordion], [spoiler] and [tabs] js code
    • \n
    • Fixed [tooltip]
    • \n
    • Updated Greek translation
    • \n
    • Fixed [lightbox]
    • \n
    • Disabled wp_footer check
    • \n
    • Fixed wp_footer notice, again
    • \n
    • Small fix for tooltips
    • \n
    • Fixed wp_footer notice
    • \n
    • Greek translation
    • \n
    • Added compatibility mode prefix for spoilers inside of accordion
    • \n
    • Updated qTip plugin
    • \n
    • Added shortcode [tooltip]
    • \n
    • Added new attribute. [tab disabled=\"yes\"]. Now, any tab can be disabled. Forum topic
    • \n
    • Added [accordion] scrolling. Forum topic
    • \n
    • Added wp_footer check. User will be noticed if current theme doen\'t includes wp_footer
    • \n
    • Updated caching mechanism. Cache will be reseted when you add or remove terms
    • \n
    • Updated galleries mechanism. Removed some conflicts
    • \n
    • Fixed spoiler background for style=fancy
    • \n
    • Additional access check option for Shortcode Generator
    • \n
    \n\n

    4.1

    \n\n
      \n
    • 5 metro skins
    • \n
    • New screencast - How to create image gallery
    • \n
    • New attribute \"center\" for [button]. Buttons can now be centered on the page
    • \n
    • Updated [frame]. Now it can contain other shortcodes
    • \n
    • Updated caching mechanism. Cache now will be reseted on plugin activation
    • \n
    • Fixed many PHP warnings when debug mode enabled
    • \n
    • Added backward compatibility for [media]. Shortcode has basic support for youtube and vimeo videos
    • \n
    • Fixed bug with hidden single [tab]
    • \n
    • Added attribute \"active\" for tabs container. This option allows you to select tab number that will be open by default
    • \n
    • Fixd button style 3D
    • \n
    • Added backward compatibility for [frame]
    • \n
    • Fixed [column] margins
    • \n
    • Added backward compatibility for [tabs]. Now it accepts style=3 and vertical attributes
    • \n
    • Added backward compatibility for [spoiler]. Now it accepts 0 and 1 as values for attribute open. Also, it now accepts style attribute (1, 2, default, fancy, simple)
    • \n
    • Added custom CSS import from previous versions. Styles will be imported automatically and prepended to the existing CSS-code
    • \n
    • Added backward compatibility for [highlight]. Now it accepts bg and background attributes
    • \n
    • Added backward compatibility for [label]. Now it accepts style and type attributes
    • \n
    • Added backward compatibility for [dropcap]. Now it accepts 1, 2 and 3 as style values
    • \n
    • Added backward compatibility for [permalink]. Now it accepts p and id attributes
    • \n
    • Added backward compatibility for [button]. Need to test
    • \n
    • Added backward compatibility for [members]. Now it accepts style and login attributes
    • \n
    • Added backward compatibility for [box]. Now it accepts color and box_color attributes
    • \n
    • Added backward compatibility for [note]. Now it accepts color and note_color attributes
    • \n
    • Added backward compatibility for [column]. Now it accepts attribute last and can be not wrapped with [row]
    • \n
    • Added backward compatibility for [document]. Now it accepts file and url attributes
    • \n
    \n\n

    4.0

    \n\n
      \n
    • Official plugin page
    • \n
    • Premium add-on for creating custom shortcodes
    • \n
    • Plugin based on Sunrise Plugin Framework
    • \n
    • GitHub repo. Now you can easily fork and modify best plugin in the world (:
    • \n
    • Brand new Shortcode Generator, demo video
    • \n
    • Shortcodes API
    • \n
    • Completely reorganized code. Added and removed some shortcodes
    • \n
    • For security maniacs: timthumb.php replaced by native WordPress mechanism
    • \n
    • For speed-up maniacs: completely rewritten assets mechanism. Now css and js files included on page depend on used shortcodes
    • \n
    • Added new shortcode [posts]. This is awesome and flexible mechanism to display your content in many different ways
    • \n
    • Now you can create your own custom skins for shortcodes
    • \n
    • Columns, google maps, google document viewer, youtube player, vimeo player and custom audio player is now fully responsive
    • \n
    \n\n

    3.9

    \n\n
      \n
    • More screencasts
    • \n
    • Special widget for shortcodes
    • \n
    • Small fixes
    • \n
    • Hebrew translation
    • \n
    • Awesome tutorial by Digital Cascade TV
    • \n
    • Partners section on settings page
    • \n
    • Generator select improved with Chosen
    • \n
    • Farbtastic color picker
    • \n
    \n\n

    3.8 (security release)

    \n\n
      \n
    • 2 new translations (Sk, Lt)
    • \n
    • Donate button in control panel
    • \n
    • Updated timthumb.php (version 2.8.10)
    • \n
    • Added 2 useful screencasts
    • \n
    \n\n

    3.7

    \n\n
      \n
    • Complete support for nested shortcodes. Check the FAQ page.
    • \n
    • New shortcode [label]
    • \n
    • New style for buttons [button style=\"5\"]
    • \n
    • Fixed images ordering for [custom_gallery], [jcarousel] and [nivo_slider]
    • \n
    \n\n

    3.6

    \n\n
      \n
    • Descriptions for [custom_gallery]
    • \n
    • Custom options for jwPlayer
    • \n
    • Fixed size option for sliders and gallery
    • \n
    \n\n

    3.5

    \n\n
      \n
    • New shortcode [accordion] for muliple spoilers
    • \n
    • Improved spoiler shortcode (check settings page)
    • \n
    • Multiple tabs bugfix
    • \n
    • Authors can also use shortcode generator
    • \n
    • Nested shortcodes: spoiler, column, tabs, box, note
    • \n
    \n\n

    3.4

    \n\n
      \n
    • Belarusian translation
    • \n
    • New shortcode [dropcap]
    • \n
    \n\n

    3.3

    \n\n
      \n
    • Changed: [nivo_slider] and [jcarousel] (see docs in console)
    • \n
    • New shortcode: [custom_gallery]
    • \n
    • New parameter: [members login=\"0|1\"]
    • \n
    • New shortcode: guests
    • \n
    • German translation
    • \n
    \n\n

    3.0

    \n\n
      \n
    • Button for WYSIWIG editor (search it near Upload/Insert buttons)
    • \n
    • New shortcode: private (private notes for editors)
    • \n
    • Patched and secure timthumb.php
    • \n
    \n\n

    2.7

    \n\n
      \n
    • French translation
    • \n
    • Fixed for work with new jQuery 1.6 in WP 3.2
    • \n
    \n\n

    2.5

    \n\n
      \n
    • Theme integration
    • \n
    \n\n

    2.4

    \n\n
      \n
    • New shortcode: jcarousel
    • \n
    \n\n

    2.3

    \n\n
      \n
    • New admin page: Demo
    • \n
    \n\n

    2.2

    \n\n
      \n
    • New shortcode: document
    • \n
    • New shortcode: members
    • \n
    • New shortcode: feed
    • \n
    • New attr: link=\"caption\" for [nivo_slider]
    • \n
    • New attr: p for [subpages]
    • \n
    • New tabs style (style=3)
    • \n
    \n\n

    2.1

    \n\n
      \n
    • New option: disable any script
    • \n
    • New option: disable any stylesheet
    • \n
    • New attribute for column shortcode - style
    • \n
    • New attribute for spoiler shortcode - style
    • \n
    \n\n

    2.0

    \n\n
      \n
    • New shortcode: menu
    • \n
    • New shortcode: subpages
    • \n
    • New shortcode: siblings
    • \n
    • Some admin fixes
    • \n
    • New button attribute - class
    • \n
    • New button attribute - target
    • \n
    • Different tabs styles (1 old + 1 new)
    • \n
    \n\n

    1.9

    \n\n
      \n
    • New shortcode: permalink
    • \n
    • New shortcode: bloginfo
    • \n
    \n\n

    1.8

    \n\n
      \n
    • Some small additions
    • \n
    • Ajax admin page
    • \n
    • No-js compatibility
    • \n
    • Multiple tabs support
    • \n
    \n\n

    1.7

    \n\n
      \n
    • Improved settings page design
    • \n
    • Added shortcode nivo_slider
    • \n
    • Added shortcode photoshop
    • \n
    \n\n

    1.6

    \n\n
      \n
    • New admin panel
    • \n
    • Custom CSS editor with syntax hughlight
    • \n
    • Small fixes
    • \n
    • Added donation forms
    • \n
    \n\n

    1.5

    \n\n
      \n
    • Added option \"Compatibility mode\"
    • \n
    • Added new button styles
    • \n
    • Added new list styles
    • \n
    • Added new shortcode media
    • \n
    • Added new shortcode table
    • \n
    \n\n

    1.4

    \n\n
      \n
    • Added shortcode \"Fancy link\"
    • \n
    \n\n

    1.3

    \n\n
      \n
    • Some fixes
    • \n
    \n\n

    1.2

    \n\n
      \n
    • Localization support
    • \n
    \n\n

    1.1

    \n\n
      \n
    • Added options page
    • \n
    • Fixed options saving
    • \n
    \n\n

    1.0

    \n\n
      \n
    • Initial release
    • \n
    ','Shortcodes Ultimate','Supercharge your WordPress theme with mega pack of shortcodes','publish','open','closed','','shortcodes-ultimate','','','2016-08-11 01:52:04','2016-08-11 01:52:04','',0,'https://wordpress.org/plugins-wp/shortcodes-ultimate/',0,'plugin','',0), (187,14388,'2007-09-10 04:34:31','2007-09-10 04:34:31','\n

    Redirection is a WordPress plugin to manage 301 redirections, keep track of 404 errors, and generally tidy up any loose ends your site may have.\nThis is particularly useful if you are migrating pages from an old website, or are changing the directory of your WordPress installation.

    \n\n

    And it\'s 100% free!

    \n\n

    New features include:

    \n\n
      \n
    • 404 error monitoring - captures a log of 404 errors and allows you to easily map these to 301 redirects
    • \n
    • Custom \'pass-through\' redirections allowing you to pass a URL through to another page, file, or website.
    • \n
    • Full logs for all redirected URLs
    • \n
    • All URLs can be redirected, not just ones that don\'t exist
    • \n
    • Redirection methods - redirect based upon login status, redirect to random pages, redirect based upon the referrer!
    • \n
    \n\n

    Existing features include:

    \n\n
      \n
    • Automatically add a 301 redirection when a post\'s URL changes
    • \n
    • Manually add 301, 302, and 307 redirections for a WordPress post, or for any other file
    • \n
    • Full regular expression support
    • \n
    • Apache .htaccess is not required - works entirely inside WordPress
    • \n
    • Redirect index.php, index.html, and index.htm access
    • \n
    • Redirection statistics telling you how many times a redirection has occurred, when it last happened, who tried to do it, and where they found your URL
    • \n
    • Fully localized
    • \n
    \n\n

    Redirection is available in:

    \n\n
      \n
    • English
    • \n
    • French by Oncle Tom
    • \n
    • Hebrew by Rami
    • \n
    • Spanish by Juan
    • \n
    • Simplified Chinese by Sha Miao
    • \n
    • Catalan by Robert Bu
    • \n
    • Japanese by Naoko McCracken
    • \n
    • Hindi by Ashish
    • \n
    • Russian by Grib
    • \n
    • Bahasa Indonesia by Septian Fujianto
    • \n
    • German by Fabian Schulz
    • \n
    • Italian by Raffaello Tesi
    • \n
    • Ukrainian by WordPress plugins Ukraine
    • \n
    • Polish by Kuba Majerczyk
    • \n
    • Arabic by Jerry John
    • \n
    • Brazilian Portuguese by Pedro Padron
    • \n
    • Dutch by Marlon Navas, Pieter Carette, and Bart Kummel
    • \n
    • Hungarian by daSSad and Szépe Viktor
    • \n
    • Turkish by Fatih Cevik
    • \n
    • Romanian by InboxTranslations
    • \n
    • Greek by Stefanos Kofopoulos
    • \n
    • Belarusian by Alexander Ovsov
    • \n
    • Czech by Martin Jurica
    • \n
    • Danish by Rasmus Himmelstrup
    • \n
    • Persian by Danial Hatami
    • \n
    \n\n

    Please submit bugs and patches to https://github.com/johngodley/redirection

    \n\n\n

    The plugin is simple to install:

    \n\n
      \n
    1. Download redirection.zip
    2. \n
    3. Unzip
    4. \n
    5. Upload redirection directory to your /wp-content/plugins directory
    6. \n
    7. Go to the plugin management page and enable the plugin
    8. \n
    9. Configure the options from the Manage/Redirection page
    10. \n
    \n\n

    You can find full details of installing a plugin on the plugin installation page.

    \n\n

    Full documentation can be found on the Redirection page.

    \n\n\n
    \n
    Why would I want to use this instead of .htaccess?
    \n

    Ease of use. Redirections are automatically created when a post URL changes, and it is a lot easier to manually add redirections than to hack around a .htaccess. You also get the added benefit of being able to keep track of 404 errors.

    \n
    What is the performance of this plugin?
    \n

    The plugin works in a similar manner to how WordPress handles permalinks and should not result in any noticeable slowdown to your site.

    \n\n
    \n\n\n

    2.5

    \n\n
      \n
    • Fix no group created on install
    • \n
    • Fix missing export key on install
    • \n
    • Add 408 HTTP code, props to radenui
    • \n
    • Fix imported URLs set to regex, props to alpipego
    • \n
    • Fix sorting of URLs, props to JordanReiter
    • \n
    • Don\'t cache 407s, props to rmarchant
    • \n
    • Abort redirect exit if no redirection happened, props to junc
    • \n
    \n\n

    2.4.5

    \n\n
      \n
    • Ensure cleanup code runs even if plugin was updated
    • \n
    • Extra sanitization of Apache & Nginx files, props to Ed Shirey
    • \n
    • Fix regex bug, props to romulodl
    • \n
    • Fix bug in correct group not being shown in dropdown
    • \n
    \n\n

    2.4.4

    \n\n
      \n
    • Fix large advanced settings icon
    • \n
    • Add text domain to plugin file, props Bernhard Kau
    • \n
    • Better PHP7 compatibility, props to Ohad Raz
    • \n
    • Better Polylang compatibility, props to imrehg
    • \n
    \n\n

    2.4.3

    \n\n
      \n
    • Bump minimum WP to 4.0.0
    • \n
    • Updated German translation, props to Konrad Tadesse
    • \n
    • Additional check when creating redirections in case of bad data
    • \n
    \n\n

    2.4.2

    \n\n
      \n
    • Add Gulp task to generate POT file
    • \n
    • Fix a problem with duplicate positions in the redirect table, props to Jon Jensen
    • \n
    • Fix URL monitor not triggering
    • \n
    • Fix CSV export
    • \n
    \n\n

    2.4.1

    \n\n
      \n
    • Fix error for people with an unknown module in a group
    • \n
    \n\n

    2.4

    \n\n
      \n
    • Reworked modules now no longer stored in database
    • \n
    • Nginx module (experimental)
    • \n
    • View .htaccess/Nginx inline
    • \n
    • Beginnings of some unit tests!
    • \n
    • Fix DB creation on activation, props syntax53
    • \n
    • Updated Japanese locale, props to Naoko
    • \n
    • Remove deprecated like escaping
    • \n
    \n\n

    2.3.16

    \n\n
      \n
    • Fix export options not showing for some people
    • \n
    \n\n

    2.3.15

    \n\n
      \n
    • Fix error on admin page for WP 4.2
    • \n
    \n\n

    2.3.14

    \n\n
      \n
    • Remove error_log statements
    • \n
    • Fix incorrect table name when exporting 404 errors, props to brazenest/synchronos-t
    • \n
    \n\n

    2.3.13

    \n\n
      \n
    • Split admin and front-end code out to streamline the loading a bit
    • \n
    • Fix bad groups link when viewing redirects in a group, props to Patrick Fabre
    • \n
    • Improved plugin activation/deactivation and cleanup
    • \n
    • Improved log clearing
    • \n
    \n\n

    2.3.12

    \n\n
      \n
    • Persian translation by Danial Hatami
    • \n
    • Fix saving a redirection with login status, referrer, and user agent
    • \n
    • Fix problem where deleting your last group would cause Redirection to only show an error
    • \n
    • Add limits to referrer and destination in the logs
    • \n
    • Redirect title now shows in the main list again. The field is hidden when editing until toggled
    • \n
    • Fix \'bad nonce\' error, props to Jonathan Harrell
    • \n
    • Remove old WP code
    • \n
    \n\n

    2.3.11

    \n\n
      \n
    • Fix log cleanup options
    • \n
    • More space when editing redirects
    • \n
    • Better detection of regex when importing
    • \n
    • Restore export options
    • \n
    • Fix unnecessary protected
    • \n
    \n\n

    2.3.10

    \n\n
      \n
    • Another compatibility fix for PHP < 5.3
    • \n
    • Fix incorrect module ID used when creating a group
    • \n
    • Fix .htaccess duplication, props to Jörg Liwa
    • \n
    \n\n

    2.3.9

    \n\n
      \n
    • Compatibility fix for PHP < 5.3
    • \n
    \n\n

    2.3.8

    \n\n
      \n
    • Fix plugin activation error
    • \n
    • Fix fatal error in table nav, props to spacedmonkey
    • \n
    \n\n

    2.3.7

    \n\n
      \n
    • New redirect page to match WP style
    • \n
    • New module page to match WP style
    • \n
    • Configurable permissions via redirection_role filter, props to RodGer-GR
    • \n
    • Fix saving 2 month log period
    • \n
    • Fix importer
    • \n
    • Fix DB creation to check for existing tables
    • \n
    \n\n

    2.3.6

    \n\n
      \n
    • Updated Italian translation, props to Raffaello Tesi
    • \n
    • Updated Romanian translation, props to Flo Bejgu
    • \n
    • Simplify logging options
    • \n
    • Fix log deletion by search term
    • \n
    • Export logs and 404s to CSV
    • \n
    \n\n

    2.3.5

    \n\n
      \n
    • Default log settings to 7 days, props to Maura
    • \n
    • Updated Danish translation thanks to Mikael Rieck
    • \n
    • Add per-page screen option for log pages
    • \n
    • Remove all the corners
    • \n
    \n\n

    2.3.4

    \n\n
      \n
    • Fix escaping of URL in admin page
    • \n
    \n\n

    2.3.3

    \n\n
      \n
    • Fix PHP strict, props to Juliette Folmer
    • \n
    • Fix RSS entry date, props to Juliette
    • \n
    • Fix pagination
    • \n
    \n\n

    2.3.2

    \n\n
      \n
    • WP 3.5 compatibility
    • \n
    • Fix export
    • \n
    \n\n

    2.3.0

    \n\n
      \n
    • Remove 404 module and move 404 logs into a separate option
    • \n
    • Add Danish translation, thanks to Rasmus Himmelstrup
    • \n
    \n\n

    2.2.14

    \n\n
      \n
    • Clean up log code, using WP_List_Table to power it
    • \n
    • Update Hungarian translation
    • \n
    \n\n

    2.2.13

    \n\n
      \n
    • Fix some broken links in admin pages
    • \n
    \n\n

    2.2.12

    \n\n
      \n
    • Cleanup some XSS issues
    • \n
    \n\n

    2.2.11

    \n\n
      \n
    • Add Lithuanian
    • \n
    • Add Belarusian
    • \n
    • Add Czech
    • \n
    • Fix order of redirects, thanks to Nicolas Hatier
    • \n
    \n\n

    2.2.10

    \n\n
      \n
    • Fix XSS in referrers log
    • \n
    \n\n

    2.2.9

    \n\n
      \n
    • Fix XSS in admin menu
    • \n
    • Update Russian translation, thanks to Alexey Pazdnikov
    • \n
    \n\n

    2.2.8

    \n\n
      \n
    • Add Romanian translation, thanks to Alina
    • \n
    • Add Greek, thanks to Stefanos Kofopoulos
    • \n
    \n\n

    2.2.7

    \n\n
      \n
    • Better database compatibility
    • \n
    \n\n

    2.2.6

    \n\n
      \n
    • Remove warning from VaultPress
    • \n
    \n\n

    2.2.5

    \n\n
      \n
    • Add Turkish translation, thanks to Fatih Cevik
    • \n
    • Fix search box
    • \n
    • Fix 410 error code
    • \n
    • Fix DB errors when MySQL doesn\'t auto-convert data types
    • \n
    \n\n

    2.2.4

    \n\n
      \n
    • Add Hungarian translation, thanks to daSSad
    • \n
    \n\n

    2.2.3

    \n\n
      \n
    • Remove debug from htaccess module
    • \n
    \n\n

    2.2.2

    \n\n
      \n
    • Fix encoding of JS strings
    • \n
    \n\n

    2.2.1

    \n\n
      \n
    • More Dutch translation
    • \n
    • Use fgetcsv for CSV importer - better handling
    • \n
    • Allow http as URL parameter
    • \n
    \n\n

    2.2

    \n\n
      \n
    • Add Dutch translation
    • \n
    • Props to Ben Noordhuis for a patch
    • \n
    • WordPress 2.9+ only - cleaned up all the old cruft
    • \n
    • Better new-install process
    • \n
    • Upgrades from 1.0 of Redirection no longer supported
    • \n
    • Optimized DB tables
    • \n
    \n\n

    2.1.29

    \n\n
      \n
    • Fix problem with custom post types auto-redirecting (click on \'groups\' and then \'modified posts\' and clear any entries for \'/\' from your list)
    • \n
    \n\n

    2.1.28

    \n\n
      \n
    • Brazilian Portuguese translation
    • \n
    \n\n

    2.1.27

    \n\n
      \n
    • Arabic translation
    • \n
    \n\n

    2.1.26

    \n\n
      \n
    • WP 3.0 compatibility
    • \n
    \n\n

    2.1.25

    \n\n
      \n
    • Fix deep slashes
    • \n
    \n\n

    2.1.24

    \n\n
      \n
    • Add Ukrainian translation
    • \n
    • Add Polish translation
    • \n
    • Database optimisation
    • \n
    \n\n

    2.1.23

    \n\n
      \n
    • Add Bahasa Indonesian translation
    • \n
    • Add German translation
    • \n
    • Add patch to disable logs (thanks to Simon Wheatley!)
    • \n
    \n\n

    2.1.22

    \n\n
      \n
    • Pre WP2.8 compatibility fix
    • \n
    \n\n

    2.1.21

    \n\n
      \n
    • Fix #620
    • \n
    • Add Russian translation
    • \n
    \n\n

    2.1.20

    \n\n
      \n
    • Fix for some users with problems deleting redirections
    • \n
    \n\n

    2.1.19

    \n\n
      \n
    • Add Hindi translation
    • \n
    • Fix some ajax
    • \n
    \n\n

    2.1.18

    \n\n
      \n
    • Fix module deletion
    • \n
    \n\n

    2.1.17

    \n\n
      \n
    • Log JS fixes
    • \n
    \n\n

    2.1.16

    \n\n
      \n
    • Fix group edit and log add entry
    • \n
    \n\n

    2.1.15

    \n\n
      \n
    • Use WP Ajax
    • \n
    • Add Japanese
    • \n
    \n\n

    2.1.14

    \n\n
      \n
    • Fix #457
    • \n
    • Add #475, #427
    • \n
    • Add Catalan translation.
    • \n
    • WP2.8 compatibility
    • \n
    \n\n

    2.1.13

    \n\n
      \n
    • Add Spanish and Chinese translation
    • \n
    \n\n

    2.1.12

    \n\n
      \n
    • Add icons
    • \n
    • Disable category monitoring
    • \n
    \n\n

    2.1.11

    \n\n
      \n
    • Errors on some sites
    • \n
    \n\n

    2.1.10

    \n\n
      \n
    • Missing localisations
    • \n
    \n\n

    2.1.9

    \n\n
      \n
    • Fix \'you do not permissions\' error on some non-English sites
    • \n
    \n\n

    2.1.8

    \n\n
      \n
    • Fix category change \'quick edit\'
    • \n
    \n\n

    2.1.7

    \n\n
      \n
    • Fix #422, #426
    • \n
    \n\n

    2.1.6

    \n\n
      \n
    • Redirection loops
    • \n
    \n\n

    2.1.5

    \n\n
      \n
    • Fix #366, #371, #378, #390, #400.
    • \n
    • Add #370, #357
    • \n
    \n\n

    2.1.4

    \n\n
      \n
    • RSS feed token
    • \n
    \n\n

    2.1.3

    \n\n
      \n
    • Re-enable import feature
    • \n
    \n\n

    2.1.2

    \n\n
      \n
    • Minor button changes
    • \n
    \n\n

    2.1.1

    \n\n
      \n
    • Force JS cache
    • \n
    • Fix log deletion
    • \n
    \n\n

    2.1

    \n\n
      \n
    • Change to jQuery
    • \n
    • Nonce protection
    • \n
    • Fix #352, #353, #339, #351
    • \n
    • Add #358, #316.
    • \n
    \n\n

    2.0.12

    \n\n
      \n
    • Disable category monitor in 2.7
    • \n
    \n\n

    2.0.11

    \n\n
      \n
    • Hebrew translation
    • \n
    \n\n

    2.0.10

    \n\n
      \n
    • Fix small issues in display with WP 2.7
    • \n
    \n\n

    2.0.9

    \n\n
      \n
    • Fix delete redirects
    • \n
    \n\n

    2.0.8

    \n\n
      \n
    • Refix log delete
    • \n
    \n\n

    2.0.7

    \n\n
      \n
    • Fix incorrect automatic redirection with static home pages
    • \n
    \n\n

    2.0.6

    \n\n
      \n
    • Support for wp-load.php
    • \n
    \n\n

    2.0.5

    \n\n
      \n
    • Fix #264
    • \n
    \n\n

    2.0.4

    \n\n
      \n
    • get_home_path seems not be available for some people
    • \n
    \n\n

    2.0.3

    \n\n
      \n
    • Fix #248
    • \n
    • Update plugin.php to better handle odd directories
    • \n
    \n\n

    2.0.2

    \n\n
      \n
    • Correct DB install
    • \n
    • Fix IIS problem
    • \n
    \n\n

    2.0.1

    \n\n
      \n
    • Install defaults when no existing redirection setup
    • \n
    \n\n

    2.0

    \n\n
      \n
    • New version
    • \n
    ','Redirection','Redirection is a WordPress plugin to manage 301 redirections and keep track of 404 errors without requiring knowledge of Apache .htaccess files.','publish','open','closed','','redirection','','','2016-12-11 10:40:06','2016-12-11 10:40:06','',0,'https://wordpress.org/plugins-wp/redirection/',0,'plugin','',0), (188,268768,'2014-06-01 16:12:09','2014-06-01 16:12:09','\n

    The SiteOrigin widget bundle gives you a collection of widgets that you can use and customize. All the widgets are built on our powerful framework, giving you advanced forms, unlimited colours and 1500+ icons.

    \n\n

    Widgets are great. No matter where you?re using them. In a Page Builder page or on your widgetized areas. It\'s even compatible with other popular page building plugins.

    \n\n

    [vimeo https://vimeo.com/102103379]

    \n\n

    The collection is growing, but here?s what we have so far.

    \n\n
      \n
    • Google Maps Widget that\'s going places.
    • \n
    • Button Widget that you?ll love to click.
    • \n
    • Image Widget that?ll let you add images everywhere.
    • \n
    • Call To Action Widget that?ll get your users performing the actions you want.
    • \n
    • Slider Widget that slides images and HTML5 videos.
    • \n
    • Price Table Widget that?ll help you sell more.
    • \n
    • Post Carousel Widget that displays your posts as a carousel.
    • \n
    • Features Widget that lets you display a set of site or service features.
    • \n
    • Video Widget to get your videos out there.
    • \n
    • Headline Widget to get you noticed.
    • \n
    • Social Links Widget to show you\'re active.
    • \n
    \n\n

    Once you enable a widget, you\'ll be able to use it anywhere standard widgets are used. You can manage your widgets by going to Plugins > SiteOrigin Widgets in your WordPress admin.

    \n\n

    Documentation

    \n\n

    Documentation is available on SiteOrigin.

    \n\n

    Support

    \n\n

    We offer free support on the SiteOrigin support forums.

    \n\n

    Create Custom Widgets

    \n\n

    The SiteOrigin Widgets Bundle is the perfect platform to build widgets for your theme or plugin. Read more on our developer docs.

    \n\n\n

    1.8.2 - 1 April 2017

    \n\n
      \n
    • Compatibility with upcoming Page Builder 2.5 release.
    • \n
    • Fixed compatibility with Elementor 1.4+.
    • \n
    • Fixed incompatibility with Jetpack.
    • \n
    \n\n

    1.8.1 - 3 February 2017

    \n\n
      \n
    • Fixed empty array warning.
    • \n
    • Contact Form: Prevent empty title markup from being echoed.
    • \n
    • Contact Form: Display email after name
    • \n
    • Slider: Account for 0 speed.
    • \n
    • Features: Fix sizing issue when using images instead of icons.
    • \n
    • Use default unit if missing for measurement fields.
    • \n
    • Price Table: Shortcode support for feature text.
    • \n
    • Testimonial: Updated text radius label and fixed resulting functionality.
    • \n
    • Revert change made to post search for link field.
    • \n
    • Link Field: Make sure we have a valid post_types value.
    • \n
    \n\n

    1.8 - 31 January 2017

    \n\n
      \n
    • Introduced compatibility system.
    • \n
    • Added compatibility with Elementor and Beaver Builder.
    • \n
    • Ensure radio inputs in repeaters have their checked property set correctly.
    • \n
    • Various Call to Action widget improvements.
    • \n
    • Use text-align: center; for features icons.
    • \n
    • Always use HTTPS for Google Webfonts.
    • \n
    • Post Selector: Exclude current post id
    • \n
    • Post Selector: Add filter returned query
    • \n
    • Post Carousel: Prevent empty title output.
    • \n
    • Google Maps: Add ability to set link for Static Map.
    • \n
    • Social Links: Add title field and title attributes for links.
    • \n
    • Features: Add title text field for features
    • \n
    • Button Widget: Add Font setting
    • \n
    • Contact: Add radio field Type
    • \n
    • Taxonomy: New Window Setting
    • \n
    • Added a way of specifying post types for link field.
    • \n
    • Introduced a global widget setup action.
    • \n
    \n\n

    1.7.2 - 09 November 2016

    \n\n
      \n
    • Made fixes to pass PHP 7 compatibility checks.
    • \n
    • Image Widget: Get alt and title text from chosen image.
    • \n
    • Replaced markup parser with more actively maintained one.
    • \n
    • Simple Masonry: ensure resize on load
    • \n
    • Image Grid: Allow 0 as valid spacing value.
    • \n
    • Editor Widget: Call WP_Embed::run_shortcode on Editor widget content
    • \n
    • Maps: Added missing typeof causing maps api not to load properly.
    • \n
    • Icon: Fixed URL output.
    • \n
    • Fixed double slash in URLs.
    • \n
    • Features: Use Measurement fields.
    • \n
    • Apply modify_form to form arrays created in the constructor.
    • \n
    • Contact Form: add email default email subject if no subject defined.
    • \n
    \n\n

    1.7.1 - 21 September 2016

    \n\n
      \n
    • Fixed case of Maps widget in sidebar causing an error on pages without that sidebar.
    • \n
    • Fixed icon field CSS.
    • \n
    \n\n

    1.7 - 20 September 2016

    \n\n
      \n
    • Added mechanism for creating global widget setting.
    • \n
    • Added mechanism for adding dismissible notices to widget forms.
    • \n
    • Unified Google Maps JS working for maps widget and contact form location field.
    • \n
    • Added icon search for icon field.
    • \n
    • Added remove button to icon field.
    • \n
    • Contact Form: Fixed clash with Firefox field validation.
    • \n
    • Properly display remove button after importing Pixabay image.
    • \n
    \n\n

    1.6.5 - 15 August 2016

    \n\n
      \n
    • Fixed dialog z-index.
    • \n
    • Added field required argument.
    • \n
    • Properly trigger change for image search import.
    • \n
    • Sanitize arg can now be a callback.
    • \n
    • Improved multi checkbox field
    • \n
    • Maps: Just call initialization function if maps API already loaded.
    • \n
    \n\n

    1.6.4 - 21 July 2016

    \n\n
      \n
    • More settings and customizability for Headline widget.
    • \n
    • Added FitText to Headline and Hero Image widgets.
    • \n
    • Fixed Pixabay image importing.
    • \n
    \n\n

    1.6.3 - 19 July 2016

    \n\n
      \n
    • Added image search functionality to media field.
    • \n
    • Moved actions into their own file.
    • \n
    • Allow widgets to provide their own LESS/HTML.
    • \n
    • Added very simple code field.
    • \n
    • Multiple widgets can have the same class. Allowing widget functionality to come from configuration.
    • \n
    • Various tweaks for upcoming Widgets Builder plugin.
    • \n
    \n\n

    1.6.2 - 11 July 2016

    \n\n
      \n
    • Fixed Firefox issue in post selector builder.
    • \n
    • Properly escape all uses off add_query_arg.
    • \n
    • Added filter after video
    • \n
    \n\n

    1.6.1 - 24 June 2016

    \n\n
      \n
    • Social Links: Fixed auto-filling of network colors.
    • \n
    • Social Links: Added 500px network.
    • \n
    • Social Links: Added title tag to link tags.
    • \n
    • Maps: Prevent JS error in when maps widget script is enqueued but widget isn\'t displayed.
    • \n
    • Maps: Made API field more prominent as it\'s now required by the Google Maps API.
    • \n
    • Added more general error checking.
    • \n
    \n\n

    1.6 - 21 June 2016

    \n\n
      \n
    • Added builder field.
    • \n
    • Added new multi checkboxes field.
    • \n
    • Added Layout Slider widget.
    • \n
    • Added taxonomy widget.
    • \n
    • Added slider wrapper attributes and filter.
    • \n
    • Fix for measurement field inside a repeater.
    • \n
    • Modified base folder to work independently of Widgets Bundle.
    • \n
    • Added custom icon families callback argument to icon field.
    • \n
    • Properly handle attachments in post selector
    • \n
    • Contact Form: Refactored form fields.
    • \n
    • Hero Image: Added image type to Hero Image widget.
    • \n
    • Button: Handle empty width.
    • \n
    • Image: Added filter for SiteOrigin image attributes.
    • \n
    • Image: Add dimensions to sizes dropdown.
    • \n
    • Maps: Ensure maps widget works with API key.
    • \n
    • Hero Image: Added setting to disable swipe on mobile Hero Image Widget.
    • \n
    • Fixed title syntax in Image widget.
    • \n
    • Video: Correctly get video file mime-types.
    • \n
    • Video Widget: Allow specifying multiple self-hosted video sources to support various formats.
    • \n
    \n\n

    1.5.11 - April 11 2016

    \n\n
      \n
    • Fixed features widget container shape setting.
    • \n
    \n\n

    1.5.10 - April 5 2016

    \n\n
      \n
    • Added Icon widget.
    • \n
    • Moved widget form arrays into separate functions to improve performance.
    • \n
    • Cache widget style CSS if it can\'t be saved to filesystem.
    • \n
    • Improved preview checking so preview style CSS isn\'t stored.
    • \n
    • Contact Form: Improved instance hashing for compatibility with Yoast SEO.
    • \n
    • Contact Form: Added description field and customisation.
    • \n
    • Slider: Ensure correct styles are applied to slider images when a link is defined.
    • \n
    • Features: Allow user to select size for uploaded icon image.
    • \n
    • Price Table: Ensure feature icons always vertically centered, alongside feature text.
    • \n
    \n\n

    1.5.9 - February 26 2016

    \n\n
      \n
    • Contact Form: Fixed hash checking for duplicate emails.
    • \n
    • Contact Form: Replace default emails with admin_email.
    • \n
    \n\n

    1.5.8 - February 26 2016

    \n\n
      \n
    • Skip empty sidebars when loading widget scripts.
    • \n
    • Changes to cache clearing.
    • \n
    • Typo corrections.
    • \n
    • Fixed conflict with Child Theme Configurator.
    • \n
    • Image Grid widget: Using correct field and image size names to determine image sizes.
    • \n
    • Editor widget: Added shortcode unautop to Editor widget.
    • \n
    • Contact Form widget: Added check to prevent email resends in contact form widget.
    • \n
    • Masonry widget: properly handles full width rows in Page Builder.
    • \n
    • Hero Image widget: Fix backgrounds URL.
    • \n
    • Price Table widget: Skip empty buttons.
    • \n
    • Maps Widget: Allow clicking markers to reopen info windows if closed.
    • \n
    \n\n

    1.5.7 - February 4 2016

    \n\n
      \n
    • Restored old class name for Image Grid Widget.
    • \n
    \n\n

    1.5.6 - January 23 2016

    \n\n
      \n
    • Fixed widget name migration
    • \n
    • Fixed hero image height issue.
    • \n
    • Fixed admin page layout.
    • \n
    \n\n

    1.5.5 - January 21 2016

    \n\n
      \n
    • Changed widget folder names to make them less verbose.
    • \n
    • Properly handle LESS compile errors.
    • \n
    • Fixed regex causing only the first 10 TinyMCE fields to be initialized.
    • \n
    • Fixed sanitization in the contact form.
    • \n
    • Fixed Google webfont function.
    • \n
    • Fixed image output for slider base.
    • \n
    • Image Widget: Added alignment options.
    • \n
    • Contact Form: Use anchor to return to form after submit
    • \n
    • Change default caps to manage options.
    • \n
    • Contact form widget: fixed - form in customizer doesn\'t resize.
    • \n
    • Price Table: Added image alt tags.
    • \n
    • Editor Widget: Fixed issue where only admins can view unfiltered content.
    • \n
    • Editor Widget: Fixed issue where Editor Widget was removing new lines in code.
    • \n
    • Post Selector Field: Support for date fields.
    • \n
    • Maps Widget: Fixed Lat/Long coordinate handling.
    • \n
    • Masonry widget: fixed layout and sizing.
    • \n
    • Image Widget: Allow display of image title above or below image.
    • \n
    • Added more relative measurement units to base.
    • \n
    • Hero Image Widget: Added height setting.
    • \n
    • Testimonial widget: Prevent outputting related image HTML if no image is set.
    • \n
    • Testimonial Widget: Use testimonial URLs to link location and optionally link names and images.
    • \n
    • Contact Form: Prevent multiple submit button clicks.
    • \n
    • Image Widget: Add support for srcset to Image widget
    • \n
    • Contact Form: Allow user to set field label position.
    • \n
    • Contact Form: Allow user to set field label font styles.
    • \n
    • Contact Form: Allow user setting focussed field outline styles.
    • \n
    • Contact Form: Don\'t do recaptcha validation in admin preview.
    • \n
    \n\n

    1.5.4 - November 18 2015

    \n\n
      \n
    • Fixed compatibility with PHP 5.2
    • \n
    \n\n

    1.5.3 - November 17 2015

    \n\n
      \n
    • Fixed defaults for Features widget and Hero Image widget.
    • \n
    • Fixed previewing for Editor widget.
    • \n
    • Change measurement field to work as single string.
    • \n
    • Use new measurement field for existing widgets.
    • \n
    • Carousel widget supports RTL.
    • \n
    \n\n

    1.5.2 - November 10 2015

    \n\n
      \n
    • Removed word break style from headline widget.
    • \n
    • Fixed image grid URL field.
    • \n
    • Added more text styling options to features widget.
    • \n
    • Added measurement field to use in various widgets.
    • \n
    • Prefix function name in Google Map widget to prevent conflicts.
    • \n
    • Fixed styling for contact form widget.
    • \n
    • Fix to allow multiple duplicated contact forms on a single page.
    • \n
    • Fixed Hero Image widget button shortcode in text mode.
    • \n
    • TinyMCE fields maintain editor state.
    • \n
    • Added support for WP Canvas Shortcodes in TinyMCE field.
    • \n
    • Don\'t initialize TinyMCE outside the admin.
    • \n
    • Added more styling to contact form submit button.
    • \n
    \n\n

    1.5.1 - October 7 2015

    \n\n
      \n
    • Fixed: Issue with Call To Action widget being missing.
    • \n
    \n\n

    1.5 - October 5 2015

    \n\n
      \n
    • Fixed: Conflict between WPML and repeaters.
    • \n
    • Added Simple Masonry Layout widget.
    • \n
    • Added Contact Form widget.
    • \n
    • Added Image Grid widget.
    • \n
    • Added Testimonial widget.
    • \n
    • Changed layout of widgets activation page.
    • \n
    • Added Trianglify to generate placeholder widget icons.
    • \n
    • Added mechanism to use state emitters in repeaters.
    • \n
    • Section expanded/collapsed states now stored across form loads.
    • \n
    • Display once off admin notice when new widgets are available.
    • \n
    • Fixed translation domain.
    • \n
    • Editor Widget: Allow more HTML in Editor widget for trusted users.
    • \n
    • Hero Image Widget: Added top padding setting.
    • \n
    • Hero Image Widget: Can now set background click URL.
    • \n
    • Hero Image Widget: Improved handling of buttons shortcode.
    • \n
    • Slider Widget : Fixed open in new window setting.
    • \n
    • Headline Widget: Added word-break CSS.
    • \n
    • Headline Widget: Added option to set type of heading tags used.
    • \n
    \n\n

    1.4.4 - September 6 2015

    \n\n
      \n
    • Fixed issue with slider image widths.
    • \n
    \n\n

    1.4.3 - September 5 2015

    \n\n
      \n
    • Added support for WooCommerce Shortcodes plugin to TinyMCE field.
    • \n
    • New streamlined icon selector field.
    • \n
    • Added info window functionality to maps widget.
    • \n
    • Added a button to duplicate repeater items.
    • \n
    • Added more design settings to hero image widget.
    • \n
    • Removed full screen mode from TinyMCE field.
    • \n
    • Option to keep map centered when container is resized.
    • \n
    • Fixed: CSS bug for Google font imports on generated CSS.
    • \n
    • Fixed: Post selector for URL fields properly handles empty titles.
    • \n
    • Added option to skip auto paragraphs in Editor widget.
    • \n
    \n\n

    1.4.2 - August 18 2015

    \n\n
      \n
    • Urgent fix in preparation for WordPress 4.3 release
    • \n
    \n\n

    1.4.1 - August 17 2015

    \n\n
      \n
    • Updated to latest Font Awesome.
    • \n
    • Added TripAdvisor to social links widget.
    • \n
    • Allow unfiltered HTML in SiteOrigin Editor Widget if user has rights.
    • \n
    • Properly set URL scheme.
    • \n
    • Fixed state emitter issue for Google Maps Widget.
    • \n
    \n\n

    1.4 - July 20 2015

    \n\n
      \n
    • Created a base slider widget class.
    • \n
    • Converted current slider widget to use base slider.
    • \n
    • Fixed image sizing in slider widget.
    • \n
    • Added plain background color option to slider widget.
    • \n
    • Added new Hero Image widget.
    • \n
    • Fixed repeaters in sub items.
    • \n
    \n\n

    1.3.1

    \n\n
      \n
    • Fix to TinyMCE field when moved in Customizer and Widgets interface.
    • \n
    • Small developer level improvements.
    • \n
    • Fixed autoplay in video widget.
    • \n
    • Fixed behaviour of slides in slider widget.
    • \n
    \n\n

    1.3

    \n\n
      \n
    • Added TinyMCE field type.
    • \n
    • All fields now use classes to make them easier to extend.
    • \n
    • Added SiteOrigin Editor widget.
    • \n
    • Made it possible for other plugins to filter default widgets.
    • \n
    • Fixed WordPress CLI compatibility.
    • \n
    • Added unit tests.
    • \n
    • Added networks to social networks widget.
    • \n
    • Changed how repeater HTML is stored.
    • \n
    \n\n

    1.2.4

    \n\n
      \n
    • Fixed reference to siteorigin_widgets_is_google_webfont.
    • \n
    • Fixed CSS URL.
    • \n
    \n\n

    1.2.3

    \n\n
      \n
    • Fixed Javascript issue with Map widget in customizer.
    • \n
    • Added meta box manager.
    • \n
    • Small style change to flat button style.
    • \n
    • Video widget fixes.
    • \n
    \n\n

    1.2.2

    \n\n
      \n
    • Added video widget with support for self/external videos.
    • \n
    • New activate/deactivate widgets interface.
    • \n
    • Headline widget CSS fixes.
    • \n
    • Dev Feature: Error checking for widget field type.
    • \n
    • Dev Feature: Added state emitters.
    • \n
    • Dev Feature: Additional hooks and filters.
    • \n
    \n\n

    1.2.1

    \n\n
      \n
    • Removed is_customizer_preview - only available in newer versions of WordPress.
    • \n
    \n\n

    1.2

    \n\n
      \n
    • Added headline widget.
    • \n
    • All scripts and styles loaded in header instead of lazy loading.
    • \n
    • Added email to social links widget.
    • \n
    • Made carousel touch friendly.
    • \n
    • Improved input sanitization for HTML input.
    • \n
    • Added nonce request checking in carousel widget.
    • \n
    • Added sticky field to post selector.
    • \n
    • Added function to allow Page Builder to use post selector.
    • \n
    • Added a few developer friendly filters.
    • \n
    • Fixed: Various customizer related issues.
    • \n
    • Fixed: Issue limiting maps widget to 10 markers.
    • \n
    • Fixed: Call to action alignment issues.
    • \n
    • Fixed: Carousel preview.
    • \n
    \n\n

    1.1.2

    \n\n
      \n
    • Added social links widget.
    • \n
    • Framework updates.
    • \n
    \n\n

    1.1.1

    \n\n
      \n
    • Fixed Google Map preview.
    • \n
    \n\n

    1.1

    \n\n
      \n
    • Added powerful Google Maps widget.
    • \n
    • Improved data sanitization.
    • \n
    • Various UI improvements.
    • \n
    \n\n

    1.0.6

    \n\n
      \n
    • Fixed issues with adding extra widget folders.
    • \n
    • Added compatibility with WordPress Customizer.
    • \n
    • Added more fields to be used with future widgets.
    • \n
    \n\n

    1.0.5

    \n\n
      \n
    • Removed legacy widget deactivation functions.
    • \n
    • Improved how widgets are loaded.
    • \n
    \n\n

    1.0.4

    \n\n
      \n
    • Changed how widget list is loaded to fix issue with widgets list not displaying.
    • \n
    \n\n

    1.0.3

    \n\n
      \n
    • Features widget icons can now be made clickable.
    • \n
    \n\n

    1.0.2

    \n\n
      \n
    • Manage widgets page now does live updates.
    • \n
    • Added widget previews.
    • \n
    • Fixed wire button widget hover issue.
    • \n
    • Old stand alone widget plugins are now deactivated in favor of bundled versions.
    • \n
    • Fixed centering of CTA widget.
    • \n
    • Fixed color settings in CTA widget.
    • \n
    • Fixed button icon color setting.
    • \n
    • Small UI improvements.
    • \n
    \n\n

    1.0.1

    \n\n
      \n
    • Clean up of code and bundled widgets.
    • \n
    \n\n

    1.0

    \n\n
      \n
    • Initial release.
    • \n
    ','SiteOrigin Widgets Bundle','The SiteOrigin widget bundle gives you a collection of widgets that you can use and customize. All the widgets are built on our powerful framework, gi …','publish','open','closed','','so-widgets-bundle','','','2017-04-01 15:18:03','2017-04-01 15:18:03','',0,'https://wordpress.org/plugins-wp/so-widgets-bundle/',0,'plugin','',0), (189,71323,'2007-12-01 00:14:35','2007-12-01 00:14:35','\n

    Breadcrumb NavXT, the successor to the popular WordPress plugin Breadcrumb Navigation XT, was written from the ground up to be better than its ancestor. This plugin generates locational breadcrumb trails for your WordPress powered blog or website. These breadcrumb trails are highly customizable to suit the needs of just about any website running WordPress. The Administrative interface makes setting options easy, while a direct class access is available for theme developers and more adventurous users.

    \n\n

    PHP Requirements

    \n\n

    Breadcrumb NavXT 5.2 and newer require PHP5.3\nBreadcrumb NavXT 5.1.1 and older require PHP5.2

    \n\n

    Features (non-exhaustive)

    \n\n
      \n
    • RDFa format Schema.org BreadcrumbList compatible breadcrumb generation.
    • \n
    • Extensive breadcrumb customization control via a settings page with appropriate default values for most use cases.
    • \n
    • Network admin settings page for managing breadcrumb settings for all subsites with configurable global priority.
    • \n
    • Built in WordPress Widget.
    • \n
    • Extensible via OOP and provided actions and filters.
    • \n
    • WPML compatible (enhanced compatibility with WPML extensions plugin).
    • \n
    • Polylang compatible (enhanced compatibility with Polylang extensions plugin).
    • \n
    • bbPress compatible (enhanced compatibility with bbPress extensions plugin).
    • \n
    • BuddyPress compatible (enhanced compatibility with BuddyPress extensions plugin).
    • \n
    \n\n

    Translations

    \n\n

    Breadcrumb NavXT now supports WordPress.org language packs. Want to translate Breadcrumb NavXT? Visit Breadcrumb NavXT\'s WordPress.org translation project.

    \n\n\n

    Open the appropriate file for your theme (typically header.php). This can be done within WordPress? administration panel through Presentation > Theme Editor or through your favorite text editor. Place the following code where you want the breadcrumb trail to appear.

    \n\n\n \n \n\n

    Save the file (upload if applicable). Now you should have a breadcrumb trail on your WordPress powered site. To customize the breadcrumb trail you may edit the default values for the options in the administrative interface. This is located in your administration panel under Settings > Breadcrumb NavXT.

    \n\n

    Please visit Breadcrumb NavXT\'s Documentation page for more information.

    \n\n\n

    5.6.0

    \n\n

    Release date: December 23rd, 2016

    \n\n
      \n
    • New feature: Added fourth parameter, $force, to bcn_display(), and bcn_display_list() allowing the internal caching mechanism to be bypassed.
    • \n
    • New feature: Moved to multiple line text boxes rather than regular single line text inputs for the breadcrumb templates in the settings page to enhance visibility.
    • \n
    • Bug fix: Fixed issue where general searches had the blog breadcrumb in the breadcrumb trail.
    • \n
    • Bug fix: Fixed issue where the blog breadcrumb options were erroneously made available when a Posts Page was not set.
    • \n
    \n\n

    5.5.2

    \n\n

    Release date: September 30th, 2016

    \n\n
      \n
    • Bug fix: Fixed issue where the ?blog breadcrumb? setting does not affect the inclusion of the blog breadcrumb in the breadcrumb trail.
    • \n
    \n\n

    5.5.1

    \n\n

    Release date: August 13th, 2016

    \n\n
      \n
    • Bug fix: Fixed issue in bcn_breadcrumb_trail::find_type() that identified pages as posts, causing the erroneous inclusion of the post root in the breadcrumb trail for pages.
    • \n
    \n\n

    5.5.0

    \n\n

    Release date: August 12th, 2016

    \n\n
      \n
    • Behavior change: Internal mechanics to handle post parents as the hierarchy for a post (of any post type) has changed to use \'BCN_POST_PARENT\' rather than \'page\' for the taxonomy_type.
    • \n
    • Behavior change: Internal mechanics to handle dates as the hierarchy for a post (of any post type) has changed to use \'BCN_DATE\' rather than \'date\' for the taxonomy_type.
    • \n
    • Behavior change: Taxonomy term hierarchy selection logic in bcn_breadcrumb_trail::pick_post_term() has changed to picking the deepest known child of the first hierarchy found in the list of terms returned by get_the_terms() rather than the first term with a child.
    • \n
    • New feature: Added support for referer influenced taxonomy selection for a post\'s (any post type) breadcrumb trail.
    • \n
    • New feature: Added translate and lang as valid attributes for tags within breadcrumb templates.
    • \n
    • New feature: Added srcset and sizes as valid attributes for img tags within breadcrumb templates.
    • \n
    • New feature: Added itemprop as a valid attribute for the meta tags within breadcrumb templates.
    • \n
    • Bug fix: Fixed various issues caused by other plugins/themes modifying the $post global.
    • \n
    • Bug fix: Fixed issue where WPML Extensions would cause a CPT without a set root page to use the Post post type\'s root page.
    • \n
    \n\n

    5.4.0

    \n\n

    Release date: March 15th, 2016

    \n\n
      \n
    • Behavior change: Migrated to new adminKit version, some functions previously in the admin classes are now handled upstream.
    • \n
    • New feature: Added bcn_post_terms filter to bcn_breadcrumb_trail::post_terms() to control the terms included in a non-hierarchical term breadcrumb for a post.
    • \n
    • New feature: Added bcn_add_post_type_arg filter to bcn_breadcrumb_trail::maybe_add_post_type_arg() to control when the post_type argument is added to URLs for archives.
    • \n
    • New feature: Added bcn_pick_post_term filter to bcn_breadcrumb_trail::post_hierarchy() to allow overriding Breadcrumb NavXT?s default term selection behavior.
    • \n
    • Bug fix: Fixed issue with untranslatable title on the settings page.
    • \n
    • Bug fix: Cleanup of several trivial differences between bcn_admin and bcn_network_admin.
    • \n
    • Bug fix: Fixed improper display of ?Your settings are out of date. Migrate now.? message on fresh installs.
    • \n
    • Bug fix: Clarified verbiage in regards to the paged breadcrumb.
    • \n
    • Bug fix: Added translation wrappers for date format strings in bcn_breadcrumb_trail::do_archive_by_date().
    • \n
    • Bug fix: Fixed issue where bcn_breadcrumb_trail::is_builtin() would cause PHP warnings when the passed in post type was not an actual post type.
    • \n
    • Bug fix: Fixed issue that would cause a PHP error if WP_Widget is unavailable.
    • \n
    \n\n

    5.3.1

    \n\n

    Release date: December 14th, 2015

    \n\n
      \n
    • Bug fix: Fixed alignment issue of the main content of the settings page on WordPress 4.4.
    • \n
    • Bug fix: Fixed error caused by options upgrading not re-establishing new settings.
    • \n
    • Bug fix: Fixed PHP error caused by bcn_breadcrumb_trail::get_type_string_query_var() returning an array when the post_type query variable is an array.
    • \n
    \n\n

    5.3.0

    \n\n

    Release date: November 12th, 2015

    \n\n
      \n
    • Behavior change: Breadcrumb NavXT will no longer default to setting the root page for CPTs.
    • \n
    • Behavior change: Breadcrumb NavXT will no longer inject a breadcrumb for a CPT archive page if a root page is set for that CPT.
    • \n
    • Behavior change: Breadcrumb NavXT now defaults to BCN_SETTINGS_USE_LOCAL rather than BCN_SETTINGS_USE_NETWORK if all of the BCN_SETTINGS_* globals are not defined.
    • \n
    • Behavior change: The included widget now supports RDFA style, Schema.org BreadcrumbList format rather than the deprecated Google Breadcrumbs format.
    • \n
    • Behavior change: Default settings for breadcrumb templates now conform to RDFA style, Schema.org BreadcrumbList format rather than the deprecated Google Breadcrumbs format.
    • \n
    • New feature: Added bcn_widget_display_trail action to enhance the included widget?s extensibility.
    • \n
    • New feature: Added bcn_widget_display_types action to enhance the included widget?s extensibility.
    • \n
    • New feature: The plugin uninstaller has been re-factored, includes support for uninstalling in PHP5.2.
    • \n
    • New feature: Unit tests added for all non-deprecated features in bcn_breadcrumb.
    • \n
    • New feature: Unit tests added for the uninstaller.
    • \n
    • New feature: Date based hierarchies are now available for CPTs.
    • \n
    • New feature: Date archives restricted by CPT are now supported.
    • \n
    • New feature: Taxonomy archives restricted by CPT are now supported.
    • \n
    • Bug fix: Fixed issue where the multibyte supplicant functions were not always being included due to WordPress shipping with its own subset of theses functions.
    • \n
    • Bug fix: Fixed issue where on an archive for a post type the archive breadcrumb would appear twice.
    • \n
    \n\n

    5.2.2

    \n\n

    Release date: June 1st, 2015

    \n\n
      \n
    • Bug fix: Fixed issue where the current item would use a built in default template rather than the breadcrumb template in the settings.
    • \n
    • Bug fix: Updated currently distributed translations set and list to match the current set of translations that achieve the 90% completeness threshold for inclusion.
    • \n
    • Bug fix: Fixed issue where a PHP warning would be displayed when BCN_SETTINGS_USE_NETWORK is defined.
    • \n
    \n\n

    5.2.1

    \n\n

    Release date: May 25th, 2015

    \n\n
      \n
    • Bug fix: Added additional checks for empty URLs and templates within bcn_breadcrumb to prevent various bugs when empty URLs and/or templates are passed in.
    • \n
    • Bug fix: Move away from building URLs for search breadcrumbs and instead using get_search_link() to fix support for pretty permalinks.
    • \n
    • Bug fix: Fixed issue where media items (attachments) that have not been attached to a post yet would cause an incorrect breadcrumb trail to be generated.
    • \n
    • Bug fix: Fixed issue where attachments of the front page would cause PHP Warnings.
    • \n
    • Bug fix: Fixed issue where attachments of the front page would have duplicate breadcrumbs for the home page.
    • \n
    • Bug fix: Fixed issue where attachments of pages would have an extraneous breadcrumb relating to the page for posts.
    • \n
    • Bug fix: Fixed issue with the text domain/domain path in the plugin header.
    • \n
    \n\n

    5.2.0

    \n\n

    Release date: January 9th, 2015

    \n\n
      \n
    • Deprecated: The Max Breadcrumb Length setting has been deprecated in favor of using CSS styling to perform the length limiting.
    • \n
    • Behavior change: The archive page for a post type is now generated for the top ancestor post rather than for the current page when \"post parent\" is used as the post\'s hierarchy.
    • \n
    • Behavior change: Now requires PHP5.3 or newer.
    • \n
    • New feature: Added bcn_type_archive_post_type filter.
    • \n
    • New feature: Settings depending on another setting to be enabled are disabled when the dependency setting is disabled.
    • \n
    • New feature: More descriptive messages on settings saving (notify user on success, failure, and no changes to save).
    • \n
    • Bug fix: Fixed awkward wording in the settings page for post hierarchy settings.
    • \n
    • Bug fix: Fixed missed default templates for post formats when all taxonomy settings had the tax_ prefix added in 5.1.
    • \n
    • Bug fix: Fixed bulk of compatibility issues with bbPress.
    • \n
    \n\n

    5.1.1

    \n\n

    Release date: July 29th, 2014

    \n\n
      \n
    • Bug fix: Fixed issue where attachments and their parents have the same link when \'link current item\' is enabled.
    • \n
    • Bug fix: Pass the same parameters into the widget title and (pre) text filters as the default WordPress widgets.
    • \n
    • Bug fix: Fixed issue where PHP warnings would be thrown on author pages for authors that do not have any posts.
    • \n
    • Bug fix: Reduced severity of $post global not being of type WP_Post, will silently exit on non-WP_DEBUG enabled sites.
    • \n
    \n\n

    5.1.0

    \n\n

    Release date: June 9th, 2014

    \n\n
      \n
    • Behavior change: bcn_breadcrumb_trail::do_post() now expects to be passed in a valid WP_Post object.
    • \n
    • Behavior change: breadcrumb_navxt::version changed to a constant to allow uninstantiated access of the plugin version.
    • \n
    • New feature: Support Google\'s RDFa Breadcrumbs microformat by default.
    • \n
    • New feature: Added bcn_opts_update_prebk filter.
    • \n
    • Bug fix: Validate HTML5 options on tab traversal.
    • \n
    • Bug fix: Fixed issue where the settings importer parsed the version string incorrectly.
    • \n
    • Bug fix: Added \'typeof\' to list of valid HTML tag attributes.
    • \n
    • Bug fix: Prefixed all taxonomies with \'tax_\' to prevent name collisions.
    • \n
    • Bug fix: Added ID to Post and Taxonomy Term Elements in bcn_breadcrumb_trail::do_root() as is done everywhere else.
    • \n
    • Bug fix: Fixed issue with bcn_breadcrumb_trail::do_author() returning the incorrect user under some circumstances.
    • \n
    • Bug fix: Fixed issue where saving twice on a tab in the settings page would cause the next page load to open the general tab rather than the current tab.
    • \n
    • Bug fix: Added bcn_breadcrumb_template filter back into bcn_breadcrumb::set_template(), was a regression in 5.0 from 4.4.
    • \n
    • Bug fix: Fixed issue where the included widget did not check against default settings, causing PHP Warnings to show up on the frontend under some circumstances.
    • \n
    • Bug fix: Fixed issue where we didn\'t handle WP_POST::has_archive correctly when it was a string, causing issues with CPTs generated by some plugins.
    • \n
    • Bug fix: Fixed issue where the default taxonomy selected for a CPT could be a non-public taxonomy.
    • \n
    • Bug fix: Attachments get their own title within the settings page now.
    • \n
    • Bug fix: Filter the title and pre text in the widget.
    • \n
    \n\n

    5.0.1

    \n\n

    Release date: December 31st, 2013

    \n\n
      \n
    • Behavior Change: Notify multisite users when settings may be overridden by the network settings and vice versa.
    • \n
    • Bug fix: Updated tab style to match WordPress 3.8 look and feel.
    • \n
    • Bug fix: Fixed issue where bcn_breadcrumb_trail::display_list() would produce multiple instances of the class attribute.
    • \n
    • Bug fix: Fixed several issues with the uninstaller.
    • \n
    \n\n

    5.0.0

    \n\n

    Release date: November 20th, 2013

    \n\n
      \n
    • Behavior Change: Moved bcn_breadcrumb_trail::trail to bcn_breadcrumb_trail::breadcrumbs
    • \n
    • Behavior Change: When WordPress is in multisite/network mode, the settings set in the network settings page take priority over subsite settings.
    • \n
    • New feature: Added bcn_breadcrumb_trail_object filter.
    • \n
    • New feature: Added bcn_li_attributes filter.
    • \n
    • New feature: Added bcn_breadcrumb_types filter.
    • \n
    • New feature: Added Network Admin Settings page.
    • \n
    • New feature: Added xmlns:v and property to the valid tag attributes.
    • \n
    • Bug fix: The current_item breadcrumb for search results should result in a valid HTTPS link when appropriate.
    • \n
    ','Breadcrumb NavXT','Adds breadcrumb navigation showing the visitor's path to their current location.','publish','open','closed','','breadcrumb-navxt','','','2016-12-26 20:04:19','2016-12-26 20:04:19','',0,'https://wordpress.org/plugins-wp/breadcrumb-navxt/',0,'plugin','',0), (190,1702992,'2009-01-21 10:17:18','2009-01-21 10:17:18','\n

    WP-Optimize is an effective tool for automatically cleaning your WordPress database so that it runs at maximum efficiency.

    \n\n

    Major Features

    \n\n
      \n
    • Removes all unnecessary data (e.g. trashed/unapproved/spam comments, stale data) plus pingbacks, trackbacks and expired transient options
    • \n
    • Compact/de-fragment MySQL tables with a button-press
    • \n
    • Detailed control of which optimizations you wish to carry out
    • \n
    • Carries out automatic weekly (or otherwise) clean-ups
    • \n
    • Retains a set number of weeks\' data during clean-ups
    • \n
    • Performs optimizations without the need for running manual queries
    • \n
    • Automatically trigger a pre-optimize backup via UpdraftPlus (https://updraftplus.com)
    • \n
    • Show database statistics and potential savings
    • \n
    • Mobile friendly and easy-to-use
    • \n
    • Translated into several languages
    • \n
    • More planned!
    • \n
    \n\n

    WP-Optimize helps you to:

    \n\n
      \n
    • Make space: When you edit a post or page on your website, WordPress automatically saves the new revision to the database. If you edit things a few times (and particularly if the post is long), your database soon gets clogged up with old revisions that just sit there, taking up valuable space. WP-Optimize removes these unnecessary post revisions, freeing up valuable Megabytes of data and increasing speed and efficiency. It also cleans up your comments table, removing all the spam and un-approved comments that have built up with a single click.

    • \n
    • Take control: WP-Optimize reports on exactly which of your database tables have overhead and wasted space, giving you the insight, control and power to keep your website neat, fast and efficient.

    • \n
    • Keep it clean: Once enabled, WP-Optimize can run an automatic clean-up on a schedule, keeping a selected number of weeks\' data, according to your specification.

    • \n
    \n\n

    When you use this plugin for the first time or just updated to major version, make a backup of your database (we recommend UpdraftPlus). Though none of the queries used are dangerous, it is always the best practice to make a database backup before altering your database.

    \n\n

    How this could help you?

    \n\n
      \n
    • The tables in MySQL (the database that WordPress uses) will, over time, become inefficient as data is added, removed, moved around. Asking MySQL to optimize its tables every now and again will keep your site running as fast as possible. It won\'t happen by itself.

    • \n
    • Every-time you save a new post or pages, WordPress creates a revision of that post or page. If you edit a post 6 times you might have 5 copy of that post as revisions. This quickly adds lots of rarely-used data to your database tables, making them unnecessarily bloated, and slower to access.

    • \n
    • Similar to the scenario described above, there might be thousands of spam and un-approved comments in your comments table, WP-Optimize can clean and remove those in a single click.

    • \n
    • WP-Optimize reports which database tables have overhead and wasted spaces also it allows you to shrink and get rid of those wasted spaces.

    • \n
    • Automatically cleans database every week and respects the \"Keeps selected number of weeks data\" option.

    • \n
    \n\n

    Developers

    \n\n

    If you interested in the development of this plugin, join with us at our GitLab: https://source.updraftplus.com/team-updraft/wp-optimize/ (but please file all support questions in the wordpress.org system).

    \n\n

    Translations

    \n\n

    Translators are welcome to contribute to the plugin. Please use the WordPress translation website.

    \n\n\n

    There are 3 different ways to install WP-Optimize, as with any other wordpress.org plugin.

    \n\n

    Using the WordPress dashboard

    \n\n
      \n
    1. Navigate to the \'Add New\' in the plugins dashboard
    2. \n
    3. Search for \'WP-Optimize\'
    4. \n
    5. Click \'Install Now\'
    6. \n
    7. Activate the plugin on the Plugin dashboard
    8. \n
    \n\n

    Uploading in WordPress Dashboard

    \n\n
      \n
    1. Download the latest version of this plugin from https://wordpress.org/plugins/wp-optimize/
    2. \n
    3. Navigate to the \'Add New\' in the plugins dashboard
    4. \n
    5. Navigate to the \'Upload\' area
    6. \n
    7. Select the zip file (from step 1.) from your computer
    8. \n
    9. Click \'Install Now\'
    10. \n
    11. Activate the plugin in the Plugin dashboard
    12. \n
    \n\n

    Using FTP

    \n\n
      \n
    1. Download the latest version of this plugin from https://wordpress.org/plugins/wp-optimize/
    2. \n
    3. Unzip the zip file, which will extract the wp-optimize directory to your computer
    4. \n
    5. Upload the wp-optimize directory to the /wp-content/plugins/ directory in your web space
    6. \n
    7. Activate the plugin in the Plugin dashboard
    8. \n
    \n\n\n
    \n
    Is optimizing my database safe?
    \n

    Yes; optimizing does not involve any \"tricks\" or poking around in dangerous ways. It involves running routine clean-up operations using well-defined, common MySQL commands. Nevertheless, we always recommend backups, which cover every possibility; not just database malfunctions, but hackers, human errors, etc. We recommend UpdraftPlus.

    \n
    What savings can I expect to make?
    \n

    This is a \"how long is string?\" sort of question. It depends completely on your site - how big it is, how many users interact on it, how long it has been running, and when you last optimised it. However, the savings and speed-ups can be substantial; it is always worth making sure that your database is optimized.

    \n
    How do I get support?
    \n

    In our support forum, here: https://wordpress.org/support/plugin/wp-optimize/

    \n
    WP-Optimize does not make large savings on my database
    \n

    This is rare; it?s probably because you?re with a shared web hosting company that doesn?t allow scripts to run an optimize command via SQL statements (SQL \"OPTIMIZE\" instruction). Please consult your web hosting company on this matter.

    \n
    Is the plugin tried and tested?
    \n

    Yes - WP-Optimize is WordPress\'s #1 most-installed optimization plugin, with over 500,000 users and a pedigree going back over 7 years.

    \n
    Does WP-Optimize support InnoDB tables?
    \n

    WP-Optimize will disable some features if it detects InnoDB tables. Optimization of the database tables on-disk is not available, but other clean up features would work.

    \n
    Can you help me restore my database?
    \n

    I\'m afraid that this is not possible. Please ensure that you make a backup of your entire database before using WP-Optimize for the first time, and when you upgrade to a major new version of it. We recommend UpdraftPlus.

    \n
    Are there any bugs in this plugin?
    \n

    The plugin is an ongoing work; that means that it is impossible to rule out unforeseen situations and bugs. So I would recommend you to test it out on your local system or make a backup of your database (just to be extra careful).

    \n
    How do I stop transient options from coming back automatically each time I clear them?
    \n

    When WordPress uses a particular transient, that specific transient is re-created automatically. So, it\'s normaly for ones which are in active use to gradually re-appear. The best way to keep things optimal is to clear the transient options on a scheduled basis. For example, WordPress may create 50 transient option in a week. If you schedule WP-Optimize to clear these options on a weekly basis, you?ll have far fewer building up.

    \n
    The table size shows wrong / Not optimizing
    \n

    Please check your database for corrupted tables. That can happen, usually your web hosting company can run the repair command on the db.

    \n\n
    \n\n\n

    2.1.1 - 28/Feb/2017

    \n\n
      \n
    • FEATURE: Added the ability to take a automatic backup with UpdraftPlus (https://updraftplus.com) before an optimization
    • \n
    • FEATURE: When optimizing from the dashboard, tables are now optimized one by one, to reduce the scope for timeouts
    • \n
    • FIX: Removal of sitemeta items from main site on multisite install was not proceeding
    • \n
    • TWEAK: Adding premium bootstrapping to WP-Optimize for adding premium features in the future
    • \n
    • TWEAK: A few wording tweaks, plus automatically refresh the page if the \'admin bar menu\' option is changed
    • \n
    • TWEAK: Introduce internal logging API
    • \n
    \n\n

    2.1.0 - 28/Dec/2016

    \n\n
      \n
    • FOCUS: This release concentrates upon the user-interface, and in particular upon improving the clarity of each part, and making optimizations, saves and other actions possible without page reloads.
    • \n
    • FEATURE: Any optimisation can now be run individually with a single button press
    • \n
    • TWEAK: All optimisations run via the dashboard page are now run via AJAX (no page refresh)
    • \n
    • TWEAK: Settings saving now takes place via AJAX (no page refresh)
    • \n
    • TWEAK: Navigation between different tabs now takes place without a page refresh
    • \n
    • TWEAK: The \"trackback/comments\" actions section now operates via AJAX (no page refresh needed)
    • \n
    • TWEAK: \"Refresh\" button in the \"Status\" widget now refreshes via AJAX (no page refresh needed)
    • \n
    • TWEAK: When saving settings or running an optimization, the \"Status\" widget now automatically refreshes
    • \n
    • TWEAK: Make the admin bar menu into a drop-down, making it quicker to access individual tabs
    • \n
    • TWEAK: Call set_time_limit to reduce the chances of PHP self-terminating via reaching max_execution_time
    • \n
    • TWEAK: Introduce dashboard notice infrastructure
    • \n
    • TWEAK: The lines showing information on how many spam/trashed posts and comments existed were incomplete
    • \n
    \n\n

    2.0.1 - 12/Dec/2016

    \n\n
      \n
    • OWNERSHIP: WP-Optimize is now under the leadership of Team UpdraftPlus - https://updraftplus.com. A big thank you to Ruhani (who remains on-board) for his leadership of WP-Optimize until this point! Layout, branding and links have been altered to reflect this change.
    • \n
    • RE-FACTOR: Internal code completely re-factored, laying the foundations for future improvements
    • \n
    • TWEAK: Various filters introduced internally for easier customisation
    • \n
    • TWEAK: Marked form element labels, so that they can be clicked
    • \n
    • TWEAK: Various small UI improvements (more to come in future releases)
    • \n
    • FIX: Previous versions could potentially run OPTIMIZE commands on tables in the same MySQL database (if it was shared) belonging to other sites
    • \n
    • FIX: Previous versions were not deleting most delete-able transients. This is now fixed, with the modification that we now delete all expired transients.
    • \n
    • LANGUAGES: Removed language packs and screenshots that are already carried by wordpress.org, reducing the plugin download / install size
    • \n
    \n\n

    1.9.1

    \n\n
      \n
    • Ability to clean up Unused Post Meta, Comment Meta and Broken Relationship Data
    • \n
    • Warning prompts for RED marked items and optimize button
    • \n
    • Better transient options cleaning.
    • \n
    • Language files update
    • \n
    • Various other fixes
    • \n
    \n\n

    1.9

    \n\n
      \n
    • 27 Weeks retention option equivalent to 6 month
    • \n
    • Compatibility update.
    • \n
    • Language files update
    • \n
    • Removed email notifications, it doesn\'t work on many servers
    • \n
    • Various other fixes
    • \n
    \n\n

    1.8.9.10

    \n\n
      \n
    • Security Patch provided by Dion at WordPress.org and Security report provided by http://planetzuda.com .
    • \n
    • Language files update
    • \n
    \n\n

    1.8.9.8

    \n\n
      \n
    • Daily Schedule Option Added
    • \n
    • Email notification on automatic optimization, default email is admin email address. You can change this in settings
    • \n
    \n\n

    1.8.9.7

    \n\n
      \n
    • BUGFIX for Settings screen
    • \n
    • Enable/Disable trackbacks / comments buttons removal and use select box instead. Extra button caused the Auto Scheduler to get into reset mode.
    • \n
    \n\n

    1.8.9.6

    \n\n
      \n
    • There were few number formatting problem and detection of InnoDB table format. Charles Dee Rice solved the problems that I missed out. Thank you!
    • \n
    • Duplicate msg fixed
    • \n
    • Enable/Disable trackbacks for all published post
    • \n
    • Enable/Disable comments for all published post
    • \n
    \n\n

    1.8.9

    \n\n
      \n
    • ONE MILLION+ Downloads. THANK YOU!!
    • \n
    • Language updates platform - see readme file for details.
    • \n
    • Mixed type tables optimization supported and in BETA
    • \n
    • Removal of akismet metadata from comments
    • \n
    • Removal of other stale metadata from comments
    • \n
    • InnoDB tables won\'t be optimized.
    • \n
    • Main screen user selection will be saved. Red items selection will not be saved
    • \n
    • Scheduled time display will be shown according to WordPress blog local time
    • \n
    \n\n

    1.8.6

    \n\n
      \n
    • Language files update
    • \n
    • Fix issues with total gain number problem
    • \n
    • InnoDB tables detected and features disabled automatically, tables view will not show Overhead. Main view will not show space saved, or total gain.
    • \n
    \n\n

    1.8.5

    \n\n
      \n
    • Version bump + modified translator names
    • \n
    \n\n

    1.8.4

    \n\n
      \n
    • Problem with readme file changes
    • \n
    \n\n

    1.8.3

    \n\n
      \n
    • Minor fixes
    • \n
    \n\n

    1.8.1

    \n\n
      \n
    • A whole lot more code optimization
    • \n
    • Slick new interface
    • \n
    • Responsive mobile interface, supports running from iPhone/Android/Tablets
    • \n
    • Tables moved to independent tab
    • \n
    • Optimize faster
    • \n
    • GitHub updater support
    • \n
    • I do not monitor WP forums, support email at plugins(at)ruhanirabin.com
    • \n
    \n\n

    1.7.4

    \n\n
      \n
    • More Translation compatibility.
    • \n
    • Added MYSQL and PHP versions beside the Optimizer tab.
    • \n
    \n\n

    1.7.3

    \n\n
      \n
    • Fixed Problems with wpMail.
    • \n
    • Fixed Problems with wpAdmin menubar.
    • \n
    • Fixed Permission issues on some site.
    • \n
    • Language files update
    • \n
    \n\n

    1.7.2

    \n\n
      \n
    • All MySQL statements re-factored into native WP database calls - necessary for future versions of MySQL and WordPress.
    • \n
    • Upgrade to match WordPress 3.9 changes.
    • \n
    • Language files update
    • \n
    • Now postmeta cleanup is disabled from code - it will be updated soon with native WordPress postmeta cleaning options.
    • \n
    \n\n

    1.6.2

    \n\n
      \n
    • Language files update
    • \n
    \n\n

    1.6.1

    \n\n
      \n
    • Fixed - trashed Comments was not clearing out.
    • \n
    • Language files update
    • \n
    \n\n

    1.5.7

    \n\n
      \n
    • Language files update
    • \n
    \n\n

    1.5.6

    \n\n
      \n
    • \"Unused Tags cleanup\" option made a problem on some WordPress sites that it deletes empty categories. Since I am unable to replicate this problem. I am making this option disabled.
    • \n
    • Language files update
    • \n
    • Minor maintenance and fixes.
    • \n
    \n\n

    1.5.5

    \n\n
      \n
    • Safe clean up options are selected by default, defaults are not by user preference for now (Optimizer Page).
    • \n
    • All the potentially dangerous clean up options are MARKED RED.
    • \n
    • Language files update
    • \n
    • New features explained - http://j.mp/HBIoVT (read the blog post).
    • \n
    \n\n

    1.5.4

    \n\n
      \n
    • More path related fixes for various warnings. Maintenance
    • \n
    \n\n

    1.5.2

    \n\n
      \n
    • Fatar error fix, if it disabled your wp admin, please remove the wp-optimize directory and reinstall again.
    • \n
    \n\n

    1.5.1

    \n\n
      \n
    • Option to add or remove link on wp admin bar (even enabled - it is visible to admin only).
    • \n
    • New admin interface.
    • \n
    • Settings to select items for automatic optimization.
    • \n
    • Removal of WordPress transient options
    • \n
    • Removal of orphaned post meta tags.
    • \n
    • Removal of unused tags.
    • \n
    • 3 different schedule times added (weekly, bi-weekly and monthly).
    • \n
    • Language files update
    • \n
    • Code optimization and translation strings updated.
    • \n
    • Integrated development log from TRAC
    • \n
    \n\n

    1.1.2

    \n\n
      \n
    • removed persistent admin bar menu item
    • \n
    • Language files update
    • \n
    \n\n

    1.1.1

    \n\n
      \n
    • Fix Fatal Error.
    • \n
    \n\n

    1.1.0

    \n\n
      \n
    • Added WP-Optimize to admin menu bar on top. Always accessible.
    • \n
    • Added wp-optimize.pot file for translators (inside ./languages/ folder).
    • \n
    • Last auto optimization timestamp / display
    • \n
    • Fix possible scheduler bug as requested at support forum
    • \n
    • Fix some other codes regarding SQL query parameters
    • \n
    • Ability to keep last X weeks of data, any junk data before that period will be deleted - this option affects both Auto and Manual process. Appreciate time and help from Mikel King (http://mikelking.com/) about this matter.
    • \n
    \n\n

    1.0.1

    \n\n
      \n
    • Removed auto cleanup of trackbacks or pingbacks.. it\'s better for people to do it manually.
    • \n
    \n\n

    0.9.8-beta

    \n\n
      \n
    • added beta tag
    • \n
    \n\n

    0.9.8

    \n\n
      \n
    • Remove all trackbacks and pingbacks (can significantly reduce db size)
    • \n
    • Remove all Trash Comments and Posts
    • \n
    • Enable/Disable weekly schedules of optimization. This is an EXPERIMENTAL feature. It may or may not work on all servers.
    • \n
    \n\n

    0.9.4

    \n\n
      \n
    • Non Initialized variables fixes as of https://wordpress.org/support/topic/plugin-wp-optimize-errors-in-debug-mode?replies=2
    • \n
    \n\n

    0.9.3

    \n\n
      \n
    • Removed security tools.
    • \n
    • Full database size displayed
    • \n
    \n\n

    0.9.2

    \n\n
      \n
    • Now the plugin is visible to site administrators only. Authors, Contributors, Editors won\'t be able to see it.
    • \n
    \n\n

    0.9.1

    \n\n
      \n
    • Fixed problem with database names containing \"-\" .
    • \n
    • NEW Main Level Menu Item added for WP-Optimize, You might need to scroll down to see it
    • \n
    • Compatibilty with WordPress 3.1
    • \n
    • Language files update
    • \n
    • Added auto draft post removal feature
    • \n
    \n\n

    0.8.0

    \n\n
      \n
    • Added Multilanguage capability
    • \n
    • Language files update
    • \n
    \n\n

    0.7.1

    \n\n
      \n
    • POST META Table cleanup code removed cause it is making problems with many hosts
    • \n
    \n\n

    0.7

    \n\n
      \n
    • Added cleanup of POST META Table along with the revisions
    • \n
    • Fixed some minor PHP tags which causes the total numbers to disappear
    • \n
    • Now requires MySQL 5.1.x and PHP 5.1.x
    • \n
    \n\n

    0.6.5.1

    \n\n
      \n
    • Fix Interface
    • \n
    ','WP-Optimize','WP-Optimize is WordPress's most-installed optimization plugin. With it, you can clean up your database easily and safely, without manual queries.','publish','open','closed','','wp-optimize','','','2017-02-28 13:38:02','2017-02-28 13:38:02','',0,'https://wordpress.org/plugins-wp/wp-optimize/',0,'plugin','',0), (192,6655719,'2013-06-19 04:50:51','2013-06-19 04:50:51','\n

    MailChimp for WordPress

    \n\n

    Adding sign-up methods for your MailChimp lists to your WordPress site should be easy. With this plugin, it finally is.

    \n\n

    MailChimp for WordPress helps you add more subscribers to your MailChimp lists using various methods. You can create good looking opt-in forms or integrate with any other form on your site, like your comment, contact or checkout form.

    \n\n

    [youtube https://www.youtube.com/watch?v=fZCYPnFybqU]

    \n\n

    Some of the MailChimp for WordPress features

    \n\n
      \n
    • Connect with your MailChimp account in seconds.

    • \n
    • Sign-up forms which are good looking, user-friendly and mobile optimized. You have complete control over the form fields and can send anything you like to MailChimp.

    • \n
    • Seamless integration with the following plugins:

      \n\n
        \n
      • Default WordPress Comment Form
      • \n
      • Default WordPress Registration Form
      • \n
      • Contact Form 7
      • \n
      • WooCommerce
      • \n
      • Ninja Forms 3
      • \n
      • BuddyPress
      • \n
      • MemberPress
      • \n
      • Events Manager
      • \n
      • Easy Digital Downloads
      • \n
    • \n
    • A multitude of available add-on plugins:

      \n\n
    • \n
    • Well documented. Our knowledge base is updated daily.

    • \n
    • Developer friendly. MailChimp for WordPress is built to be extensible, and comes with a code reference for developers.

    • \n
    \n\n
    \n

    Become a Premium user

    \n

    MailChimp for WordPress has a Premium add-on which comes with several additional benefits.

    \n
      \n
    • Multiple forms (with AJAX)
    • \n
    • Advanced MailChimp e-commerce integration for WooCommerce
    • \n
    • Email notifications
    • \n
    • An easy way to style your forms
    • \n
    • Detailed reports & statistics
    • \n
    \n

    View more Premium features

    \n
    \n\n

    What is MailChimp?

    \n\n

    MailChimp is a newsletter service that allows you to send out email campaigns to a list of email subscribers. MailChimp is free for lists up to 2000 subscribers, which is why it is the newsletter-service of choice for thousands of businesses.

    \n\n

    This plugin acts as a bridge between your WordPress site and your MailChimp account, connecting the two together.

    \n\n

    If you do not yet have a MailChimp account, creating one is 100% free and only takes you about 30 seconds.

    \n\n

    Support

    \n\n

    Use the WordPress.org plugin forums for community support where we try to help all of our users. If you found a bug, please create an issue on Github where we can act upon them more efficiently.

    \n\n

    If you\'re a premium user, please use the email address inside the plugin for support as that will guarantee a faster response time.

    \n\n

    Please take a look at the MailChimp for WordPress knowledge base as well.

    \n\n

    Add-on plugins

    \n\n

    There are several add-on plugins for MailChimp for WordPress, which help you get even more out of your site.

    \n\n

    Translations

    \n\n

    The plugin is translated using Transifex. If you want to help out, please head over to the translation project on Transifex.

    \n\n

    Development

    \n\n

    MailChimp for WordPress is being developed on GitHub. If you want to collaborate, please look at ibericode/mailchimp-for-wordpress.

    \n\n

    Customizing the plugin

    \n\n

    MailChimp for WordPress comes with many filter & action hooks which allow you to modify the default plugin behavior. We\'re also maintaining a collection of common code snippets for MailChimp for WordPress.

    \n\n\n

    Installing the plugin

    \n\n
      \n
    1. In your WordPress admin panel, go to Plugins > New Plugin, search for MailChimp for WordPress and click \"Install now\"
    2. \n
    3. Alternatively, download the plugin and upload the contents of mailchimp-for-wp.zip to your plugins directory, which usually is /wp-content/plugins/.
    4. \n
    5. Activate the plugin
    6. \n
    7. Set your MailChimp API key in the plugin settings.
    8. \n
    \n\n

    Configuring Sign-Up Form(s)

    \n\n
      \n
    1. Go to MailChimp for WP > Forms
    2. \n
    3. Select at least one MailChimp list to subscribe people to.
    4. \n
    5. (Optional) Add more fields to your form using the add MailChimp field dropdown.
    6. \n
    7. Embed a sign-up form in pages or posts by using the [mc4wp_form] shortcode.
    8. \n
    9. Show a sign-up form in your widget areas using the \"MailChimp Sign-Up Form\" widget.
    10. \n
    11. Show a sign-up form from your theme files by using the following PHP function.

      \n\n

      <?php

      \n\n

      if( function_exists( \'mc4wp_show_form\' ) ) {\n mc4wp_show_form();\n}

    12. \n
    \n\n

    Need help?

    \n\n

    Please take a look at the MailChimp for WordPress knowledge base first. If you can\'t find your answer there, please look through the MailChimp for WordPress plugin support forums or start your own topic.

    \n\n\n
    \n
    More documentation
    \n

    More detailed documentation can be found in the MailChimp for WordPress knowledge base.

    \n
    How to display a form in posts or pages?
    \n

    Use the [mc4wp_form] shortcode.

    \n
    How to display a form in widget areas like the sidebar or footer?
    \n

    Go to Appearance > Widgets and use the MailChimp for WP Form widget that comes with the plugin.

    \n
    Where can I find my MailChimp API key?
    \n

    You can find your MailChimp API key here

    \n
    How to add a sign-up checkbox to my Contact Form 7 form?
    \n

    Use the following shortcode in your CF7 form to display a MailChimp sign-up checkbox.

    \n\n
    [mc4wp_checkbox \"Subscribe to our newsletter?\"]\n
    \n
    The form shows a success message but subscribers are not added to my list(s)?
    \n

    If the form shows a success message, there is no doubt that the sign-up request succeeded. MailChimp could have a slight delay sending the confirmation email though, please just be patient and make sure to check your SPAM folder.

    \n\n

    When you have double opt-in disabled, new subscribers will be seen as imports by MailChimp. They will not show up in your daily digest emails or statistics. We always recommend leaving double opt-in enabled.

    \n
    How can I style the sign-up form?
    \n

    You can use custom CSS to style the sign-up form if you do not like the themes that come with the plugin. The following selectors can be used to target the various form elements.

    \n\n
    .mc4wp-form { ... } /* the form element */\n.mc4wp-form p { ... } /* form paragraphs */\n.mc4wp-form label { ... } /* labels */\n.mc4wp-form input { ... } /* input fields */\n.mc4wp-form input[type=\"checkbox\"] { ... } /* checkboxes */\n.mc4wp-form input[type=\"submit\"] { ... } /* submit button */\n.mc4wp-alert { ... } /* success & error messages */\n.mc4wp-success { ... } /* success message */\n.mc4wp-error { ... } /* error messages */\n
    \n\n

    You can add your custom CSS to your theme stylesheet or (easier) by using a plugin like Simple Custom CSS

    \n
    I\'m getting an \"HTTP Error\" when trying to connect to MailChimp
    \n

    If you\'re getting an HTTP Error when trying to connect to your MailChimp account, please contact your webhost and ask them if they have PHP CURL installed and updated to the latest version (7.40.x).\nAlso, please ask them to allow requests to https://api.mailchimp.com/.

    \n
    How do I show a sign-up form in a pop-up?
    \n

    We recommend the Boxzilla pop-up plugin for this. You can use the form shortcode in your pop-up box to show a sign-up form.

    \n
    My question is not listed
    \n

    Please head over to the MailChimp for WordPress knowledge base for more detailed documentation.

    \n\n
    \n\n\n

    4.1.0 - March 14, 2017

    \n\n

    Improvements

    \n\n
      \n
    • Updated all JavaScript dependencies in the plugin.
    • \n
    • Failsafed filter hooks to prevent invalid variable types.
    • \n
    • Explain that greyed out integrations means that specific plugin is not activated.
    • \n
    • Conditional form elements now uses event delegation, so it works with forms in Boxzilla pop-ups.
    • \n
    • Updated language files.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Added support for Ninja Forms 3.
    • \n
    • Added mc4wp_integration_show_checkbox filter.
    • \n
    \n\n

    4.0.13 - February 8, 2017

    \n\n

    Improvements

    \n\n
      \n
    • Ensure fields are HTML decoded before sending to MailChimp.
    • \n
    • Better OptimizePress compatibility.
    • \n
    • Show all address-type fields as required when form contains 1 or more fields of the same address group.
    • \n
    \n\n

    4.0.12 - January 16, 2017

    \n\n

    Fixes

    \n\n
      \n
    • Don\'t call stripslashes on POST data twice.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Plugin review notice is now dismissible over AJAX.
    • \n
    • Improved formatting of birthday fields.
    • \n
    • Updated Polish translations, thanks to Mateusz Lomber.
    • \n
    • Updated German translations, thanks to Sven de Vries.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Add update_ecommerce_store_product method to API class.
    • \n
    • Throw form specific JavaScript events, like 15.subscribed to hook into \"subscribed\" events for form with ID 15.
    • \n
    \n\n

    4.0.11 - December 9, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Unescaped request variable on integration settings page, allowing for authenticated XSS. Thanks to dxwsecurity for responsibly disclosing.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Add $args parameter to API::get_lists_activity method. Relates to the MailChimp Activity plugin.
    • \n
    \n\n

    4.0.10 - December 6, 2016

    \n\n

    Improvements

    \n\n
      \n
    • You can now enable or disable debug logging from the \"Other\" settings page.
    • \n
    • No longer using deprecated function in Contact Form 7, thanks to stodorovic.
    • \n
    • Improved UI for adding hidden interest groupings fields to a form.
    • \n
    \n\n

    4.0.9 - November 23, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Issue with escaped HTML when using form tags introduced by previous update.
    • \n
    \n\n

    4.0.8 - November 23, 2016

    \n\n

    Improvements

    \n\n
      \n
    • Improved handling of large debug logs.
    • \n
    • Improved error messages when writing exceptions to debug log.
    • \n
    • Show notice when form is missing required MailChimp fields.
    • \n
    • Custom form integration now handles arrays with 1-level depth. Thanks to Mardari Igor.
    • \n
    • You can now use nested tags in your form code, eg {data key=\"utm_source\" default=\"{current_path}\"}
    • \n
    \n\n

    Additions

    \n\n\n\n

    4.0.7 - October 25, 2016

    \n\n

    Improvements

    \n\n
      \n
    • Obfuscate all email addresses in debug log. Thanks Sauli Lepola.
    • \n
    • Ask for confirmation before disabling double opt-in, which we do not recommend.
    • \n
    • Allow vertical resizing of debug log.
    • \n
    • Failsafe against including JavaScript file twice.
    • \n
    • No longer wrapping CF7 checkbox in paragraph tags.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Added mc4wp_form_api_error action hook for API errors encountered by forms.
    • \n
    • Added element_class argument to [mc4wp_form] shortcode for adding CSS classes.
    • \n
    \n\n

    4.0.6 - October 10, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Issue with lists not showing when using W3 Total Cache with APCu object cache enabled.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • We\'re no longer stripping newlines from text fields.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Added missing e-commerce related API methods to API class.
    • \n
    \n\n

    4.0.5 - September 29, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Allow checkbox option for the List Choice field (again).
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Fetch MailChimp lists over AJAX, to speed up perceived performance (especially when your account has many lists).
    • \n
    • Periodically fetch MailChimp lists, so cache is always fresh.
    • \n
    • Improved <label> element accessibility for checkbox integrations.
    • \n
    • Stop using double underscore prefix in function names, as these are reserved in PHP 7.
    • \n
    • {post} and {user} shortcodes now accept a default parameter.
    • \n
    \n\n

    Additions

    \n\n\n\n

    4.0.4 - September 7, 2016

    \n\n

    Improvements

    \n\n
      \n
    • Allow re-running previous migrations by visiting a certain admin URL.
    • \n
    • Do not show checkboxes option for fields that only accept a single value.
    • \n
    • Write field specific errors to debug log when MailChimp denies a sign-up request.
    • \n
    • Write to debug log when custom integrations can not find an EMAIL field.
    • \n
    • Differentiate between connection & authorization errors when testing connection to MailChimp.
    • \n
    • Bump limit of number of MailChimp lists to fetch from 100 to 500.
    • \n
    \n\n

    4.0.3 - August 24, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Ninja Forms integration not working when using PayPal integration.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Show connection errors on MailChimp settings page.
    • \n
    \n\n

    Additions

    \n\n\n\n

    4.0.2 - August 10, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Hidden fields which referenced interest groups by name were not sent to MailChimp.
    • \n
    • Adding hidden field to form would reset value on every change.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Decrease file size of JavaScript for forms by about 30%.
    • \n
    \n\n

    4.0 & 4.0.1 - August 9, 2016

    \n\n

    This release updates the plugin to version 3 of the MailChimp API. Please read through the upgrade guide before updating to make sure things keep working as expected for you.

    \n\n

    Changes

    \n\n
      \n
    • \"Send welcome email\" is now handled from your list settings in MailChimp.
    • \n
    • Filter mc4wp_form_merge_vars is now called mc4wp_form_data.
    • \n
    • Filter mc4wp_integration_merge_vars is now called mc4wp_integration_data.
    • \n
    • New format for GROUPING fields in forms & filter hooks.
    • \n
    • Value delimiter in hidden fields is now a pipe | character.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • New filter: mc4wp_form_subscriber_data.
    • \n
    • New filter: mc4wp_integration_subscriber_data.
    • \n
    • New form tag: {cookie name=\"mycookie\"}
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • The plugin now communicates with the latest & greatest MailChimp API.
    • \n
    • Previously unsubscribed subscribers can now be re-added without errors.
    • \n
    • Add User-Agent header to all API requests.
    • \n
    • Available fields in form editor are now split-up by category.
    • \n
    • Birthday fields now accept a broader range of values and delimiters.
    • \n
    \n\n

    Fixes

    \n\n
      \n
    • Issue with only 10 MailChimp lists / fields / interests being returned.
    • \n
    • Incorrect form message showing when double opt-in is disabled.
    • \n
    • Error in upgrade routine when API request fails.
    • \n
    • List fields not fetched when list has just 1 non-default merge field.
    • \n
    \n\n

    3.1.12 - July 28, 2016

    \n\n

    Improvements

    \n\n
      \n
    • Smarter scrolling after submitting form & reloading page.
    • \n
    • Format output of {subscriber_count} tag.
    • \n
    • You can now use <img> in your form messages.
    • \n
    • Add MailChimp API error code to debug log lines.
    • \n
    • Add plugin name + version to User-Agent header for all MailChimp API requests.
    • \n
    • Make sure value of MC_LANGUAGE field is limited to 2 characters.
    • \n
    \n\n

    3.1.11 - July 5, 2016

    \n\n

    Improvements

    \n\n
      \n
    • Update JavaScript dependencies for admin screens.
    • \n
    • Test debug log & show notice when it\'s not writable.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Add \"placeholder\" option for dropdown fields.
    • \n
    \n\n

    3.1.10 - June 21, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Styles Builder in Premium not building because of incorrect flag in core plugin.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Don\'t show position option for WooCommerce integration when sign-up is implicit.
    • \n
    • Improvements to form previewer logic.
    • \n
    • Make sure admin notifications are always shown exactly one time.
    • \n
    \n\n

    3.1.9 - June 7, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Placeholder polyfill wasn\'t loaded (only in IE8 and below).
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Don\'t write to debug log if it is not writable.
    • \n
    • Reset some CSS properties for commonly used class names in Form Editor & Debug Log.
    • \n
    • Do not unnecessarily register styles which are then immediately enqueued.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Add \"is required field\" option for dropdown & radio fields in Field Helper.
    • \n
    • Link to Boxzilla plugin from admin sidebar.
    • \n
    \n\n

    3.1.8 - May 23, 2016

    \n\n

    Fixes

    \n\n\n\n

    Improvements

    \n\n
      \n
    • Show dismissible notice when API key is not set.
    • \n
    • Show empty API key errors in plugin log.
    • \n
    • Friendlier error message for re-subscribe failures.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Add form.reset() method to JS API.
    • \n
    \n\n

    3.1.7 - May 9, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Shortcode wasn\'t accepting element_id as a valid attribute.
    • \n
    • Take array style fields into account when checking if a form contains a given field.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Nested fields will now be properly validated when they\'re marked as required.
    • \n
    • If plugin is installed using Composer, autoloader won\'t be loaded (again).
    • \n
    \n\n

    3.1.6 - April 12, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Form event for starting a form was named start where it should have been started.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Some preparations for the upcoming migration to the new MailChimp API (version 3).
    • \n
    • Consistent hook parameters for mc4wp_form_subscribed action.
    • \n
    • Improved logic for rendering form response.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • New checkbox position for WooCommerce checkout integration.
    • \n
    \n\n

    3.1.5 - March 22, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Response message was shown for unsubmitted forms when using {response} in the form mark-up with multiple forms on the same page.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Scroll to form after form submission now uses native browser method scrollIntoView().
    • \n
    • Various improvements for right-to-left (RTL) sites.
    • \n
    • The MailChimp API key is now obfuscated on the settings page.
    • \n
    • Contact Form 7 integration now uses an early hook priority to ensure we run before any page redirects.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Add position option for WooCommerce integration.
    • \n
    • Add {post} tag whch can be used in form mark-up to fetch properties of the current page or post.
    • \n
    \n\n

    3.1.4 - February 29, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Forms with address fields never passing validation.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Perform type checks on global variables to prevent issues with poorly coded plugins.
    • \n
    • Add Interest Category ID to list overview table for easier debugging.
    • \n
    • Updated Russian translations.
    • \n
    \n\n

    3.1.3 - February 17, 2016

    \n\n

    Fixes

    \n\n\n\n

    Improvements

    \n\n
      \n
    • Updated Dutch, Portugese, Spanish and Italian translations.
    • \n
    \n\n

    3.1.2 - February 15, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Form JavaScript not working when another plugins loads Dojo framework.
    • \n
    • [ENTER] not submitting form settings or creating new-line.
    • \n
    • Internal fields marked as required not passing form validation.
    • \n
    • Deselecting all MailChimp lists wouldn\'t persist after saving form settings.
    • \n
    • No sign-up request firing for lists with only an EMAIL field.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Show accepted choice values for dropdown and radio fields in lists overview.
    • \n
    • Use all MailChimp lists for Lists Choice field, instead of just the selected ones.
    • \n
    • Failsafed JavaScript for when any other script loads RequireJS globally.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Added support for Shortcake plugin.
    • \n
    • Error message for when no list is selected can now be customized from the form message settings.
    • \n
    \n\n

    3.1.1 - February 1, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Field Helper not adding type attribute when building forms.
    • \n
    • Field Helper not setting the correct value attribute for Hidden Groups.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Add sourcemaps to minified JavaScript files.
    • \n
    • Add link to article on how to enable debug logging.
    • \n
    • Field Helper now always shows both placeholder and value fields.
    • \n
    \n\n

    3.1 - January 26, 2016

    \n\n

    Fixes

    \n\n
      \n
    • <input> fields being stripped from form when saving as a role other than \"superadmin\" on MultiSite installations.
    • \n
    • Certain actions like \"renew lists\" not working for users other than admin (if they have explicit access to settings pages).
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Show Akamai firewall reference number when site\'s IP address is blocked
    • \n
    • Make sure integrations have a MailChimp list selected before trying to subscribe.
    • \n
    • Move less important settings to \"Other\" page.
    • \n
    • When a field is required in MailChimp, it has to be required in forms as well now.
    • \n
    • Allow including a _mc4wp_email_type field in forms to set an explicit email type.
    • \n
    • Miscellaneous overall performance improvements.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Added debug logging, which shows all warnings & errors the plugin encountered in communicating with MailChimp.
    • \n
    • Add get_lists_for_email( $email ) method to API class.
    • \n
    • Add MC4WP_Queue class for better background processing of expensive operations.
    • \n
    \n\n

    3.0.12 - January 15, 2016

    \n\n

    Fixes

    \n\n
      \n
    • Incorrect hooks being fired for successful and unsuccessful form sign-ups (which also broke the success redirect).
    • \n
    \n\n

    3.0.11 - January 14, 2016

    \n\n

    Improvements

    \n\n
      \n
    • Allow splitting up \"birthday\" and \"date\" fields into separate fields with day, month and year index.
    • \n
    • Improved algorithm for finding fields when integrating with Contact Form 7 or other custom forms.
    • \n
    • Ninja Forms integration can now automatically find name-fields.
    • \n
    • Ninja Forms integration can now use mc4wp- prefixed admin labels.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • add_ecommerce_order() and delete_ecommerce_order() methods to API class.
    • \n
    \n\n

    3.0.10 - January 6, 2016

    \n\n

    Fixes

    \n\n
      \n
    • 500 server error for \"already subscribed\" on Windows servers.
    • \n
    • Incorrect HTML being generated for hidden fields.
    • \n
    • Duplicate sign-up request when using CF7 integration.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Stop logging \"already subscribed\" errors to PHP\'s error log.
    • \n
    • Simplify pattern attribute for date fields.
    • \n
    • Remove invalid autofill attribute from honeypot field.
    • \n
    \n\n

    3.0.9 - December 17, 2015

    \n\n

    Fixes

    \n\n

    Not being able to select a list when creating a new form.

    \n\n

    3.0.8 - December 15, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Make sure mc4wp_show_form() works without passing a form ID.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Remove UI for bulk-enabling integrations, as every integration needs specific settings anyway.
    • \n
    • Do not print inline JavaScript for forms until it\'s surely needed.
    • \n
    • Add position key to mc4wp_admin_menu_items filter to set a menu position.
    • \n
    • Various minor code improvements.
    • \n
    \n\n

    3.0.7 - December 10, 2015

    \n\n

    Fixes

    \n\n

    Workaround for SSL certification bug in WordPress 4.4, affecting servers with an older versions of OpenSSL installed.

    \n\n

    Additions

    \n\n

    Added mc4wp_use_sslverify filter to disable or explicitly enable SSL certificate verification.

    \n\n

    3.0.4 - December 7, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Fixes compatibility issues with add-on plugins performing validation, like Goodbye Captcha and BWS Captcha.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Now using group ID\'s for interest grouping fields, so changing the group in MailChimp does not require updating your form code.
    • \n
    • Never load enabled integrations which are not installed.
    • \n
    • Reintroduce support for automatically sending OPTIN_IP
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Add filter: mc4wp_form_data, filters form data before it is processed.
    • \n
    \n\n

    3.0.3 - November 30, 2015

    \n\n

    Fixes

    \n\n\n\n

    Improvements

    \n\n
      \n
    • Prevented notice when saving Form widget settings for the first time.
    • \n
    • Add autofill=\"off\" to honeypot field.
    • \n
    • Remove nonces from forms as they\'re not really useful for publicly available features.
    • \n
    • Errors returned by MailChimp are now logged for Forms as well.
    • \n
    • Pre-select MailChimp list if there\'s just one list in the connected account.
    • \n
    • Added missing translation calls for Form Editor.
    • \n
    \n\n

    3.0.2 - November 25, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Redirect on success not working.
    • \n
    • Forms overview page redirected to main WP Admin page (edge case).
    • \n
    • Safari was always showing the leave-page confirmation dialog.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Add form-specific classes to preview form element. This allows the Styles Builder to work with the Form Preview.
    • \n
    • Form events are now triggered after the page has finished loading, so all scripts are loaded & ready to use.
    • \n
    • Reset background-color in Form Themes stylesheets.
    • \n
    \n\n

    3.0.0 & 3.0.1 - November 23, 2015

    \n\n

    Version 3.0 is a total revamp of the plugin. For a quick overview of the changes, please read this post on our blog.

    \n\n

    Before upgrading, please go through the upgrade guide as some things have changed.

    \n\n

    Breaking Changes

    \n\n
      \n
    • Captcha fields: {captcha} field is now handled by the Captcha add-on plugin.
    • \n
    • New dynamic content tags syntax: {data_NAME} is now {data key=\"NAME\"}
    • \n
    • Event binding: jQuery(document).on(\'subscribe.mc4wp\',\'.mc4wp-form\', function(){ ... }) is now mc4wp.forms.on(\'subscribed\', function(form) { ... })
    • \n
    • Removed integrations: MultiSite & bbPress.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • New form editor with syntax highlighting, more advanced field options & better visual feedback.
    • \n
    • Better support for MailChimp address fields.
    • \n
    • Better support for choice fields (eg groupings, list choice & country fields).
    • \n
    • All fields marked as required are now validated server-side as well (instead of just MailChimp required fields).
    • \n
    • All integrations have their own settings page now.
    • \n
    • Events Manager: checkbox is now automatically added to booking forms.
    • \n
    • Tons of usability & accessibility improvements.
    • \n
    • Tons of code improvements: improved memory usage, 100+ new unit tests & better usage of various best practices.
    • \n
    • The premium plugin is now an add-on of this plugin.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • New \"Preview Form\" option, showing unsaved form changes.
    • \n
    • Integrations can now be \"implicit\", thus no longer showing a checkbox option to visitors.
    • \n
    • New JavaScript API, replacing jQuery event hooks.
    • \n
    • Ninja Forms integration
    • \n
    • Introduced various new filter & action hooks, please see the new code reference for developers for more information.
    • \n
    \n\n

    2.3.18 - November 2, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Incorrect number of parameters for error_log statement in integrations class.
    • \n
    \n\n

    Improvements

    \n\n\n\n

    2.3.17 - October 22, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Honeypot field being autofilled in Chrome, causing a form error.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Updated Portugese translations.
    • \n
    \n\n

    2.3.16 - October 14, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Error in Russian translation, causing a broken link on the MailChimp settings page.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Textual improvements to MailChimp settings page.
    • \n
    • Connectivity issues with MailChimp will now always show an error message.
    • \n
    • Renewing MailChimp lists will now also update the output of the {subscriber_count} tag.
    • \n
    \n\n

    2.3.15 - October 9, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Fixes JS error when form contains no submit button
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Only prefix url fields with http:// if it is filled.
    • \n
    • Updated Spanish & Catalan translations, thanks to Xavier Gimeno Torrent.
    • \n
    • Fix mc4wp_form_before_fields being applied twice.
    • \n
    • Position honeypot field to the right for Right-To-Left sites.
    • \n
    • _mc4wp_lists can now be a comma-separated string of MailChimp list ID\'s to subscribe to (or an array).
    • \n
    • Minor other defensive coding improvements to prevent clashes with other plugins.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Added opt-in usage tracking to help us make the plugin better. No sensitive data is tracked.
    • \n
    \n\n

    2.3.14 - September 25

    \n\n

    Fixes

    \n\n
      \n
    • Use of undefined constant in previous update.
    • \n
    \n\n

    2.3.13 - September 25, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Honeypot causing horizontal scrollbar on RTL sites.
    • \n
    • List choice fields not showing when using one of the default form themes.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Minor styling improvements for RTL sites.
    • \n
    • MailChimp list fields of type \"website\" will now become HTML5 url type fields.
    • \n
    • Auto-prefix fields of type url with http://
    • \n
    \n\n

    2.3.12 - September 21, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Issue with interest groupings not being fetched after updating to version 2.3.11
    • \n
    \n\n

    2.3.11 - September 21, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Honeypot field being filled by browser\'s autocomplete.
    • \n
    • Styling issue for submit buttons in Mobile Safari.
    • \n
    • Empty response from MailChimp API
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Do not query MailChimp API for interest groupings if list has none.
    • \n
    • Integration errors are now logged to PHP\'s error log for easier debugging.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • You can now use shortcodes in the form content.
    • \n
    \n\n

    2.3.10 - September 7, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Showing \"not connected\" when the plugin was actually connected to MailChimp.
    • \n
    • Issue with address fields when addr1 was not given.
    • \n
    • Comment form checkbox not outputted for some older themes.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Do not flush MailChimp cache on every settings save.
    • \n
    • Add default CSS styles for number fields.
    • \n
    • Placeholders will now work in older version of IE as well.
    • \n
    \n\n

    2.3.9 - September 1, 2015

    \n\n

    Improvements

    \n\n
      \n
    • MailChimp lists cache is now automatically flushed after changing your API key setting.
    • \n
    • Better field population after submitting a form with errors.
    • \n
    • More helpful error message when no list is selected.
    • \n
    • Translate options when installing plugin from a language other than English.
    • \n
    • Add form mark-up to WPML configuration file.
    • \n
    • Sign-up checkbox in comment form is now shown before the \"submit comment\" button.
    • \n
    • URL-encode variables in \"Redirect URL\" setting.
    • \n
    • Better error message when connected to MailChimp but account has no lists.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Add mc4wp_form_action filter to set a custom action attribute on the form element.
    • \n
    \n\n

    2.3.8 - August 18, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Prevented JS error when outputting forms with no submit button.
    • \n
    • Using 0 as a Redirect URL resulted in a blank page.
    • \n
    • Sign-up checkbox was showing twice in the Easy Digital Downloads checkout when showing registration fields, thanks Daniel Espinoza.
    • \n
    • Default form was not automatically translated for languages other than English.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Better way to hide the honeypot field, which stops bots from subscribing to your lists.
    • \n
    • role=\"form\" is no longer needed, thanks XhmikosR!
    • \n
    • Filter mc4wp_form_animate_scroll now disables just the scroll animation, not the scroll itself.
    • \n
    • Revamped UI for MailChimp lists overview
    • \n
    • Updated German & Greek translations.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Added mc4wp_form_is_submitted() and mc4wp_form_get_response_html() functions.
    • \n
    \n\n

    2.3.7 - July 13, 2015

    \n\n

    Improvements

    \n\n
      \n
    • Use the same order as MailChimp.com, which is useful when you have over 100 MailChimp lists.
    • \n
    • Use /* ... */ for inline JavaScript comments to prevent errors with minified HTML - props Ed Gifford
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Filter: mc4wp_form_animate_scroll to disable animated scroll-to after submitting a form.
    • \n
    • Add {current_path} variable to use in form templates.
    • \n
    • Add default attribute to {data_name} variables, usage: {data_something default=\"The default value\"}
    • \n
    \n\n

    2.3.6 - July 6, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Undefined index notice when visitor\'s USER_AGENT is not set.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Relayed the browser\'s Accept-Language header to MailChimp for auto-detecting a subscriber\'s language.
    • \n
    • Better CSS for form reset
    • \n
    • Updated HTML5 placeholder polyfill
    • \n
    \n\n

    2.3.5 - June 24, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Faulty update for v3.0 appearing for people running GitHub updater plugin.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Updated language files.
    • \n
    • Now passing the form as a parameter to mc4wp_form_css_classes filter.
    • \n
    \n\n

    2.3.4 - May 29, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Issue with GROUPINGS not being sent to MailChimp
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Code preview in Field Builder is now read-only
    • \n
    \n\n

    2.3.3 - May 27, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Get correct IP address when using proxy like Cloudflare or Sucuri WAF.
    • \n
    • Use strict type check for printing inline CSS that hides honeypot field
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Add contactemail and contactname to field name guesses when integrating with third-party form.
    • \n
    • Re-enable sslverify
    • \n
    \n\n

    2.3.2 - May 12, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Groupings not being sent to MailChimp
    • \n
    • Issue when using more than one {data_xx} replacement
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • IE8 compatibility for honeypot fallback script.
    • \n
    \n\n

    2.3.1 - May 6, 2015

    \n\n

    Fixes

    \n\n
      \n
    • PHP notice in includes/class-tools.php, introduced by version 2.3.
    • \n
    \n\n

    2.3 - May 6, 2015

    \n\n

    Fixes

    \n\n
      \n
    • The email address is no longer automatically added to the Redirect URL as this is against Google Analytics policy. To add it again, use ?email={email} in your Redirect URL setting.
    • \n
    • Registration type integrations were not correctly picking up on first- and last names.
    • \n
    • JavaScript error in IE8 because of setAttribute call on honeypot field.
    • \n
    • API class subscribe method now always returns a boolean.
    • \n
    \n\n

    Improvements

    \n\n\n\n

    Additions

    \n\n
      \n
    • You can now handle unsubscribe calls with our forms too.
    • \n
    • Added Portugese, Indonesian, German (CH) and Spanish (PR) translations.
    • \n
    \n\n

    2.2.9 - April 15, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Menu item for settings page not appearing on Google App Engine (#88)
    • \n
    \n\n

    Improvements

    \n\n\n\n

    2.2.8 - March 24, 2015

    \n\n

    Fixes

    \n\n
      \n
    • API key field value was not properly escaped.
    • \n
    • Background images were stripped from submit buttons.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Better sanitising of all settings
    • \n
    • Updated all translations
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Added mc4wp_before_checkbox and mc4wp_after_checkbox filters to easily add more fields to sign-up checkbox integrations.
    • \n
    • Added some helper methods related to interest groupings to MC4WP_MailChimp class.
    • \n
    • Allow setting custom MailChimp lists to subscribe to using lists attribute on shortcode.
    • \n
    \n\n

    2.2.7 - March 11, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Honeypot field was visible for themes or templates not calling wp_head() and wp_footer()
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Various minor code improvements
    • \n
    • Updated German, Spanish, Brazilian, French, Hungarian and Russian translations.
    • \n
    \n\n

    Additions

    \n\n\n\n

    2.2.6 - February 26, 2015

    \n\n

    Fixes

    \n\n
      \n
    • CSS reset wasn\'t working for WooCommerce checkout sign-up checkbox.
    • \n
    • mc4wp-submitted class was not added in IE8
    • \n
    • Incorrect action attribute on form element for some server configurations
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Anti-SPAM improvements: a better honeypot field and a timestamp field to prevent instant form submissions.
    • \n
    • Reset background-image on submit buttons when using CSS themes
    • \n
    • Smarter email detection when integrating with third-party forms
    • \n
    • Updated all translations
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Custom fallback for browsers not supporting input[type=\"date\"]
    • \n
    \n\n

    2.2.5 - February 13, 2015

    \n\n

    Fixed

    \n\n
      \n
    • Issue where WooCommerce checkout sign-up was not working for cheque payments.
    • \n
    • Translation were loaded too late to properly translate some strings, like the admin menu items.
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • The presence of required list fields in form mark-up is now checked as you type.
    • \n
    • Number fields will now repopulate if an error occurred.
    • \n
    • Updated all translations.
    • \n
    • Make sure there is only one plugin instance.
    • \n
    • Various other code improvements.
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Added support for GitHub Updater Plugin.
    • \n
    • You can now specify whether you want to send a welcome email (only with double opt-in disabled).
    • \n
    \n\n

    A huge thank you to Stefan Oderbolz for various fixed and improvements related to translations in this release.

    \n\n

    2.2.4 - February 4, 2015

    \n\n

    Fixed

    \n\n
      \n
    • Textual fix as entering \"0\" for no redirection does not work.
    • \n
    \n\n

    Improvements

    \n\n\n\n

    Additions

    \n\n
      \n
    • Now showing a heads up when at limit of 100 MailChimp lists. (#71)
    • \n
    • Added wpml-config.xml file for better WPML compatibility
    • \n
    • Added filter mc4wp_menu_items for adding & removing menu items from add-ons
    • \n
    \n\n

    2.2.3 - January 24, 2015

    \n\n

    Minor improvements and additions for compatibility with the MailChimp Sync plugin.

    \n\n

    2.2.2 - January 13, 2015

    \n\n

    Fixes

    \n\n
      \n
    • Plugin wasn\'t connecting to MailChimp for users on MailChimp server us10 (API keys ending in -us10)
    • \n
    \n\n

    2.2.1 - January 12, 2015

    \n\n

    Improvements

    \n\n
      \n
    • Use JS object to transfer lists data to Field Wizard.
    • \n
    • Field Wizard strings are now translatable
    • \n
    • Add is_spam method to checkbox integration to battle spam sign-ups
    • \n
    • Minor code & code style improvements
    • \n
    • Updated Danish, German, Spanish, French, Italian and Portugese (Brazil) translations
    • \n
    \n\n

    Additions

    \n\n
      \n
    • You can now set MC_LOCATION, MC_NOTES and MC_LANGUAGE from your form HTML
    • \n
    • The submit button now has a default value when generating HTML for it
    • \n
    \n\n

    2.2 - December 9, 2014

    \n\n

    Fixes

    \n\n
      \n
    • \"Select at least one list\" notice appearing when unselecting any MailChimp list in Form settings
    • \n
    • If an error occurs, textareas will no longer lose their value
    • \n
    \n\n

    Improvements

    \n\n
      \n
    • Improved the way form submissions are handled
    • \n
    • Minor code & documentation improvements
    • \n
    • Updated Dutch, French, Portugese and Spanish translations
    • \n
    \n\n

    Additions

    \n\n
      \n
    • Added sign-up checkbox integration for WooCommerce checkout.
    • \n
    • Added sign-up checkbox integration for Easy Digital Downloads checkout.
    • \n
    • The entered email will now be appended to the URL when redirecting to another page
    • \n
    ','MailChimp for WordPress','MailChimp for WordPress, the absolute best. Subscribe your WordPress site visitors to your MailChimp lists, with ease.','publish','open','closed','','mailchimp-for-wp','','','2017-03-14 12:19:41','2017-03-14 12:19:41','',0,'https://wordpress.org/plugins-wp/mailchimp-for-wp/',0,'plugin','',0), (193,12777,'2007-09-12 17:34:11','2007-09-12 17:34:11','\n
    \n

    Like my plugin? Got 30 seconds to help me out? Would love your feedback on WordPress, click here to answer my 3 question survey.

    \n
    \n\n

    This plugin reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page that allows you to specify various options.

    \n\n

    You can set the following options:

    \n\n
      \n
    • Specify the from name and email address for outgoing email.
    • \n
    • Choose to send mail by SMTP or PHP\'s mail() function.
    • \n
    • Specify an SMTP host (defaults to localhost).
    • \n
    • Specify an SMTP port (defaults to 25).
    • \n
    • Choose SSL / TLS encryption (not the same as STARTTLS).
    • \n
    • Choose to use SMTP authentication or not (defaults to not).
    • \n
    • Specify an SMTP username and password.
    • \n
    \n\n

    The plugin includes integrated support for Pepipost.

    \n\n\n
      \n
    1. Download
    2. \n
    3. Upload to your /wp-contents/plugins/ directory.
    4. \n
    5. Activate the plugin through the \'Plugins\' menu in WordPress.
    6. \n
    \n\n\n
    \n
    My plugin still sends mail via the mail() function
    \n

    If other plugins you\'re using are not coded to use the wp_mail() function but instead call PHP\'s mail() function directly, they will bypass the settings of this plugin. Normally, you can edit the other plugins and simply replace the mail( calls with wp_mail( (just adding wp_ in front) and this will work. I\'ve tested this on a couple of plugins and it works, but it may not work on all plugins.

    \n
    Will this plugin work with WordPress versions less than 2.7?
    \n

    No. WordPress 2.7 changed the way options were updated, so the options page will only work on 2.7 or later.

    \n
    Can I use this plugin to send email via Gmail / Google Apps
    \n

    Yes. Use these settings:\nMailer: SMTP\nSMTP Host: smtp.gmail.com\nSMTP Port: 465\nEncryption: SSL\nAuthentication: Yes\nUsername: your full gmail address\nPassword: your mail password

    \n
    Can you add feature x, y or z to the plugin?
    \n

    Short answer: maybe.

    \n\n

    By all means please contact me to discuss features or options you\'d like to see added to the plugin. I can\'t guarantee to add all of them, but I will consider all sensible requests. I can be contacted here:\nhttp://www.callum-macdonald.com/code/wp-mail-smtp/

    \n\n
    \n\n\n

    0.10.1

    \n\n
      \n
    • Addition of Pepipost and cleanup of admin page.
    • \n
    \n\n

    0.10.0

    \n\n
      \n
    • Addition of Pepipost and cleanup of admin page.
    • \n
    \n\n

    0.9.6

    \n\n
      \n
    • Minor security fix, sanitize test email address.
    • \n
    \n\n

    0.9.5

    \n\n
      \n
    • Minor security fix, hat tip JD Grimes.
    • \n
    \n\n

    0.9.4

    \n\n
      \n
    • Improvement to the test email function, very low priority update.
    • \n
    \n\n

    0.9.3

    \n\n
      \n
    • Fixing reported issue with passing by reference. props Adam Conway
    • \n
    \n\n

    0.9.2

    \n\n
      \n
    • Removing the deprecation notice.
    • \n
    \n\n

    0.9.1

    \n\n
      \n
    • $phpmailer->language became protected in WP 3.2, no longer unset on debug output.
    • \n
    \n\n

    0.9.0

    \n\n
      \n
    • Typo in the From email description.
    • \n
    • Removed changelog from plugin file, no need to duplicate it.
    • \n
    • Optionally set $phpmailer->Sender from from email, helps with sendmail / mail().
    • \n
    \n\n

    0.8.7

    \n\n
      \n
    • Fix for a long standing bug that caused an error during plugin activation.
    • \n
    \n\n

    0.8.6

    \n\n
      \n
    • The Settings link really does work this time, promise. Apologies for the unnecessary updates.
    • \n
    \n\n

    0.8.5

    \n\n
      \n
    • Bugfix, the settings link on the Plugin page was broken by 0.8.4.
    • \n
    \n\n

    0.8.4

    \n\n
      \n
    • Minor bugfix, remove use of esc_html() to improve backwards compatibility.
    • \n
    • Removed second options page menu props ovidiu.
    • \n
    \n\n

    0.8.3

    \n\n
      \n
    • Bugfix, return WPMS_MAIL_FROM_NAME, props nacin.
    • \n
    • Add Settings link, props Mike Challis http://profiles.wordpress.org/MikeChallis/
    • \n
    \n\n

    0.8.2

    \n\n
      \n
    • Bugfix, call phpmailer_init_smtp() correctly, props Sinklar.
    • \n
    \n\n

    0.8.1

    \n\n
      \n
    • Internationalisation improvements.
    • \n
    \n\n

    0.8

    \n\n
      \n
    • Added port, SSL/TLS, option whitelisting, validate_email(), and constant options.
    • \n
    \n\n

    0.7

    \n\n
      \n
    • Added checks to only override the default from name / email
    • \n
    \n\n

    0.6

    \n\n
      \n
    • Added additional SMTP debugging output
    • \n
    \n\n

    0.5.2

    \n\n
      \n
    • Fixed a pre 2.3 bug to do with mail from
    • \n
    \n\n

    0.5.1

    \n\n
      \n
    • Added a check to display a warning on versions prior to 2.3
    • \n
    \n\n

    0.5.0

    \n\n
      \n
    • Upgraded to match 2.3 filters which add a second filter for from name
    • \n
    \n\n

    0.4.2

    \n\n
      \n
    • Fixed a bug in 0.4.1 and added more debugging output
    • \n
    \n\n

    0.4.1

    \n\n
      \n
    • Added $phpmailer->ErroInfo to the test mail output
    • \n
    \n\n

    0.4

    \n\n
      \n
    • Added the test email feature and cleaned up some other bits and pieces
    • \n
    \n\n

    0.3.2

    \n\n
      \n
    • Changed to use register_activation_hook for greater compatability
    • \n
    \n\n

    0.3.1

    \n\n
      \n
    • Added readme for WP-Plugins.org compatability
    • \n
    \n\n

    0.3

    \n\n
      \n
    • Various bugfixes and added From options
    • \n
    \n\n

    0.2

    \n\n
      \n
    • Reworked approach as suggested by westi, added options page
    • \n
    \n\n

    0.1

    \n\n
      \n
    • Initial approach, copying the wp_mail function and replacing it
    • \n
    ','WP Mail SMTP','The most popular SMTP plugin on WordPress.org. Trusted by over 600k sites.','publish','open','closed','','wp-mail-smtp','','','2016-12-20 10:36:59','2016-12-20 10:36:59','',0,'https://wordpress.org/plugins-wp/wp-mail-smtp/',0,'plugin','',0), (194,390889,'2008-07-26 05:33:19','2008-07-26 05:33:19','\n

    Join over 500,000 sites running our classic Image Widget plugin!

    \n\n

    Image Widget is a simple plugin that uses the native WordPress media manager to add image widgets to your site.

    \n\n

    Image Widget Features

    \n\n
      \n
    • Responsive
    • \n
    • MU Compatible
    • \n
    • Handles image resizing and alignment
    • \n
    • Link the image
    • \n
    • Add title and description
    • \n
    • Versatile - all fields are optional
    • \n
    • Upload, link to external image, or select an image from your media collection
    • \n
    • Customize the look & feel with filter hooks or theme overrides
    • \n
    • Additional features available with Image Widget Plus
    • \n
    \n\n

    Quality You Can Trust

    \n\n

    Image Widget is developed and maintained by Modern Tribe, the same folks behind The Events Calendar, Event Tickets, and a full suite of premium plugins.

    \n\n

    This plugin is actively supported by our team and contributions from community members. If you see a question in the forum you can help with or have a great idea and want to code it up or submit a patch, that would be awesome! Not only will we shower you with praise and thanks, it?s also a good way to get to know us and lead into options for paid work if you freelance.

    \n\n

    Coming Soon - Image Widget Plus

    \n\n

    Looking for more features? Our new Image Widget Plus plugin is coming soon!

    \n\n

    Image Widget Plus features include:

    \n\n
      \n
    • Multiple image support
    • \n
    • Random image
    • \n
    • Slideshow
    • \n
    • Lightbox
    • \n
    \n\n

    Check out Image Widget Plus now!

    \n\n

    Pull Requests & Translations

    \n\n

    Check us out on GitHub to pull request changes.

    \n\n

    Translations can be submitted here on WordPress.org.

    \n\n

    Documentation

    \n\n

    The built in template can be overridden by files within your template.

    \n\n

    Default vs. Custom Templates

    \n\n

    The Image Widget comes with a default template for the widget output. If you would like to alter the widget display code, create a new folder called \"image-widget\" in your template directory and copy over the \"views/widget.php\" file.

    \n\n

    Edit the new file to your hearts content. Please do not edit the one in the plugin folder as that will cause conflicts when you update the plugin to the latest release.

    \n\n

    New in 3.2: You may now also use the \"sp_template_image-widget_widget.php\" filter to override the default template behavior for .php template files. Eg: if you wanted widget.php to reside in a folder called my-custom-templates/ and wanted it to be called my-custom-name.php:

    \n\n
    add_filter(\'sp_template_image-widget_widget.php\', \'my_template_filter\');\nfunction my_template_filter($template) {\n    return get_template_directory() . \'/my-custom-templates/my-custom-name.php\';\n}\n
    \n\n

    Filters

    \n\n

    There are a number of filters in the code that will allow you to override data as you see fit. The best way to learn what filters are available is always by simply searching the code for \'apply_filters\'. But all the same, here are a few of the more essential filters:

    \n\n

    widget_title

    \n\n

    This is actually a pretty typical filter in widgets and is applied to the widget title.

    \n\n

    widget_text

    \n\n

    Another very typical widget filter that is applied to the description body text. This filter also takes 2 additional arguments for $args and $instance so that you can learn more about the specific widget instance in the process of filtering the content.

    \n\n

    image_widget_image_attachment_id

    \n\n

    Filters the attachment id of the image.\nAccepts additional $args and $instance arguments.

    \n\n

    image_widget_image_url

    \n\n

    Filters the url of the image displayed in the widget.\nAccepts additional $args and $instance arguments.\nTHIS IS DEPRECATED AND WILL EVENTUALLY BE DELETED

    \n\n

    image_widget_image_width

    \n\n

    Filters the display width of the image.\nAccepts additional $args and $instance arguments.

    \n\n

    image_widget_image_height

    \n\n

    Filters the display height of the image.\nAccepts additional $args and $instance arguments.

    \n\n

    image_widget_image_maxwidth

    \n\n

    Filters the inline max-width style of the image. Hint: override this to use this in responsive designs :)\nAccepts additional $args and $instance arguments.\nReturn null to remove this css from the image output (defaults to \'100%\').

    \n\n

    image_widget_image_maxheight

    \n\n

    Filters the inline max-height style of the image.\nAccepts additional $args and $instance arguments.\nReturn null to remove this css from the image output (defaults to null)

    \n\n

    image_widget_image_size

    \n\n

    Filters the selected image \'size\' corresponding to WordPress registered sizes.\nIf this is set to \'tribe_image_widget_custom\' then the width and height are used instead.\nAccepts additional $args and $instance arguments.

    \n\n

    image_widget_image_align

    \n\n

    Filters the display alignment of the image.\nAccepts additional $args and $instance arguments.

    \n\n

    image_widget_image_alt

    \n\n

    Filters the alt text of the image.\nAccepts additional $args and $instance arguments.

    \n\n

    image_widget_image_link

    \n\n

    Filters the url that the image links to.\nAccepts additional $args and $instance arguments.

    \n\n

    image_widget_image_link_target

    \n\n

    Filters the link target of the image link.\nAccepts additional $args and $instance arguments.

    \n\n

    image_widget_image_attributes

    \n\n

    Filters a list of image attributes used in the image output. Similar to \'wp_get_attachment_image_attributes\'\nAccepts $instance arguments

    \n\n

    image_widget_link_attributes

    \n\n

    Filters a list of attributes used in the image link. Similar to \'wp_get_attachment_image_attributes\'\nAccepts $instance arguments

    \n\n

    Have You Supported the Image Widget?

    \n\n

    If so, then THANK YOU! Also, feel free to add this line to your wp-config.php file to prevent the image widget from displaying a message after upgrades.

    \n\n

    define( \'I_HAVE_SUPPORTED_THE_IMAGE_WIDGET\', true );

    \n\n

    For more info on the philosophy here, check out our blog post

    \n\n\n

    Install

    \n\n

    Getting started with Image Widget is a breeze!

    \n\n
      \n
    1. Download and install the Image Widget plugin
    2. \n
    3. From your WordPress admin screen, select Plugins from the menu
    4. \n
    5. Activate the Image Widget plugin
    6. \n
    7. Go to Appearance > Widget to place the widget
    8. \n
    \n\n

    If you run into any questions or have suggestions, please visit the forum to post questions or comments.

    \n\n

    Requirements

    \n\n
      \n
    • PHP 5.2 or above
    • \n
    • WordPress 3.5 or above
    • \n
    \n\n\n
    \n
    How do I log into my site to install this plugin?
    \n

    Visit the WordPress codex for help with login troubles.

    \n
    Can I display Image Widget on only one page?
    \n

    Yes you can, however, this is not controlled through the Image Widget plugin directly - it is usually managed through a page-specific sidebar display.

    \n\n

    There are several solutions available to accomplish this. A quick search for ?WordPress page-specific sidebar display? can help you find the best option for your site.

    \n
    Is there a demo available?
    \n

    Though we do not have a demo available, we do have screenshots available here.

    \n
    How can I add lightbox, slider, or random image capabilities?
    \n

    These features are part of our Image Widget Plus plugin. You can learn more about Image Widget Plus on our website.

    \n
    Where do I go to file a bug or ask a question?
    \n

    Please visit the forum to post questions or comments.

    \n\n
    \n\n\n

    4.3.1

    \n\n
      \n
    • Tweak - adjusted promotional text
    • \n
    \n\n

    4.3

    \n\n
      \n
    • Translations - fixed compatibility with translate.wordpress.org
    • \n
    • Translations - restored the pot file for easier community translations
    • \n
    • Tweak - fixed a typo
    • \n
    • Tweak - Minor code cleanup
    • \n
    \n\n

    4.2.2

    \n\n
      \n
    • Feature - Include registered image sizes in the list of selectable items (props to aaemnnosttv for the pull request!)
    • \n
    \n\n

    4.2.1

    \n\n
      \n
    • Feature - Removing Freemius. Interesting experiment, but ultimately, not our cup of tea. Thanks for sticking with us!
    • \n
    \n\n

    4.2

    \n\n
      \n
    • Security - Prevent direct access to directories (thank you @ramiy)
    • \n
    • Translations - Remove po/mo files, migrate to translate.wordpress.org language packs
    • \n
    • Feature - Add support for the rel attribute
    • \n
    • Feature - Adding an opt-in integration with Freemius
    • \n
    \n\n

    4.1.2

    \n\n
      \n
    • Tweak - Added support for an id attribute on links (Props to amyh for the work on this!)
    • \n
    \n\n

    4.1.1

    \n\n
      \n
    • Tweak - Retiring the use of PHP 4 style constructors
    • \n
    \n\n

    4.1

    \n\n
      \n
    • Remove accidentally deployed image size update.
    • \n
    \n\n

    4.0.9

    \n\n
      \n
    • Fix image stretching bug in admin (Thanks @kyleunzicker)
    • \n
    • Add polish translation (thank you @difreo)
    • \n
    • Add hebrew translation (thank you Ariel Klikstein)
    • \n
    • Add german translation (thank you Daniel Schmidt)
    • \n
    • Fix \"Alt\" text in the widget source to use actual \"Alt\" text (thanks @adoliver and @Degas)
    • \n
    \n\n

    4.0.8

    \n\n
      \n
    • Responsive support in honor of Josh Broton\'s WordCamp SF talk about responsive design. max-width now defaults to 100%;
    • \n
    \n\n

    4.0.7

    \n\n
      \n
    • Add Spanish translation (thank you @mzaweb)
    • \n
    \n\n

    4.0.6

    \n\n
      \n
    • Rename all language files and implement a couple more minor language bug fixes a la @understandard
    • \n
    • Added support for the constant \'I_HAVE_SUPPORTED_THE_IMAGE_WIDGET\' to turn off the message that appears after upgrading. (@crienoloog, i hope this puts a smile on your face.)
    • \n
    \n\n

    4.0.5

    \n\n
      \n
    • Added Japanese (and fixed a minor language string bug - thank you @understandard)
    • \n
    • Added Arabic (thank you @modmenpc)
    • \n
    \n\n

    4.0.4

    \n\n

    Super minor fix to enable saving of a blank caption. (thanks @crdunst)

    \n\n

    4.0.3

    \n\n

    Fixed javascript bug caused by log message.

    \n\n

    4.0.2

    \n\n

    Fix oversized screenshot.

    \n\n

    4.0.1

    \n\n

    Language updates:

    \n\n
      \n
    • Brazilian Portuguese (Thank you @guhemama)
    • \n
    • Spanish (Thank you @javiandgo)
    • \n
    \n\n

    4.0

    \n\n
      \n
    • Significant upgrades to support the new WordPress media manager (Thank you @kyleunzicker, @dancameron, @dudekpj, @JakePT)
    • \n
    • Significant improvements the administrative user interface.
    • \n
    • Abstracted support for older versions of WordPress so that that we don\'t break old versions with this upgrade (Though there\'s no reason you should up grade this widget and NOT your WP install! You should always keep WordPress core up to date!)
    • \n
    • Added \'image_widget_link_attributes\' filter to easily process link attributes and to default to having the link \'title\' be the \'alt\' or \'title\' content. (Thank you @ZeroGravity, @pixelyzed, and @javiandgo)
    • \n
    • Updated Translations\n** Swedish (Tomas Lindhoff tomas@xhost.se)\n** Dutch (Presis contact@presis.nl)\n** Italian (@maxgx)
    • \n
    \n\n

    3.3.8

    \n\n
      \n
    • Added italian translations courtesy of @maxgx
    • \n
    \n\n

    3.3.7

    \n\n
      \n
    • Add filters so that people can more easily adjust the output of the widget as per @TCBarrett\'s request.
    • \n
    \n\n

    3.3.6

    \n\n
      \n
    • Czech translation courtesy of Vladislav Musilek at blogísek (http://blog.musilda.cz).
    • \n
    \n\n

    3.3.5

    \n\n
      \n
    • Fix filtered media library inserts thanks to @miraclemaker as well as @oxyc, @BjornW and innumerable others in the support forum (http://wordpress.org/support/topic/plugin-image-widget-add-image-upload-an-image-select-insert-into-widget-no-image-is-shown)
    • \n
    • Adjusted HTTPS/SSL handling so that it\'s only applied in the view. ( thanks @TheFluffyDoneky and @aerobrent )
    • \n
    • Added a filter for the image url: \'image_widget_image_url\'
    • \n
    • Add Dutch language translation ( thank you Carsten Alsemgeest - presis.nl )
    • \n
    • Rename all language files to lowercase image_widget to match the localization string.
    • \n
    \n\n

    3.3.4

    \n\n
      \n
    • Fix javascript bugs in the widget admin UI. ( thanks for filing this @joo-joo )
    • \n
    • Fix notices in php error log.
    • \n
    • Add widget description filter $args and $instance ( thanks @jeffreyzinn )
    • \n
    • Fixed localization and renamed key to \'image-widget\'
    • \n
    \n\n

    3.3.3

    \n\n
      \n
    • Romanian translation courtesy of Alexander Ovsov at Web Geek Science (http://webhostinggeeks.com).
    • \n
    \n\n

    3.3.2

    \n\n
      \n
    • Remove extra esc_attr() from the $title display. (Thank you @romaspit)
    • \n
    \n\n

    3.3.1

    \n\n
      \n
    • Add minor security updates.
    • \n
    • Update readme, thumbnails and other minor descriptors.
    • \n
    \n\n

    3.3

    \n\n
      \n
    • Fix to allow the widget to work in the non-async (browser) uploader. Props Bjorn Wijers
    • \n
    \n\n

    3.2.11

    \n\n
      \n
    • Yet another minor JS fix to hopefully address issues of lightbox not working
    • \n
    \n\n

    3.2.10

    \n\n
      \n
    • Fix JS typo.
    • \n
    \n\n

    3.2.9

    \n\n
      \n
    • Minor JS fix to hopefully address issues of lightbox not working
    • \n
    • Use new the new jQuery.fn.on method for forward compatibility.
    • \n
    \n\n

    3.2.8

    \n\n
      \n
    • Minor bugfix courtesy of Takayuki Miyauchi (@miya0001)
    • \n
    • Polish translation courtesy of ?ukasz Kli?
    • \n
    \n\n

    3.2.7

    \n\n
      \n
    • Update javascript to work with the new version of WordPress (thanks Matt Wiebe!!! @mattwiebe)
    • \n
    • Added Japanese translation courtesy of Takayuki Miyauchi (@miya0001)
    • \n
    \n\n

    3.2.6

    \n\n
      \n
    • Add HTTPS support courtesy of David Paul Ellenwood (DPE@SGS)
    • \n
    \n\n

    3.2.5

    \n\n
      \n
    • Added Swedish translation courtesy of Tomas Lindhoff (@Tomas)
    • \n
    \n\n

    3.2.4

    \n\n
      \n
    • Added javascript conflict prevention code thanks to @rcain.
    • \n
    \n\n

    3.2.3

    \n\n
      \n
    • Added French translation courtesy of Dominique Corbex (@Domcox)
    • \n
    \n\n

    3.2.2

    \n\n
      \n
    • Added Portuguese translation courtesy of Gustavo Machado
    • \n
    \n\n

    3.2.1

    \n\n
      \n
    • Fix image widget public declaration bug.
    • \n
    \n\n

    3.2

    \n\n
      \n
    • Abstract views for widget output and widget admin.
    • \n
    • Support theme override of the widget output! Now you can layout the widget however you\'d like.
    • \n
    • Added filter to override template call.
    • \n
    \n\n

    3.1.6

    \n\n
      \n
    • Fixed Wordpress 3.0 bugs. (Thanks @kenvunz)
    • \n
    \n\n

    3.1.5

    \n\n

    Fixed PHP 5 bug. Removed \'public\' declaration. http://wordpress.org/support/topic/362167 Thanks @mpwalsh8, @jleuze, @PoLaR5, @NancyA and @phoney36

    \n\n

    3.1.4

    \n\n
      \n
    • Added support for ALT tags. If no alt tag is entered the title is used.
    • \n
    \n\n

    3.1.3

    \n\n
      \n
    • Added German language support (Thank you Rüdiger Weiß!!!)
    • \n
    \n\n

    3.1.2

    \n\n
      \n
    • Fix bug: XHTML Compliance (thanks HGU for offering a patch and thanks @webmasterlistingarts for filing the bug)
    • \n
    • Replaced <p> with <div> in description to also improve XHTML compliance.
    • \n
    \n\n

    3.1.1

    \n\n
      \n
    • Fix bug: php4 reported error: PHP Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or \'}\' (thanks @natashaelaine and @massimopaolini)
    • \n
    \n\n

    3.0.10

    \n\n
      \n
    • Fix bug: improve tab filters.
    • \n
    \n\n

    3.0.9

    \n\n
      \n
    • Fix bug: update tabs filter to not kill tabs if upload window is for non widget uses.
    • \n
    \n\n

    3.0.8

    \n\n
      \n
    • Remove the \"From URL\" tab since it isn\'t supported.
    • \n
    • Replace \"Insert into Post\" with \"Insert into Widget\" in thickbox.
    • \n
    \n\n

    3.0.7

    \n\n
      \n
    • Fix Dean\'s Fcuk editor conflict. (Thanks for the report Laurie @L_T_G)
    • \n
    • Fix IE8 bug (Remove extra comma from line 66 of js - thanks for the report @reface)
    • \n
    • Update functions and enqueued scripts to only trigger on widget page.
    • \n
    \n\n

    3.0.6

    \n\n
      \n
    • Fix crash on insert into post.
    • \n
    \n\n

    3.0.5

    \n\n

    Thank you @smurkas, @squigie and @laurie!!! Special thanks to Cameron Clark from http://prolifique.com a.k.a @capnhairdo for contributing invaluable javascript debugging skills and throwing together some great code.

    \n\n
      \n
    • PHP4 compatibility
    • \n
    • Tighter integration with the thickbok uploader attributes including caption, description, alignment, and link
    • \n
    • Tighter image resize preview
    • \n
    • Add Image link becomes \"Change Image\" once image has been added
    • \n
    \n\n

    3.0.4

    \n\n
      \n
    • Minor description changes
    • \n
    \n\n

    3.0.3

    \n\n
      \n
    • Fixed the broken \"Add Image\" link (THANK YOU @SMURKAS!!!)
    • \n
    \n\n

    3.0.2

    \n\n
      \n
    • Added PHPDoc comments
    • \n
    • Temporarily fixed install bug where no image is saved if resize is not working. (thank you Paul Kaiser from Champaign, Il for your helpful QA support)
    • \n
    \n\n

    3.0.1

    \n\n
      \n
    • Added \'sp_image_widget\' domain for language support.
    • \n
    \n\n

    3.0

    \n\n
      \n
    • Completely remodeled the plugin to use the native WordPress uploader and be compatible with Wordpress 2.8 plugin architecture.
    • \n
    • Removed externalized widget admin.
    • \n
    \n\n

    2.2.2

    \n\n
      \n
    • Update
    • to be $before_widget and $after_widget (Thanks again to Lois Turley)
    • \n
    \n\n

    2.2.1

    \n\n
      \n
    • Update <div> to be <li> (Thanks to Lois Turley)
    • \n
    \n\n

    2.2

    \n\n
      \n
    • Fixed missing DIV close tag (Thank you Jesper Goos)
    • \n
    • Updated all short tags to proper php tags (Thank you Jonathan Volks from Mannix Marketing)
    • \n
    \n\n

    2.1

    \n\n
      \n
    • Link Target
    • \n
    \n\n

    2.0

    \n\n
      \n
    • Multi widget support
    • \n
    • WP 2.7.1 Compatibility
    • \n
    • Class encapsulation
    • \n
    ','Image Widget','A simple image widget that uses the native WordPress media manager to add image widgets to your site.','publish','open','closed','','image-widget','','','2017-03-20 13:55:40','2017-03-20 13:55:40','',0,'https://wordpress.org/plugins-wp/image-widget/',0,'plugin','',0), (195,214128,'2009-07-05 13:50:53','2009-07-05 13:50:53','\n

    The backup plugin BackWPup can be used to save your complete installation including /wp-content/ and push them to an external Backup Service, like Dropbox, S3, FTP and many more, see list below. With a single backup .zip file you are able to easily restore an installation. Please understand: this free version will not be supported as good as the BackWPup Pro version. With our premium version you get first class support and more features.

    \n\n
      \n
    • Database Backup (needs mysqli)
    • \n
    • WordPress XML Export
    • \n
    • Generate a file with installed plugins
    • \n
    • Optimize Database
    • \n
    • Check and repair Database
    • \n
    • File backup
    • \n
    • Backups in zip, tar, tar.gz, tar.bz2 format (needs gz, bz2, ZipArchive)
    • \n
    • Store backup to directory
    • \n
    • Store backup to FTP server (needs ftp)
    • \n
    • Store backup to Dropbox (needs curl)
    • \n
    • Store backup to S3 services (needs PHP 5.3.3, needs curl)
    • \n
    • Store backup to Microsoft Azure (Blob) (needs PHP 5.3.2, curl)
    • \n
    • Store backup to RackSpaceCloud (needs PHP 5.3.2, curl)
    • \n
    • Store backup to SugarSync (needs curl)
    • \n
    • PRO: Store backup to Amazon Glacier (needs PHP 5.3.3, curl)
    • \n
    • PRO: Store backup to Google Drive (needs PHP 5.3.3, curl)
    • \n
    • Send logs and backups by email
    • \n
    • Multi-site support only as network admin
    • \n
    • Pro version and support available - BackWPup Pro
    • \n
    \n\n

    Requirements

    \n\n
      \n
    • WordPress 3.9 and PHP 5.2.7 required!
    • \n
    • To use the Plugin with full functionality PHP 5.3.3 with mysqli, FTP,gz, bz2, ZipArchive and curl is needed.
    • \n
    • Plugin functions that don\'t work because of your server settings, will not be displayed in admin area.
    • \n
    \n\n

    Our friends at OSTraining have done a tremendous job with their video tutorials on BackWPup. The complete series of five videos have been made available for free on YouTube.

    \n\n

    https://www.youtube.com/watch?v=pECMkLE27QQ&w=532&rel=0

    \n\n

    (Are you a WordPress novice? Check out all of OSTraining?s WordPress video trainings!)

    \n\n

    Remember: The most expensive backup is the one you never did! And please test your backups!

    \n\n

    Get the BackWPup Pro Version with more features.

    \n\n

    Made by Inpsyde · We love WordPress

    \n\n\n
    \n
    Installation Instructions
    \n

    You can find a detailed tutorial in the BackWPup documentation.

    \n
    My backup jobs don?t seem to run as scheduled.
    \n

    BackWPup uses WordPress? own cron job system (WP Cron) to execute scheduled backup jobs. In order for WordPress to ?know? when to execute a job, its ?inner clock? needs to be set regularly. That happens whenever someone (including yourself) visits your site.\nIf your site happens to not being visited for a period of time, WordPress? inner clock gets sort of slow. In that case it takes an extra server-side cron job to regularly call http://your-site.tld/wp-cron.php and tell WordPress what time it is.

    \n\n

    A simple way to find out whether WP Cron works as it should on your site is to create a new post and set its publishing date to some point in the future, i.e. 10 minutes from now. Then leave your site (that?s important), come back after 11 minutes and check whether your scheduled post has been published. If not, you?re very likely to have an issue with WP Cron.

    \n
    Yuk! It says: ?ERROR: No destination correctly defined for backup!?
    \n

    That means a backup job has started, but BackWPup doens?t know where to store the backup files. Please cancel the running job and re-edit its configuration. There should be a Tab ?To: ?? in your backup job?s configuration. Have you set a backup target correctly?

    \n
    A backup job has started, but nothing seems to be happening?not even when I re-start it manually.
    \n

    Solution #1

    \n\n
      \n
    • Open BackWPup->Settings
    • \n
    • Go to the Informations tab.
    • \n
    • Find Server self connect: in the left column.
    • \n
    • If it says something like (401) Authorisation required in the right column, go to the Network tab and set the username and password for server-side authentication.
    • \n
    • Try again starting the backup job.
    • \n
    \n\n

    Solution #2

    \n\n
      \n
    • Open wp-config.php and find the line where it says if ( !defined(\'ABSPATH\') ).
    • \n
    • Somewhere before that line add this: define( \'ALTERNATE_WP_CRON\', true );
    • \n
    \n\n

    Solution #3

    \n\n

    Not really a solution, but a way to identify the real problem: see remarks on WP Cron at the top.

    \n
    I get this error message: `The HTTP response test get a error \"Connection time-out\"`
    \n

    BackWPup performs a simple HTTP request to the server itself every time you click run now or whenever a backup job starts automatically. The HTTP response test message could mean:\n* Your host does not allow loop back connections. (If you know what WP_ALTERNATE_CRON is, try it.)\n* Your WordPress root directory or backup directory requires authetification. Set username and password in Settings->Network.\n* The Server can?t resolve its own hostname.\n* A plugin or theme is blocking the request.\n* Other issues related to your individual server and/or WordPress configuration.

    \n
    I get a fatal error: `Can not create folder: [?]/wp-content/backwpup-[?]-logs in [?]/wp-content/plugins/backwpup/inc/class-job.php ?`
    \n

    Please set CHMOD 775 on the /wp-content/ directory and refresh the BackWPup dashboard. If that doesn?t help, try CHMOD 777. You can revert it to 755 once BackWPup has created its folder.

    \n
    How do I restore a backup?
    \n

    Up to now, there is no feature in BackWPup to restore a backup. But we are eagerly working on a restore functionality, which is in beta right now. If you like to participate to test the restore feature, please write an email. Meanwhile you can follow these instructions from the WordPress Codex or this tutorial (also Codex) for more detailed information on cPanel, Plesk, vDeck and others.

    \n
    When I edit a job the Files tab loads forever.
    \n

    Go to Settings->General and disable ?Display folder sizes on files tab if job edited?. Calculating folder sizes can take a while on sites with many folders.

    \n
    I generated a list of my installed plugins, but it?s hard to read.
    \n

    Try opening the text file in an editor software like Notepad++ (Windows) or TextMate (Mac) to preserve line-breaks.

    \n
    My web host notified me BackWPup was causing an inacceptable server load!
    \n

    Go to Settings->Jobs and try a different option for ?Reduce server load?.

    \n
    Can I cancel a running backup job via FTP?
    \n

    Yes. Go to your BackWPup temp directory and find a file named backwpup-xyz-working.json where ?xyz? is a random string of numbers and characters. Delete that file to cancel the currently running backup job.

    \n
    Can I move the temp directory to a different location?
    \n

    Yes. You need to have writing access to the wp-config.php file (usually residing in the root directory of your WordPress installation).

    \n\n
      \n
    • Open wp-config.php and find the line where it says if ( !defined(\'ABSPATH\') ).
    • \n
    • Somewhere before that line add this: define( \'WP_TEMP_DIR\', \'/absolute/path/to/wp/your/temp-dir\' );
    • \n
    • Replace /absolute/path/to/wp/ with the absolute path of your WordPress installation and your/temp-dir with the path to your new temp directory.
    • \n
    • Save the file.
    • \n
    \n
    What do those placeholders in file names stand for?
    \n
      \n
    • %d = Two digit day of the month, with leading zeros
    • \n
    • %j = Day of the month, without leading zeros
    • \n
    • %m = Day of the month, with leading zeros
    • \n
    • %n = Representation of the month (without leading zeros)
    • \n
    • %Y = Four digit representation for the year
    • \n
    • %y = Two digit representation of the year
    • \n
    • %a = Lowercase ante meridiem (am) and post meridiem (pm)
    • \n
    • %A = Uppercase ante meridiem (AM) and post meridiem (PM)
    • \n
    • %B = Swatch Internet Time
    • \n
    • %g = Hour in 12-hour format, without leading zeros
    • \n
    • %G = Hour in 24-hour format, without leading zeros
    • \n
    • %h = Hour in 12-hour format, with leading zeros
    • \n
    • %H = Hour in 24-hour format, with leading zeros
    • \n
    • %i = Two digit representation of the minute
    • \n
    • %s = Two digit representation of the second
    • \n
    \n\n
    \n\n\n

    Version 3.3.7

    \n\n
      \n
    • Fixed: Services credentials lost after 3.3.6 update
    • \n
    • Fixed: Removed all instances of PHP short echo tags and other minor PHP 5.2 compatibility issues
    • \n
    • Improved: Dashboard widget only shown to user who has \'backwpup\' capability and can be hidden defining INPSYDE_DASHBOARD_WIDGET constant
    • \n
    • Changed: German translation of job announcement in dashboard widget is now gender neutral
    • \n
    • Added: Italian translation for the plugin
    • \n
    • Added: Message in BackWPup dashboard to ask users to join as BackWPup beta testers
    • \n
    • PRO: Fixed: Removed duplicate file in Google vendor folder
    • \n
    \n\n

    Version 3.3.6

    \n\n
      \n
    • Improved: Compatibility with PHP 7 and PHP 7.1
    • \n
    • Improved: Encryption (use Open SSL when available, mcrypt as fallback for PHP 5.2 users)
    • \n
    • Improved: check for mod_authz_core.c module in .htaccess file
    • \n
    • Added: Deprecation notice for PHP 5.2 users
    • \n
    • Added: Translation for formal german
    • \n
    • Added: Ask for consent on phone home anonymously PHP & WP Version
    • \n
    • Added: Dashboard widget to recruit new Inpsyders
    • \n
    • Updated: Translation for german
    • \n
    • PRO: Fixed issue with wrong redirect during Google Drive authorization
    • \n
    \n\n

    Version 3.3.5

    \n\n
      \n
    • PRO: fixed gdrive Could not create resumable file transfer
    • \n
    \n\n

    Version 3.3.4

    \n\n
      \n
    • Fixed: Database gone away messages
    • \n
    • Fixed: restarts in cli mode
    • \n
    • Added: AWS S3 Region Asia Pacific (Mumbai)
    • \n
    • PRO: fix false email sender address in job creation wizard
    • \n
    • PRO: fix gdrive ssl problem on uploads
    • \n
    \n\n

    Version 3.3.3

    \n\n
      \n
    • Removed admin notices
    • \n
    \n\n

    Version 3.3.2

    \n\n
      \n
    • Notice: For MSAzure requires PHP 5.5 in next BackWPup Version
    • \n
    • Changed: Colors of Warning and Error messages
    • \n
    • Changed: Display Blog url in log again
    • \n
    • Changed: Dreamhost url in S3 destination
    • \n
    • Changed: Adminbar menu disabled by default
    • \n
    • Removed: Adminbar plugin name for smaller size
    • \n
    • Improved: Signal handling more again
    • \n
    • Fixed: English log with WP 4.6
    • \n
    \n\n

    Version 3.3.1

    \n\n
      \n
    • Fixed: Security exploit in getting working data
    • \n
    • Fixed: Bug in log mail sending
    • \n
    • Improved: Signal handling again
    • \n
    • Improved: Restarts on getting folder list
    • \n
    • Improved: Text Color in log files
    • \n
    • Changed: URLs to MarketPress and Documentation
    • \n
    • Changed: Save file list cache for one year
    • \n
    • Changed: Use WordPress ca-bundle.crt
    • \n
    • Removed: Server callback check on job start now it is only in Settings > Tab: Information
    • \n
    \n\n

    Version 3.3

    \n\n
      \n
    • Improved: Texts removed or rewritten
    • \n
    • Improved: Security
    • \n
    • Improved: Response test
    • \n
    • Changed: Response test to work more as before
    • \n
    • Changed: Remove user roles on deactivation not on uninstall
    • \n
    • Removed: PCLZip selection setting
    • \n
    • Removed: Help tooltips now uses the WordPress way
    • \n
    • Removed: Old AWS SDK for using backups to S3 with PHP Version lower than 5.3
    • \n
    • Updated: AWS SDK to Version 2.8.28
    • \n
    • Updated: MSAZURE SDK to Version 0.4.1
    • \n
    • Updated: RSC SDK to Version 1.12.2
    • \n
    • Updated: SwiftMailer to Version 5.2.2
    • \n
    • Pro Updated: Google SDK to Version 1.1.7
    • \n
    • Pro Fixed: Glacier will be only display 10 Vaults
    • \n
    \n\n

    Version 3.2.5

    \n\n
      \n
    • Fixed: two stored XSS issues
    • \n
    \n\n

    Version 3.2.4

    \n\n
      \n
    • Added: Backup database triggers
    • \n
    • Fixed: Charset issues on file names in archives
    • \n
    • Improved: checking on response test
    • \n
    • Changed: Dropbox API URLs
    • \n
    \n\n

    Version 3.2.3

    \n\n
      \n
    • Added: AWS Region Asien-Pazifik (Seoul)
    • \n
    • Improved: open basedir checking
    • \n
    • Changed: Minimum WordPress version is now 3.8
    • \n
    • Fixed: get_site_option() deprecated cache parameter in WordPress 4.4
    • \n
    • Fixed: displaying of inactive on scheduled jobs
    • \n
    • Fixed: saving of adding extra user role
    • \n
    • Removed: Handling of signal SIGPROF
    • \n
    • Removed: Extra role column on user list
    • \n
    \n\n

    Version 3.2.2

    \n\n
      \n
    • Fixed: Setting of S3 storage class STANDARD | STANDARD_IA | REDUCED_REDUNDANCY
    • \n
    • Fixed: Potential security problems on log view and file download
    • \n
    \n\n

    Version 3.2.1

    \n\n
      \n
    • Fixed: open basedir check
    • \n
    • Fixed: Change Zip creation back to use lower resources
    • \n
    • Fixed: Deletion of backup files on Dropbrox not refreshes
    • \n
    • Fixed: Delete \'doing_cron\' transient before job starts
    • \n
    • Added: Support for new Amazon S3 storage type \'Standard-Infrequent Access\'
    • \n
    • Added: Support for MYSQL_CLIENT_FLAGS
    • \n
    • Updated: AWS SDK to Version 2.8.21 (PHP 5.3.3+)
    • \n
    • Removed: SIGCONT,SIGCHLD,SIGALRM form signal handler
    • \n
    • Free Removed: Bundled translations. Will be now come from https://translate.wordpress.org/projects/wp-plugins/backwpup
    • \n
    • Pro Updated: Google SDK to Version 1.1.4
    • \n
    \n\n

    Version 3.2.0

    \n\n
      \n
    • Fixed: Sugarsync SSL message
    • \n
    • Fixed: Job hang in some configurations
    • \n
    • Fixed: RSS Feed in Dashboard
    • \n
    • Added: EasyCron API to schedule job starts
    • \n
    • Added: Message if job has not configured destinations
    • \n
    • Added: Setting for log level and minimize log for normal output
    • \n
    • Added: Email logfile to more than one receiver
    • \n
    • Added: Creation of web.config for IIS Webserver
    • \n
    • Added: Allow relative path to WP_CONTENT_DIR for logs and backups
    • \n
    • Added: Prefer plugin translation loading from WP_LANG_DIR
    • \n
    • Added: Option to move WordPress installation folder one folder up
    • \n
    • Added: Ordering options for jobs page
    • \n
    • Added: Added Google storage Bucket regions
    • \n
    • Improved: Archive size check depends on PHP_INT_MAX
    • \n
    • Improved: Excessive transient writes with job start urls
    • \n
    • Improved: Authorisation settings for wp-cron.php
    • \n
    • Improved: Folder checking with open basedir check
    • \n
    • Improved: WP-CLI outputs
    • \n
    • Improved: Role management. Administrators always have BackWPup capabilities
    • \n
    • Improved: Unix Signals handling to caching more
    • \n
    • Improved: fcgi handling to prevent signal 15 errors (thanks to siteground.com)
    • \n
    • Updated: AWS SDK to Version 2.7.7 (PHP 5.3.3+)
    • \n
    • Updated: MSAZURE SDK to Version 0.4.0-dev
    • \n
    • Updated: Translations from http://translate.marketpress.com/
    • \n
    • Removed: Server script file generation, please use WP-CLI
    • \n
    • Fixed: Notice if BuddyPress is active
    • \n
    • Fixed: VIEW generation on Database backups
    • \n
    • PRO Fixed: Authentication for GDrive
    • \n
    • PRO Fixed: Synchronisation with GDrive
    • \n
    \n\n

    Version 3.1.4

    \n\n
      \n
    • Fixed: removing of % from filename
    • \n
    • Fixed: Notice in combination with bbPress
    • \n
    • Fixed: Zip Archive \"Entry has been deleted\" messages
    • \n
    • Improved: WP-CLI output a bit
    • \n
    \n\n

    Version 3.1.3

    \n\n
      \n
    • Fixed: var_export not working if output buffering active
    • \n
    • Fixed: bug in sending test emails on Backup with email
    • \n
    • Fixed: backup archives not deleted if archive name has spaces
    • \n
    • Fixed: bug in tar file name length detecting
    • \n
    • Fixed: bug in not displaying abort message
    • \n
    • Fixed: abort of S3 uploads from other running backups
    • \n
    • Changed: Maximum backup archive size is now 2GB (some filesystems do not support larger files, split the job if you need more)
    • \n
    • Changed: WordPress Export will now done by a own class
    • \n
    • Changed: Dropbox now uses oAuth 2 Protocol
    • \n
    • Changed: Dropbox change to TLS Protocol
    • \n
    • Changed: Logs have now a br tag on line end for better reading in emails
    • \n
    • Improved: Dropbox chipper list not on NSS cUrl backend
    • \n
    • Improved: Increased performance on Zip File generation massively
    • \n
    • Improved: Backup archives now deleted to if the archive format changed
    • \n
    • Improved: Archive tarring and its compression
    • \n
    • Improved: Loading of Swift Mailer
    • \n
    • Added: GreenQloud to S3 services
    • \n
    • Added: Amazon Germany region to S3 and Glacier services
    • \n
    • Removed: Hosteurope from S3 services (terminated to end of 2014)
    • \n
    • Updated: SwiftMailer to Version 5.2.0
    • \n
    • Updated: AWS SDK to Version 2.7.3 (PHP 5.3.3+)
    • \n
    • Updated: RSC SDK to Version 1.9.2
    • \n
    • Updated: MSAZURE SDK to Version 0.4.0
    • \n
    • Updated: PEAR packeges for MSAZURE
    • \n
    • PRO: Added: Option to use database backup with mysqli/mysqldump (not longer automatic)
    • \n
    • PRO: Added: Option in GDrive destination to delete files permanently
    • \n
    • PRO: Updated: Google SDK to 1.1.1
    • \n
    \n\n

    Version 3.1.2

    \n\n
      \n
    • Added: .donotbackup file. Folders and sub folders containing this file in will not be included in backups.
    • \n
    • Fixed: New multisite installs did not save jobs.
    • \n
    • Fixed: New multisite installs did not save installed version.
    • \n
    • Fixed: Fatal error when attempting to clean up inactive jobs from cron
    • \n
    • Fixed: Exclude uploads not working
    • \n
    • Fixed: Message \"file not readable\" of an excluded folder
    • \n
    • Fixed: WP-CLI deprecated and unknown parameter message
    • \n
    • Fixed: Bugs in pagination on logs and backups page
    • \n
    • Removed: Banner from plugins page
    • \n
    • Improved: Memory usage during XML export
    • \n
    • Improved: Mime type detection
    • \n
    • Improved: Dropbox SSL handling
    • \n
    • Improved: Certificate bundle file can now be filtered
    • \n
    • Improved: Auto-loading vendor classes
    • \n
    • Improved: Performance when saving other database tables than MyISAM
    • \n
    • Updated: AWS SDK to Version 2.5.2 (PHP 5.3.3+)
    • \n
    • Updated: RSC SDK to Version 1.9.1
    • \n
    • Updated: Guzzle SDK to Version 3.8.1
    • \n
    • Added: S3 Service: Amazon China (Beijing) region
    • \n
    • Added: Rackspace: Hong Kong (HKG) region
    • \n
    • PRO: Fixed: Duplicating synced files on S3
    • \n
    • PRO: Update: Google SDK to 0.6.7
    • \n
    • PRO: Added: Amazon Glacier China (Beijing) region
    • \n
    \n\n

    Version 3.1.1

    \n\n
      \n
    • Fixed: Plugins will not backup
    • \n
    • Improved: Dropped quota check for Dropbox. Will cancel upload only when Dropbox API sends error 507.
    • \n
    • Improved: Remove special chars from file names in archives
    • \n
    • Improved: Handling off restarts on archive creation
    • \n
    \n\n

    Version 3.1

    \n\n
      \n
    • Fixed: Message about aborted step did not display correctly
    • \n
    • Fixed: Incorrect rescheduling of jobs
    • \n
    • Improved: Overall performance while generating backup archives
    • \n
    • Improved: Uploads of backup archives to FTP/S3/Dropbox/Azure/GDrive can be continued
    • \n
    • Improved: Script re-starts based upon time while generating archives and uploading
    • \n
    • Improved: Reduced risk of running scripts being stopped via external processes in fcgi mode
    • \n
    • Improved: Backup destinations and their dependencies only being loaded when needed
    • \n
    • Improved: Required dependencies for destinations being displayed now
    • \n
    • Improved: Displaying of error messages as error messages (red, not yellow)
    • \n
    • Improved: Reduced size of vendor/SDK directory by 50%
    • \n
    • Improved: Regex for BackWPup archive file detection
    • \n
    • Improved: Symlink handling for file backup on WordPress folders
    • \n
    • Improved: Use icon font for menu, adminbar and on other places
    • \n
    • Improved: Responsive for WordPress 3.8
    • \n
    • Updated: AWS SDK to Version 2.4.11 (PHP 5.3.3+)
    • \n
    • Updated: RSC SDK to Version 1.7.3
    • \n
    • Updated: SwiftMailer to Version 5.0.1
    • \n
    • Removed: DB Optimization, because locking of tables that can make the site not accessible
    • \n
    • PRO: Wizards using a separate session handling now
    • \n
    • PRO: Hash that BackWPup uses is changeable
    • \n
    • PRO: Added Google Drive Support
    • \n
    • PRO: Added Amazon Glacier Support
    • \n
    \n\n

    Version 3.0.13

    \n\n
      \n
    • Improved: Redirect when accessing the WordPress backend
    • \n
    • Added: Debug Informations to Logfile
    • \n
    • Added Sydney region for rackspace cloud
    • \n
    • Added London region for rackspace cloud
    • \n
    • Fixed: Cross-site scripting issue. Thanks to High-Tech Bridge for helping us: https://www.htbridge.com/advisory/HTB23161
    • \n
    • Fixed: Fatal error when uninstalling on WordPress 3.4.2 and older
    • \n
    \n\n

    Version 3.0.12

    \n\n
      \n
    • Fixed: Redirect when accessing the WordPress backend
    • \n
    • Added: Russian translation
    • \n
    • Added: Simplified chinese translation
    • \n
    • Fixed: German log string typo
    • \n
    \n\n

    Version 3.0.11

    \n\n
      \n
    • Improved: About page will only be shown after install
    • \n
    • Updated: AWS SDK to Version 2.3.1 (PHP 5.3.3+)
    • \n
    • Fixed: some notices and warnings
    • \n
    • Fixed: Change of BackWPup role for other users
    • \n
    • Added: Message for Pro version to support plugin
    • \n
    \n\n

    Version 3.0.10

    \n\n
      \n
    • Fixed only Version on WordPress.org because of SVN upload problems with Symfony folder from AWS
    • \n
    \n\n

    Version 3.0.9

    \n\n
      \n
    • Fixed: Fixed bug in Dropbox temp file fallback
    • \n
    • Fixed: Not working if WP-Cron Control active
    • \n
    • PRO Fixed: Synchronisation of files to Dropbox
    • \n
    • PRO Changed: About page only displays on new installation not on updates
    • \n
    • Added: Sending auth cookie for self requests
    • \n
    • Added: Displaying off last error or waring in execution screen
    • \n
    • Added: Job end message depending on error\'s or waring\'s
    • \n
    • Added: Setting of BackWPup role in the user settings
    • \n
    • Improved: Wait time after job start
    • \n
    • Improved: Rights management to work better with Role management Plugins
    • \n
    • Changed: Sessions now only used for wizards in pro version
    • \n
    • Removed: Maintenance Mode support, because to many problems and not really needed
    • \n
    • Updated: RSC SDK to Version 1.5.4
    • \n
    • Updated: AWS SDK to Version 1.6.2
    • \n
    • Updated: AWS SDK to Version 2.3.0 (PHP 5.3.3+)
    • \n
    \n\n

    Version 3.0.8

    \n\n
      \n
    • Fixed: Selected database tables not save on tab change
    • \n
    • Fixed: Database tables selection on new job
    • \n
    • Fixed: adding empty folder names tow archive
    • \n
    • Improved/Fixed: Dropbox Authentication
    • \n
    \n\n

    Version 3.0.7

    \n\n
      \n
    • Improved: All job requests will done over wp-cron.php now
    • \n
    • Improved: Ajax calls if blog in maintenance mode
    • \n
    • Improved: Getting of DB_CHARSET
    • \n
    • Improved: FTP file deletion
    • \n
    • Improved: Dropbox authentication (If restrict to job settings page not work you can open the settings page manually again to authenticate)
    • \n
    • Fixed: No maintenance mode, if a maintenance mode already active
    • \n
    • Fixed: Archive file deletion
    • \n
    • Updated: AWS SDK to Version 2.2.1 (PHP 5.3.3+)
    • \n
    \n\n

    Version 3.0.6

    \n\n
      \n
    • Fixed: Massages on empty DB prefix
    • \n
    • Fixed: Bug in cron calculation
    • \n
    • Improved: Dropbox upload so that it can continuing on next try
    • \n
    \n\n

    Version 3.0.5

    \n\n
      \n
    • Changed: Display only normal messages on progress bars
    • \n
    • Changed: Detection of multisite blog upload folder
    • \n
    • Changed: Backups list for destination file will not cached.
    • \n
    • Changed: Reduced files of AWS SDK to the only needed.
    • \n
    • Fixed: Side load braking if no folder permissions
    • \n
    • Fixed: Multiple backups deletion on backups page not working
    • \n
    • Fixed: DB optimize and check not only use WP tables if selected
    • \n
    • Fixed: File deletion on Dropbox if folder name has a space
    • \n
    • Fixed: False scheduling time in some timezones
    • \n
    • Removed: Option for excluding file, cache, temp folders. Can done with file/folder exclusion too.
    • \n
    • Added: Option to restart the job on archive creation if a size of files reached
    • \n
    • Added: Option to set Zip method (PclZip or ZipArchive)
    • \n
    • Improved: Performance if PclZip used.
    • \n
    • Updated: AWS SDK to Version 1.6.1
    • \n
    • Updated: AWS SDK to Version 2.2.0 (PHP 5.3.3+)
    • \n
    \n\n

    Version 3.0.4

    \n\n
      \n
    • Changed: default settings for \'Restart on every main step\' and \'Reduce server load\' to disabled
    • \n
    • Fixed: Settings not correctly set to default
    • \n
    • Fixed: mysqli::get_charset() undefined method
    • \n
    • Fixed: Settings not saved correctly
    • \n
    • Fixed: Abort on MySQL Functions Backup
    • \n
    • Improved: MySQLi connection
    • \n
    • Added: Server connection test on run now.
    • \n
    • Added: S3 AWS SDK 1.6.0 for PHP lower than 5.3.3
    • \n
    \n\n

    Version 3.0.3

    \n\n
      \n
    • Improved: Archive creation performance
    • \n
    • Fixed: Problem with S3 Prefix
    • \n
    • Fixed: warnings on excluded folders
    • \n
    • Fixed: message from putenv
    • \n
    • Fixed: not working downloads
    • \n
    • Changed: removed fancybox and uses thickbox because plugin compatibility
    • \n
    • Added: folder checking on run now
    • \n
    \n\n

    Version 3.0.2

    \n\n
      \n
    • Fixed: Warnings on job edit tab files
    • \n
    • Fixed: folder name on temp cleanup in cron
    • \n
    • Fixed: Setting charset on sql backup
    • \n
    • Fixed: DB Connection on database backup if hostname has a port
    • \n
    • Fixed: Call undefined function apc_clear_cache()
    • \n
    • Fixed: wp-content selected folders not excluded
    • \n
    • Added: Deactivation off multi part upload for S3 Services
    • \n
    • Added: fallback for mysql_ping()
    • \n
    • Added: Options for email senders name
    • \n
    • Changed: 5 minutes cron steps back
    • \n
    • Removed: Flashing admin bar icon
    • \n
    • Updated: OpenCloud API to Version 1.4.1
    • \n
    \n\n

    Version 3.0

    \n\n
      \n
    • Added: Jobs can now be started with an external link or per command line
    • \n
    • Added: Backups can now be compressed with gz or bzip2
    • \n
    • Added: All file names can now be adjusted
    • \n
    • Added: MySQL dump supports now views
    • \n
    • Added: Settings for access control per capability and role
    • \n
    • Added: Save a list of installed Plugins
    • \n
    • Added: Support for WP-CLI
    • \n
    • Improved: Job edit page with tabs
    • \n
    • Improved: Settings page with tabs
    • \n
    • Improved: Database dump now uses mysqli PHP extension for better performance
    • \n
    • Improved: ZIP archives are now created with PHP Zip if available
    • \n
    • Improved: All passwords are now stored encrypted in database
    • \n
    • Improved: wp-cron job start mechanism
    • \n
    • Improved: Job start mechanism not longer uses URL in plugin directory
    • \n
    • Improved: Use temp directory in uploads or set it with WP_TEMP_DIR
    • \n
    • Changed: Mailing backup archives now with SwiftMailer
    • \n
    • Changed: Job process now back in the WordPress environment
    • \n
    • Changed: License changed to GPLv3
    • \n
    • Changed: Rewrote almost the complete code base to use classes with auto-loading
    • \n
    • Changed: Logs are now displayed with fancybox
    • \n
    • Updated: AWS SDK v2.1.2 (PHP 5.3.3)
    • \n
    • Updated: OpenCloud SDK to v1.3 (PHP 5.3)
    • \n
    • Updated: Windows Azure SDK v0.3.1_2011-08 (PHP 5.3.2)
    • \n
    • Removed: serialized job export
    • \n
    • Removed: tools section - not needed anymore
    • \n
    • Removed: Dashboard widgets are now on the BackWPup plugin dashboard
    • \n
    • Fixed: many, many minor bugs
    • \n
    \n\n

    Version 3.0 Pro

    \n\n
      \n
    • Wizards
    • \n
    • Export jobs and settings as XML
    • \n
    • Synchronization of files to backup with destination (filename and size checked)
    • \n
    • Wizard to import jobs and settings from XML
    • \n
    • Database dump can backup other MySQL databases
    • \n
    • Database dump can use mysqldump command on commend line
    • \n
    • Database dump can create XML files (phpMyAdmin schema)
    • \n
    • Use your own API keys for Dropbox and SugarSync
    • \n
    • Premium Support
    • \n
    • Automatic updates
    • \n
    ','BackWPup - WordPress Backup Plugin','Schedule complete automatic backups of your WordPress installation. Decide which content will be stored (Dropbox, S3?). This is the free version','publish','open','closed','','backwpup','','','2017-03-06 17:57:00','2017-03-06 17:57:00','',0,'https://wordpress.org/plugins-wp/backwpup/',0,'plugin','',0), (196,254159,'2007-10-08 21:32:54','2007-10-08 21:32:54','\n

    This plugin will monitor your blog looking for broken links and let you know if any are found.

    \n\n

    Features

    \n\n
      \n
    • Monitors links in your posts, pages, comments, the blogroll, and custom fields (optional).
    • \n
    • Detects links that don\'t work, missing images and redirects.
    • \n
    • Notifies you either via the Dashboard or by email.
    • \n
    • Makes broken links display differently in posts (optional).
    • \n
    • Prevents search engines from following broken links (optional).
    • \n
    • You can search and filter links by URL, anchor text and so on.
    • \n
    • Links can be edited directly from the plugin\'s page, without manually updating each post.
    • \n
    • Highly configurable.
    • \n
    \n\n

    Basic Usage

    \n\n

    Once installed, the plugin will begin parsing your posts, bookmarks (AKA blogroll) and other content and looking for links. Depending on the size of your site this can take from a few minutes up to an hour or more. When parsing is complete, the plugin will start checking each link to see if it works. Again, how long this takes depends on how big your site is and how many links there are. You can monitor the progress and tweak various link checking options in Settings -> Link Checker.

    \n\n

    The broken links, if any are found, will show up in a new tab of the WP admin panel - Tools -> Broken Links. A notification will also appear in the \"Broken Link Checker\" widget on the Dashboard. To save display space, you can keep the widget closed and configure it to expand automatically when problematic links are detected. E-mail notifications need to be enabled separately (in Settings -> Link Checker).

    \n\n

    The \"Broken Links\" tab will by default display a list of broken links that have been detected so far. However, you can use the links on that page to view redirects or see a listing of all links - working or not - instead. You can also create new link filters by performing a search and clicking the \"Create Custom Filter\" button. For example, this can be used to create a filter that only shows comment links.

    \n\n

    There are several actions associated with each link. They show up when you move your mouse over to one of the links listed the aforementioned tab -

    \n\n
      \n
    • \"Edit URL\" lets you change the URL of that link. If the link is present in more than one place (e.g. both in a post and in the blogroll), all occurrences of that URL will be changed.
    • \n
    • \"Unlink\" removes the link but leaves the link text intact.
    • \n
    • \"Not broken\" lets you manually mark a \"broken\" link as working. This is useful if you know it was incorrectly detected as broken due to a network glitch or a bug. The marked link will still be checked periodically, but the plugin won\'t consider it broken unless it gets a new result.
    • \n
    • \"Dismiss\" hides the link from the \"Broken Links\" and \"Redirects\" views. It will still be checked as normal and get the normal link styles (e.g. a strike-through effect for broken links), but won\'t be reported again unless its status changes. Useful if you want to acknowledge a link as broken/redirected and just leave as it is.
    • \n
    \n\n

    You can also click on the contents of the \"Status\" or \"Link Text\" columns to get more info about the status of each link.

    \n\n

    Translations

    \n\n\n\n

    Note: Some translations are not entirely up to date with the latest release, so parts of the interface may appear untranslated.

    \n\n

    Other Credits

    \n\n

    This plugin uses some icons from the Font Awesome icon font. Font Awesome is licensed under SIL OFL 1.1.

    \n\n

    Contribute

    \n\n

    Broken Link Checker is now on GitHub. Pull Requests welcome.

    \n\n\n

    To do a new installation of the plugin, please follow these steps

    \n\n
      \n
    1. Download the broken-link-checker.zip file to your computer.
    2. \n
    3. Unzip the file
    4. \n
    5. Upload broken-link-checker folder to the /wp-content/plugins/ directory
    6. \n
    7. Activate the plugin through the \'Plugins\' menu in WordPress
    8. \n
    \n\n

    To enable/disable various features and tweak the plugin\'s configuration go to Settings -> Link Checker.

    \n\n

    To upgrade your installation

    \n\n
      \n
    1. Deactivate the plugin
    2. \n
    3. Retrieve and upload the new files (do steps 1. - 3. from \"new installation\" instructions)
    4. \n
    5. Reactivate the plugin. Your settings will be retained from the previous version.
    6. \n
    \n\n\n

    1.11.2

    \n\n
      \n
    • Fixed a compatibility issue
    • \n
    \n\n

    1.11.1

    \n\n
      \n
    • Major performance improvement. Database queries reduced up to 10x in some cases.
    • \n
    • Feel free to contribute to the plugin on GitHub. Pull requests welcome!
    • \n
    \n\n

    1.10.11

    \n\n
      \n
    • Fixed the issue with HTTPS (Thanks to gmcinnes)
    • \n
    • Broken Link Checker is now on GitHub. Pull Requests welcome.
    • \n
    \n\n

    1.10.10

    \n\n
      \n
    • New plugin image that was long overdue.
    • \n
    \n\n

    1.10.9

    \n\n
      \n
    • Fixed a security vulnerability where part of the log data visibile in the \"Details\" view was not properly sanitized.
    • \n
    • Updated French translation.
    • \n
    • Updated Portuguese translation.
    • \n
    • Removed an advertising banner.
    • \n
    \n\n

    1.10.8

    \n\n
      \n
    • Added a Swedish translation.
    • \n
    • Fixed an encoding-related bug that caused some translated text on the \"Broken Links\" page to show up as gibberish.
    • \n
    • Fixed a potential security vulnerability where the \"Final URL\" field was not sanitized.
    • \n
    • Fixed link text being truncated to 250 characters.
    • \n
    • Fixed the \"Edit URL\" function updating the link text even when the user left that field unchanged.
    • \n
    • Tested up to 4.2.1.
    • \n
    \n\n

    1.10.7

    \n\n
      \n
    • Tested up to WordPress 4.2.
    • \n
    \n\n

    1.10.6

    \n\n
      \n
    • Fixed a serious CSRF/XSS vulnerability.
    • \n
    • Switched to YouTube API v3. The old API version will be shut down on April 20, so the plugin needs to be updated to continue checking links to YouTube videos.
    • \n
    • Fixed long URLs overflowing into adjacent table columns.
    • \n
    • Fixed a few minor PHP strict-mode notices.
    • \n
    • Added database character set to the \"Show debug info\" table.
    • \n
    \n\n

    1.10.5

    \n\n
      \n
    • Security: Fixed an XSS vulnerability that could be used by Editors and Administrators to inject arbitrary HTML/JS code in the \"Tools -> Broken Links\" page.
    • \n
    • Other minor security fixes.
    • \n
    • Tested on WordPress 4.2 beta.
    • \n
    \n\n

    1.10.4

    \n\n
      \n
    • Tested on WordPress 4.1.
    • \n
    • Fixed a \"Use of undefined constant ENT_HTML401\" notice showing up on sites running PHP 5.3 or older.
    • \n
    • Fixed a double-escaping bug that could cause some link URLs to be displayed incorrectly.
    • \n
    • Updated French translation.
    • \n
    • Updated Dutch translation.
    • \n
    \n\n

    1.10.3

    \n\n
      \n
    • Security: Filter link URLs before displaying them on the \"Broken Links\" page.
    • \n
    • Security: Prevent Editors and Administrators who don\'t have the \"unfiltered_html\" capability from creating \"javascript:\" URLs by editing existing links.
    • \n
    \n\n

    1.10.2

    \n\n
      \n
    • Fixed an XSS vulnerability on the link checker settings page.
    • \n
    • Fixed old YouTube embed code parsing - now it should pick up self-closing embed tags without an <object> wrapper.
    • \n
    • Updated German translation.
    • \n
    • Updated Simplified Chinese translation.
    • \n
    • Link actions will now wrap properly on small screens.
    • \n
    \n\n

    1.10.1

    \n\n
      \n
    • Fixed a database versioning issue that would cause multiple errors when upgrading from 1.9.5 to 1.10.
    • \n
    \n\n

    1.10

    \n\n
      \n
    • Added a way to hide individual link actions like \"Dismiss\" and \"Unlink\".
    • \n
    • Added a \"Fix redirect\" link action. It replaces a redirect with a direct link. It is hidden by default and can be enabled through the settings page.
    • \n
    • Added a \"Recheck\" link action. Unlike the bulk action by the same name, it checks a link immediately and displays the results without having to refresh the page.
    • \n
    • Added a \"Dismiss\" bulk action.
    • \n
    • Added a note below the \"link tweaks\" settings explaining that they only apply to the contents of posts (and pages, and CPTs), not comments or custom fields.
    • \n
    • Made the \"Redirect URL\" column sortable.
    • \n
    • Added a \"Details\" link to the \"Status\" column.
    • \n
    • Added a \"Warnings\" section to Tools -> Broken Links. It shows problems that might be temporary or false positives. Warnings can be disabled through the settings page.
    • \n
    • Fixed a conflict with plugins that use PHP sessions.
    • \n
    • Fixed the \"post statuses\" option. Now disabling a post status (e.g. \"Draft\") should take effect immediately.
    • \n
    • Fixed the Mediafire link checker.
    • \n
    • Fixed the text in the \"Status\" column being slightly offset vertically when compared to other columns.
    • \n
    • Fixed search box position in WP 4.1-alpha.
    • \n
    • Added a few workarounds for situations where a custom post type is removed without first removing the posts.
    • \n
    • Removed the screen icon. WordPress has deprecated it.
    • \n
    • Other minor fixes.
    • \n
    \n\n

    1.9.5

    \n\n
      \n
    • Fixed missing YouTube videos not being detected when the video URL starts with https instead of http.
    • \n
    • Enabled the YouTube video checker by default on new installations.
    • \n
    • Made the \"dismiss link\" option more permanent. Instead of restoring a dismissed link if the redirect URL changes even a little bit, the plugin will now ignore query string changes. This should fix many of the reports about dismissed links reappearing for no apparent reason.
    • \n
    • Updated Portuguese, German and Dutch translations.
    • \n
    • Other minor fixes.
    • \n
    \n\n

    1.9.4.2

    \n\n
      \n
    • Updated Dutch translation again.
    • \n
    • Removed Bulgarian translation because it was poor quality and outdated.
    • \n
    \n\n

    1.9.4.1

    \n\n
      \n
    • Updated Dutch translation.
    • \n
    • Updated POT file.
    • \n
    \n\n

    1.9.4

    \n\n
      \n
    • Tested on WP 4.0 beta.
    • \n
    • Added a Serbo-Croatian translation.
    • \n
    • Added a Slovakian translation.
    • \n
    • Replaced the old Japanese translation with a new and more up-to-date version from a different translator.
    • \n
    • Updated Dutch, German, Polish, Hebrew and other translations.
    • \n
    • Fixed a notice about undefined index \"status_text\".
    • \n
    • Fixed a \"doing it wrong\" warning related to screen options.
    • \n
    • Fixed spurious false positives on links copied from Word or similar editors.
    • \n
    • Fixed view switcher appearance in WP 4.0.
    • \n
    • Replaced the deprecated like_esc() function with $wpdb->esc_like() where available.
    • \n
    • Fixed plaintext URLs not being detected if they\'re the very first thing in a post.
    • \n
    • Fixed a bug that caused quotes and other special characters in the broken link CSS and removed link CSS fields to be auto-escaped with a slash, potentially breaking the CSS.
    • \n
    • Fixed a bug that caused the \"check custom fields\" feature work inconsistently or not at all on custom post types.
    • \n
    • Fixed duplicate custom field links showing up when the user creates a revision with different field values.
    • \n
    • Fixed a specific type of false positive where some links would get flagged as \"Unknown Error\" and the log message would be \"Empty reply from server\".
    • \n
    • Fixed a bug where only the first enabled post type would be resynchronized during plugin activation.
    • \n
    • Added more logging.
    • \n
    • Removed Megavideo and MegaUpload modules. These sites no longer exist.
    • \n
    \n\n

    1.9.3

    \n\n
      \n
    • Tested on WP 3.8.1 and WP 3.9-beta2.
    • \n
    • Added an option to sort links by link text. May produce unexpected results for links that have multiple copies with different anchor text.
    • \n
    • Added a Vietnamese translation.
    • \n
    • Added file-based logging for debugging purposes. Logging can be enabled in the \"Advanced\" section of the plugin settings page.
    • \n
    • Added a \"Auto-Submitted: auto-generated\" header to notification emails sent by the plugin. This should prevent \"out-of-office\" auto-responders and similar software from responding to these emails.
    • \n
    • Added domain-based rate limiting to the HTTP checker module.
    • \n
    • Throttled background parsing by about 40% to reduce overall resource usage.
    • \n
    • Fixed (probably) a long-standing bug related to encoding international characters in link URLs.
    • \n
    • Fixed a typo in the Polish translation.
    • \n
    • Made the error message that\'s displayed when trying to network-activate the plugin more useful.
    • \n
    \n\n

    1.9.2

    \n\n
      \n
    • Fixed several UI/layout issues related to the new WP 3.8 admin style.
    • \n
    • Fixed HTML entity codes showing up in confirmation messages in when running a localized version of WP (only affects some languages).
    • \n
    • Fixed the \"dismiss this notice\" link URL not being HTML-escaped.
    • \n
    • Fixed a couple of cross-site scripting vulnerabilities related to the sort direction query argument not being properly validated and the bulk action form not escaping the current URL.
    • \n
    • Updated Hebrew translation.
    • \n
    • Updated French translation.
    • \n
    • When you dismiss a link, the dismissed link counter is now updated right away instead of on page reload.
    • \n
    \n\n

    1.9.1

    \n\n
      \n
    • Updated Dutch, German, Chinese and Portuguese translations.
    • \n
    • Fixed suggestions not working on sites that force HTTPS in the WordPress admin.
    • \n
    • Tested on WordPress 3.7.
    • \n
    \n\n

    1.9

    \n\n
      \n
    • Added the ability to edit link text from inside the plugin. This features is only available for certain types of links.
    • \n
    • Added a \"suggestions\" feature. When you go to edit a broken link, the plugin will now suggest replacing it with an archived page from the Wayback Machine (if available). You can disable suggestions in Settings -> Link Checker -> General.
    • \n
    • Added a Hebrew translation.
    • \n
    • Added support for HTML code in custom fields. To make the plugin treat a field as HTML, prefix its name with \"html:\" in BLC settings. For example, if you have a custom field named \"foo\" that contains HTML, enter it as \"html:foo\".
    • \n
    • Fixed: The \"Status\" column is now properly updated when editing a link.
    • \n
    • Fixed: Visual feedback when a link is successfully edited. Basically, it briefly changes the row background to green.
    • \n
    • Fixed: Email notifications will only include the \"see all broken links here\" link if the recipient can actually access that link.
    • \n
    • Fixed some UI labels not being localizable.
    • \n
    • The \"Undismiss\" action is now displayed in all views instead of only the \"Dismissed\" view. This way you can tell if a broken link has been dismissed without having to search the \"Dismissed\" list.
    • \n
    • Added information about the last email notification sent to debug info. It\'s accessible by clicking \"show debug info\" on the plugin settings page.
    • \n
    \n\n

    1.8.3

    \n\n
      \n
    • Added a Hungarian translation.
    • \n
    • Fixed a bunch of \"deprecated function\" notices that showed up due to wpdb::escape() becoming deprecated in WP 3.6.
    • \n
    • Fixed a vulnerability that would allow users with the ability to bulk-edit links to execute arbitrary PHP code by using a specially crafted regex as the search string.
    • \n
    • Updated German translation.
    • \n
    • Replaced the old Dutch translation with a new and more complete translation by Robin Roelofsen.
    • \n
    \n\n

    1.8.2

    \n\n
      \n
    • Removed one of the translator credits links because Google flagged it as \"suspicious\".
    • \n
    • Updated French translation.
    • \n
    • Updated Polish translation.
    • \n
    • Fixed several field size and layout issues that made the search form display incorrectly in Firefox.
    • \n
    \n\n

    1.8.1

    \n\n
      \n
    • Updated the Polish and Simplified Chinese translations.
    • \n
    • Updated the German translation.
    • \n
    • Added translation strings for two modules that were missing them.
    • \n
    • Replaced a number of icons with GPL-compatible alternatives from Font Awesome.
    • \n
    • Removed some unused images.
    • \n
    \n\n

    1.8

    \n\n
      \n
    • Added an option to only show the dashboard widget for users with the Administrator role, or to disable it completely.
    • \n
    • Added a way to change the notification email address.
    • \n
    • Added support for Smart YouTube \"httpv://\" links.
    • \n
    • Added support for protocol-relative URLs (for example, \"//example.com/\").
    • \n
    • Added support for checking YouTube playlists.
    • \n
    • Added a Brazilian Portuguese (pt-BR) translation.
    • \n
    • Updated Chinese (Traditional) translation.
    • \n
    • Switched over to storing plugin settings as JSON instead of serialized PHP arrays.
    • \n
    • Improved error reporting in situations where the plugin can not load settings from the database.
    • \n
    • Fixed: Display a more specific error message than just \"update failed\" when the plugin fails to modify a post. This only applies to WP 3.5+.
    • \n
    • Fixed: Display the right URL for embedded YouTube playlists. Previously the plugin would show the same (incorrect) URL for all playlists.
    • \n
    \n\n

    1.7.1

    \n\n
      \n
    • Added an Arabic translation.
    • \n
    • Updated Portuguese translation.
    • \n
    • Updated French translation.
    • \n
    • Fixed MySQL errors caused by the plugin converting table names to lowercase.
    • \n
    • Fixed a bug where the plugin would sometimes report broken Twitter links as working.
    • \n
    • Fixed the plugin author URL.
    • \n
    \n\n

    1.7

    \n\n
      \n
    • Added support for youtu.be shortlinks.
    • \n
    • Added a Finnish translation.
    • \n
    • Fixed a graphical bug where the currently selected settings tab would not be highlighted in WordPress 3.5.
    • \n
    • Removed the \"Blogroll items\" module from the list of link containers enabled by default. The WordPress developer team is planning to remove Link Manager from core, and the \"Links\" menu will be hidden by default in new WP 3.5 installs.
    • \n
    • Removed the Admin Menu Editor Pro ad from the \"Settings -> Link Checker\" and the \"Tools -> Broken Links\" pages.
    • \n
    • Disabled the news link (if any) for users who have donated.
    • \n
    • Removed support for pre-WP 2.9 post meta actions.
    • \n
    • Minor styling changes of screen meta links.
    • \n
    • Updated Danish, Germa, Italian, French and Simplified Chinese translations.
    • \n
    • Tested on WordPress 3.5.
    • \n
    \n\n

    1.6.2

    \n\n
      \n
    • Another attempt to fix the \"database not up to date\" that some users are still experiencing even with 1.6.1.
    • \n
    \n\n

    1.6.1

    \n\n
      \n
    • Fixed the \"database not up to date\" bug. Now the plugin should properly upgrade the DB.
    • \n
    \n\n

    1.6

    \n\n
      \n
    • Added a way to dismiss links. Dismissed links don\'t show up in the \"Broken\" and \"Redirects\" lists, but are still checked as normal and get the normal link styles (e.g. strike-through for broken links). Useful if you want to, for example, acknowledge that a link is broken and leave it be.
    • \n
    • Added a \"Redirect URL\" column. For redirects this will display the URL that the link redirects to. For normal, non-redirected links, it will be empty. This column is hidden by default. You can enable it in the \"Screen Options\" panel.
    • \n
    • Updated French translation.
    • \n
    • Tested on WP 3.4.1.
    • \n
    • Replace the \"More plugins...\" link on the \"Broken Links\" page with a link to the Admin Menu Editor page. This link will be hidden for users who have donated.
    • \n
    • A number of minor fixes.
    • \n
    \n\n

    1.5.5

    \n\n
      \n
    • Fix broken image on the settings page.
    • \n
    \n\n

    1.5.3

    \n\n
      \n
    • Fixed a bug that would cause the donation flag to be recorded incorrectly. Apologies to everyone who donated.
    • \n
    \n\n

    1.5.2

    \n\n
      \n
    • A few minor comment fixes.
    • \n
    • Move certain styles to a separate CSS file, which is where they belong.
    • \n
    • Replace the ThemeFuse banner with one from ManageWP (will go live on June 5).
    • \n
    • Instead of displaying several plugins in the \"More plugins by Janis Elsts\" box, sometimes display just one plugin (AME).
    • \n
    \n\n

    1.5.1

    \n\n
      \n
    • Updated Portuguese translation.
    • \n
    • Updated German translation.
    • \n
    • Fixed the donation link to properly return to the Dashboard upon completion.
    • \n
    • Do not display ads to users who have donated.
    • \n
    \n\n

    1.5

    \n\n
      \n
    • Added a FileServe checker.
    • \n
    • Added Turkish translation.
    • \n
    • Added GoogleVideo and Megavideo embed support.
    • \n
    • Fixed Megaupload links being reported with an \"Unknown error\" message when it should be \"Not found\".
    • \n
    • Fixed a couple of bugs in the Rapidshare and MediaFire checkers.
    • \n
    • Updated German translation.
    • \n
    • Updated Italian translation.
    • \n
    • Updated Portuguese translation.
    • \n
    • The explanatory text for the broken link CSS and removed link CSS inputs can now be translated.
    • \n
    • Tested on WP 3.4-alpha-20291.
    • \n
    \n\n

    1.4

    \n\n
      \n
    • Added an option to send post authors notifications about broken links in their posts.
    • \n
    • Added the ability to sort links by URL (click the column header).
    • \n
    • Added YouTube API throttling to avoid going over the request quota, which could result in false positives on blogs with lots of YouTube videos.
    • \n
    • Added a Bulgarian translation.
    • \n
    • Updated Italian, German and Persian translations.
    • \n
    • Fixed a bug where the \"Feedback\" and other screen meta links wouldn\'t show up in WP 3.3.
    • \n
    • Fixed the tab CSS for the plugin settings page. Now they should be the right size and look the same in all modern browsers (tested in IE, Firefox, Chrome and Opera).
    • \n
    • Fixed drop-down arrows showing up on meta links that don\'t actually have dropdowns.
    • \n
    • Tested on WP 3.3 (RC2).
    • \n
    \n\n

    1.3.1

    \n\n
      \n
    • Added support for the new YouTube embed code style. It needs to be explicitly enabled in options.
    • \n
    • Added credits link for the Persian language translator.
    • \n
    • Updated Portuguese translation.
    • \n
    • Updated German translation.
    • \n
    • Partial fix for Mediafire checker failing with a fatal error in some situations.
    • \n
    \n\n

    1.3

    \n\n
      \n
    • Dropped PHP 4 support.
    • \n
    • Fixed a whole lot of PHP 5 related notices and strict-mode warnings.
    • \n
    • Fixed some inconsistent method declarations.
    • \n
    • Fixed a long-standing bug in the ver. 0.9.5 upgrade routine.
    • \n
    • Fixed the look and behavior of the \"Feedback\" and \"Go to Broken Links/Go to Settings\" links to be consistent with other WP screen meta links.
    • \n
    • Updated Chinese (TW) translation.
    • \n
    • Updated Portuguese translation.
    • \n
    • Updated Italian translation (minor fix).
    • \n
    • Replaced the link to FindBroken with a short list of (some of) my other plugins.
    • \n
    \n\n

    1.2.5

    \n\n
      \n
    • Added Irish translation.
    • \n
    • Added Persian translation.
    • \n
    • Added Korean translation.
    • \n
    • Added Chinese Traditional translation.
    • \n
    • Updated German translation.
    • \n
    • Fixed (probably) missing diacritics in the Romanian translation.
    • \n
    • Fixed a crash bug caused by class-json.php no longer being present in the latest WP. Luckily, the plugin only really needed that class for backwards compatibility.
    • \n
    • Made the \"database not up to date\" error message a bit more helpful.
    • \n
    • Shortcodes in image URLs should work now.
    • \n
    • The Dashboard widget is no longer visible to non-privileged users.
    • \n
    • Replaced multiple instances of get_option(\'home\') and get_option(\'siteurl\') - both now deprecated - with home_url().
    • \n
    \n\n

    1.2.4

    \n\n
      \n
    • Fixed a very stupid bug where links would be checked very slowly or not at all.
    • \n
    • Fixed the display of the news link.
    • \n
    • Updated Italian translation.
    • \n
    \n\n

    1.2.3

    \n\n
      \n
    • Updated Portuguese translation.
    • \n
    • Updated German translation.
    • \n
    • Switched to a simpler, MySQL-based locking mechanism. Note: This may cause trouble for people who\'ve hacked their WP install to use persistent database connections.
    • \n
    • Added a poll asking for feedback on a new BLC-related web application idea.
    • \n
    • Minor wording change in the debug info table.
    • \n
    \n\n

    1.2.2

    \n\n
      \n
    • All Pro features now included in the free version!
    • \n
    • Updated Japanese translation.
    • \n
    • Updated Polish translation.
    • \n
    • Updated Portuguese translation.
    • \n
    • Added Romanian translation.
    • \n
    • Fixed a tab layout bug in IE 7.
    • \n
    • Fixed UTF-8 characters outside the domain name being encoded incorrectly (may only work with Curl).
    • \n
    • Fixed a missing translation in email notifications.
    • \n
    • Fixed a rare \"only variables can be returned by reference\" notice.
    • \n
    • Added a donation button and a MaxCDN ad to the Settings page.
    • \n
    • Added a \"Go to Settings\" button to the Broken Links page, and a \"Go to Broken Links\" button to the Settings page.
    • \n
    • Settings page now looks better on small screens.
    • \n
    • Email notifications are now enabled by default.
    • \n
    • \"Link status\" in the search form no longer defaults to the currently displayed filter/view.
    • \n
    • Made the \"installation failed\" message a bit more helpful.
    • \n
    \n\n

    0.9.7.2

    \n\n
      \n
    • Added Polish translation.
    • \n
    • Updated Danish translation.
    • \n
    • Updated Italian translation.
    • \n
    • Fixed an uncommon \"Cannot break/continue 1 level\" error.
    • \n
    • Added a new user feedback survey (the link only shows up after you\'ve used this version for at least two weeks).
    • \n
    \n\n

    0.9.7.1

    \n\n
      \n
    • Updated German translation and fixed the corresponding credits link.
    • \n
    \n\n

    0.9.7

    \n\n
      \n
    • Allow custom field names with spaces.
    • \n
    • Updated German translation.
    • \n
    • Updated Portuguese translation
    • \n
    • Made the \"Current load\" label localizeable.
    • \n
    • Fixed a translation-related bug where the various checkboxes in the \"Link types\" and \"Look for links in\" sections would appear in English even when a valid translation was available.
    • \n
    • Fixed non-ASCII URLs being mangled when links are automatically marked with the \"broken_link\" CSS class.
    • \n
    • Fixed blog names that include quotes being displayed incorrectly in email notifications.
    • \n
    • When removing a link via the \"Unlink\" action, add the old URL as the title attribute of the now-unlinked anchor text.
    • \n
    • When resolving relative URLs posted in comments, use the comment\'s permalink as the base (previously the blog\'s homepage URL was used).
    • \n
    \n\n

    0.9.6

    \n\n
      \n
    • Updated Danish translation.
    • \n
    • Updated Italian translation.
    • \n
    • Updated Portuguese translation
    • \n
    • Fixed incorrect parsing of relative URLs that consist solely of a query string or #fragment.
    • \n
    • Fixed superfluous resynchronization requests being issued when the plugin is re-activated.
    • \n
    • Fixed only one of character set and collation being specified for the plugin\'s tables.
    • \n
    • Added default status text for HTTP codes 509 and 510.
    • \n
    • Added the installation log to debug info output.
    • \n
    • Added lots of logging to routines called on activation.
    • \n
    • Added an \"Upgrade to Pro\" button to the plugin\'s pages.
    • \n
    • Removed the highlight on the \"Feedback\" button.
    • \n
    • Fail fast if trying to activate on an unsupported version of WordPress.
    • \n
    • Ensure PHP and browser timeouts don\'t prematurely terminate the installation/upgrade script.
    • \n
    • Plugin JavaScript and CSS files are now loaded using HTTPS when FORCE_ADMIN_SSL is on.
    • \n
    \n\n

    0.9.5

    \n\n
      \n
    • Added the ability to check scheduled, draft and private posts.
    • \n
    • Added a way to individually enable/disable the monitoring of posts, pages, comments, the blogroll, and so on.
    • \n
    • New \"Status\" column in the \"Broken Links\" table.
    • \n
    • Visible table columns and the number of links per page can now be selected in the \"Screen Options\" panel.
    • \n
    • Replaced the \"Delete sources\" action with \"Move sources to Trash\" (except on blogs where Trash is disabled).
    • \n
    • New URL editor interface, now more consistent with the look-n-feel of the inline editor for posts.
    • \n
    • New status icon to help distinguish \"maybe broken\" and \"definitely broken\" links.
    • \n
    • Tweaked table layout - links first, posts/etc last.
    • \n
    • Added \"Compact\" and \"Detailed\" table views (for now, the differences are quite minor).
    • \n
    • Split the settings page into several tabs.
    • \n
    • Removed the \"Details\" links as redundant. To display link details, click the contents of the \"Status\" or \"Link text\" columns instead.
    • \n
    • Added a way to individually enable/disable the monitoring of various link types, e.g. HTML links, images, etc.
    • \n
    \n\n

    0.9.4.4

    \n\n
      \n
    • Fixed \"Edit URL\" and \"Unlink\" not working on PHP4 servers.
    • \n
    \n\n

    0.9.4.3

    \n\n
      \n
    • Another PHP 4 fix. Considering dropping support for PHP4 in light of the counterintuitive workarounds required to make perfectly valid PHP5 code work in that ghastly thing.
    • \n
    • Added a partial workaround for sites that have use strange DB_CHARSET settings.
    • \n
    \n\n

    0.9.4.2

    \n\n
      \n
    • Added more debugging data to the \"Show debug info\" table.
    • \n
    • Added missing indexes to the instance table.
    • \n
    • Yet more PHP4 compatibility fixes.
    • \n
    • Added a notification bubble with the current number of broken links to the Tools -> Broken Links menu item.
    • \n
    \n\n

    0.9.4.1

    \n\n
      \n
    • Fixed PHP 4 incompatibilities introduced in the previous release.
    • \n
    • Fixed bulk unlink.
    • \n
    • Updated Italian translation.
    • \n
    • Updated Danish translation.
    • \n
    \n\n

    0.9.4

    \n\n
      \n
    • Fixed missing post and comment edit links in email notifications.
    • \n
    • Updated Danish translation.
    • \n
    • Added Japanese translation.
    • \n
    • Added a Hindi translation.
    • \n
    • Added a Portuguese translation.
    • \n
    • Slightly improved DB error reporting.
    • \n
    • Added the ability to disable comment link checking.
    • \n
    • Fixed a couple of minor bugs that made some of the UI text impossible to translate.
    • \n
    • The plugin\'s tables are now created with the same character set and collation settings as native WP tables (previously they used the database defaults instead).
    • \n
    • Automatically clean up and optimize the plugin\'s tables twice per month.
    • \n
    • Instead of displaying a zero response time for timed out links, now it shows how long the plugin waited before assuming that the link has timed out.
    • \n
    • Added the default PHP script execution time limit to the \"Debug info\" table.
    • \n
    • Added a \"Mark as not broken\" bulk action.
    • \n
    • Links that make the plugin crash are no longer assumed to be broken.
    • \n
    \n\n

    0.9.3

    \n\n
      \n
    • Fixed a JS error that only happened in IE by removing a superfluous comma from an object literal.
    • \n
    • Fixed load limiting not being completely disabled on servers that don\'t support it.
    • \n
    • Fixed a mishandling of new comments that would occur when CAPTCHA verification was enabled and someone entered an incorrect code.
    • \n
    • Added installation/update logging.
    • \n
    • Fixed a crash that would occur when the user tried to permanently delete a trashed post that has comments.
    • \n
    \n\n

    0.9.2

    \n\n
      \n
    • In Tools -> Broken Links, highlight links that have been broken for a long time (off by default).
    • \n
    • Fixed an invalid parameter bug in the HTTP link checking routine.
    • \n
    • Added nofollow to broken links (optional, only works for links in posts).
    • \n
    • Fixed some PHP notices and a bunch of deprecated function calls.
    • \n
    • Fixed \"Trash\" links for comments.
    • \n
    \n\n

    0.9.1

    \n\n
      \n
    • Fixed the \"syntax error: unexpected $end\" problem caused by a unintentional PHP shorttag.
    • \n
    • Eliminated a bunch of false positives by adding a workaround for buggy servers that incorrectly respond with 404 to HEAD requests.
    • \n
    • Increased the default server load limit to 4.0 to prevent the plugin from idling endlessly on weakling servers.
    • \n
    \n\n

    0.9

    \n\n
      \n
    • Masquerade as IE 7 when using the Snoopy library to check links. Should prevent some false positives.
    • \n
    • Fixed relative URL handling (yet again). It\'ll work this time, honest ;)
    • \n
    • Fixed post titles being displayed incorrectly on multilingual blogs (props Konstanin Zhilenko)
    • \n
    • Misc fixes/comments.
    • \n
    • \"Unlink\" works properly now.
    • \n
    • Additional source code comments.
    • \n
    • Don\'t try to display icons in email notifications. It didn\'t work anyway.
    • \n
    • Use AJAX nonces for additional security.
    • \n
    • General code cleanup.
    • \n
    • Email notifications about broken links.
    • \n
    • \"Recheck\" bulk action.
    • \n
    • Check comment links.
    • \n
    • Suspend checking if the server is overloaded (on by default).
    • \n
    • Icons for broken links and redirects.
    • \n
    • Fixed some UI glitches.
    • \n
    • \"Discard\" gone, replaced by \"Not broken\".
    • \n
    • \"Exclude\" gone from action links.
    • \n
    • Better handling of false positives.
    • \n
    • FTP, mailto:, javascript: and other links with unsupported protocols now show up in the ?All links? list.
    • \n
    \n\n

    0.8.1

    \n\n
      \n
    • Updated Italian translation.
    • \n
    • Removed the survey link.
    • \n
    \n\n

    0.8

    \n\n
      \n
    • Initial support for performing some action on multiple links at once.
    • \n
    • Added a \"Delete sources\" bulk action that lets you delete all posts (or blogroll entries) that contain any of the selected links. Doing this in WP 2.9 and up this will instead move the posts to the trash, not delete them permanently.
    • \n
    • New bulk action : Unlink. Removes all selected links from all posts.
    • \n
    • New bulk action : Fix redirects. Analyzes the selected links and replaces any redirects with direct links.
    • \n
    • Added a notice asking the user to take the feedback survey.
    • \n
    • Update the .POT file with new i18n strings.
    • \n
    \n\n

    0.7.4

    \n\n
      \n
    • Fixed a minor bug where the plugin would display an incorrect number of links in the \"Displaying x-y of z\" label when the user moves to a different page of the results.
    • \n
    • Added Ukrainian translation.
    • \n
    \n\n

    0.7.3

    \n\n
      \n
    • Reverted to the old access-checking algorithm + some error suppression.
    • \n
    \n\n

    0.7.2

    \n\n
      \n
    • Only use the custom access rights detection routine if open_basedir is set.
    • \n
    \n\n

    0.7.1

    \n\n
      \n
    • Updated Russian translation.
    • \n
    • Yet another modification of the algorithm that tries to detect a usable directory for the lockfile.
    • \n
    \n\n

    0.7

    \n\n
      \n
    • Added a Search function and the ability to save searches as custom filters
    • \n
    • Added a Spanish translation
    • \n
    • Added a Belorussian translation
    • \n
    • Added an option to add a removed_link CSS class to unlinked links
    • \n
    • Slight layout changes
    • \n
    • Added localized date display (where applicable)
    • \n
    • The background worker thread that is started up via AJAX will now close the connection almost immediately after it starts running. This will reduce resource usage slightly. May also solve the rare and mysterious slowdown some users have experienced when activating the plugin.
    • \n
    • Updated Italian translation
    • \n
    • Fixed an unlocalized string on the \"Broken Links\" page
    • \n
    \n\n

    0.6.5

    \n\n
      \n
    • Added Russian translation.
    • \n
    \n\n

    0.6.4

    \n\n
      \n
    • Added French translation.
    • \n
    • Updated Italian translation.
    • \n
    \n\n

    0.6.3

    \n\n
      \n
    • Added a German translation.
    • \n
    \n\n

    0.6.2

    \n\n
      \n
    • Added an Italian translation.
    • \n
    • Added a Danish translation.
    • \n
    • Added a Chinese (Simplified) translation.
    • \n
    • Added a Dutch translation.
    • \n
    \n\n

    0.6.1

    \n\n
      \n
    • Some translation-related fixes.
    • \n
    \n\n

    0.6

    \n\n
      \n
    • Initial localization support.
    • \n
    \n\n

    0.5.18

    \n\n
      \n
    • Added a workaround for auto-enclosures. The plugin should now parse the \"enclosure\" custom field correctly.
    • \n
    • Let people use Enter and Esc as shortcuts for \"Save URL\" and \"Cancel\" (respectively) when editing a link.
    • \n
    \n\n

    0.5.17

    \n\n
      \n
    • Added a redirect detection workaround for users that have safe_mode or open_basedir enabled.
    • \n
    \n\n

    0.5.16.1

    \n\n
      \n
    • Be more careful when parsing safe_mode and open_basedir settings.
    • \n
    \n\n

    0.5.16

    \n\n
      \n
    • Also try the upload directory when looking for places where to put the lockfile.
    • \n
    \n\n

    0.5.15

    \n\n
      \n
    • Editing links with relative URLs via the plugin\'s interface should now work properly. Previously the plugin would just fail silently and behave as if the link was edited, even if it wasn\'t.
    • \n
    \n\n

    0.5.14

    \n\n
      \n
    • Made the timeout value used when checking links user-configurable.
    • \n
    • The plugin will now report an error instead of failing silently when it can\'t create the necessary database tables.
    • \n
    • Added a table listing assorted debug info to the settings page. Click the small \"Show debug info\" link to display it.
    • \n
    • Cleaned up some redundant/useless code.
    • \n
    \n\n

    0.5.13

    \n\n
      \n
    • Fixed the bug where the plugin would ignore FORCE_ADMIN_SSL setting and always use plain HTTP for it\'s forms and AJAX.
    • \n
    \n\n

    0.5.12

    \n\n
      \n
    • Let the user set a custom temporary directory, if the default one is not accessible for some reason.
    • \n
    \n\n

    0.5.11

    \n\n
      \n
    • Use absolute paths when loading includes. Apparently using the relative path could cause issues in some server configurations.
    • \n
    \n\n

    0.5.10.1

    \n\n
      \n
    • Fix a stupid typo
    • \n
    \n\n

    0.5.10

    \n\n
      \n
    • Separated the user-side functions from the admin-side code so that the plugin only loads what\'s required.
    • \n
    • Changed some internal flags yet again.
    • \n
    • Changed the algorithm for finding the server\'s temp directory.
    • \n
    • Fixed the URL extraction regexp again; turns out backreferences inside character classes don\'t work.
    • \n
    • Process shortcodes in URLs.
    • \n
    • If the plugin can\'t find a usable directory for temporary files, try wp-content.
    • \n
    • Don\'t remove
    • \n
    \n\n

    <

    \n\n

    pre> tags before parsing the post. Turns out they can actually contain valid links (oops).

    \n\n

    0.5.9

    \n\n
      \n
    • Added an autogenerated changelog.
    • \n
    • Added a workaround to make this plugin compatible with the SimplePress forum.
    • \n
    • Fixed
    • \n
    \n\n

    <

    \n\n

    pre> block parsing, again.\n* Fixed a bug where URLs that only differ in character case would be treated as equivalent.\n* Improved the database upgrade routine.

    \n\n

    0.5.8.1

    \n\n
      \n
    • Added partial proxy support when CURL is available. Proxies will be fully supported in a later version.
    • \n
    \n\n

    0.5.8

    \n\n
      \n
    • Fixed links that are currently in the process of being checked showing up in the \"Broken links\" table.
    • \n
    • The post parser no longer looks for links inside
    • \n
    \n\n
    \n\n

    blocks.

    \n\n

    0.5.7

    \n\n
      \n
    • Slightly changed the dashboard widget\'s layout/look as per a user\'s request.
    • \n
    \n\n

    0.5.6

    \n\n
      \n
    • Improved relative URL parsing. The plugin now uses the permalink as the base URL when processing posts.
    • \n
    \n\n

    0.5.5

    \n\n
      \n
    • Minor bugfixes
    • \n
    • URLs with spaces (and some other special characters) are now handled better and won\'t get marked as \"broken\" all the time.
    • \n
    • Links that contain quote characters are parsed properly.
    • \n
    \n\n

    0.5.4

    \n\n
      \n
    • Fixed the uninstaller not deleting DB tables.
    • \n
    • Other uninstallation logic fixes.
    • \n
    \n\n

    0.5.3

    \n\n
      \n
    • Improved timeout detection/handling when using Snoopy.
    • \n
    • Set the max download size to 5 KB when using Snoopy.
    • \n
    • Fixed a rare bug where the settings page would redirect to the login screen when saving settings.
    • \n
    • Removed some stale, unused code (some still remains).
    • \n
    \n\n

    0.5.2

    \n\n
      \n
    • Fixed a SQL query that had the table prefix hard-coded as \"wp_\". This would previously make the plugin detect zero links on sites that have a different table prefix.
    • \n
    \n\n

    0.5.1

    \n\n
      \n
    • Fix a bug when the plugin creates a DB table with the wrong prefix.
    • \n
    \n\n

    0.5

    \n\n
      \n
    • This is a near-complete rewrite with a lot of new features.
    • \n
    • See ?http://w-shadow.com/blog/2009/05/22/broken-link-checker-05/ for details.
    • \n
    \n\n

    0.4.14

    \n\n
      \n
    • Fix false positives when the URL contains an #anchor
    • \n
    \n\n

    0.4.13

    \n\n
      \n
    • (Hopefully) fix join() failure when Snoopy doesn\'t return any HTTP headers.
    • \n
    \n\n

    0.4.12

    \n\n
      \n
    • There are no release notes for this version
    • \n
    \n\n

    0.4.11

    \n\n
      \n
    • Set the Referer header to blog\'s home address when checking a link. This should help deal with some bot traps.
    • \n
    • I know, I know - there haven\'t been any major updates for a while. But there will be eventually :)
    • \n
    • Fix SQL error when a post is deleted.
    • \n
    \n\n

    0.4.10

    \n\n
      \n
    • Changed required access caps for \"Manage -> Broken Links\" from manage_options to edit_ohers_posts. This will allow editor users to access that page and it\'s functions.
    • \n
    \n\n

    0.4.9

    \n\n
      \n
    • Link sorting, somewhat experimental.
    • \n
    • JavaScript sorting feature for the broken link list.
    • \n
    \n\n

    0.4.8

    \n\n
      \n
    • CURL isn\'t required anymore. Snoopy is used when CURL isn\'t available.
    • \n
    • Post title in broken link list is now a link to the post (permalink). Consequently, removed \"View\" button.
    • \n
    • Added a \"Details\" link. Clicking it will show/hide more info about the reported link.
    • \n
    • \"Unlink\" and \"Edit\" now work for images, too. \"Unlink\" simply removes the image.
    • \n
    • Database modifications to enable the changes described above.
    • \n
    • Moved the URL checking function from wsblc_ajax.php to broken-link-checker.php; made it more flexible.
    • \n
    • New and improved (TM) regexps for finding links and images.
    • \n
    • A \"Settings\" link added to plugin\'s action links.
    • \n
    • And probably other stuff I forgot!
    • \n
    • Grr :P
    • \n
    \n\n

    0.4.7

    \n\n
      \n
    • Minor enhancements :
    • \n
    • Autoselect link URL after the user clicks \"Edit\".
    • \n
    • Make sure only HTTP and HTTPS links are checked.
    • \n
    • More substantive improvements will hopefully follow next week.
    • \n
    \n\n

    0.4.6

    \n\n
      \n
    • Minor compatibility enhancement in wsblc_ajax.php - don\'t load wpdb if it\'s already loaded.
    • \n
    \n\n

    0.4.5

    \n\n
      \n
    • Bugfixes. Nothing more, nothing less.
    • \n
    • Revisions don\'t get added to the work queue anymore.
    • \n
    • Workaround for rare cURL timeout bug.
    • \n
    • Improved WP 2.6 compatibility.
    • \n
    • Correctly handle URLs containing a single quote \'.
    • \n
    \n\n

    0.4.4

    \n\n
      \n
    • Consider a HTTP 401 response OK. Such links won\'t be marked as broken anymore.
    • \n
    \n\n

    0.4.3

    \n\n
      \n
    • Fix : Don\'t check links in revisions, only posts/pages.
    • \n
    \n\n

    0.4.2

    \n\n
      \n
    • There are no release notes for this version
    • \n
    \n\n

    0.4.1

    \n\n
      \n
    • Split translated version from the previous code. Was causing weird problems.
    • \n
    \n\n

    0.4-i8n

    \n\n
      \n
    • There are no release notes for this version
    • \n
    \n\n

    0.4

    \n\n
      \n
    • Added localization support (may be buggy).
    • \n
    \n\n

    0.3.9

    \n\n
      \n
    • Fix : Use get_permalink to get the \"View\" link. Old behavior was to use the GUID.
    • \n
    \n\n

    0.3.8

    \n\n
      \n
    • Edit broken links @ Manage -> Broken Links (experimental)
    • \n
    \n\n

    0.3.7

    \n\n
      \n
    • Change: A bit more verbose DB error reporting for the \"unlink\" feature.
    • \n
    \n\n

    0.3.6

    \n\n
      \n
    • Switch from wp_print_scripts() to wp_enqueue_script()
    • \n
    • Wp_enqueue_script()
    • \n
    \n\n

    0.3.5

    \n\n
      \n
    • New: \"Delete Post\" option.
    • \n
    • New: Increase the compatibility number.
    • \n
    • Change: Default options are now handled in the class constructor.
    • \n
    \n\n

    0.3.4

    \n\n
      \n
    • Ignore mailto: links
    • \n
    • Ignore links inside blocks
    • \n
    \n\n

    0.3.3

    \n\n
      \n
    • There are no release notes for this version
    • \n
    \n\n

    0.3.2

    \n\n
      \n
    • Fix Unlink button not working, some other random fixes
    • \n
    \n\n

    0.3.1

    \n\n
      \n
    • There are no release notes for this version
    • \n
    \n\n

    0.3

    \n\n
      \n
    • There are no release notes for this version
    • \n
    \n\n

    0.2.5

    \n\n
      \n
    • Applied a small patch @ 347
    • \n
    • Fix some omissions
    • \n
    • Lots of new features in version 0.3
    • \n
    \n\n

    0.2.4

    \n\n
      \n
    • Bigfix - use GET when HEAD fails
    • \n
    \n\n

    0.2.3

    \n\n
      \n
    • MySQL 4.0 compatibility + recheck_all_posts function
    • \n
    \n\n

    0.2.2.1

    \n\n
      \n
    • There are no release notes for this version
    • \n
    \n\n

    0.2.2

    \n\n
      \n
    • There are no release notes for this version
    • \n
    \n\n

    0.2

    \n\n
      \n
    • There are no release notes for this version
    • \n
    \n\n

    0.1

    \n\n
      \n
    • There are no release notes for this version
    • \n
    ','Broken Link Checker','This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.','publish','open','closed','','broken-link-checker','','','2016-03-31 15:25:29','2016-03-31 15:25:29','',0,'https://wordpress.org/plugins-wp/broken-link-checker/',0,'plugin','',0); INSERT INTO `wporg_367_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 (197,6659693,'2011-12-21 00:11:09','2011-12-21 00:11:09','\n

    Ninja Forms is the ultimate FREE form creation tool for WordPress. Build forms within minutes using a simple yet powerful drag-and-drop form creator. For beginners, quickly and easily design complex forms with absolutely no code. For developers, utilize built-in hooks, filters, and even custom field templates to do whatever you need at any step in the form building or submission using Ninja Forms as a framework.

    \n\n

    Features of Ninja Forms include, but are not limited to:

    \n\n
      \n
    • A gorgeous and intuitive user interface.
    • \n
    • NO LIMITATIONS on the number of forms, fields, emails, actions, or submissions.
    • \n
    • Dedicated, easy to use fields for emails, dates (w/ datepicker), phone numbers, addresses and more
    • \n
    • Modify your own field then save them as favorites to re-use later (even in other forms!)
    • \n
    • Force required fields and correct data formatting with custom input masks
    • \n
    • Give your users a success message or redirect them elsewhere after they complete a form.
    • \n
    • Manage, Edit, and Export form user submissions.
    • \n
    • Export and Import forms and favorite fields.
    • \n
    • Email form data to administrators and/or users every time a form is processed.
    • \n
    • Customize emails and add raw HTML(for photos, videos, and more) with the powerful Summernote HTML editor.
    • \n
    • Several anti-spam options including Google reCaptcha, question/response fields, and honeypot fields
    • \n
    • Form submission via AJAX, allowing a seamless user experience without page refreshes
    • \n
    • Please note that if you are using a version of PHP lower than 5.3, you may experience some problems using AJAX Submissions. These can be minimized by using simple success/error messages without any quotes or special characters.
    • \n
    \n\n

    More information at ninjaforms.com

    \n\n

    Ninja Forms also has a complete library of add-ons to take your forms to new heights:

    \n\n

    Increase form conversions

    \n\n

    Breaking forms into smaller parts or allowing users to save and return make longer forms less intimidating. Conditional Logic will allow you to show field only to users who need them and send emails or process actions only under specific conditions.

    \n\n

    Beautiful forms convert better than crowded unorganized forms. While Ninja Forms looks great on any well styled theme and is easy to style further if your are comforatble with CSS, Layout and Styles makes it easy to create columns for your forms as well as style specific elements.

    \n\n

    Build your mailing list

    \n\n

    Use the mailing list tool of your choice. MailChimp, Constant Contact, Campaign Monitor, Emma, Aweber, MailPoet, iContact, GetResponse, CleverReach, Sendy, and Mad Mimi are all supported for your list building needs.

    \n\n

    Collect payments

    \n\n

    Ninja Forms gives you the ability to collect payments through PayPal Express, Stripe, or Elavon. More payment gateways coming.

    \n\n

    All the best customer relationship management integrations

    \n\n

    When someone fills out your form the most natural thing to do is send their data directly to your favorite CRM. Ninja Forms makes this easy with plenty of CRM integrations such as SalesForce, Batchbook, Zoho, Insightly, Capsule, etc.

    \n\n

    Send data to all your favorite productivity tools with the click of a submit button

    \n\n

    We love and use tools like Slack, Trello, and Zapier. These tools help our very own team build Ninja Forms so it makes sense that we would share them with you.

    \n\n

    Even if your team needs a support form where your customers can ask for help, Ninja Forms integrates with Help Scout to make this a delightful experience.

    \n\n

    Even more add-ons available right now

    \n\n

    With over 40 add-ons available and new ones being added regularly, it?s likely we have everything you?ll ever need. Check them all out here.

    \n\n

    Become a Ninja Forms Member

    \n\n

    Want access to everything we offer, or perhaps just our form building toolkit \"Builder PRO\"?

    \n\n

    Find our more about our Ninja Forms Memberships here.

    \n\n

    Demo Site

    \n\n

    Please feel free to visit our demo site where you can test the features of Ninja Forms and all of our extensions.

    \n\n

    For Developers

    \n\n

    The Ninja Forms framework is on GitHub! If you\'re a developer and want to help make Ninja Forms better, check it out. It\'s also a great resource for developers who are interested in creating add-ons for our online store.

    \n\n

    If you\'re a developer and would like to talk about creating some premium extensions for Ninja Forms, send us an email: info@wpninjas.com.

    \n\n

    Use

    \n\n

    For help and video tutorials, please visit our website: Ninja Forms Documentation

    \n\n\n

    This section describes how to install the plugin and get it working.

    \n\n
      \n
    1. Upload the ninja-forms directory to your /wp-content/plugins/ directory
    2. \n
    3. Activate the plugin through the \'Plugins\' menu in WordPress
    4. \n
    5. Visit the \'Forms\' menu item in your admin sidebar
    6. \n
    \n\n

    Shortcodes have been re-implemented. They are used like so: [ninja_form id=#] where # is the ID number of the form you want to display.

    \n\n\n

    Our documentation can be found here.

    \n\n\n

    3.0.31 (07 March 2017)

    \n\n

    Bugs:

    \n\n
      \n
    • Confirmed password fields should work properly.
    • \n
    • Fixed a bug with List Fields that caused the Import button to overlap the Add New button.
    • \n
    • Closed a possible security vulnerability by escaping HTML in the builder.
    • \n
    • CSV files should now be deleted from the server after they are emailed when attached to an email action.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added a filter so that add-ons and custom code can add forms to the templates section of the New Form builder.
    • \n
    \n\n

    3.0.30 (28 February 2017)

    \n\n

    Bugs:

    \n\n
      \n
    • Publishing a form should now populate the backup database properly in all environments.
    • \n
    • Editing submissions that have selects or other lists should now work properly.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added Trello to the available actions list.
    • \n
    • Added a JS exception catcher to help debug when forms don\'t display because of JS errors.
    • \n
    \n\n

    3.0.29 (21 February 2017)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause previewed forms from submitting properly.
    • \n
    \n\n

    3.0.28 (21 February 2017)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a JS notice caused by the use of jQuery.attr() instead of jQuery.prop().
    • \n
    • Modified the approach to form publishing to improve performance for larger forms and prevent bugs when saving.
    • \n
    • Google reCaptcha should now work properly when a field has an error.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added a jQuery event: \"nfFormReady\" to the document that can be used to fire JS code when a form has loaded.
    • \n
    • Using jQuery.val() should now properly work for Ninja Forms fields.
    • \n
    • Updated the update check URL for add-ons.
    • \n
    • Added a filter for form settings upon form display localization.
    • \n
    \n\n

    3.0.27 (2 February 2017)

    \n\n

    Bugs:

    \n\n
      \n
    • Field data should populate properly in all submission exports.
    • \n
    \n\n

    3.0.26 (30 January 2017)

    \n\n

    Bugs:

    \n\n
      \n
    • Field data should populate properly in submission exports.
    • \n
    • Email errors upon form submission should be clearer.
    • \n
    • Fixed a compatibility bug with other plugins that use the WP List Table.
    • \n
    \n\n

    3.0.26 (30 January 2017)

    \n\n

    Bugs:

    \n\n
      \n
    • Field data should populate properly in submission exports.
    • \n
    • Email errors upon form submission should be clearer.
    • \n
    • Fixed a compatibility bug with other plugins that use the WP List Table.
    • \n
    \n\n

    3.0.25 (26 January 2017)

    \n\n

    Changes:

    \n\n
      \n
    • Increasing the performance of submissions and form builder loading.
    • \n
    • Improved compatibility with popular caching plugins.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Field tags should now properly populate in calculation merge tags.
    • \n
    • Submission exports should now always order properly.
    • \n
    • Fixed a bug with submissions exporting non-Ninja Forms data.
    • \n
    • Importing forms with non-UTF8 characters should now import properly.
    • \n
    • Fixed a bug with converting froms from 2.9.x to 3.0.
    • \n
    \n\n

    3.0.24 (15 January 2017)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with Google reCaptcha and the deprecated, 2.9.x codebase.
    • \n
    \n\n

    3.0.23 (12 January 2017)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with form duplication.
    • \n
    \n\n

    3.0.22 (11 January 2017)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that caused installations to crash on older, unsecure versions of PHP.
    • \n
    \n\n

    3.0.21 (11 January 2017)

    \n\n

    Changes:

    \n\n
      \n
    • Added an import for list options.
    • \n
    • Refactored form submissions so that they are more responsive for longer forms with more submissions.
    • \n
    • Moved the \'reply_to\' setting to the primary section in email actions.
    • \n
    • Added error handling for invalid \"TO\" email addresses.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with calculations that caused brackets to appear in calculation fields.
    • \n
    • On/off settings should now save properly in all situations.
    • \n
    • Dragging a field should now properly scroll the screen.
    • \n
    \n\n

    3.0.20 (21 December 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Added a prompt before deleting forms on the all-forms table.
    • \n
    • Added the ability to use: {field:name} <{field:email}> to get Name - Address formatting in email actions CC, BCC, Reply-To Field.
    • \n
    • Updated the third-party EDD library.
    • \n
    • Removed references to the modernizer library from the builder.
    • \n
    • Added Twilio and Videomail to the list of available actions.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that caused fields to be out of order when exporting or editing submissions.
    • \n
    • Product fields should now respect locale-specific number formating.
    • \n
    • Fixed a bug with restarting form submit. This caused issues with PayPal Express and other add-ons.
    • \n
    • When adding new list options, the \'value\' should auto-populate from \'label\' setting.
    • \n
    • The tab order for list options should now work properly.
    • \n
    \n\n

    3.0.19 (07 December 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Product, Shipping, and Total fields should now work in all locales.
    • \n
    • Fixed a major bug preventing forms with date fields from showing in some instances.
    • \n
    \n\n

    3.0.18 (06 December 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with 3.0.17 and the deprecated code base.
    • \n
    \n\n

    3.0.17 (06 December 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • When using the RTE setting on the textarea field, the media button should show on all themes.
    • \n
    • The Modernizr library should only be loaded if you are using the RTE on the front-end.
    • \n
    • System date merge tag should respect the date format plugin setting.
    • \n
    • Exported submissions should always have correct order.
    • \n
    • Fixed a bug with list fields that caused the wrong one to be selected if calc values are used.
    • \n
    • HTML entered into field and list option labels should be rendered properly.
    • \n
    • Fixed a bug that caused the date picker to fail on the front-end.
    • \n
    • Filtering field values before display should now work properly in all instances.
    • \n
    • Help text should always render properly on the front-end.
    • \n
    • Fixed a bug with rendering the ReCaptcha field in the 2.9.x codebase.
    • \n
    • Error messages should work properly when displaying multiple forms on the same page.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • The browser should scroll to the success message after a form is submitted.
    • \n
    • Added a label to the ReCaptcha field.
    • \n
    • Added decimal date seperators (MM.DD.YYYY, YYYY.MM.DD, etc.) to the date field setting.
    • \n
    • Sending initial data to api.ninjaforms.com for users who have opted in.
    • \n
    • Added the $sub_id data to the ninja_forms_custom_columns filter.
    • \n
    • Field selectors in the builder should always show the \"nicename\" of the field rather than the programmatic name.
    • \n
    \n\n

    3.0.16 (21 November 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with export values and the Country Field to show full labels as opposed to abbreviations.
    • \n
    • Fixed a bug with duplicate field keys when duplicating a field.
    • \n
    • Fixed a bug with merge tags not being replaced in actions.
    • \n
    • Fixed a bug with unknown field types.
    • \n
    • Fixed a bug with capabilities and granting access to forms and submissions.
    • \n
    • Fixed a bug with restricting decimal steps in the number fields ( i.e. set increments by .01 ).
    • \n
    • Fixed a bug with reCaptcha validation not halting the form submission.
    • \n
    • Fixed a bug with displaying help text on the form display.
    • \n
    • Fixed a bug with enqueueing the media library scripts for the rich text editor.
    • \n
    • Fixed a bug with the submitting button text disappearing when a form was cleared after submission.
    • \n
    • Fixed a bug with converting email actions with multiple emails addresses in a single setting.
    • \n
    • Fixed a bug with prefixing the postmeta database table with custom prefixes.
    • \n
    • Fixed a bug with reCaptcha not showing due to a script loading race condition.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added an additional parameter for calculations to force 2 decimal rounding.
    • \n
    • Added a year range setting for the date field\'s datepicker.
    • \n
    • Added a filter to email action settings before the email is sent.
    • \n
    \n\n

    3.0.15 (09 November 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with custom field processing not updating field data properly.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added better support for extensions interacting with field duplication in the builder.
    • \n
    \n\n

    3.0.14 (03 November 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with input masks that prevented custom masks from working properly.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added per-form label settings under Advanced.
    • \n
    • Re-instated the changes and bug-fixes in version 3.0.12 (See below)
    • \n
    \n\n

    3.0.13 (01 November 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Emergency release to deal with some bugs in version 3.0.12.
    • \n
    \n\n

    3.0.12 (01 November 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with 0 (zero) values failing required validation.
    • \n
    • Fixed a bug with Star Rating field values displaying in reverse order.
    • \n
    • Fixed a bug with Success Message showing on all forms on a page.
    • \n
    • Fixed a bug with the Modernizr library adding extra CSS classes to the page.
    • \n
    • Fixed a bug with converting the Country Field from v2.9.x to v3.x.
    • \n
    • Fixed a bug with repeating submission sequence numbers.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added empty ninja_forms_get_form_by_id() function to avoid fatal errors.
    • \n
    • Performance enhancements for form display and submission processing for long forms.
    • \n
    • Added a field ID specific field class for styling.
    • \n
    \n\n

    3.0.11 (18 October 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with overly strict error catching that might stall form submission.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Updated field validation to not check required settings on unknown field types.
    • \n
    • Added a process to remove empty fields without field keys.
    • \n
    \n\n

    3.0.10 (18 October 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with non-visible fields generating empty HTML on display.
    • \n
    • Fixed a bug with dashicons not showing for non-logged in users.
    • \n
    • Fixed a bug with converting fields with \'inside\' labels.
    • \n
    • Fixed a bug with showing custom columns in submissions per-form.
    • \n
    • Fixed a bug with field IDs not properly being updated on form publish.
    • \n
    • Fixed a bug with the country field not displaying the country list in the form.
    • \n
    • Fixed a bug with formatting of textareas and merge tags.
    • \n
    • Fixed a bug with displaying calculation values for checkboxes and merge tags.
    • \n
    • Fixed a bug with duplicate fields breaking the builder and form display.
    • \n
    • Fixed a bug with consistency and form cache data for the builder and form display.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added a hook in the JavaScript for the Pikaday datepicker.
    • \n
    • Removed the Submission Post Type from the Admin Bar display.
    • \n
    • Excluded the Submission Post Type from public query.
    • \n
    • Added better error reporting for 500 Internal Server Errors for troubleshooting.
    • \n
    • Added a cleanup routine for duplicate fields in forms.
    • \n
    \n\n

    3.0.9 (12 October 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with loading the form builder form cache.
    • \n
    \n\n

    3.0.8 (11 October 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Fixed a typo in the Submission Date Filter.
    • \n
    • Added a filter (ninja_forms_display_fields) for removing fields form display.
    • \n
    • Added a check for misconfigured shortcodes that break output.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with exporting list fields in submissions.
    • \n
    • Fixed a bug with outputting extra text on the submission submenu.
    • \n
    • Fixed a bug with importing checkbox lists and default values.
    • \n
    • Fixed a bug with imported forms that contain HTML in fields.
    • \n
    • Fixed a bug with date field formatting.
    • \n
    • Fixed a bug with the builder drawer not scrolling to the top when opened.
    • \n
    • Fixed a bug with using hidden fields in calculations.
    • \n
    • Fixed a bug with refreshing newsletter lists in form actions.
    • \n
    • Fixed a bug with field calculation values in merge tags.
    • \n
    \n\n

    3.0.7 (06 October 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Added background processing for publishing long forms to avoid timeout errors.
    • \n
    \n\n

    3.0.6 (27 September 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Added the $post variable to the submission info metabox.
    • \n
    • Suppressed HTML fields from submission data.
    • \n
    • Suppressed HTML fields from all fields merge tags
    • \n
    • Added description text to the Rollback Setting (Advanced).
    • \n
    • Disabled the \"Edit\" page link when previewing a form.
    • \n
    • Added a plugin wide currency setting in place of the static currency symbol setting.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with validating email addresses (ie properly evaluate \"+\"s).
    • \n
    • Fixed a bug with browser compatibility.
    • \n
    • Fixed a bug with displaying column content on other post types.
    • \n
    • Fixed a bug with updating form submission error messages.
    • \n
    • Fixed a bug with creating empty settings on activation.
    • \n
    • Fixed a bug with column class collisions in CSS.
    • \n
    • Fixed a bug with field help text not displaying on the form.
    • \n
    \n\n

    3.0.5 (13 September 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with checking for a disabled PHP functions that might cause a fatal error.
    • \n
    \n\n

    3.0.4 (13 September 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with aggressive CDN caching.
    • \n
    \n\n

    3.0.3 (13 September 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Added isInteger polyfill for IE11.
    • \n
    • Added deprecated functions to prevent PHP errors.
    • \n
    • Required fields message should now not show when the form is hidden.
    • \n
    • Field-specific scripts should only load when that field is present.
    • \n
    • Updating translatable text.
    • \n
    • Radio lists should no longer select an option by default.
    • \n
    • Conversions should be more stable.
    • \n
    • Text to HTML field conversion should now happen correctly.
    • \n
    • Fixed a conflict with Visual Composer.
    • \n
    \n\n

    3.0.2 (7 September 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that caused PHP notices to be displayed.
    • \n
    \n\n

    3.0.1 (7 September 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Add a deprecated notice for ninja_forms_get_all_forms function.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with templates.
    • \n
    • Fixed a bug with required field markings.
    • \n
    \n\n

    3.0 (6 September 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Release of Ninja Forms THREE
    • \n
    \n\n

    2.9.58 (30 August 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • [THREE Only] Fixed a bug with the add field event in the builder.
    • \n
    • [THREE Only] Fixed a bug with adding credit card fields in the builder.
    • \n
    \n\n

    2.9.57 (30 August 2016)

    \n\n

    Changes:

    \n\n
      \n
    • [THREE Only] Removed the \"disable input\" setting from non-input field types (ie product, shipping, and total).
    • \n
    • [THREE Only] Added missing \"download all submissions\" button.
    • \n
    • [THREE Only] Concatenate and minify JavaScript files by feature dependencies.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with a PHP notice when sanitizing the textarea field.
    • \n
    • [THREE Only] Fixed a bug with plain text email containing raw HTML.
    • \n
    \n\n

    2.9.56.2 (17 August 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Updated add-on list for THREE compatibility checks.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with admin styling after WordPress update.
    • \n
    \n\n

    2.9.56.1 (17 August 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Add missing JS api method for addon compatibility.
    • \n
    \n\n

    2.9.56 (16 August 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Add a filter for the forms list table.
    • \n
    • Wrap the Mask JS library is a document ready call.
    • \n
    • Removed an unnecessary transient.
    • \n
    • Updated conversion to THREE for new credit card fields.
    • \n
    • Update the country field to use a shared list of country options.
    • \n
    • Internationalize templates and messages in JavaScript for THREE.
    • \n
    • Change the THREE filed drawer to default to click-to-add.
    • \n
    • Hide the form display when \'re-starting\' a form submission after redirect.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed some CSS issues with error messages and checkboxes.
    • \n
    • Fixed a bug with downloading submissions.
    • \n
    • Fixed a bug with importing forms and associated field IDs.
    • \n
    • Fixed a bug with textarea encoding in submissions. [credit clifgriffin]
    • \n
    • Fixed a bug with un-serializing form data on install. [credit todeveni]
    • \n
    \n\n

    2.9.55.2 (11 August 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with unprepared raw SQL.
    • \n
    \n\n

    2.9.55.1 (02 August 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with unprepared raw SQL.
    • \n
    \n\n

    2.9.55 (02 August 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Remove Freemius integration.
    • \n
    • Update when capability filters trigger.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with required list fields.
    • \n
    • Fixed a bug with an undefined variable.
    • \n
    \n\n

    2.9.54 (27 July 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with a broken php tag.
    • \n
    \n\n

    2.9.53 (26 July 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with decimal points with localized languages.
    • \n
    \n\n

    2.9.52 (18 July 2016)

    \n\n

    Security:

    \n\n
      \n
    • Fixed a security vulnerability that could allow Cross-Site scripting if the attacker was logged-in as an admin. (reported by Sumofpwn.nl)
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that caused the Ninja Forms cookie to be set on every page load rather than when a form was submitted.
    • \n
    \n\n

    2.9.51 (30 June 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Our tweak to allow more users to try out the 3.0 beta opened up the pool a little wider than we\'d intended. Reigning that in a bit.
    • \n
    • Fixed a bug with description position that could cause the description to fail to open.
    • \n
    \n\n

    2.9.50 (21 June 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Opening the ability to upgrade to 3.0 to more users.
    • \n
    \n\n

    2.9.49 (20 June 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Updating compatibility for Three add-ons.
    • \n
    \n\n

    2.9.48 (13 June 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Sites that also use WooCommerce should no longer see issues with non-logged in users being unable to submit forms.
    • \n
    • Fixed a bug with 3.0 Beta that could cause submission saving to fail.
    • \n
    • Fixed a timezone issue with the system status page.
    • \n
    • Fixed a bug that could cause translations to fail in some circumstances.
    • \n
    \n\n

    2.9.47 (1 June 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause forms to disappear on some installations.
    • \n
    \n\n

    2.9.46 (31 May 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Updating opinionated styling choices.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause the input limit to crash submission.
    • \n
    • Fixed a bug with 3.0 that could cause conversion issues.
    • \n
    \n\n

    2.9.45 (2 May 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with templating that could cause the server to throw a 500 error.
    • \n
    \n\n

    2.9.44 (28 April 2016)

    \n\n

    Security:

    \n\n
      \n
    • Fixed an important security issue related to the 3.0 codebase. It is recommended that all users update to 2.9.44 as soon as possible.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with one of the security fixes that could cause a fatal error.
    • \n
    \n\n

    2.9.43 (28 April 2016)

    \n\n

    Security:

    \n\n
      \n
    • Fixed an important security issue related to the 3.0 codebase. It is recommended that all users update to 2.9.43 as soon as possible.
    • \n
    \n\n

    2.9.42 (14 April 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • 3.0: Fixed a bug that could cause merge tags to disappear underneath the full-screen builder.
    • \n
    \n\n

    2.9.41 (10 April 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that caused Ninja Forms to fetch the add-ons RSS feed too often.
    • \n
    • Fixed a bug that caused an image to be loaded remotely rather than from the plugin file.
    • \n
    \n\n

    2.9.40 (05 April 2016)

    \n\n

    Changes:

    \n\n
      \n
    • 3.0: forms should no longer default to \"require logged-in.\"
    • \n
    • 3.0: added field type icons to the builder.
    • \n
    • Added new filters.
    • \n
    • Updated \"tested up to\" readme value to 4.5.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • 3.0: fixed a whitescreen in the system status page.
    • \n
    \n\n

    2.9.39 (22 March 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Removed the anti-spam question from the default contact form in 3.0.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a conflict with Jetpack that could cause the forms menu item to disappear.
    • \n
    \n\n

    2.9.38 (22 March 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Changed the way that our add-on list is cached.
    • \n
    • Added a Ninja Forms Widget back to version 3.0.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause a fatal error when downgrading to version 2.9.x.
    • \n
    \n\n

    2.9.37 (17 March 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixing a bug with session caching.
    • \n
    • Fixing a problem with merge tag display in FireFox browsers.
    • \n
    \n\n

    2.9.36 (14 March 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Removed Freemius prompt for new users. We will re-enable when things are more stable with 3.0.
    • \n
    \n\n

    2.9.35 (14 March 2016)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixing a bug that could cause un-necessary variable output to the screen.
    • \n
    \n\n

    2.9.34 (11 March 2016)

    \n\n

    Changes:

    \n\n
      \n
    • Preparing for the release of 3.0.
    • \n
    \n\n

    2.9.33 (22 December 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Our security filtering was still filtering out good code. We needed to back off the over-zealous filtering a bit more.
    • \n
    \n\n

    2.9.32 (21 December 2015)

    \n\n

    Security:

    \n\n
      \n
    • In our attempt to back-off some of our over-zealous filtering, we uncorked a previously patched XSS issue. This version fixes both issues.
    • \n
    \n\n

    2.9.31 (16 December 2015)

    \n\n

    Security:

    \n\n

    Bugs:

    \n\n
      \n
    • Our last security fix was a bit over-zealous. This version should prevent all occurances of the phrase \'script\' from being stripped from textarea inputs.
    • \n
    \n\n

    2.9.30 (11 December 2015)

    \n\n

    Security:

    \n\n
      \n
    • Fixed a serious security issue that could allow for possible SQL injection. Please update as soon as possible.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause HTML elements in success messages and redirects to be accidentally stripped.
    • \n
    \n\n

    2.9.29 (08 December 2015)

    \n\n

    Security:

    \n\n
      \n
    • Fixed a security issue that could allow users to run Javascript on the front-end after a submission in some circumstances. Thank you to Kenan G. ( @K3n4nG on Twitter ) for finding this issue and reporting it to us.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause session cookies to be set on every page, rather than just upon form submission.
    • \n
    • Fixed a bug that caused Ninja Forms to override translation strings on non-submission custom post types.
    • \n
    \n\n

    2.9.28 (30 September 2015)

    \n\n

    Security:

    \n\n
      \n
    • Fixed a security issue that could allow macros to be ran in Excel if a CSV with malicious content was exported. Thanks to Smit B. Shah and Hely H. Shah for the report.
    • \n
    \n\n

    2.9.27 (13 August 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause bulk downloads to fail.
    • \n
    • Google reCaptcha should now work properly with AJAX submissions.
    • \n
    • Calculations in regions that don\'t use decimals as separators shouldn\'t fail.
    • \n
    \n\n

    2.9.26 (7 August 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could prevent the metaboxes from being dragged properly on the post/page edit screen.
    • \n
    \n\n

    2.9.25 (6 August 2015)

    \n\n

    Security:

    \n\n
      \n
    • Removed a possible security vulnerability.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • The \"Text\" tab toolbar should no longer disappear on the post/page edit screen.
    • \n
    \n\n

    2.9.24 (4 August 2015)

    \n\n

    Security:

    \n\n
      \n
    • Removed a possible security vulnerability.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • The \"Download All Submissions\" button should now function properly.
    • \n
    \n\n

    2.9.23 (4 August 2015)

    \n\n

    Features:

    \n\n
      \n
    • Honeypot fields are now added by default to help protect your forms from spam.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Legacy honeypot fields should display properly.
    • \n
    \n\n

    2.9.22 (3 August 2015)

    \n\n

    Features:

    \n\n
      \n
    • Add a form easily while editing a post, page, or custom post type using a form selector.
    • \n
    \n\n

    Security:

    \n\n
      \n
    • Fixed a minor security issue within the WordPress admin.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a few PHP notices within the WordPress admin.
    • \n
    \n\n

    2.9.21 (14 July 2015)

    \n\n

    Features:

    \n\n
      \n
    • Added built-in support for Google reCAPTCHA.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added South Sudan to the country list.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause multiple forms on a page to add an empty DIV when one was successfully completed.
    • \n
    • Ampersands (&) should now encode properly when using them in the redirect action.
    • \n
    • The \"Today\'s Date\" option should now use the WordPress time rather than GMT.
    • \n
    \n\n

    2.9.19 (24 June 2015)

    \n\n

    Security:

    \n\n
      \n
    • Fixed a possible cross-site scripting issue. We recommend updating as soon as possible to this version.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added RTL support for radio and checkbox wraps with left or right labels
    • \n
    \n\n

    2.9.18 (2 June 2015)

    \n\n

    Changes:

    \n\n
      \n
    • Removed usage of PHP session variables in favour of an implementation of WP Session Manager.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • The use of WP Session manager should fix any bugs related to session_start() or headers already sent messages related to Ninja Forms.
    • \n
    • Fixed a bug that could cause form caching to prevent new form settings from appearing.
    • \n
    \n\n

    2.9.17 (29 May 2015)

    \n\n

    Security:

    \n\n
      \n
    • Hardened form display to protect against certain cross-site scripting methods.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could prevent licenses from being activated properly.
    • \n
    • Submission #\'s should now be properly assigned.
    • \n
    \n\n

    2.9.16 (21 May 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with major calculations that could cause them to fail in some situations.
    • \n
    \n\n

    2.9.15 (21 May 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with form caching that could cause fatal errors.
    • \n
    \n\n

    2.9.14 (20 May 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause issues using Ninja Forms with a multi-site installation.
    • \n
    \n\n

    2.9.13 (20 May 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause the \"download all submissions\" button to fail.
    • \n
    \n\n

    2.9.12 (20 May 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could prevent licenses from being deactivated properly.
    • \n
    • Fixed some styling issues with the password field.
    • \n
    • Fixed several PHP notices.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added a new upgrade handler to make upgrading a smoother, more stable process.
    • \n
    • Added support for European thousands separators in currency masks and calculations.
    • \n
    • Added form caching to speed up installations with large numbers of forms.
    • \n
    • Added support for using multi-select or checkbox lists as the recipient of email actions.
    • \n
    \n\n

    2.9.11 (20 April 2015)

    \n\n

    Security:

    \n\n
      \n
    • Fixed a security vulnerability that could allow users to inject scripts if they were logged in as administrators.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • The \"Download All\" button should now work properly for submissions.
    • \n
    \n\n

    2.9.10 (14 April 2015)

    \n\n

    Changes:

    \n\n
      \n
    • Added support for populating a text or hidden field from a querystring.
    • \n
    • Added a reset form conversions button to allow users to re-convert forms in the case of an error.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause forms to not submit properly.
    • \n
    • Fixed a bug that could cause a PHP crash on earlier versions of PHP.
    • \n
    • The user profile setting of \"Disable rich text editor\" should no longer cause problems when editing forms.
    • \n
    • Credit Card errors should now show properly when submitting the form via AJAX.
    • \n
    • The submission limit should now only count properly submitted forms.
    • \n
    • Fixed a bug with email fields and the inline label position.
    • \n
    \n\n

    2.9.9 (14 April 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause a crash with older versions of PHP.
    • \n
    \n\n

    2.9.8 (14 April 2015)

    \n\n

    Changes:

    \n\n
      \n
    • Added support for populating a text or hidden field from a querystring.
    • \n
    • Added a reset form conversions button to allow users to re-convert forms in the case of an error.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • The user profile setting of \"Disable rich text editor\" should no longer cause problems when editing forms.
    • \n
    • Credit Card errors should now show properly when submitting the form via AJAX.
    • \n
    • The submission limit should now only count properly submitted forms.
    • \n
    • Fixed a bug with email fields and the inline label position.
    • \n
    \n\n

    2.9.7 (15 March 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a browser caching bug.
    • \n
    • Fixed a possible, very minor security concern.
    • \n
    \n\n

    2.9.6 (6 March 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could prevent field settings dropdowns from being clicked on in FireFox.
    • \n
    • Fixed a bug that could prevent the preview page from showing properly.
    • \n
    \n\n

    2.9.5 (4 March 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Deleting Ninja Forms from the plugins page should now work in all instances.
    • \n
    \n\n

    2.9.4 (4 March 2015)

    \n\n

    Changes:

    \n\n
      \n
    • Added placeholders for text fields.
    • \n
    \n\n

    2.9.3 (4 March 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could prompt users to run unnecessary updates on their site.
    • \n
    \n\n

    2.9.2 (3 March 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Preview pages should now always display properly.
    • \n
    • Success messages should now always be shown after submission properly.
    • \n
    \n\n

    2.9.1 (3 March 2015)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause a PHP notice to show in placeholders.
    • \n
    • Fixed a bug that could cause forms not to display properly when added via the \"append to page\" option.
    • \n
    \n\n

    2.9 (3 March 2015)

    \n\n

    Changes:

    \n\n
      \n
    • Simplified the form creation interface by adding a \"Build Your Form\" tab, an \"Emails & Actions\" tab, and a \"Settings\" tab. All other tabs have been removed.
    • \n
    • Form Preview and Submissions are now buttons that can be clicked at any stage of editing a form.
    • \n
    • Field settings have been simplified by introducing a series of new, expandable settings sections. These sections house more advanced or less-common settings.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a major bug that could prevent longer forms from saving properly. Previous fixes required modifying a php.ini file.
    • \n
    • Creating a new action should now show the proper saved message.
    • \n
    • Updated the Ninja Forms translation file with several new strings and cleaned up existing strings.
    • \n
    • Modified the way that options are grabbed from the database to make them more effecient and prevent errors.
    • \n
    • Fixed a bug that caused post meta to be added to a post/page even if no form was selected.
    • \n
    \n\n

    2.8.13 (18 December 2014)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug introduced in the previous version that could prevent javascript from working properly on the front-end.
    • \n
    \n\n

    2.8.12 (17 December 2014)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause field settings to appear incorrectly on WordPress version 4.1.
    • \n
    • Fixed several PHP notices.
    • \n
    • Fetching a form over AJAX from the frontend via the shortcode should now work properly.
    • \n
    • Fixed a bug that prevented the NL translation from working properly.
    • \n
    • Fixed issues that could be caused by sending blank CC and BCC headers.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added a rating request at the bottom of Ninja Forms pages in the admin area.
    • \n
    • Added filters for the datepicker args so that it is more easily customisable.
    • \n
    \n\n

    2.8.11 (8 December 2014)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause submissions to view improperly.
    • \n
    • Appending forms to a post or page from the post/page edit screen should now work properly in all instances.
    • \n
    • Importing form from versions previous to 2.8 should no longer create a phantom email.
    • \n
    • Importing or duplicating a form that has submissions shouldn\'t cause the sequential numbers for the new form to start with the same number.
    • \n
    \n\n

    2.8.10 (2 December 2014)

    \n\n

    Security Update:

    \n\n
      \n
    • This version includes a fix for a potential security vulnerability for admin users.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that can throw JS errors if multiple forms are on the same page.
    • \n
    • Fixed typos in the welcome screen.
    • \n
    \n\n

    2.8.9 (20 November 2014 )

    \n\n

    Security Update:

    \n\n
      \n
    • This version includes a fix to a security vulnerability. Please take the time to update to this version.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with conversions from older versions of Ninja Forms.
    • \n
    • Fixed a bug that could cause two forms on the same page to behave improperly.
    • \n
    \n\n

    2.8.8 (17 November 2014 )

    \n\n

    Changes:

    \n\n
      \n
    • Credit card field labels and descriptions can now be edited on the field settings tab.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with importing the initial contact form.
    • \n
    • BCC and CC fields should now send to multiple addresses properly.
    • \n
    • Fixed several instances where strings weren\'t internationalized properly.
    • \n
    \n\n

    2.8.7 (4 November 2014 )

    \n\n

    Changes:

    \n\n
      \n
    • The redirect notification type now works with AJAX enabled.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a security issue within the wp-admin.
    • \n
    • The Custom First Option setting for country fields now works properly with required fields.
    • \n
    • BCC and CC fields should now work properly in all cases.
    • \n
    • Negative numbers should be properly represented in emails when using calculation fields.
    • \n
    • Fixed errors with some internationalization strings.
    • \n
    • Deleting a form should now properly delete notifications attached to that form.
    • \n
    • Changed number field settings to allow non-integer step values.
    • \n
    \n\n

    2.8.6 (27 October 2014 )

    \n\n

    Changes:

    \n\n
      \n
    • Added a new nf_init action that allows developers to run functions when Ninja Forms loads.
    • \n
    • Added hooks and filters to allow notifications to be more easily extended.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with converting notifications from previous versions of Ninja Forms.
    • \n
    • Re-Added the password mismatch label to the label settings tab.
    • \n
    • The [ninja_forms_all_fields] short code should now function properly in plain text emails.
    • \n
    • Submitted forms that are set to clear upon completion should now properly re-populate default values that are based upon logged-in user information.
    • \n
    • Fixed an issue with doubles slashes on Windows servers.
    • \n
    • Importing forms should now work properly in all instances.
    • \n
    \n\n

    2.8.5 (23 September 2014 )

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with notifications that could prevent notifciations from converting properly in some instances.
    • \n
    • Fixed a bug with changing email message content via the filter.
    • \n
    • Properly included minified JS files.
    • \n
    \n\n

    Security:

    \n\n
      \n
    • Version 2.8 fixes a minor security issue that could allow non-admins and other forms to delete Ninja Forms. This won\'t affect all users, but we encourage everyone to update.
    • \n
    \n\n

    2.8.4 (17 September 2014 )

    \n\n

    Changes:

    \n\n
      \n
    • Moving reply to, cc, and bcc to an advanced settings section for email notifications.
    • \n
    • Any field can now be inserted into the from name, address, to, subject, reply to, cc, and bcc fields.
    • \n
    • Added a custom short code parser that will prevent other plugins from tampering with email and success message ninja forms short codes.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed an issue where short codes were being parsed in the admin.
    • \n
    • Fixed a bug that could cause phantom emails to be sent to users who filled out forms.
    • \n
    • Settings labels should now populate correctly upon activation.
    • \n
    • New installs should not see upgrade notices.
    • \n
    • Favourite fields can now be removed properly in all installations.
    • \n
    • Fixed PHP notices.
    • \n
    \n\n

    Security:

    \n\n
      \n
    • Version 2.8 fixes a minor security issue that could allow non-admins and other forms to delete Ninja Forms. This won\'t affect all users, but we encourage everyone to update.
    • \n
    \n\n

    2.8.3 (17 September 2014)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause notification conversion to crash.
    • \n
    \n\n

    Security:

    \n\n
      \n
    • Version 2.8 fixes a minor security issue that could allow non-admins and other forms to delete Ninja Forms. This won\'t affect all users, but we encourage everyone to update.
    • \n
    \n\n

    2.8.2 (16 September 2014)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause emails to be sent to the user\'s email address, even if a notification wasn\'t active.
    • \n
    • Fixed a bug that could prevent emails from being sent if the message was empty.
    • \n
    • Fixed a bug with upgrades that caused submission conversion to fail.
    • \n
    • Fixed PHP notices.
    • \n
    \n\n

    Security:

    \n\n
      \n
    • Version 2.8 fixes a minor security issue that could allow non-admins and other forms to delete Ninja Forms. This won\'t affect all users, but we encourage everyone to update.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added a filter for success message notifications: nf_success_msg.
    • \n
    • Added a filter for CSV exports after labels have been added but before fields: nf_subs_csv_label_array_before_fields.
    • \n
    • Deprecated the old version of the success message filter.
    • \n
    \n\n

    2.8.1 (14 September 2014)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause emails to be sent to the user\'s email address, even if a notification wasn\'t active.
    • \n
    \n\n

    2.8 (14 September 2014)

    \n\n

    Security:

    \n\n
      \n
    • Version 2.8 fixes a minor security issue that could allow non-admins and other forms to delete Ninja Forms. This won\'t affect all users, but we encourage everyone to update.
    • \n
    \n\n

    Features:

    \n\n
      \n
    • New, simpler system for creating custom notifications.
    • \n
    • Send any number of emails per form submission.
    • \n
    • Easily redirect the user to a page or display a custom success message.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Changed the \"Save Form Settings\" button to \"Save.\"
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed PHP notices.
    • \n
    \n\n

    2.7.7 (19 August 2014)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixing a bug with editing submissions with specific field combinations.
    • \n
    • Submission CSS should now only enqueue on the submission page.
    • \n
    • Fixed a bug with the submissions permissions filter. It should now function properly.
    • \n
    • Fixed a bug with some servers caused by calling the set_time_limit() function
    • \n
    • The [nf_sub_seq_num] shortcode should now always function properly.
    • \n
    • Fixed an invalid argument error when viewing a the submissions table.
    • \n
    • Rich Text Editors should now render properly when they are added to a form.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added a new filter to the admin menu capabilities. Deprecated older versions.
    • \n
    \n\n

    2.7.6 (12 August 2014)

    \n\n

    Bugs:

    \n\n
      \n
    • On the submissions table, the filter will now use the earliest date as the begin date.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added the ability to download all submissions for a particular form.
    • \n
    • Added a step processor that can be extended and used by developers.
    • \n
    • Added new extensions to the add-ons page.
    • \n
    \n\n

    2.7.5 (09 August 2014)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with success messages not being displayed for AJAX submissions.
    • \n
    \n\n

    2.7.4 (08 August 2014)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed HTML breaking issues with the Text field type when something other than div is selected
    • \n
    • Fixed a bug that could cause forms to stop working on Windows (IIS) servers.
    • \n
    • Forms without errors or success messages should no longer see the \"response\" message div.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added Portuguese translation files.
    • \n
    • Added Dutch translation files.
    • \n
    \n\n

    2.7.3 (29 July 2014)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that caused the text elements to be output with encoded html tags rather than the tags themselves.
    • \n
    • Fixed a bug that caused empty CSV files to be emailed to the admin.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • List item labels can now contain HTML.
    • \n
    \n\n

    2.7.2 (25 July 2014)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed an issue that could cause the submission values to appear as a widget on the submission edit screen.
    • \n
    • Fixed a bug that could cause a direct download if the \"send CSV attachment\" was checked.
    • \n
    \n\n

    2.7.1 (25 July 2014)

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed an issue with older versions of PHP and the round() function.
    • \n
    \n\n

    2.7 (24 July 2014)

    \n\n

    Changes:

    \n\n
      \n
    • Submissions are now stored in a new database, making them easier to search, edit, and display.
    • \n
    • There are new methods for interacting with submissions, which can be found here.
    • \n
    • We\'re very excited about this new direction for Ninja Forms submissions, and we hope you enjoy using the new submissions system.
    • \n
    • See the plugin welcome screen for more details.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed several bugs.
    • \n
    \n\n

    2.6.5 (06/10/2014)

    \n\n

    Changes:

    \n\n
      \n
    • Added a filter for setting which field types are shown the input limiter.
    • \n
    • Changed the header( \'Location....\') php function with wp_redirect().
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause the required symbol to be added twice if the label position was set inside.
    • \n
    • Wrapped the $post global in an if check to prevent errors on some WP pages.
    • \n
    \n\n

    2.6.4 (05/15/2014)

    \n\n

    Changes:

    \n\n
      \n
    • Modified CSS styling slightly for default contact forms.
    • \n
    \n\n

    2.6.3 (05/15/2014)

    \n\n

    Bugs:

    \n\n
      \n
    • Removed CSS padding issues for some themes.
    • \n
    • Fixed a bug with short codes on default values.
    • \n
    • Fixed a PHP Notice related to WordPress version 3.9 and $wpdb->prepare().
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added a Finnish Translation (Thanks to ottok).
    • \n
    • Fixed a bug with short codes on default values.
    • \n
    \n\n

    2.6.2 (04/22/2014)

    \n\n

    Changes:

    \n\n
      \n
    • Added some CSS to make forms more responsive and cross browser compatible.
    • \n
    \n\n

    2.6.1 (04/17/2014)

    \n\n

    Changes:

    \n\n
      \n
    • Modified the call to wp_editor on the Field Settings tab so that it is compatible with WordPress 3.9.
    • \n
    • Added more security to prevent forms from being spammed.
    • \n
    • Added additional items to the system status page.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a php notice that could occur when using the inside label position.
    • \n
    • Calc fields that use advanced equations should now function properly when referencing other advanced calculation fields.
    • \n
    \n\n

    2.6

    \n\n

    Changes:

    \n\n
      \n
    • The \"Processing Message\" above the form has been removed in favour of changing the text of the submit button and disabling it.
    • \n
    • This change in processing notification will make it easier for users to see that a submission is being processed and prevent them from clicking the \"submit\" button again.
    • \n
    • Updated the label of the \"Processing\" label to make it clearer.
    • \n
    • Added a credit card field that can be enabled by extensions that need to use it.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug introduced in version 2.5.3 which prevented Sessions from starting properly on some server setups.
    • \n
    • Fixed some PHP warnings/notices.
    • \n
    • List items should now properly escape html when displayed.
    • \n
    \n\n

    2.5.3

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could prevent AJAX submissions from working properly.
    • \n
    \n\n

    2.5.2

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed various bugs with the default label position. It should now always default to above.
    • \n
    • Fixed a bug that could cause Admin emails to appear to have attachments when they didn\'t.
    • \n
    • Required fields can now have a value of 0.
    • \n
    • Fixed a bug with list fields and calculations that could cause them not to pre-populate properly.
    • \n
    • Fixed a bug that could cause incomplete submissions to show in the dashboard for those using the Save Progress extension or the Multi-Part Forms extension.
    • \n
    \n\n

    2.5.1

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a major bug that removed the \"Number\" field.
    • \n
    \n\n

    2.5

    \n\n

    Features:

    \n\n
      \n
    • Submission Limiting - Allows users to limit the number of submissions a form can receive.
    • \n
    • Character Counts - Added a \"Character Count\" option to textboxes and textareas.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented the pagination from working on view submission pages.
    • \n
    • Fixed a bug with the default value filter.
    • \n
    • Fixed a bug that prevented forms from showing when they were on the landing page of another form.
    • \n
    • Fixed a bug that caused required fields to go unprocessed when extensions were deactivated.
    • \n
    • Fixed a bug that caused list fields to pre-populate incorrectly in some instances.
    • \n
    • Removed some console logs that could cause crashes in Internet Explorer.
    • \n
    • Fixed a bug that caused forms to improperly clear when submitted.
    • \n
    • Fixed a bug that prevented empty success messages from being saved.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Add some CSS to help prevent theme from breaking left and right labels when they add display:block to the label element.
    • \n
    • All settings are now fetched via a proxy function.
    • \n
    • Added a wrapper for the entire form display (and everything that goes with it).
    • \n
    \n\n

    2.4.2

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that caused memory issues when a form has a large number of submissions.
    • \n
    • Fixed a bug with the label inside position that generated a ?call to member function?? error.
    • \n
    • Fixed a bug that prevented tax totals from working properly with numbers with thousands separators.
    • \n
    • Fixed a bug that prevented list importing from working with newly created list fields.
    • \n
    • Fixed a bug with list fields that prevented list options from being re-ordered immediately after being added to the form.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Required fields that use the ?inside? label position will now show the required symbol inside the field with the label.
    • \n
    • Changed the default value filter to respect fields that shouldn?t be processed.
    • \n
    • Removed code from the field class function that was specific to Conditional Logic. This code should be housed in the extension rather than the core plugin.
    • \n
    \n\n

    2.4.1

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented the Inside label position from working properly on form load.
    • \n
    • Fixed an issue that could cause the conditional logic extension to function improperly on load.
    • \n
    \n\n

    2.4

    \n\n

    Features:

    \n\n
      \n
    • A new method for loading Ninja Forms for display has been created to decrease loading times. Users with extremely large forms (100+ fields) should see a marked improvement in loading speeds. If you use any Ninja Forms extensions, make sure that they are updated to the newest versions to take advantage of this new loading system. Developers can look for the $ninja_forms_loading class for more information about using this powerful new feature.
    • \n
    • Added a new Number field that requires users to enter a number. (Work is currently being done to make this requirement work with non-HTML5 compliant browers.)
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented Custom default values from working with hidden fields.
    • \n
    • Encoded HTML entities in the help hover so that double quotes don?t break anything.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Default label position is now above the element.
    • \n
    • Added filter \'ninja_forms_export_sub_pre_value\' when exporting subs to access user_value before it is processed (stripslashes and if array implode_r).
    • \n
    \n\n

    2.3.8

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that caused the Ninja Forms option on post/page edit to not save properly.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Simplified some CSS for the star rating field.
    • \n
    • Fixed some 3.8 styling on modal boxes.
    • \n
    • Fixed a few typos.
    • \n
    • Added a default success message to newly created forms.
    • \n
    • Address fields should now how a specific class that can be targeted in JS.
    • \n
    \n\n

    2.3.7

    \n\n

    Bugs:

    \n\n
      \n
    • Input masks should now work without causing Javascript errors.
    • \n
    • \"Back to submissions\" should now work in IE.
    • \n
    \n\n

    2.3.6

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug in calc filters that could cause infinite loops.
    • \n
    • \"Back to submissions\" should now work in IE.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Add some CSS for 3.8 compatability.
    • \n
    • Removed the \"Save Subs\" option. Now all submissions are saved by default. This can be changed by using a WordPress filter.
    • \n
    • Moved the \"Forms\" admin menu up to the same section as posts and custom post types.
    • \n
    • Changed some CSS selector weights ot make overriding a little easier.
    • \n
    • Changed the mask definition to be stored in a data-attribute rather than the field title.
    • \n
    • Changed the currency mask to use the WordPress defined thousands separator and decimal point.
    • \n
    \n\n

    2.3.5

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented calculations from working properly in Mulit-Part Forms.
    • \n
    • Fixed a bug that could prevent success messages from showing properly in modal forms.
    • \n
    \n\n

    2.3.4

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed up the extend page. Added some extensions and cleaned up CSS.
    • \n
    • Added url encoding to the form settings saved message so it was no longer without spaces.
    • \n
    • Fixed the get_subs function so that it works properly with dates in formats different than m/d/Y.
    • \n
    • Fixed a bug that caused response message fields to be output if multiple forms were on the same page.
    • \n
    • Fixed a bug that caused hidden fields to not show up on the submission edit screen.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Adding styling to admin metabox textareas so that they have a minimum size.
    • \n
    • Saving a post/page should no longer create an empty Ninja Forms custom post meta.
    • \n
    • Changed the call to sys_get_temp_dir() to the WordPress get_temp_dir() when trying to create a CSV attachment.
    • \n
    • Added a new filter ninja_forms_email_all_fields_array to give users a way to remove unwanted data from being sent in emails.
    • \n
    • Users can now add Calc values to their List Options import CSV.
    • \n
    \n\n

    2.3.3

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented sidebars from saving properly on the Field Settings tab and producing a PHP warning.
    • \n
    • Forms should now update their ?Date Updated? status when a change is made.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added a default, basic contact form that will be automatically created upon plugin activation.
    • \n
    • Optimized images to make load times faster.
    • \n
    • Changed from underscores to dashes for proper class name of the required fields wrapper.
    • \n
    • Added a new default value for textboxes: Today\'s Date.
    • \n
    • Increased the number of submissions viewable at once to 300 and 500.
    • \n
    • Minor CSS adjustments for WP 3.8 compatibility.
    • \n
    \n\n

    2.3.2

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented forms from populated correctly after they had been submitted. i.e. after missing required fields.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Changed the way that Ninja Forms figures out what URL a form lives on.
    • \n
    • The \"From Address\" used in admin emails can now be filtered using ninja_forms_admin_email_from.
    • \n
    • The delimiter, new line marker, and byte order mark can now all be filtered. See includes/admin/export-subs.php for more information. (Thanks to Jörn Lund!)
    • \n
    • Changed button colors on the submission editing page to be inline with WordPress standards.
    • \n
    \n\n

    2.3.1

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented \"From Email\" and \"From Name\" from saving properly on the Form Settings page.
    • \n
    • Star Ratings fields can now be set to required. The user will be forced to enter at least one star.
    • \n
    • Removed some PHP notices that could appear when using the widget.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • The datepicker used in the Ninja Forms admin section should now respect the date settings on the Plugin Settings page.
    • \n
    \n\n

    2.3

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed several minor bugs related to saving form fields.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added a new submit feature called \"Timed Submit.\" This new submit button will force users to wait a certain number of seconds before they can submit your form. Thanks helgatheviking!
    • \n
    • Improved the Form Settings UI by adding a much-requested \"Email From Name\" field setting. You can use this to more easily define the name that emails appear to be from.
    • \n
    • Added an easier way for developers to troubleshoot JS errors.
    • \n
    • The \"Use this as the From Email for Administrators...\" setting has been removed in favour of one labelled \"Set this as the reply-to email\" for the form. We think that this presents a clearer interface and is easier to understand.
    • \n
    \n\n

    2.2.56

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented bulk actions from working on submissions.
    • \n
    • Duplicating a form should now properly change ninja_forms_field references in the admin and user email subjects.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added a honeypot field for catching spam bots. Thanks helgatheviking!
    • \n
    • The date input mask should now reflect the settings for date format.
    • \n
    • Added a \"button\" option type to the admin metabox output.
    • \n
    • Changed the way that Ninja Forms attempts to get a form\'s URL to the wp_guess_url() function.
    • \n
    • Added the option to give a field type a default label and default value when registering a field type.
    • \n
    \n\n

    2.2.55

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a security-related bug that prevented pluagin and form settings from saving properly.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Add smtp option output to System Status to assist in approved email issue troubleshooting.
    • \n
    \n\n

    2.2.54

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a security-related bug that prevented new forms from being created.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added better input escaping to improve form security.
    • \n
    \n\n

    2.2.53

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed some minor bugs related to default values for hidden and textbox fields.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added a new resource that will allow users to quickly and easily add their pertinent system information when requesting support for Ninja Forms. The new option can be found underneath the Forms menu: System Status.
    • \n
    \n\n

    2.2.52

    \n\n

    Changes:

    \n\n
      \n
    • Added new options to the default value setting: Post ID, Post Title, and Post URL.
    • \n
    • Changed the date format in ninja_forms_get_subs() to allow 24 hour date selection.
    • \n
    • Improved performance with the MP6 plugin.
    • \n
    \n\n

    2.2.51

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented advanced calculations from working properly.
    • \n
    • Fixed some bugs with the field descripition.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added a message to the license tab if no extensions are installed.
    • \n
    • Improved the structure of metaboxes.
    • \n
    \n\n

    2.2.50

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a major bug that could prevent calculation fields from working properly when more than one calculation referenced the same field.
    • \n
    • Fixed a bug that caused calculation fields to work incorrectly with the Conditional Logic extension.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added the \"visible\" HTML5 data attribute to fields.
    • \n
    • Removed functions from core that were specific to the Conditional Logic extension.
    • \n
    \n\n

    2.2.49

    \n\n

    Bugs:

    \n\n
      \n
    • Duplicated or imported forms that use the [ninja_forms_field] shortcode should now have their references automatically changed after duplication/import.
    • \n
    • Fixed a bug that caused the Total calculation field to work incorrectly with Tax and Subtotals.
    • \n
    • Fixed a major bug that could cause calculation fields to not work when using the currencty input mask.
    • \n
    • Fixed a bug that caused special characters to appear incorrectly in List fields.
    • \n
    \n\n

    2.2.48

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could prevent forms from displaying properly.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added new extensions to the add-ons page.
    • \n
    \n\n

    2.2.47

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed several bugs that could prevent calculation fields from working properly.
    • \n
    • Fixed several bugs that could cause calculation fields to show incorrect totals upon page load.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added files to core to make updating extensions easier for developers.
    • \n
    \n\n

    2.2.46

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could prevent the ninja_forms_field shortcode from being processed properly.
    • \n
    • Fixed a bug that could prevent the list of fields from being attached to both user and admin emails.
    • \n
    \n\n

    2.2.45

    \n\n

    Features:

    \n\n
      \n
    • Added a new fields description option. Using the rich text editor add text or images to your common field types and display the before or after the field output or before or after the label.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Ninja Forms form field values will no longer be available in a $_SESSION variable. Instead, a form\'s success page may use the global $ninja_forms_processing object to access submitted values.
    • \n
    \n\n

    2.2.44

    \n\n

    Changes:

    \n\n
      \n
    • Fixed many previously untranslated strings. Big thanks to daveshine for the hard work in making Ninja Forms translation friendly.
    • \n
    \n\n

    2.2.43

    \n\n

    Changes:

    \n\n
      \n
    • Changed all references to wpninjas.com to the new ninjaforms.com.
    • \n
    \n\n

    2.2.42

    \n\n

    Features:

    \n\n
      \n
    • Added the option to duplicate a form from the \"All Forms\" list; simply select \"duplicate\" and a clone of your form will be added to the list.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added the ability to search the submission database by \'action.\'
    • \n
    • Fixed several misspellings.
    • \n
    • Added an extra check to required fields to make them more stable.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Calculation fields should now work properly with currency masks.
    • \n
    • Error messages should no longer appear on fields that shouldn\'t have errors.
    • \n
    • Cleaned up the CSS.
    • \n
    \n\n

    2.2.41

    \n\n

    Features:

    \n\n
      \n
    • Added the option to disable the \"add media\" button on the Textarea field.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Improved the back-end processing of Calculation fields.
    • \n
    • Added a new filter for the field wrapper: ninja_forms_display_field_wrap_class.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented Calculation fields from displaying properly in emails.
    • \n
    \n\n

    2.2.40

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with list fields and calculations that caused the item label to be used rather than the calc value.
    • \n
    • Importing forms with calculation fields should now work properly.
    • \n
    • Fixed a few PHP notices. Thanks @mpeshev!
    • \n
    \n\n

    2.2.38

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented Calculation fields from working properly with the Conditional Logic extension.
    • \n
    • The invalid Email message label should now properly populate upon plugin activation.
    • \n
    • Fixed a bug that caused the CSV files attached to admin emails to only contain the date.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added an \"alt\" tag to the loading ajax image.
    • \n
    \n\n

    2.2.37

    \n\n

    Changes:

    \n\n
      \n
    • Changed the method by which JS events could be added before and after form submission. Previously, a proprietary function registration system was used. In this version, however, this system has been dropped in favor of the jQuery event method. Ninja Forms will now fire a custom event of \"beforeSubmit\" before a form is submitted. Returning false in a function handler on this event will cause submission to be cancelled. \"submitResponse\" is the custom event fired by Ninja Forms when a form has been submitted. See includes/js/dev/ninja-forms-display.js for details in the comments.
    • \n
    • Added a credit card field that can be enabled by payment gateway developers.
    • \n
    • Added the ability to group user information fields by billing, shipping, or a custom group name. These are available with the get_current_info() method.
    • \n
    • Changed the email field so that validation works even if the field is not required.
    • \n
    \n\n

    2.2.36

    \n\n

    Bugs:

    \n\n
      \n
    • Email validation should now work properly.
    • \n
    \n\n

    2.2.35

    \n\n

    Changes:

    \n\n
      \n
    • Preparing for the release of WordPress 3.6, changed the instances of .live() in Ninja Forms Javascript to .on().
    • \n
    \n\n

    2.2.34

    \n\n

    Changes:

    \n\n
      \n
    • Added the ability to make Country fields required.
    • \n
    • Added the ability to add a custom first option to the Country field.
    • \n
    \n\n

    2.2.33

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented submissions from being edited if the label position was set to inside.
    • \n
    • Fixed a bug that generated a PHP Notice when adding new fields.
    • \n
    • Fixed a bug that prevented ninja_forms_get_subs() from working properly when a field => value pair was sent.
    • \n
    • Code cleanup.
    • \n
    \n\n

    2.2.32

    \n\n

    Changes:

    \n\n
      \n
    • Added translation ability to many, many previously untranslatable strings.
    • \n
    • Added an improved German translation file.
    • \n
    • Improved the way that Ninja Forms handles translations so that translation files may be placed in the WP_LANG_DIR/ninja-forms/ directory rather than the main plugin directory. This will make them safe from plugin updates.
    • \n
    • Thank you very much to David Decker for these changes!
    • \n
    • Moved the Forms Setting metabox registration from \'init\' to \'admin_init\' so that it is only called on the admin-side.
    • \n
    \n\n

    2.2.31

    \n\n

    Features:

    \n\n
      \n
    • Add Danish translation files for Ninja Forms.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Sidebars and individual field settings should now remember their state (open or closed) upon page reload.
    • \n
    \n\n

    2.2.30

    \n\n

    Features:

    \n\n
      \n
    • Added the new Calculation field. This field allows you to perform simple to complex mathematic operations, as well as collect payment data from the user.
    • \n
    • Added the new Sub Total field. This calculation field allows you to collect payment data from the user.
    • \n
    • Added the new Total field. This calculation field allows you to collect payment data from the user.
    • \n
    • Added the new Tax field. This calculation field allows you to collect payment data from the user.
    • \n
    • Added a new sidebar to the field settings tab to hold the new Payment Fields.
    • \n
    • Added several new fields for capturing a user\'s personal information: First Name, Last Name, Address, City, State, Country, Postal Code, Email Address, Phone.
    • \n
    • Added a new sidebar to the field settings tab to hold the new Personal Information fields.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Removed the Defined Fields sidebar from the Field Settings tab.
    • \n
    • Submit and Anti-Spam fields have been moved into the Template Fields sidebar.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented Text Layout Elements from showing properly on Multi-Part Forms.
    • \n
    \n\n

    2.2.29

    \n\n

    Changes:

    \n\n
      \n
    • Added a filter to the edit field LI label on the Field Settings tab.
    • \n
    • Added a field label to the layout text element. This label will not be displayed on the front-end, but will allow users to organize their forms better by naming these sections so that they are not all labelled \"Text.\"
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Corrected several strings that weren\'t setup for translation.
    • \n
    • Other minor bugfixes.
    • \n
    \n\n

    2.2.28

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a major bug that caused a php warning to appear when downloading CSV files and submitting forms.
    • \n
    \n\n

    2.2.27

    \n\n

    Changes:

    \n\n
      \n
    • Now includes a German translation. [Thanks to wp-buddy @ GitHub!]
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • CSV files should now contain HTML rather than encoded HTML entities.
    • \n
    • Fixed a major bug that prevented translated strings from actually being translated. [Thanks to wp-buddy @ GitHub!]
    • \n
    • Corrected several strings that weren\'t setup for translation.
    • \n
    • Other minor bugfixes.
    • \n
    \n\n

    2.2.26

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented List Fields from working properly with Selected Defaults.
    • \n
    • Other minor bugfixes.
    • \n
    \n\n

    2.2.25

    \n\n
      \n
    • If you are having issues with your Text fields displaying HTML code, please update to this version.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a widespread bug that caused the fields using Rich Text Editors to save encoded HTML rather than HTML.
    • \n
    • Fixed a bug that prevented Multiselect and Checkbox list fields from re-populating properly when the page reloaded.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Added two new filters that are ran when a submission is exported to CSV. ninja_forms_export_sub_label and ninja_forms_export_sub_value.
    • \n
    • Moved the location of the ninja_forms_email_user_value filter to be more effective.
    • \n
    \n\n

    2.2.24

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that caused the form settings tab to reload when a new form is created.
    • \n
    \n\n

    2.2.23

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a fairly serious bug that could keep settings pages from saving properly.
    • \n
    \n\n

    2.2.22

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented the submissions page from working properly.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • The submissions page will now show the first form\'s submissions by default.
    • \n
    • Removed the \"Inside\" label position for checkboxes and other elements that can\'t use this location.
    • \n
    • The Favorite Field export will now display a message if no favorite fields are found.
    • \n
    \n\n

    2.2.21

    \n\n

    Features:

    \n\n
      \n
    • Added the option to give a hidden field or textbox the default value of the logged-in user\'s ID.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that caused options to be shown and hidden improperly on the Form Settings page.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • If you do not setup an email \"From Address\" or an \"Admin Mailto Address,\" Ninja Forms will automatically use the default WordPress admin email address.
    • \n
    \n\n

    2.2.20

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with required fields.
    • \n
    \n\n

    2.2.19

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that was causing wpautop() to be applied to non-HTML emails. (Special thanks to Just-Ghali via GitHub)
    • \n
    \n\n

    2.2.18

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that was preventing the field settings page from working properly with lower screen resolutions.
    • \n
    • Removed several php notices.
    • \n
    \n\n

    2.2.17

    \n\n

    Changes:

    \n\n
      \n
    • Added a new div that wraps all the fields when a form is displayed.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that was causing two error messages to display below the Spam field if it were left empty.
    • \n
    • Fixed a bub with the new bulk list option CSV import.
    • \n
    \n\n

    2.2.16

    \n\n

    Changes:

    \n\n
      \n
    • Added the ability to create list options with a CSV. This will make entering very long dropdowns quite a bit easier. View list field settings for more information.
    • \n
    \n\n

    2.2.15

    \n\n

    Changes:

    \n\n
      \n
    • Added a filter to the submission data table within the wp-admin.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that was causing some user\'s success pages to display incorrectly.
    • \n
    \n\n

    2.2.14

    \n\n

    Changes:

    \n\n
      \n
    • Added additional default styling rules to improve general form output includng inline list items when selecting left or right labels.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed the label and field output for the password field to make styling easier.
    • \n
    \n\n

    2.2.13

    \n\n

    Changes:

    \n\n
      \n
    • Added a filter to the individual user-submitted values that are emailed when \"Include a list of fields?\" is checked - ninja_forms_email_user_value.
    • \n
    • Added a filter to the label of the default field list that is sent if the \"Include a list of fields?\" is checked - ninja_forms_email_field_label.
    • \n
    • Added a filter to the table of defalut fields that is ssent if the \"Include a list of fields?\" is checked - ninja_forms_email_field_list.
    • \n
    • Added the option to hide a setting using the admin metabox registration.
    • \n
    • Cleaned up the Basic Settings metabox to make it more inuitive.
    • \n
    \n\n

    2.2.12

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause administrator emails to not send properly.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Moved some options around in the Form Settings tab to make them more usable.
    • \n
    \n\n

    2.2.11

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that caused forms submitted with errors to not re-fill properly when the form re-loaded.
    • \n
    \n\n

    2.2.10

    \n\n

    Changes:

    \n\n
      \n
    • Added User Analytics to the extensions page.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause checkboxes not to validate properly when set as required.
    • \n
    \n\n

    2.2.9

    \n\n

    Changes:

    \n\n
      \n
    • Pressing the enter key on the Field Settings tab will no longer submit the field settings.
    • \n
    • Pressing the enter key on the Field Settings tab while typing a list option label or value will now add another option.
    • \n
    \n\n

    2.2.8

    \n\n

    Features:

    \n\n
      \n
    • Added a Star Rating field that will allow users to select from 1 to X stars. The X can be changed to whatever you\'d like.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Cleaned up portions of the code so that it better fits WordPress standards.
    • \n
    \n\n

    2.2.7

    \n\n

    Changes:

    \n\n
      \n
    • Fixed the transparency on the help text icon
    • \n
    • Added a new filter for form classes. The filter ninja_forms_form_class can be used to add or remove classes to forms. It is passed the current form class and the form ID.
    • \n
    • Reformatted several files to make them cleaner and easier to read.
    • \n
    \n\n

    2.2.6

    \n\n

    Changes:

    \n\n
      \n
    • Improved the way that list fields work slightly.
    • \n
    • Added four action hooks that are ran whenever an admin page is saved. ninja_forms_save_admin_metabox_option, ninja_forms_save_admin_metabox, ninja_forms_save_admin_sidebar, ninja_forms_save_admin_tab.
    • \n
    \n\n

    2.2.5

    \n\n

    Changes:

    \n\n
      \n
    • Added the new Campaign Monitor Extension to the extension list and the add-ons page.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a typo that redirecte the \"More Plugin Information\" link to a bad url.
    • \n
    • Fixed another bug that prevented AJAX submissions form working properly with PHP versions below 5.3.
    • \n
    • Fixed a bug that could cause CSV files to not be emailed to administrators.
    • \n
    • Fixed an \"undefined variable\" notice with the list field type.
    • \n
    \n\n

    2.2.4

    \n\n

    Changes:

    \n\n
      \n
    • Added an admin metabox option type of \"multi_select.\"
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented AJAX submissions form working properly with PHP versions below 5.3.
    • \n
    \n\n

    2.2.3

    \n\n

    Changes:

    \n\n
      \n
    • Ninja Forms should now properly enqueue scripts for masking, datepicker, and other jQuery elements only if they are in your form.
    • \n
    • Added a new filter for the classess output for a field: ninja_forms_display_field_class.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that was causing list fields to work improperly with the Conditionals Extension.
    • \n
    \n\n

    2.2.2

    \n\n

    Features:

    \n\n
      \n
    • Added an option to email a CSV file of the user\'s submission to the administrator email addresses upon form submission.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Submission emailing has been moved to the ninja_forms_post_process hook from the ninja_forms_process hook.
    • \n
    • The function used to export submissions now accepts a second parameter $return. Setting this to true will cause the function to return the CSV string rather than output the file for download.
    • \n
    \n\n

    2.2.1

    \n\n

    Changes:

    \n\n
      \n
    • Added a new action hook that runs if a form is set to \"Require Logged-In\", but the user is not logged in. It is named: ninja_forms_display_user_not_logged_in.
    • \n
    • Added new filters for the arguments sent to the wp_editor() function when a rich text editor is rendered. They are: ninja_forms_textarea_rte (Front-End Textarea), ninja_forms_admin_metabox_rte (Ninja Forms admin settings areas), ninja_forms_edit_field_rte (Field settings).
    • \n
    \n\n

    2.2.0

    \n\n

    Features:

    \n\n
      \n
    • Added a new form setting to prevent non-logged-in users from viewing or submitting the form.
    • \n
    • Added a new filter named: ninja_forms_display_show_form. It is passed $display, a bool() true or false, along with the form_id. It expects a bool() true or false return. If false, the form will not be output to the screen. This is different than the behavior of the ninja_forms_display_form_visibility filter.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause the success message to not show up properly when using AJAX.
    • \n
    \n\n

    2.1.9

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that could cause the success message to not show up properly when using AJAX.
    • \n
    • Please note that if you are using a version of PHP lower than 5.3, you may experience some problems using AJAX Submissions. These can be minimized by using simple success/error messages without any quotes or special characters.
    • \n
    \n\n

    2.1.8

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a major bug with displaying success messages via AJAX.
    • \n
    \n\n

    2.1.7

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a success message display bug.
    • \n
    • Other minor bugfixes.
    • \n
    \n\n

    2.1.6

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed an email formatting bug that was prevenitng HTML emails from displaying properly for some users.
    • \n
    • Fixed a bug that prevented the \"inside\" label position from working properly with textareas.
    • \n
    • Fixed a bug that could cause the \'ninja_forms_display_form\' shortcode to work incorrectly.
    • \n
    \n\n

    2.1.5

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug with adding administrator email addresses incorrectly.
    • \n
    • Fixed a bug that caused success messages to show in the wrong form when adding multiple forms to a single page.
    • \n
    \n\n

    2.1.4

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented some installations from being able to use AJAX submissions.
    • \n
    • Fixed a problem with appending a form to a page or using a shortcode that sometimes caused extra breaks
    • \n
    \n\n

    2.1.3

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that caused some users issues with using AJAX submissions.
    • \n
    • Fixed a bug that caused extensions to show as \"installed\" even if they were not.
    • \n
    \n\n

    2.1.2

    \n\n

    Features:

    \n\n
      \n
    • AJAX submissions have been re-added. Visit the \"Basic Settings\" metabox underneath the \"Form Settings\" tab to enable this feature.
    • \n
    • In the near future, there will be more options and documentation related to this feature.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Submissions are now listed from most recent to oldest. A sortable table is in the works.
    • \n
    • Changed the output of the ninja_forms_get_form_id() JS function to just an ID number.
    • \n
    \n\n

    2.1.1

    \n\n

    Bugs:

    \n\n
      \n
    • Hidden Fields should now always properly assign values if set to \"Username,\" \"Firstname,\" etc.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Changed the way that the password field works so that it can be used for both registration and normal password entry.
    • \n
    • Added a scheduled action hook (ninja_forms_daily_action) that is executed on a daily basis.
    • \n
    \n\n

    2.1.0

    \n\n

    Features:

    \n\n
      \n
    • Added an option to the \"textbox\" field type so that the \"From Name\" of a form submission email can be set as well as the \"From Email.\"
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • $ninja_forms_processing->get_form_setting(\'sub_id\') will now populate with the ID of the submission after it has been inserted into the database.
    • \n
    \n\n

    2.0.9

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug in the redirect script that was causing some users to crash instead of changing sites. Ninja Forms now sets a $_SESSION variable, $_SESSION[\'ninja_forms_values\'], equal to an array that looks like: array( \'field_id\' => 32, \'user_value\' => \'whatever the user submitted\' ) just before it redirects. The target page can access these variables for processing or display.

    • \n
    • Fixed a bug with the ninja_forms_register_tab_metabox_options() function

    • \n
    \n\n

    2.0.8

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that was causing odd behaviour when two or more forms were on the same page.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Modified the way that Ninja Forms outputs admin metaboxes.
    • \n
    • Modified the way that Ninja Forms outputs errors and success messages.
    • \n
    \n\n

    2.0.7

    \n\n

    Features:

    \n\n
      \n
    • Added a new field type of \"Password.\" This field offers the ability to add a password input textbox to your forms, including both password and re-enter password boxes. Ninja Forms will ensure that the text entered into these boxes matches. Please note that using this field within your forms to do things like logins, registrations, etc. will require custom coding.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Modified the way that Ninja Forms created admin metaboxes. Metabox options should now properly output in the order in which they are registered.
    • \n
    • Added a new serializeToArray function to the admin.js to fix a bug some users encountered with popup boxes.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Removed unused files.
    • \n
    \n\n

    2.0.6

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a JS bug that prevented some users from adding new form fields.
    • \n
    \n\n

    2.0.5

    \n\n

    Features:

    \n\n
      \n
    • Added the option to set an email address as the ?From? address within the field settings.
    • \n
    • Added basic email validation. This does NOT validate that the email address exists, but only that it is semantically correct.
    • \n
    • Added a label in the plugin settings ?Label? tab for an invalid email address.
    • \n
    • Added Shortcode and Template Function output to the Form List. You can now copy and paste the shortcode from there.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Admin metaboxes will now remember whether or not they were closed or open.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented some users from adding new fields.
    • \n
    \n\n

    2.0.4

    \n\n

    Features:

    \n\n
      \n
    • Added a label field to the plugin settings page that will allow users to set the message displayed above the form when there is a required field error.
    • \n
    • Setting a text or textarea?s label position to ?inside? will now cause the label to be auto-removed when the input receives focus. If a user leaves the field blank, the label will return.
    • \n
    \n\n

    Changes:

    \n\n
      \n
    • Increased the max file size for form imports.
    • \n
    • Added a filter: ninja_forms_field_wrap_class. This filter is sent a string that contains the wrap class for each field along with its field id.
    • \n
    • The CSS class of the list field wrapping div has been modified slightly. It has been changed from .list to .list-dropdown where dropdown is the list type.
    • \n
    • Added a new shortcode for inserting the date into the success message and emails: [ninja_forms_sub_date format=\"m/d/Y\"]. It follows the php.net date() string formats and defaults to m/d/Y.
    • \n
    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that prevented Help Text from displayin properly when the label was set to the ?inside? position.
    • \n
    \n\n

    2.0.3

    \n\n

    Features:

    \n\n
      \n
    • Added a checkbox to allow the appending of field values to administrator emails.
    • \n
    • Save form settings is now checked by default when creating a form.
    • \n
    • Hide form after successful submission is now checked by default when creating a new form.
    • \n
    • Changed the [label] system to [ninja_forms_field id=3] where 3 is the field ID that you want to insert.
    • \n
    \n\n

    Changes:

    \n\n

    *Changed the way that \"settings saved\" messages appear. When creating a save function on the admin-backend, you can now return the update message you wish users to see.

    \n\n

    Bugs:

    \n\n
      \n
    • Fixed a bug that caused design elements, especially text fields, from showing on multi-part forms.
    • \n
    • Fixed a bug in the backend admin system that was causing problems with the Uploads Browser/Upload Settings tabs.
    • \n
    • To prevent conflicts with other plugins, we removed the position declaration from the admin menu hook. This means that the Forms link will now float to the bottom of the admin menu.
    • \n
    • Fixed a bug that was causing help text to be repeated underneath sections of the Form Settings Tab.
    • \n
    • Fixed a bug that prevented list-based checkboxes from showing up properly when editing submissions.
    • \n
    • Fixed a bug that was causing required checkboxes not to validate properly.
    • \n
    \n\n

    2.0.2

    \n\n
      \n
    • Fixed several bugs including:
    • \n
    • A bug that caused multiple forms to a single page broke some JS
    • \n
    • Various export bugs. Exporting submissions should work properly.
    • \n
    • Various activation bugs.
    • \n
    • Varous bugs on the admin/back-end.

    • \n
    • Added widget functionality. You can now add Ninja Forms to your sidebars via a widget.

    • \n
    \n\n

    2.0.1

    \n\n
      \n
    • Lots of bug fixes.
    • \n
    • Filter User and Admin email subject line for [bracketed] labels.
    • \n
    • Add an action hook to User and Email sending.
    • \n
    • Add an option to the \"user email\" section for attaching user submitted values.
    • \n
    • \"Settings saved\" now appears properly when saving plugin settings.
    • \n
    • Fixed a bug with including display js and css for core and extensions.
    • \n
    • Removed the label \"Error message shown when all fields are empty.\" This wasn\'t used anyway.
    • \n
    • Added Shortcodes. They can be used like: [ninja_forms_display_form id=3].
    • \n
    • Fixed a bug where saving plugin settings would break upon HTML entry.
    • \n
    • Replaced isset( $ninja_forms_processing with is_object( $ninja_forms_processing.
    • \n
    • Fixed several activation bugs.
    • \n
    \n\n

    2.0

    \n\n
      \n
    • Version 2.0 is a major leap forward for Ninja Forms. It is much more stable and developer friendly than previous versions of the plugin.
    • \n
    ','Ninja Forms','Drag and drop fields in an intuitive UI to create create contact forms, email subscription forms, order forms, payment forms, send emails and more!','publish','closed','closed','','ninja-forms','','','2017-03-08 05:03:41','2017-03-08 05:03:41','',0,'https://wordpress.org/plugins-wp/ninja-forms/',0,'plugin','',0), (200,750410,'2012-06-14 18:52:00','2012-06-14 18:52:00','\n

    TablePress allows you to easily create and manage beautiful tables. You can embed the tables into posts, pages, or text widgets with a simple Shortcode. Table data can be edited in a speadsheet-like interface, so no coding is necessary. Tables can contain any type of data, even formulas that will be evaluated. An additional JavaScript library adds features like sorting, pagination, filtering, and more for site visitors. Tables can be imported and exported from/to Excel, CSV, HTML, and JSON files.

    \n\n

    More information

    \n\n

    Please visit the plugin website at https://tablepress.org/ for more information or a demo).

    \n\n

    Supporting future development

    \n\n

    If you like TablePress, please rate and review it here in the WordPress Plugin Directory, support it with your donation, or flattr it. Thank you!

    \n\n

    TablePress Extensions

    \n\n

    Additional features and useful enhancements are available as separate plugins, called TablePress Extensions, on the plugin website.

    \n\n

    Usage

    \n\n

    After installing the plugin, you can create and manage tables on the \"TablePress\" screen in the WordPress Dashboard.\nEverything should be self-explaining there.

    \n\n

    To show one of your tables in a post, on a page, or in a text widget, just embed the Shortcode [table id=<the-ID> /] into the post/page/text widget, where <the-ID> is the ID of your table (can be found on the left side of the \"All Tables\" screen.)\nAlternatively, you can also insert tables by clicking the \"Table\" button in the editor toolbar, and then selecting the desired table.

    \n\n

    After that, you might want to change the styling of the table. You can do this by entering CSS commands into the \"Custom CSS\" textarea on the \"Plugin Options\" screen. Some examples for common styling changes can be found on the TablePress FAQ page.\nYou may also add certain features (like sorting, pagination, filtering, alternating row colors, row highlighting, print name and/or description, ...) by enabling the corresponding checkboxes on a table\'s \"Edit\" screen.

    \n\n

    Acknowledgements

    \n\n

    Special thanks go to Allan Jardine for the DataTables JavaScript library.\nThanks to all language file translators!\nThanks to every donor, supporter, and bug reporter!

    \n\n

    License

    \n\n

    This plugin is Free Software, released and licensed under the GPL, version 2 (http://www.gnu.org/licenses/gpl-2.0.html).\nYou may use it free of charge for any purpose.

    \n\n\n

    The easiest way to install TablePress is via your WordPress Dashboard. Go to the \"Plugins\" screen, click \"Add New\", and search for \"TablePress\" in the WordPress Plugin Directory. Then, click \"Install Now\" and the following steps will be done for you automatically. After the installation, you\'ll just have to activate the TablePress plugin.

    \n\n

    Manual installation works just as for other WordPress plugins:

    \n\n
      \n
    1. Download and extract the ZIP file.
    2. \n
    3. Move the folder \"tablepress\" into the \"wp-content/plugins/\" directory of your WordPress installation.
    4. \n
    5. Activate the plugin \"TablePress\" on the \"Plugins\" screen of your WordPress Dashboard.
    6. \n
    7. Create and manage tables by going to the \"TablePress\" screen in the admin menu.
    8. \n
    9. Add a table to a page, post, or text widget, by embedding the Shortcode [table id=<your-table\'s-ID> /] into its content, or by using the \"Table\" button in the editor toolbar.
    10. \n
    11. You can change the table styling by using CSS code, which can be entered into the \"Custom CSS\" textarea on the \"Plugin Options\" screen.
    12. \n
    \n\n\n
    \n
    Where can I find answers to Frequently Asked Questions?
    \n

    Many questions, regarding different features or styling, have been answered on the FAQ page on the plugin website.

    \n
    Support?
    \n

    For support questions, bug reports, or feature requests, please use the WordPress Support Forums. Please search through the forums first, and only open a new thread if you don\'t find an existing answer. Thank you!

    \n
    Requirements?
    \n

    In short: WordPress 4.7 or higher, while the latest version of WordPress is always recommended.

    \n
    Languages and Localization?
    \n

    TablePress supports the \"Translate WordPress\" platform. With that, translating is possible on a website from which so-called Language Packs are automatically generated and shipped to plugin users. For a list of existing Language Packs, please see the sidebar on the TablePress page in the WordPress Plugin Directory.

    \n\n

    It is therefore no longer necessary to generate and translate *.po and *.mo files manually. Instead, just go to the TablePress translations page, log in with a free wordpress.org account and start translating TablePress into your language.

    \n\n

    If you want to become a Translation Editor for your language, who can confirm or reject translation suggestions by other users, please get in touch.

    \n
    Migration from WP-Table Reloaded
    \n

    TablePress is the official successor of the WP-Table Reloaded plugin. It has been rewritten from the ground up and uses an entirely new internal structure. This fixes some major flaws of WP-Table Reloaded and prepares the plugin for easier, safer, and better future development.\nIf you are currently using WP-Table Reloaded, it is highly recommended that you switch to TablePress. WP-Table Reloaded will no longer be maintained or developed. For further information on how to switch from WP-Table Reloaded to TablePress, please see the migration guide on the plugin website.

    \n
    Development
    \n

    You can follow the development of TablePress more closely in its official GitHub repository.

    \n
    Where can I get more information?
    \n

    Please visit the official plugin website for the latest information on this plugin, or follow @TablePress on Twitter.

    \n\n
    \n\n\n

    Version 1.8

    \n\n
      \n
    • Full compatibility with WordPress 4.7
    • \n
    • Updated external libraries (CodeMirror, DataTables, Build tools).
    • \n
    • Enhancement: Better spacing between the label and input field for the search in tables.
    • \n
    • Enhancement: Update list of allowed CSS properties in \"Custom CSS\".
    • \n
    • Enhancement: Make it easier for other plugins to clear the TablePress output cache.
    • \n
    • Enhancement: Simplification of some strings/text, to make translations easier.
    • \n
    • Bugfix: Better sanitization of HTML code in the Preview (thanks to Gerard Arall).
    • \n
    • Some internal changes and fixes for better stability, cleaner code, translations, and documentation.
    • \n
    • TablePress 1.8 requires WordPress 4.7!
    • \n
    \n\n

    Version 1.7

    \n\n
      \n
    • Full compatibility with WordPress 4.4
    • \n
    • Bugfix: Properly align tabs and heading in the main navigation bar at the top.
    • \n
    • Bugfix: Restore layout on small screens (responsiveness) for the \"All Tables\" screen.
    • \n
    • Bugfix: Restore layout of the overlay when inserting tables into posts/pages.
    • \n
    • Bugfix: Make input fields on the \"Edit\" screen resizable in both directions again.
    • \n
    • Bugfix: Restore sorting arrows on the \"Edit\" screen.
    • \n
    • Bugfix: Some strings were unclear, had typos, or used wrong HTML entities.
    • \n
    • Bugfix: Prevent certain \"Custom Commands\" from being rewritten to a new syntax in the wrong way.
    • \n
    • Bugfix: Make sure that the table preview is properly translated to other languages.
    • \n
    • Enhancement: Make the \"Custom CSS\" textarea vertically resizable.
    • \n
    • Enhancement: Support more CSS3 properties when cleaning \"Custom CSS\" code.
    • \n
    • Enhancement: Increase reliability when internally converting tables to their storage format (JSON).
    • \n
    • Enhancement: Use correct HTML markup for better accessibility on the admin screens.
    • \n
    • Enhancement: Only load required parts of jQuery, for faster page loads in some environments.
    • \n
    • Updated external libraries (CodeMirror, DataTables, Build tools).
    • \n
    • Translations: Switched from .po/.mo files to WordPress Plugin Language Packs.
    • \n
    • Some internal changes and fixes for better stability, cleaner code, and documentation.
    • \n
    • TablePress 1.7 requires WordPress 4.3!
    • \n
    \n\n

    Version 1.6.1

    \n\n
      \n
    • Bugfix: Update the DataTables JS library to fix issues with the JS features after the release of WordPress 4.3.
    • \n
    • Updated translations (Chinese (Simplified)).
    • \n
    \n\n

    Version 1.6

    \n\n
      \n
    • Full compatibility with WordPress 4.2
    • \n
    • Bugfix: Fixed integration of the \"Insert Link\" dialog.
    • \n
    • Bugfix: Divisions by zero were not caught properly in formulas in cells.
    • \n
    • Bugfix: Numbers were sometimes not imported correctly in the Excel importer.
    • \n
    • Enhancement: Importing files encoded as UTF-16 should work better now.
    • \n
    • Enhancement: Support dismissible notices in the admin screens.
    • \n
    • Enhancement: Support better tabbing on the \"Edit\" screen.
    • \n
    • Enhancement: Add page cache clearing for the WP Fastest Cache plugin.
    • \n
    • Enhancement: Add a plugin filter hook that allows modifying the exported data by plugins.
    • \n
    • Enhancement: Support more CSS3 properties when cleaning \"Custom CSS\" code.
    • \n
    • Updated external libraries (CodeMirror, DataTables, Build tools).
    • \n
    • Added Korean translation.
    • \n
    • Updated several translations (Chinese (Taiwan), English, German).
    • \n
    • Many internal changes and fixes for better stability, cleaner code, and documentation.
    • \n
    • TablePress 1.6 requires WordPress 4.2!
    • \n
    \n\n

    Version 1.5.1

    \n\n
      \n
    • Bugfix: Some properties in Custom CSS code were erroneously removed.
    • \n
    • Updated the Spanish translation.
    • \n
    \n\n

    Version 1.5

    \n\n
      \n
    • Full compatibility with WordPress 4.0
    • \n
    • Feature: Support for the new Media Manager when inserting images
    • \n
    • Feature: Support for the integrated WP importer/exporter
    • \n
    • Bugfix: The \"Insert Link\" dialog in the \"Advanced Editor\" works now.
    • \n
    • Bugfix: Moving the admin menu entry somewhere else was broken in rare cases.
    • \n
    • Bugfix: The HTML export creates valid HTML files now.
    • \n
    • Enhancement: Tables are now stored with extra information about the format, so that other plugins are less likely to break it.
    • \n
    • Extended unit tests for the plugin and some external libraries.
    • \n
    • Updated external libraries (CodeMirror, DataTables, Build tools).
    • \n
    • Added Ukrainian translation.
    • \n
    • Updated several translations (Chinese (Simplified), Dutch, English, French, German, Hebrew, Italian, Japanese, Russian, Turkish).
    • \n
    • Added and updated more language files for the DataTables library.
    • \n
    • TablePress 1.5 requires WordPress 4.0!
    • \n
    \n\n

    Version 1.4

    \n\n
      \n
    • Compatibility with WordPress 3.9
    • \n
    • Bugfix: Determine the correct Worksheet ID during XLSX import
    • \n
    • Bugfix: Displaying empty Shortcodes was broken
    • \n
    • Enhancement: Improve JSON import to also allow import of JSON objects
    • \n
    • Enhancement: Use more sophisticated error handling and debugging
    • \n
    • Enhancement: Reduce memory usage when loading tables
    • \n
    • Added inline documentation to all plugin filter and action hooks
    • \n
    • Updated external libraries
    • \n
    • Internal improvements to coding standards, inline documentation, and build tools
    • \n
    • Added Serbian translation
    • \n
    • Updated several translations (Chinese (Simplified), Croatian, German, Spanish)
    • \n
    \n\n

    Version 1.3

    \n\n
      \n
    • Compatibility with WordPress 3.8 and the new admin styling
    • \n
    • Bugfix: Import of JSON files did not take row/column visibility into account
    • \n
    • Bugfix: File names of exported files were sometimes broken
    • \n
    • Bugfix: Translations for some strings were not loaded properly
    • \n
    • Enhancement: Don\'t search for tables outside of the main search query
    • \n
    • Enhancement: Broken tables are now skipped
    • \n
    • Updated external libraries
    • \n
    • Added Chinese (Taiwan) translation
    • \n
    • Internal improvements to coding standards, inline documentation, and build tools
    • \n
    • TablePress 1.3 requires WordPress 3.8!
    • \n
    \n\n

    Version 1.2

    \n\n
      \n
    • Compatibility with WordPress 3.7
    • \n
    • Bugfix: WordPress search did not find tables in some cases
    • \n
    • Bugfix: Cells were sometimes erroneously interpreted as formulas
    • \n
    • Bugfix: HTML export did not encode entities properly
    • \n
    • Bugfix: Wrong variable name in table render code
    • \n
    • Enhancement: Add logarithm to math functions for formulas
    • \n
    • Enhancement: Better internal code documentation and variable type checks
    • \n
    • Enhancement: Add parameter to Shortcode that allows showing debug information
    • \n
    • Updated external libraries
    • \n
    • Updated several translations (Brazilian Portuguese, Czech, French, German, Latvian)
    • \n
    • Many more internal code improvements
    • \n
    • TablePress 1.2 requires WordPress 3.6!
    • \n
    \n\n

    Version 1.1.1

    \n\n
      \n
    • Fixed a bug with CSS handling that broke some TablePress Extensions
    • \n
    \n\n

    Version 1.1

    \n\n
      \n
    • Experimental import for Excel files (.xls and .xlsx)
    • \n
    • More math functions in formulas (including if-conditionals, statistical functions, ...)
    • \n
    • Better \"Custom CSS\" saving for higher performance
    • \n
    • Bugfix: Encoding problem during HTML import
    • \n
    • Bugfix: Roles are now deleted during uninstallation
    • \n
    • Bugfix: Search for tables was broken, if Shortcode had been changed
    • \n
    • Plugin Unit Tests for automated code testing
    • \n
    • Added several new translations (Brazilian Portuguese, Czech, Dutch, Finnish, Hebrew, Icelandic, Italian, Japanese, Latvian, Russian, and Turkish)
    • \n
    • Many more internal improvements of code and usability
    • \n
    • Updated external libraries
    • \n
    \n\n

    Version 1.0

    \n\n

    Official release with a few fixes and many enhancements and improvements

    \n\n

    Version 0.9-RC

    \n\n

    Release candidate in which all intended features are included and very stable.

    \n\n

    Version 0.8.1-beta

    \n\n

    Initial version where most features are ready and pretty stable.

    ','TablePress','Embed beautiful and feature-rich tables into your posts and pages, without having to write code.','publish','closed','closed','','tablepress','','','2017-02-27 05:47:57','2017-02-27 05:47:57','',0,'https://wordpress.org/plugins-wp/tablepress/',0,'plugin','',0), (202,6893158,'2008-12-05 22:23:31','2008-12-05 22:23:31','\n

    Resize, optimize and compress all of your images with the incredibly powerful and 100% free WordPress image smusher, brought to you by the superteam at WPMU DEV!

    \n\n

    Now with image resizing! Set a max width and height and large images will scale down as they are being compressed.

    \n\n

    Our servers do all the heavy lifting. Strip hidden bulky information from your images and reduce file size without losing quality.

    \n\n

    Large image files may be slowing down your site without you even knowing it. WP Smush uses WPMU DEV?s super servers to quickly smush every single one of your images and cuts all the unnecessary data without slowing down your site.

    \n\n

    [youtube https://www.youtube.com/watch?v=BDtgVJZEajg&feature=youtu.be]

    \n\n

    WP Smush meticulously scans every image you upload ? or have already added to your site ? cuts all the unnecessary data and scales it for you before adding it to your media library.

    \n\n

    \n\n

    Compress any Image in any Directory

    \n\n

    In addition to smushing your media uploads, you may want to compress the images stored in other folders. Smush now lets you compress any image in any directory so that you can optimize all the images on your site ? including NextGEN images and the images in EVERY WordPress plugin and theme package!

    \n\n

    ?????
    \n?I had no idea that my page load time was being dragged down by the images. The plugin nearly halved the time it took.? - karlcw

    \n\n

    ?????
    \n?I optimize my photos in Photoshop, but Smush makes it so easy ? it does it automatically. I can just sit back and enjoy the speed.? - helen432

    \n\n

    What about Multisite? WP Smush can be used to optimize all the images across your entire network! Use global settings or configure each site individually.

    \n\n

    WP Smush is super easy to use ? no confusing compression software settings! Smush images in your library one at a time or bulk smush up to 50 images at a time. Plus, configure auto-smush to asyncronously scale and compress some or all of your images as they are being uploaded ? it\'s incredibly fast.

    \n\n

    The faster your site loads, the more Google, Bing, Yahoo and other search engines will like it. Your site will load faster and rank higher.

    \n\n
    \n

    Features available in WP Smush include:

    \n
    \n
      \n
    • Optimize your images using advanced lossless compression techniques.
    • \n
    • Set maximum width and height and large images will automatically scale before being added to your media library
    • \n
    • Process JPEG, GIF and PNG image files.
    • \n
    • Optimize any image in any directory.
    • \n
    • Asynchronously auto-smush your attachments for super fast compression on upload.
    • \n
    • Manually smush your attachments individually in the media library, or in bulk 50 attachments at a time.
    • \n
    • Smush all standard web-sized images 1MB or smaller.
    • \n
    • Smush images with no slowdown using WPMU DEV\'s fast, reliable Smush API.
    • \n
    • Global and individual settings for Multisite
    • \n
    • View advanced compression stats per-attachment and library totals.
    • \n
    \n\nInstall WP Smush now and find out why it\'s the most popular image optimization plugin for WordPress available today with over 2.7 million downloads.\n
    \n\n

    If you like WP Smush, you\'ll love WP Smush Pro

    \n\n

    WP Smush Pro gives you everything you\'ll find in WP Smush and more:

    \n\n
      \n
    • Super smush your images with our intelligent multi-pass lossy compression. Get from 2x - 10x more compression than lossless with almost no noticeable quality loss!
    • \n
    • Get even better lossless compression. We try multiple methods to squeeze every last byte out of your images.
    • \n
    • Smush images up to 32MB. Now you can smush any image, even one?s that aren?t web optimized.
    • \n
    • Bulk smush ALL your images with one click - no more rate limiting!
    • \n
    • Automatically convert PNG files to lossy JPEG if extra savings are found.
    • \n
    • Keep a backup of original un-smushed images in case you want to restore later.
    • \n
    • 24/7/365 support from the best WordPress support team on the planet.
    • \n
    • Includes Hummingbird pagespeed booster, Uptime monitoring and security hardening.
    • \n
    • 100+ other premium plugins, services and themes included in your membership.
    • \n
    \n\n

    Upgrade to WP Smush Pro and optimize more and larger image files faster to increase your site?s performance.

    \n\n

    About Us

    \n\n

    WPMU DEV is a premium supplier of quality WordPress plugins and themes. For premium support with any WordPress related issues you can join us here:\nhttps://premium.wpmudev.org/

    \n\n

    Don\'t forget to stay up to date on everything WordPress from the Internet\'s number one resource:\nWPMU DEV Blog

    \n\n

    Hey, one more thing... we hope you enjoy our free offerings as much as we\'ve loved making them for you!

    \n\n

    Contact and Credits

    \n\n

    Originally written by Alex Dunae at Dialect (dialect.ca, e-mail \'alex\' at \'dialect dot ca\'), 2008-11.

    \n\n\n
      \n
    1. Upload the wp-smush plugin to your /wp-content/plugins/ directory.
    2. \n
    3. Activate the plugin through the \'Plugins\' menu in WordPress.
    4. \n
    5. Configure your desired settings via the Media -> WP Smush settings page.
    6. \n
    7. Done!
    8. \n
    \n\n\n
    \n
    I just finished running Smush and Google Pagespeed still says my images need compressing and resizing. How do I fix it?
    \n

    This means your images were not properly scaled for where they are being displayed. Scaling images before uploading them can be time consuming but can save space and speedup load time. First, determine what size your image needs to be. You can use the built-in developer tools in Chrome or Firefox to find what height and width your image should be. Once you know how large the image should be, scale your images to the right size.

    \n\n

    Tip: you may not be need to scale each image individually. If the images are in your Media Library, you may be able to fix them with a plugin.

    \n
    Does Smush delete or replace my original full-size images?
    \n

    Nope. WordPress crops and resizes every image you upload for embedding on your site. By default, Smush only compresses these cropped and resized images, not your original full-size images. To compress your original full-sized images use WP Smush Pro.

    \n
    What type of file should I use for my images (GIF, PNG, JPG)?
    \n

    GIF files are large and can?t be optimized much. They should only be used if the image is animated.

    \n\n

    PNG is best for computer generated graphics (vectors, logos, fonts, etc.), images with few colors or images with transparency.

    \n\n

    JPG should be used for photography or images with a lot of color variation.

    \n
    I?m a photographer can I keep all my EXIF data?
    \n

    Yes! EXIF data stores camera settings, focal length, date, time and location information in image files. EXIF data makes image files larger but if you are a photographer you may want to preserve this information. We have included the option to preserve EXIF image data in WP Smush.

    \n
    I just ran bulk smush and some of my images didn\'t get compressed?
    \n

    First, check to see if you\'re receiving any server errors. If your images seem to be processing correctly check the file size of the images being skipped. Images over 1mb will be skipped. To compress images up to 32mb get WP Smush Pro.

    \n\n
    \n\n\n

    2.6.2

    \n\n
      \n
    • Added:

      \n\n
        \n
      • WP All Import Compatibility
      • \n
    • \n
    • Fixed:

      \n\n
        \n
      • Image not being updated to S3 after resmush ( *Only if remove files from server is kept off in S3 plugin settings )
      • \n
      • Added check for directory smush savings
      • \n
      • Call wp_update_attachment_metadata after smushing, to allow the optimised image to be used
      • \n
      • Dir Smush: Images with special symbols doesn\'t gets optimised
      • \n
      • Dir Smush: Skip .bak files
      • \n
      • Retina Images @2x: Do not smush if auto smush is disabled
      • \n
      • Backup ( Pro ): Take backup of original untouched image, improved backup and restore.
      • \n
    • \n
    • Updated:

      \n\n
        \n
      • Smush Limit ( 50 Images ), do not include images with error in count
      • \n
    • \n
    \n\n

    2.6.1

    \n\n
      \n
    • Fixed:\n\n
        \n
      • PHP 5.2 compatibility
      • \n
      • DB error: Use a smaller value for Path Index size ( Prefix Indexes )
      • \n
      • Updated translation function name
      • \n
      • UI/UX fixes for directory smush
      • \n
      • Improved optimisation process for directory smush
      • \n
      • Updated uninstall.php
      • \n
      • Skip sites directory from Directory Smush in a Multisite
      • \n
    • \n
    \n\n

    2.6

    \n\n
      \n
    • Fixed:

      \n\n
        \n
      • PHP 7 warning ( https://goo.gl/GKEMim ), @props: @alexis-mag
      • \n
      • Async Smush conflict with other plugins
      • \n
    • \n
    • Changes:

      \n\n
        \n
      • Moved notice JS/CSS in footer
      • \n
      • Bulk Smush page optimisation
      • \n
      • Increased timeout for Async request - Fixes Async smush not working for some hosting services
      • \n
    • \n
    • Added:

      \n\n
        \n
      • Directory Smush
      • \n
    • \n
    \n\n

    2.5.3

    \n\n
      \n
    • Fixed:\n\n
        \n
      • Show a Smush progress message in Grid view for Auto Smush\n( A lot of people reported it as Auto Smush not working, which works in background though )
      • \n
      • Translation domain was incorrect for few strings
      • \n
      • Translation: Load translation domain in main plugin file
      • \n
      • Include image size medium_large in smush list
      • \n
      • Error: Cannot use string offset as an array
      • \n
      • Error in PNG to JPG conversion ( Pro Feature ), added check for mime_content_type function
      • \n
      • Pro Status not recognised
      • \n
    • \n
    \n\n

    2.5.2

    \n\n
      \n
    • Added:

      \n\n
        \n
      • Filter: wp_smush_image, Boolean, Whether to Smush image or not
      • \n
      • Async Optimisation for Auto Smush on upload ( Set WP_SMUSH_ASYNC to false to turn off async optimisation )
      • \n
      • Networkwide settings option in a Multisite
      • \n
    • \n
    • Fixed:

      \n\n
        \n
      • Double slash in file path causing 403 on some of the sites
      • \n
      • Localisation error reported by @talgat ( Thank You :) )
      • \n
    • \n
    \n\n

    2.4.5

    \n\n
      \n
    • Fixed:\n\n
        \n
      • Error \"No file content sent\" with WP 4.6
      • \n
    • \n
    \n\n

    2.4.4

    \n\n
      \n
    • Fixed:\n\n
        \n
      • PNG to JPEG conversion not working for Multisite
      • \n
      • Stats Calculation, Use custom query to retrieve data
      • \n
      • Fixed warning and notices
      • \n
      • Added check for invalid membership ( Pro Users )
      • \n
      • thumbnails not being converted for PNG to JPEG conversion
      • \n
    • \n
    • Removed option to convert Transparent PNGs to JPEGs ( Pro Users )
    • \n
    \n\n

    2.4.3

    \n\n
      \n
    • Fixed: Image resizing not working on image upload
    • \n
    \n\n

    2.4.2

    \n\n
      \n
    • Fixed: PHP 5.2 compatibility
    • \n
    \n\n

    2.4.1

    \n\n
      \n
    • Fixed: Conflict with Customizer
    • \n
    \n\n

    2.4

    \n\n
      \n
    • Compatibility:

      \n\n
        \n
      • WPML Media Add-on compatibility, you can smush all the images for all the languages at once from Bulk Smush page
      • \n
    • \n
    • Features:

      \n\n
        \n
      • Added PNG to JPG - Lossy Conversion for higher savings ( Pro Feature )
      • \n
    • \n
    \n\n

    *Fixed:\n * EXIF: Device details were left out for some images, even when opted for stripping it

    \n\n
      \n
    • Updated:\n\n
        \n
      • Minor Tweaks on WP Smush Page ( Bulk Smush )
      • \n
      • Stats calculation is more accurate
      • \n
      • Show current image size and image size dimensions in media library after image has been smushed
      • \n
      • JPEG optimisation - higher savings for JPEGs lossy optimisation ( Pro Feature )
      • \n
    • \n
    \n\n

    2.3.1

    \n\n
      \n
    • Fixed:\n\n
        \n
      • Stats not updated on resizing images
      • \n
      • CSS conflict in Media Library
      • \n
    • \n
    \n\n

    2.3

    \n\n
      \n
    • Fixed:\n\n
        \n
      • Tooltip on image edit page
      • \n
      • Warning and Notices
      • \n
    • \n
    • Updated:\n\n
        \n
      • Improved stats calculation
      • \n
      • Bulk Smush page optimised for Image heavy sites
      • \n
      • Cleanup on uninstall
      • \n
    • \n
    • Added:\n\n
        \n
      • Image Resizing option for Media, NextGen(Pro Only) images
      • \n
      • Total image count on stats page
      • \n
    • \n
    \n\n

    2.2.2

    \n\n
      \n
    • Fixed: JS error causing issue with Editor on some installs, plugin conflict with CoursePress plugin, ACF ( Clear All Caches after plugin upgrade, Cloudflare as well )
    • \n
    • Fixed: ReSmush count for bulk smushing
    • \n
    • Fixed: Smush settings accessibility for Screen reader/Keyboard
    • \n
    • Fixed: WP Admin loading slow ( Load smush stats on required admin pages only )
    • \n
    \n\n

    2.2.1

    \n\n
      \n
    • New: Option to resmush image if settings are changed after optimising images
    • \n
    • New: Added an option to preserve EXIF
    • \n
    • New: Remove Smush meta on image regeneration,\n This allows user to manually smush them later, if auto smush is off ( WP Image Editor support )
    • \n
    • New: Manual Image restore option for Media Library and NextGen Gallery, if \"Backup Original Images\" was kept on while smushing ( Pro Only )
    • \n
    • New: Delete Backup Files (Pro Only) on attachment deletion
    • \n
    • Updated: Upfront Integration
    • \n
    • Fixed: jQuery tooltip conflict
    • \n
    • Code Optimisation, Updated Settings page UI
    • \n
    \n\n

    2.1.5

    \n\n
      \n
    • Fixed: WP Media Folder Plugin compatibility
    • \n
    • Fixed: Warning on Plugins Page
    • \n
    • Updated: Settings Page styling
    • \n
    \n\n

    2.1.4

    \n\n
      \n
    • Fixed: Preserve file permission after smushing ( Fix for Images disappearing in Media library on some hosts )
    • \n
    • Fixed: Styles plugin compatibility
    • \n
    • Fixed: Append URL params considering the existing arguments ( WPML Compatibility )
    • \n
    • Fixed: Warning: For settings link in Network admin, Warning: https://goo.gl/HAfhaF ( Thank you @Maks3w for suggestions )
    • \n
    • Fixed: Fatal error if both pro version and free version are activated
    • \n
    • Fixed: NextGen-Smush conflict on plugin activation on a fresh install
    • \n
    \n\n

    2.1.3

    \n\n
      \n
    • Fixed: Compatibility with WPMU DEV Dashboard plugin v4.0, was not detecting pro status
    • \n
    \n\n

    2.1.2

    \n\n
      \n
    • Fixed: Important fix for transient issue leading to multiple api requests
    • \n
    \n\n

    2.1.1

    \n\n
      \n
    • Fixed: Workaround for terrible bug in W3TC file based object caching
    • \n
    \n\n

    2.1

    \n\n
      \n
    • Fixed: Untranslatable strings in settings
    • \n
    • Fixed: Increased is_pro() API timeouts
    • \n
    • Fixed: Remove redundant _get_api_key() cache check
    • \n
    • Fixed: Some PHP notices on fresh installs
    • \n
    \n\n

    2.0.7.1

    \n\n
      \n
    • Fixed: Bulk Smush button keeps spinning after 50 images for free version
    • \n
    • Fixed: NextGen Bulk Smush button issue
    • \n
    \n\n

    2.0.7

    \n\n
      \n
    • Fixed: Invalid header issue
    • \n
    • Fixed: Warnings in file functions
    • \n
    • Updated: Added limit on query results, for sites with higher image count, Use filter wp_smush_media_query_limit to adjust values
    • \n
    • Added: Sortable WP Smush column in Media Library
    • \n
    • Added: Filters wp_smush_media_image for Media Gallery, wp_smush_nextgen_image For NextGen gallery,\n allows to skip a particular image size from smushing
    • \n
    • Added: NextGen Gallery support (Pro feature)
    • \n
    \n\n

    2.0.6.5

    \n\n
      \n
    • Updated: Skip webp images ( causing ajax error for few sites )
    • \n
    • Fixed: Warning and Notices ( Media Library not loading )
    • \n
    • Fixed: Smush full size image if no other sizes are available
    • \n
    • Added: Detailed text for stats and settings
    • \n
    \n\n

    2.0.6.3

    \n\n
      \n
    • Fixed: Change File permission after replacing image
    • \n
    • Fixed: Directory path for files
    • \n
    • Fixed: Workaround for Auto Smush issue on Hostgator
    • \n
    • Fixed: Smush button doesn\'t works in media library dialog on post screen, when add media is clicked\n (https://wordpress.org/support/topic/like-wp-smush-a-lot)
    • \n
    • New: Show number of images smushed in stats column
    • \n
    • Added: Support for WP Retina 2x Plugin
    • \n
    • Added: Filter WP_SMUSH_API_TIMEOUT to change the default time out value from 60s
    • \n
    • Added: Smush original image option (Pro Only)
    • \n
    \n\n

    2.0.6.2

    \n\n
      \n
    • Use string for text domain instead of PHP Constant ( WordPress Guideline )
    • \n
    \n\n

    2.0.6.1

    \n\n
      \n
    • Updated: Max image size limit to 32Mb for Pro Version
    • \n
    \n\n

    2.0.6

    \n\n
      \n
    • Fixed: Conflict with various themes while editing post and page
    • \n
    • Fixed: Word Count not working
    • \n
    • Fixed: Notice and Warnings
    • \n
    \n\n

    2.0.5

    \n\n
      \n
    • New: Allow Super-smush for existing smushed images (Pro Only)
    • \n
    • Fixed: IMPORTANT - broken transient caching for is_pro
    • \n
    • Fixed: Fixed conflict with wp gallery link plugin in grid view
    • \n
    • Fixed: Other small fixes
    • \n
    \n\n

    2.0.4

    \n\n
      \n
    • Fix: Fatal error conflict with some plugins on fronted of site
    • \n
    \n\n

    2.0.3

    \n\n
      \n
    • Fixed (Important Update) - Image being corrupted while regenerating thumbnails
    • \n
    \n\n

    2.0.2

    \n\n
      \n
    • Check for existing constant definition, before defining new
    • \n
    \n\n

    2.0.1

    \n\n
      \n
    • UI changes
    • \n
    \n\n

    2.0

    \n\n
      \n
    • Complete rewrite to use WPMU DEV\'s new fast and reliable API service.
    • \n
    • New: One-click bulk smushing of all your images.
    • \n
    • New: \"Super-Smush\" your images with our intelligent multi-pass lossy compression. Get over 2x more compression with almost no noticeable quality loss! (Pro)
    • \n
    • New: Keep a backup of your original un-smushed images in case you want to restore later. (Pro)
    • \n
    • UX/UI updated with overall stats, progress bar.
    • \n
    \n\n

    1.7

    \n\n
      \n
    • Use Ajax for Bulk Smush to avoid timeouts and internal server error
    • \n
    • Other Notice and bug fixes
    • \n
    • Settings moved under Media > WP Smush.it
    • \n
    • Added debug log file
    • \n
    \n\n

    1.6.5.4

    \n\n
      \n
    • Added settings option to disable check for home url.
    • \n
    • for PHP 5.4.x reordered class WpSmushit contructors to prevent Strict Standards Exception
    • \n
    \n\n

    1.6.5.3

    \n\n
      \n
    • Removed check for file within local site home path.
    • \n
    \n\n

    1.6.5.2

    \n\n
      \n
    • Corrected issues with Windows paths compare.
    • \n
    • Added debug output option to help with user support issues.
    • \n
    \n\n

    1.6.5.1

    \n\n
      \n
    • Correct Settings > Media issue causing settings to report warnings and not save.
    • \n
    • Corrected some processing logic to better handling or image path. Images still need to be within ABSPATH of site
    • \n
    • Correct image URL passed to Smush.it API to convert https:// urls to http:// since the API does not allow https:// images
    • \n
    \n\n

    1.6.5

    \n\n
      \n
    • Codes reformatted and cleaned up into a php class
    • \n
    • More texts are translatable now
    • \n
    \n\n

    1.6.4

    \n\n
      \n
    • Fixed a bug that prevents execution
    • \n
    \n\n

    1.6.3

    \n\n
      \n
    • check image size before uploading (1 MB limit)
    • \n
    • attempt to smush more than one image before bailing (kind thanks to xrampage16)
    • \n
    • allow setting timeout value under Media > Settings (default is 60 seconds)
    • \n
    \n\n

    1.6.2

    \n\n
      \n
    • about to get a new lease on life notice
    • \n
    \n\n

    1.6.1

    \n\n
      \n
    • no longer maintained notice
    • \n
    \n\n

    1.6.0

    \n\n
      \n
    • added setting to disable automatic smushing on upload (default is true)
    • \n
    • on HTTP error, smushing will be temporarily disabled for 6 hours
    • \n
    \n\n

    1.5.0

    \n\n
      \n
    • added basic integration for the NextGEN gallery plugin
    • \n
    • add support for media bulk action dropdown
    • \n
    • compatibility with WordPress earlier than 3.1
    • \n
    • added a donate link
    • \n
    \n\n

    1.4.3

    \n\n
      \n
    • cleaner handling of file paths
    • \n
    \n\n

    1.4.2

    \n\n
      \n
    • bulk smush.it will no longer re-smush images that were successful
    • \n
    \n\n

    1.4.1

    \n\n
      \n
    • bug fixes
    • \n
    \n\n

    1.4.0

    \n\n
      \n
    • bulk smush.it
    • \n
    \n\n

    1.3.4

    \n\n
      \n
    • bug fixes
    • \n
    \n\n

    1.3.3

    \n\n
      \n
    • add debugging output on failure
    • \n
    \n\n

    1.3.2

    \n\n
      \n
    • removed realpath() call
    • \n
    • IPv6 compat
    • \n
    \n\n

    1.3.1

    \n\n
      \n
    • handle images stored on other domains -- props to ka-ri-ne for the fix
    • \n
    • avoid time-out errors when working with larger files -- props to Milan Dini? for the fix
    • \n
    \n\n

    1.2.10

    \n\n
      \n
    • removed testing link
    • \n
    \n\n

    1.2.9

    \n\n
      \n
    • updated Smush.it endpoint URL
    • \n
    \n\n

    1.2.8

    \n\n
      \n
    • fixed path checking on Windows servers
    • \n
    \n\n

    1.2.7

    \n\n
      \n
    • update to workaround WordPress\'s new JSON compat layer (see trac ticket)
    • \n
    \n\n

    1.2.6

    \n\n
      \n
    • updated Smush.it endpoint URL
    • \n
    • fixed undefined constant
    • \n
    \n\n

    1.2.5

    \n\n
      \n
    • updated Smush.it endpoint URL
    • \n
    \n\n

    1.2.4

    \n\n
      \n
    • removed debugging code that was interfering with the Flash uploader
    • \n
    \n\n

    1.2.3

    \n\n
      \n
    • bug fix
    • \n
    \n\n

    1.2.2

    \n\n
      \n
    • updated to use Yahoo! hosted Smush.it service
    • \n
    • added security checks to files passed to wp_smushit()
    • \n
    \n\n

    1.2.1

    \n\n
      \n
    • added support for PHP 4
    • \n
    • created admin action hook as workaround to WordPress 2.9\'s $_registered_pages security (see changeset 11596)
    • \n
    • add savings amount in bytes to Media Library (thx Yoast)
    • \n
    \n\n

    1.2

    \n\n
      \n
    • added support for WP_Http
    • \n
    \n\n

    1.1.3

    \n\n
      \n
    • fixed activation error when the PEAR JSON library is already loaded
    • \n
    \n\n

    1.1.2

    \n\n
      \n
    • added test for allow_url_fopen
    • \n
    \n\n

    1.1.1

    \n\n
      \n
    • added error message on PHP copy error
    • \n
    \n\n

    1.1

    \n\n
      \n
    • improved handling of errors from Smush.it
    • \n
    • added ability to manually smush images from media library
    • \n
    • fixed inconsistent path handling from WP 2.5 -> WP 2.7
    • \n
    \n\n

    1.0.2

    \n\n
      \n
    • added \'Not processed\' status message when browsing media library
    • \n
    \n\n

    1.0.1

    \n\n
      \n
    • added i10n functions
    • \n
    \n\n

    1.0

    \n\n
      \n
    • first edition
    • \n
    ','Smush Image Compression and Optimization','Compress and optimize image files, improve performance and boost your SEO rank using Smush WordPress image compression and optimization.','publish','closed','closed','','wp-smushit','','','2017-04-03 06:28:34','2017-04-03 06:28:34','',0,'https://wordpress.org/plugins-wp/wp-smushit/',0,'plugin','',0), (203,8307150,'2010-01-19 07:06:17','2010-01-19 07:06:17','\n

    Create and manage your calendar of events with ease. Get professional-level quality and features backed by a team you can trust. The Events Calendar will help take your site to the next level.

    \n\n

    The Events Calendar is built and supported by Modern Tribe\'s WordPress artisans. Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views, Facebook event integration and more?

    \n\n

    Check out Events Calendar PRO and other add-ons

    \n\n
    \n

    New Import Tool!\n We?ve made bulk event imports easier to manage than ever. This add-on service for The Events Calendar allows you to import events from your favorite sources, including Facebook, Meetup, Google Calendar, iCalendar, CSV, and ICS.\n Check out Event Aggregator now.

    \n
    \n\n

    BUILT SOLID & SUPPORTED

    \n\n

    The Events Calendar is crafted the WordPress way.

    \n\n

    The Events Calendar has been audited by many of the industry\'s WordPress experts including core developer Mark Jaquith for security & plugin review team member Pippin Williamson for best practices and plugin compatibility.

    \n\n

    We\'ve poured hundreds of hours into QA by a dedicated support team, monthly usability tests to guarantee that it\'s easy to use, and numerous user interviews to make sure you get what you want. We care about quality and crafting products that thrive in the wild.

    \n\n

    The team at Modern Tribe stands by our work and offers light support every Wednesday to the community via the WordPress.org support forums. Feel free to ask a question if you\'re having a problem with implementation or if you find bugs. Looking for help NOW or need a deeper level of support? Add the premium add-on plugin and you get access to premium support forums with 24-48 hour response times on weekdays.

    \n\n

    Enjoy using The Events Calendar, know how to get under the hood and want to make money helping people? We\'re growing our community team and would love to hear from you. If you?re interested, check this out!

    \n\n

    PLUG-N-PLAY & HIGHLY CUSTOMIZABLE

    \n\n

    The Events Calendar is built to work out of the box. Just turn it on, configure the settings to match your needs and you\'ll be making events in less than 5 minutes.

    \n\n

    By developers, for developers...it\'s ready to be the foundation for your wildest hack sessions. Complete with a skeleton stylesheet to theme fast and efficiently, loads of tools including partial template overrides, a host of template tags, hooks and filters, careful documentation, as well as a library of code snippets on GitHub. The Events Calendar is built FOR people who build websites.

    \n\n

    Whether your vision is big or small, we have you in mind.

    \n\n

    We\'ve scaled The Events Calendar to work on a network with over 25 million unique visitors per month and hundreds of thousands of events. We have it running for Fortune 100 companies. Major universities, government institutions and some seriously epic startups push their events with our platform. Thousands of churches, eateries, small businesses, musicians, venues, and non-profits are publishing and promoting their events with The Events Calendar. You\'re in good company.

    \n\n

    FEATURES

    \n\n

    Whether you\'re operating a hyperlocal hub listing thousands of events, a university with many thousands of users, or you\'re a sole business owner listing your classes, The Events Calendar has your back.

    \n\n

    Just getting started? Definitely watch and read through the New User Primer before going much further.

    \n\n
      \n
    • Rapidly create events
    • \n
    • Saved venues & organizers
    • \n
    • Calendar month view with tooltips
    • \n
    • List view
    • \n
    • Day view
    • \n
    • Event search
    • \n
    • Google maps
    • \n
    • Widget: Upcoming events list
    • \n
    • Events Taxonomies (Categories & Tags)
    • \n
    • Google Calendar and iCal exporting
    • \n
    • Completely ajaxified for super smooth browsing
    • \n
    • Completely responsive from mobile to tablet to desktop
    • \n
    • Tested on the major theme frameworks such as Avada, Genesis, Woo Themes, Thesis and many more.
    • \n
    • Increase your SEO with Microformats
    • \n
    • Internationalized & Translated
    • \n
    • Multiple stylesheets (Skeleton, Default, Tribe Event Styles) to improve integration
    • \n
    • Extensive Template Tags for Customization
    • \n
    • Hook & Filters up the wazoo
    • \n
    • Caching Support
    • \n
    • Debug Mode for Developers
    • \n
    \n\n

    Looking for something else? We?ve got add-ons available to take your calendar to the next level.

    \n\n

    PRO Features

    \n\n

    Add recurring events, a whole recurring events, a whole range of new views ( week / map / photo / venue / organizer) & widgets (calendar / featured venue / week / event countdown), shortcodes, custom event attributes, default content, location search, much more with Events Calendar PRO

    \n\n

    Event Ticketing

    \n\n

    Collect free RSVPs with Event Tickets or add paid ticketing features with Event Tickets Plus, including the ability to sell tickets, collect sales, and manage attendees all from within your WordPress dashboard! Works with your favorite eCommerce plugin (WooCommerce, Shopp, Easy Digital Downloads, or WP E-Commerce).

    \n\n

    Bulk Event Import

    \n\n

    Fill your calendar with events from your favorite sources, including Facebook, Meetup, Google Calendar, iCalendar, CSV, and ICS. Event Aggregator provides a convenient dashboard to manage scheduled imports, manual imports, filters, one-way sync, import history, and more.

    \n\n

    User-Submitted Events

    \n\n

    Running a community calendar? Community Events lets users add events directly to your calendar without needing access to your admin.

    \n\n

    Advanced User Search & Filters

    \n\n

    Have so many amazing events that your users get overwhelmed? Filter Bar adds a configurable set of filters to your event pages so users can view and search for the exact events that interest them.

    \n\n

    Integrate With Eventbrite

    \n\n

    Connect your calendar with your Eventbrite.com account! Eventbrite Tickets allows you to import/export between The Events Calendar and Eventbrite, and incorporate ticket sales.

    \n\n

    Join us on Facebook to be part of our active community, check us out on Twitter, and sign up for our newsletter for release announcements and discounts.

    \n\n

    SUBMITTING PATCHES

    \n\n

    If you?ve identified a bug and want to submit a patch, we?d welcome it at our GitHub page for The Events Calendar. Simply cue up your proposed patch as a pull request, and we?ll review as part of our monthly release cycle and merge into the codebase if appropriate from there. (If a pull request is rejected, we?ll do our best to tell you why). Users whose pull requests are accepted will receive credit in the plugin\'s changelog. For more information, check out the readme at our GitHub page. Happy coding!

    \n\n

    Documentation

    \n\n

    All of our online documentation can be found on our documentation site.

    \n\n

    Some links you may find particularly useful are:

    \n\n\n\n

    If you have any questions about this plugin, you can post a thread in our WordPress.org forum. Please search existing threads before opening a new one.

    \n\n

    The Modern Tribe premium support forums are available for you to read. You won\'t, however, be able to post a message in any forums beyond Pre-Sale Questions unless you have purchased a premium license.

    \n\n

    Add-Ons

    \n\n

    But wait: there\'s more! We\'ve got a whole stable of plugins available to help you be awesome at what you do. Check out a full list of the products below, and over on our website.

    \n\n

    Our Free Plugins:

    \n\n\n\n

    Our Premium Plugins and Services:

    \n\n\n\n

    Translations

    \n\n

    The Events Calendar is translated by volunteers at translate.wordpress.org. There you can find a list of available languages, download translation files, or help update the translations. Thank you to everyone who helps to maintain our translations!

    \n\n

    Help

    \n\n

    Welcome to The Events Calendar, a full-featured events management system for WordPress. Thank you so much for using the labor of our love. We are Modern Tribe and we are here to help you be awesome.

    \n\n

    If you aren\'t familiar with The Events Calendar, check out our new user primer. It\'ll introduce you to the basics of what the plugin has to offer and will have you creating events in no time. From there, the resources below -- extensive template tag documentation, FAQs, video walkthroughs and more -- will give you a leg up as you dig deeper.

    \n\n

    Additional resources available include:

    \n\n\n\n

    We hit the The Events Calendar forum here on WordPress.org about once a week, assisting users with basic troubleshooting and identifying bugs that have been reported. (If you are looking for more active support, might we suggest buying a PRO license? Our team hits the Premium Forums daily.)

    \n\n

    Some things to consider before posting on the forum:

    \n\n
      \n
    • Look through existing threads before posting a new one and check that there isn\'t already a discussion going on your issue.
    • \n
    • Your issue will be solved more quickly if you run a few checks before making a support request. Deactivate your plugins one by one - if the issue is fixed by deactivating a plugin you know you\'ve got a plugin conflict. To test your Theme, revert to the default Twenty Twelve Theme to see if you are still experiencing the problem. If not, your Theme is the issue. Please provide this information when making your supper request.
    • \n
    • Sometimes, just resetting your permalinks can fix the issue. Visit Events -> Settings -> Permalinks, save your permalinks with a different option and then save with your preferred choice again. This can solve events-related problems and can is worth a shot before creating a new thread.
    • \n
    \n\n

    Still not happy? Shoot us an email to support@theeventscalendar.com or tweet to @TheEventsCal and tell us why. We\'ll do what we can to make it right.

    \n\n

    Contributors

    \n\n

    The plugin is made with love by Modern Tribe Inc.

    \n\n

    Current Contributors

    \n\n\n\n

    Past Contributors

    \n\n\n\n\n

    Install & Activate

    \n\n

    Installing the plugin is easy. Just follow these steps:

    \n\n
      \n
    1. From the dashboard of your site, navigate to Plugins --> Add New.
    2. \n
    3. Select the Upload option and hit \"Choose File.\"
    4. \n
    5. When the popup appears select the the-events-calendar-x.x.zip file from your desktop. (The \'x.x\' will change depending on the current version number).
    6. \n
    7. Follow the on-screen instructions and wait as the upload completes.
    8. \n
    9. When it\'s finished, activate the plugin via the prompt. A message will show confirming activation was successful. A link to access the calendar directly on the frontend will be presented here as well.
    10. \n
    \n\n

    That\'s it! Just configure your settings as you see fit, and you\'re on your way to creating events in style. Need help getting things started? Check out our new user primer for help with settings and features.

    \n\n

    Requirements

    \n\n
      \n
    • PHP 5.2.4 or greater (recommended: PHP 5.4 or greater)
    • \n
    • WordPress 3.9 or above
    • \n
    • jQuery 1.11.x
    • \n
    \n\n\n
    \n
    Are there any troubleshooting steps you\'d suggest I try that might resolve my issue before I post a new thread?
    \n

    First, make sure that you\'re running the latest version of The Events Calendar (4.0 as of this release). If you\'re running Events Calendar PRO it needs to match the version number of The Events Calendar. And if you\'ve got any other add-ons, make sure those are current / running the latest code as well.

    \n\n

    The most common issues we see are either plugin or theme conflicts. You can test if a plugin or theme is conflicting by manually deactivating other plugins until just The Events Calendar is running on your site. If the issue persists from there, revert to the default Twenty Fourteen theme. If the issue is resolved after deactivating a specific plugin or your theme, you\'ll know that is the source of the conflict.

    \n\n

    Note that we aren\'t going to say \"tough luck\" if you identify a plugin/theme conflict. While we can\'t guarantee 100% integration with any plugin or theme out there, we will do our best (and reach out the plugin/theme author as needed) to figure out a solution that benefits everyone.

    \n
    I\'m still stuck. Where do I go to file a bug or ask a question?
    \n

    Users of the free The Events Calendar should post their questions in the plugin\'s WordPress.org forum, which we hit about once a week (usually on Wednesdays). Please make sure to read our sticky post providing an overview of the support we provide free users BEFORE posting. If you find you\'re not getting support in as timely a fashion as you wish, you might want to consider purchasing a PRO license.

    \n\n

    If you\'re already a PRO user, you\'re entitled access to our more actively-monitored Events Calendar PRO forum on our website. We can provide a deeper level of support here and hit these forums on a daily basis during the work week. Generally, except in times of increased support loads, we reply to all comments within 24-48 hours during the business week.

    \n
    Events Calendar PRO looks awesome! I\'m sold! How can I get my hands on it?
    \n

    Events Calendar PRO can be purchased directly on our website. There are five (5) license types available, and all licenses include 1 year of access to support + updates.

    \n
    I\'m interested in PRO or another add-on, but there are a few questions I\'ve got before making the purchase. Can you help me get those addressed?
    \n

    Absolutely. If you\'re not finding your questions answered on the product pages, hit up our pre-sales forum on our site. You can save yourself some time by reviewing the threads first to verify if your question has already been asked. If it hasn\'t, post a new thread as a guest. We\'ll get you a reply as quickly as we can, so you can make an informed decision regarding purchase.

    \n
    What add-ons are available for The Events Calendar, and where can I read more about them?
    \n

    Currently, the following add-ons are available for The Events Calendar:

    \n\n
      \n
    • Events Calendar PRO, for adding premium calendar features like recurring events, advanced views, cool widgets, shortcodes, additional fields, and more!
    • \n
    • Event Aggregator, a service that effortlessly fills your calendar with events from Facebook, Meetup, Google Calendar, iCalendar, CSV, and ICS.
    • \n
    • Event Tickets (free), which allows you to collect RSVPs to events. It can run alongside The Events Calendar or as a standalone plugin that adds RSVP functionality to WordPress posts and pages.
    • \n
    • Event Tickets Plus, which allows you to sell tickets for your events using your favorite e-commerce platform.
    • \n
    • Community Events, for allowing frontend event submission from your readers.
    • \n
    • Community Tickets, which allows event organizers to sell tickets to the events they submit via Community Events.
    • \n
    • Filter Bar, for adding advanced frontend filtering capabilities to your events calendar.
    • \n
    • Eventbrite Tickets, for selling tickets to your event directly through Eventbrite.
    • \n
    \n
    I have a feature idea. What\'s the best way to tell you about it?
    \n

    We\'ve got a UserVoice page where we\'re actively watching for feature ideas from the community. Vote up existing feature requests or add your own, and help us shape the future of the products business in a way that best meets the community\'s needs.

    \n
    I\'ve still got questions. Where can I find answers?
    \n

    Check out our extensive knowledgebase for articles on using, tweaking, and troubleshooting our plugins.

    \n\n
    \n\n\n

    [4.4.5] 2017-03-23

    \n\n
      \n
    • Fix - Local changes to events should be preserved in accordance with the Event Import Authority setting (thanks to @bryan for reporting this one) [72876]
    • \n
    • Fix - Correct the value for days of the week abbreviation (thanks @mmmmartin03 for the report) [75379]
    • \n
    • Tweak - Enable the month view cache by default on new installations [74867]
    • \n
    • Tweak - External links to Google maps changed from http to https (nice find by @bjf2000 - reported via the .org support page) [74930]
    • \n
    • Tweak - Links to WordPress.org changed from http to https (ultimately this is also credited to @bjf2000\'s find. Thanks!) [72273]
    • \n
    \n\n

    [4.4.4] 2017-03-08

    \n\n
      \n
    • Fix - Avoid unnecessarily removing a callback from an action while inside the same action (improves PolyLang compatibility - props @Chouby) [73122]
    • \n
    • Fix - Resolving issue where sites that overrode the wp-admin path would fail to successfully perform a Facebook OAuth with Event Aggregator [74687]
    • \n
    • Tweak - Improve template loading for easier customization by developers and better support of the template hierarchy (props @QWp6t) [72842]
    • \n
    \n\n

    [4.4.3] 2017-02-22

    \n\n
      \n
    • Fix - Resolved issue where iCal exports on month view were exporting more events than intended (thanks to @s2ldesign for reporting in our forums) [72133]
    • \n
    • Fix - Resolved meta width issue for maps when Pro is active (gracias a @ANTONIO JOSE por el reporte del error) [69844, 72272]
    • \n
    • Fix - Resolved issue where featured images were not being imported via Event Aggregator Facebook imports (cheers to @Cody for the inital bug report) [72764]
    • \n
    • Fix - Resolved issue where translated \'all\' slugs were not respected (thank you @Marianne for your report in the forums) [71996]
    • \n
    • Tweak - Translation improvements and fixes (@Katja - thanks! ) [70068]
    • \n
    • Tweak - Allow \"-1\" when specifying the \"Month view events per day\" setting [70497]
    • \n
    \n\n

    [4.4.2] 2017-02-09

    \n\n
      \n
    • Fix - Ensure the global and source-specific Google Map settings for imports are respected [67228]
    • \n
    • Fix - Prevent PHP 5.2 Strict mode from throwing notices due to usage of is_a [72812]
    • \n
    • Fix - Ensure the events list widget\'s show/hide if there are upcoming events setting is respected [72965]
    • \n
    • Tweak - Add filters for template tag functions related to dates: tribe_get_start_time, tribe_get_end_time, tribe_get_start_date and tribe_get_end_date [67759]
    • \n
    \n\n

    [4.4.1.1] 2017-01-26

    \n\n
      \n
    • Fix - Resolved fatal caused when rendering themes that override tribe styles
    • \n
    \n\n

    [4.4.1] 2017-01-26

    \n\n
      \n
    • Fix - Resolve the Fatals related to undefined methods and Memory exhaustion [71958, 71912]
    • \n
    • Fix - iCal export for Single events working again [71916]
    • \n
    • Tweak - Changes the Search label to prevent duplicate words (props @oheinrich) [72149]
    • \n
    • Tweak - Add theme version to tribe-event.css (props @berler) [71973]
    • \n
    • Fix - Resolve JavaScript error when jQuery was been de-registered [71369]
    • \n
    • Fix - Prevent Fatals when Importing Images on Event Aggregator [70576]
    • \n
    • Fix - Prevent Third Party notes to be escaped, anchor link working again [71872]
    • \n
    • Fix - Google Maps now are using HTTPS instead of HTTP (props @cliffordp)
    • \n
    • Fix - Prevent Fatals on Event Aggegrator Cron, due to Activity logging failure [71904]
    • \n
    • Fix - Elminate some cases of problem with Facebook manual import on Event Aggregator [69137]
    • \n
    • Fix - WPML integration smaller incompatibilities [70520, 70522]
    • \n
    \n\n

    [4.4.0.1] 2017-01-09

    \n\n
      \n
    • Fix - Adds safety check to ensure a smooth activation process when earlier versions of Tribe Common are active
    • \n
    \n\n

    [4.4] 2017-01-09

    \n\n
      \n
    • Feature - Add dynamic helper text to single event editor to display the events date and time [66484]
    • \n
    • Feature - Add support for featured events [65898]
    • \n
    • Feature - Add support for placing the main events archive on the site homepage [38757]
    • \n
    • Feature - Add support for the theme customizer [67489]
    • \n
    • Feature - Make it possible to adjust map pins via the theme customizer [65889]
    • \n
    • Feature - Support for Event Aggregator in a multisite network context added [61427]
    • \n
    • Fix - Add a link to The Events Calendar Help page in the Network Administration screen of multisite installations [68665]
    • \n
    • Fix - Multisite license editing and displaying consistency [68662]
    • \n
    • Tweak - Adjusted styles and added actions for featured events in the List Widget [65923]
    • \n
    • Tweak - Organizers and Venues are now with a better and cleaner interface [68430]
    • \n
    • Tweak - Eliminate duplicate meta data for organizer posts [25084]
    • \n
    • Tweak - Improved the start/end date user interface [66486, 66487, 66550]
    • \n
    • Tweak - iCal export now includes all events - up to a reasonable limit - rather than just those in the current view [65037]
    • \n
    • Tweak - Adjustments made to the default week view colour scheme [69756]
    • \n
    • Tweak - Add AJAX and improve consistency of the venue and organizer UI [38129]
    • \n
    \n\n

    [4.3.5] 2016-12-20

    \n\n
      \n
    • Tweak - Updated the template override instructions in a number of templates [68229]
    • \n
    • Tweak - Improve behaviour of tribe_get_events_title() in respect of single events [46313]
    • \n
    • Tweak - Event Aggregator will only load on the Administration, prevent bigger loads for Front-End users [70812]
    • \n
    • Tweak - Allow better filtering for Organizers and Venue Meta fields (Props: @Chouby from Polylang) [70894]
    • \n
    • Fix - Prevent JavaScript Notices related to Bumpdown [69886]
    • \n
    • Fix - Assets URL on Windows Servers are fully operational again [68377]
    • \n
    • Fix - JavaScript and CSS files will respect HTTPS on all pages [69561]
    • \n
    • Fix - Fixed comment count and visibility issues due to Event Aggregator records [68297]
    • \n
    • Fix - Fixed PHP notices and warnings raised when importing .ics files [69960]
    • \n
    • Fix - Only show link to Venues if Pro is active in List View [69887]
    • \n
    • Fix - Fixed and issue that would make Event Aggregator importing notices remain stuck in the Import screen [70614]
    • \n
    • Fix - Avoid error screen when saving licenses on multisite installations [68599]
    • \n
    • Fix - Fix calendar view links in WPML language switcher [67134]
    • \n
    \n\n

    [4.3.4.2] 2016-12-13

    \n\n
      \n
    • Fix - Correct an oversight leading to breakages of the /all/ events archive for Events Calendar PRO users [70662]
    • \n
    \n\n

    [4.3.4.1] 2016-12-09

    \n\n
      \n
    • Fix - Updates Tribe Common to remove some stray characters that were impacting page layouts (props: @Aetles) [70536]
    • \n
    \n\n

    [4.3.4] 2016-12-08

    \n\n
      \n
    • Tweak - Tribe Common now is loaded only once across our plugin suite, improves performance on some cases [65755]
    • \n
    • Fix - Featured Images for Event Aggregator imports are works as expected again. [69465]
    • \n
    • Fix - Google Calendar and iCalendar files are now updating it\'s repective events [68684]
    • \n
    • Fix - On demand Event Aggregator records will update events corretly [69542]
    • \n
    \n\n

    [4.3.3] 2016-11-16

    \n\n
      \n
    • Feature - Added Tribe Extension class and loader, to make small addons easier to build [68188]
    • \n
    • Fix - Ordering on Month view is working as expected again [69123]
    • \n
    • Fix - Enable ampersand character in mobile month view titles (thanks @kate for the report of this) [45409]
    • \n
    • Fix - Prevent notices for Event Aggregator License checking [67981]
    • \n
    • Fix - Miss-Matched text domains are resolved, important for translations (props to @Hans) [68462]
    • \n
    • Fix - Sticky on Month View is working as expect again [68902]
    • \n
    • Fix - Prevent HTTPS websites from pointing to Assets in HTTP [68372]
    • \n
    • Fix - On WP_Query we will no-longer overwrite custom post__not_in params [42143]
    • \n
    \n\n

    [4.3.2] 2016-11-02

    \n\n
      \n
    • Fix - Fixes an issue where the text in the Location search field was URL encoded when using the back or forward button for navigation. [61742]
    • \n
    • Fix - Aggregator Errors will not show more than once daily as comments (Thanks @Jacob for your report on the forums) [68094]
    • \n
    • Fix - Event Aggregator ICS default configuration now are been Selected Correctly [67885]
    • \n
    • Fix - Shortcode Month view now will display tooltips correctly [68094]
    • \n
    • Fix - Avoid loading the select2 JavaScript library twice when Advanced Custom Fields is activated (props to @ryan for the initial report [43605]
    • \n
    • Fix - Avoid errors and notices on calendar page when X theme and WPML plugins are active (thanks @ingrid for reporting this one) [64400]
    • \n
    \n\n

    [4.3.1.1] 2016-10-20

    \n\n
      \n
    • Fix - Corrected a packaging issue from the 4.3.1 release [67936]
    • \n
    \n\n

    [4.3.1] 2016-10-20

    \n\n
      \n
    • Tweak - Implement the pruning of Event Aggregator history records after 7 days, filterable by tribe_aggregator_record_retention [68283]
    • \n
    • Tweak - Event Aggregator will now verify that the license key has uses remaining before creating a history record [68286]
    • \n
    • Tweak - Improve tribe_create_event documentation (Props to Keith) [44871]
    • \n
    • Fix - Resolved an issue where scheduled Event Aggregator imports marked as \"On Demand\" were being run by cron [68284]
    • \n
    • Fix - Resolved a bug where empty meta fields were being inserted into Event Aggregator record post meta [68290]
    • \n
    • Fix - Resolved a bug where Venue and Organizers urls were been generated incorrectly (Thanks @Matt) [68168]
    • \n
    • Fix - Pagination links on Month view are updating correctly [67977]
    • \n
    • Fix - Resolved the support for translated event category archive slug that could lead to broken links on the front-end while using WPML (Props to Wilco in the support Forums) [62018]
    • \n
    • Fix - Resolved a bug where searching for past events in the List view would always yield no results (Thanks for the report @Davide) [61863]
    • \n
    • Fix - Resolved an issue where long file names would break plugin updates on some Windows installations (pros to @Alan [62552]
    • \n
    • Fix - Resolved an issue where the /all link on recurring events on non English websites could be broken (reported by @lumiest - thanks!) [68062]
    • \n
    • Fix - Pagination links on Month view are updating correctly [67977]
    • \n
    \n\n

    [4.3.0.1] 2016-10-14

    \n\n
      \n
    • Fix - Preventing legacy Facebook events from been duplicated
    • \n
    \n\n

    [4.3] 2016-10-13

    \n\n
      \n
    • Feature - Added Event Aggregator to enable service-based event imports from iCal feeds, Facebook, and Meetup
    • \n
    • Feature - Revamped the CSV import screens to work within the new Event Aggregator pages
    • \n
    • Tweak - Adjusted some view logic to support the new Event Views shortcode in Pro [44800]
    • \n
    • Tweak - Added a button to copy the system infomation on the help tab [43709]
    • \n
    • Tweak - Added an option for users to opt into automatic system infomation so our support system can grab the system information found on the help tab automatically [31645]
    • \n
    • Tweak - Use an earlier hook for iCal feed generation (props @jlambe) [64141]
    • \n
    • Tweak - Revise and simplify integration with Event Tickets attendee screen [61992]
    • \n
    • Tweak - Added context to a set of strings to make translation easier (props @pedro-mendonca) [64586]
    • \n
    • Tweak - Deprecated various disused functions and classes relating to the Meta Factory [39905]
    • \n
    • Fix - Cease using GLOB_BRACE for including deprecated files due to limited server support [63172]
    • \n
    • Fix - Avoid problems that can occur when hooking and unhooking actions (props @Chouby) [63474]
    • \n
    • Fix - Resolves an issue where we were duplicating a core WordPress hook but with a different set of parameters (props @Chouby) [66455]
    • \n
    • Fix - Correct the datetime formatting issues within the iCal feed (props @henryk) [65968]
    • \n
    • Deprecated - Tribe__Events__Main::initOptions() has been deprecated with no replacement
    • \n
    • Deprecated - Tribe__Events__Main::set_meta_factory_global() has been deprecated in favor of using the Tribe__Events__Meta_Factory class
    • \n
    • Deprecated - The setup_meta() method in both the Tribe__Events__Template__Single_Event and Tribe__Events__Template_Factory classes has been deprecated
    • \n
    • Deprecated - The the_title(), event_date(), event_category(), event_tag(), event_website(), event_origin(), organizer_name(), organizer_email(), venue_name(), venue_address(), and venue_map() methods have been deprecated in the Tribe__Events__Advanced_Functions__Register_Meta class
    • \n
    • Deprecated - The register(), check_exists(), and get_args() methods have been deprecated in the Tribe__Events__Meta_Factory class
    • \n
    \n\n

    [4.2.7] 2016-09-15

    \n\n
      \n
    • Tweak - Additional support for plugin extensions
    • \n
    \n\n

    [4.2.6] 2016-08-31

    \n\n
      \n
    • Add - tribe_is_event_past() conditional to detect if event end time is past current time (Reported by @Jonathan in our support forums - thanks Jonathan.)
    • \n
    \n\n

    [4.2.5] 2016-08-17

    \n\n
      \n
    • Fix - Fixed inconsistent template filtering logic for single event template [62525]
    • \n
    • Tweak - Restored preview for published events [64874]
    • \n
    \n\n

    [4.2.4] 2016-08-03

    \n\n
      \n
    • Tweak - Changed \"Event Add-Ons\" to load faster [64286]
    • \n
    • Fix - Fixed default venue setting [64628]
    • \n
    • Fix - Fixed default venue state and province settings [64629]
    • \n
    \n\n

    [4.2.3] 2016-07-20

    \n\n
      \n
    • Fix - In month view, be sure to unhook JSON-LD output when calling unhook function
    • \n
    • Fix - Incorrect JSON-LD event start and end times (thank you @jjbte for reporting on .org forums)
    • \n
    • Fix - Show Google Map and Link checkbox so they show when editing an event (Reported originally by Michael of @NailedIT in the .org forum)
    • \n
    • Fix - Use Community Events Venue Edit Link when on Community Events Forms instead of Admin (also as a result of the report abve from @NailedIT. Thanks again.)
    • \n
    \n\n

    [4.2.2] 2016-07-06

    \n\n
      \n
    • Fix - Small CSS Issue on Welcome Page
    • \n
    • Fix - Month view on mobile device width doesn\'t have links to prev/next months
    • \n
    • Fix - Reimport of updated CSV removes featured image (Bug #46149)
    • \n
    • Fix - Fixed the issue that would make multiple organizers details disappear when trying to submit invalid event data using Community
    • \n
    • Fix - Add a check to avoid being unable to switch view when Filter Bar plugin is active and at least one field is set to auto-complete mode
    • \n
    • Fix - Only add the events custom post type to the tag archive queries and not custom queries with tags [45635]
    • \n
    • Fix - When using the filter tribe_events_excerpt_allow_shortcode shortcodes will be maybe be processed in event excerpts in the list views [42289]
    • \n
    \n\n

    [4.2.1.1] 2016-06-28

    \n\n
      \n
    • Fix - Ensure translations load as expected with all supported versions of WordPress (thanks to @JacobALund for originally reporting this on .org forums)
    • \n
    \n\n

    [4.2.1] 2016-06-22

    \n\n
      \n
    • Tweak - Adjust the caching rules for Month View for faster loading
    • \n
    • Fix - Replace a bad return type to avoid unnecessary notices in the error log
    • \n
    • Fix - Add missing styles for correctly hide screen reader text
    • \n
    • Fix - Fixes tribe_get_event_link() which wasn\'t working when passing second parameter as `true\'
    • \n
    • Tweak - Reduce the ginormous font size of Month View titles in skeleton styles
    • \n
    • Fix - Add styling to adjust List View description to full width
    • \n
    • Fix - Miscellaneous tweaks to improve the Month and Day views
    • \n
    • Fix - Fix a shorthand array that was causing errors in PHP 5.2 and 5.3 when importing events
    • \n
    \n\n

    [4.2] 2016-06-08

    \n\n
      \n
    • Feature - Added Google Maps API key field in the Settings tab to avoid map timeouts and errors on larger sites (Thanks to Yan for reporting this!)
    • \n
    • Feature - Added support for featured image, multiple organizers, excerpt and more custom fields in the .csv file import function for events (Thank you to Graphic Designer for posting on UserVoice!)
    • \n
    • Feature - Added support for featured image, description, map details and more custom fields in the .csv file import function for venues
    • \n
    • Feature - Added support for featured image and description in the .csv file import function for organizers (Thank you to Rebecca for posting on UserVoice!)
    • \n
    • Feature - Added an oEmbed template for events
    • \n
    • Feature - Improve performance of a query used to determine if there are free/uncosted events (Thank you @fabianmarz for the pull request!)
    • \n
    • Feature - Added support for attaching custom post types to events
    • \n
    • Tweak - Improved filtering of the tribe_event_featured_image() function (Cheers to @fabianmarz!)
    • \n
    • Tweak - Add an encoding class for the CSV importer to prevent non utf8 characters from preventing imports (Thanks to screenrage for the report!)
    • \n
    • Tweak - Improved our JSON-LD output to ensure consistency (Props to @garrettjohnson and Lars!)
    • \n
    • Tweak - Language files in the wp-content/languages/plugins path will be loaded before attempting to load internal language files (Thank you to user aafhhl for bringing this to our attention!)
    • \n
    • Tweak - Switch to HTTPS for the \"Powered by The Events Calendar\" link (Thank you Cynthia for reporting this!)
    • \n
    • Tweak - Switch to using HTTPS by default for interactions with Google Maps API
    • \n
    • Tweak - Improved filterability of calendar excerpts by introducing the new tribe_events_get_the_excerpt filter hook
    • \n
    • Tweak - Improved filtering of organizer details when importing by CSV (Props to @Geir for bringing this up!)
    • \n
    • Tweak - Adjustments for single event view in Twenty Fifteen theme
    • \n
    • Tweak - Improved performance of query used to test for events without any cost
    • \n
    • Tweak - Added missing semicolon to a laquo (Props to mwender on GitHub for the fix!)
    • \n
    • Tweak - Improve the \"stickiness\" of CSV import column mappings (Thank you @jamesgol!)
    • \n
    • Tweak - Consistency of JSON-LD markup improved (Cheers to @garrettjohnson for the help!)
    • \n
    • Tweak - Avoid notice-level errors when working with WP CLI on a site where The Events Calendar is also active (Thanks to @sun)
    • \n
    • Tweak - Corrected the spelling of timezone in the CSV Importer\'s event field
    • \n
    • Tweak - Updated venue and organizer templates to use the new architecture for attaching custom post types to events
    • \n
    • Tweak - Move plugin CSS to PostCSS
    • \n
    • Tweak - Category default view is now set to default in place of hardcoding the current default view in the category base rewrite rule [31907]
    • \n
    • Deprecated - Tribe__Events__PUE__Checker, Tribe__Events__PUE__Plugin_Info, and Tribe__Events__PUE__Utility classes are deprecated and are replaced by Tribe__PUE__Checker, Tribe__PUE__Plugin_Info, and Tribe__PUE__Utility classes
    • \n
    • Fixed - Changed the use of have_posts() in the maybe iCal links for the main views that could cause an infinite loop
    • \n
    • Accessibility - Focus styles added for search fields
    • \n
    • Accessibility - Add ARIA labels for Month/Day/List sub nav
    • \n
    • Accessibility - Add ARIA label for events footer sub nav heading
    • \n
    \n\n

    [4.1.4] 2016-05-19

    \n\n
      \n
    • Fix - Improve accuracy of list view pagination after switching from month view
    • \n
    • Tweak - Give the multi-organizer form \'sticky\' properties so values persist even if the submission is initially rejected
    • \n
    • Tweak - Resolved minor CSS issues in the welcome page
    • \n
    \n\n

    [4.1.3] 2016-04-28

    \n\n
      \n
    • Fix - Month View single days are now ordered as follows: sticky events, ongoing multi-day events, all day events, then start time. In other words, all events should be ordered as you\'d expect when viewing events in Month View.
    • \n
    • Fix - Updated the compatibility of CSV importer with WordPress 4.5 due to a change in the post_status filter. This will help prevent some of the errors you may have seen when importing events using a CSV file.
    • \n
    • Tweak - Added new event names for AJAX success to the List, Month, and Day views to help The Events Calendar\'s compatibility with our other premium plugins.
    • \n
    \n\n

    [4.1.2] 2016-04-11

    \n\n
      \n
    • Tweak - Removed an unneeded hook that attempted to add a query argument to event tag links
    • \n
    • Fix - Resolved an issue where events marked as \"sticky\" would not display as such in Month View
    • \n
    • Fix - Dashes, hyphens, or whatever you like to call them in the events archive slug no longer breaks the URL
    • \n
    • Fix - The notice that pops up when a conflicting \"events\" page exists can now be dismissed
    • \n
    \n\n

    [4.1.1.1] 2016-04-07

    \n\n
      \n
    • Security - Tightened up security with post type link filtering (props to Nadal Soler for reporting this issue!)
    • \n
    • Security - Tightened up security around tribe bar submissions (props to Paul Mynarsky for reporting this issue!)
    • \n
    \n\n

    [4.1.1] 2016-03-30

    \n\n
      \n
    • Fix - Resolved bug where array notices were output on single event pages when venues were not set (props to zaxiscreative for reporting this issue!)
    • \n
    • Fix - Resolved issue where the Month View in mobile sizes retained the long day-of-week names when the abbreviations should have been used (props to Lucy for the bug report!)
    • \n
    • Fix - Fixed bug where a \"0\" was added to the default Venue name when creating a new event
    • \n
    • Fix - Fixed notice that caused Ajax requests to fail (props to cgrymala on WP.org for reporting this!)
    • \n
    • Fix - Removed quotes from around TZID-specified timezones in iCal feeds which causes problems with some parsers (props to factory44 for reporting the issue that lead to this fix)
    • \n
    • Fix - Resolved various capitalization issues with German translations (props to oheinrich in our forums for pointing out this issue!)
    • \n
    \n\n

    [4.1.0.1] 2016-03-17

    \n\n
      \n
    • Fix - Resolved multiple issues with the German de_DE language file that caused a number of site-breaking issues
    • \n
    \n\n

    [4.1] 2016-03-15

    \n\n
      \n
    • Feature - Added a tribe_get_venue_website_url() function for fetching Venue website URLs (props to fervorcreative in our forums for this request!)
    • \n
    • Performance - Lazy-load venue and organizer selector data
    • \n
    • Tweak - Allow iCal filenames to be filtered via a new filter: tribe_events_ical_feed_filename
    • \n
    • Tweak - Added a hook to allow single day queries in month view to be filtered: tribe_events_month_daily_events_query_args
    • \n
    • Tweak - Improved the logic around rebuilding known date ranges
    • \n
    • Tweak - Always show the \"Merge Duplicates\" button for venues and organizers in the Events General Settings page
    • \n
    • Tweak - Allow the \"same slug\" notice to be dismissed and fix some text in that message
    • \n
    • Tweak - Ignore alpha/beta/rc suffixes on version numbers when checking template versions
    • \n
    • Tweak - Add a filter for month view daily events query: tribe_events_month_daily_events_query_args
    • \n
    • Tweak - Added a more flexible cost range parsing function
    • \n
    • Tweak - Obfuscate license keys Events > Help > System Information
    • \n
    • Fix - Fixed a fatal that sometimes occurred when refreshing the import CSV page
    • \n
    • Fix - Fixed issue where some characters were not escaped appropriately for month and year formats
    • \n
    • Fix - Added missing tribe-loading@2x.gif
    • \n
    • Fix - Fixed a warning produced by passing a DateTime() object into start_date or end_date args of tribe_get_events (props to iamhexcoder for the pull request!)
    • \n
    • Fix - Fixed bug where events in month view were not always sorted in chronological order
    • \n
    • Fix - Fixed the System Info URL in Events > Help
    • \n
    • Fix - Resolved issue where the default country would be \"Array\" if no default country is set
    • \n
    • Fix - Fixed bug where ajaxurl was sometimes undefined
    • \n
    \n\n

    [4.0.7] 2016-03-02

    \n\n
      \n
    • Fix - Resolve display issues on templates with Jetpack and a few themes
    • \n
    • Fix - Mobile breakpoints on month view working with custom breakpoints
    • \n
    • Fix - Reordering Venue and Organizer metadata no longer breaks titles
    • \n
    • Fix - Prevented notices from happening when using the_title filter
    • \n
    • Fix - iCal links now will respect categories on the first page
    • \n
    • Fix - Prevent third-party bugs with SEO plugins when inserting events programmatically
    • \n
    • Fix - Organizer information is showing up again correctly
    • \n
    • Fix - Modified the add-on license validation method to better explain what is happening
    • \n
    • Fix - Description on mobile views now have the correct class attribute on HTML
    • \n
    • Fix - Added missing semicolon on the list navigation for \"&laquo\"
    • \n
    \n\n

    [4.0.6] 2016-02-17

    \n\n
      \n
    • Tweak - Adjust injection of event data into the_content from priority 10 to 9 for better 3rd-party plugin compatibility
    • \n
    • Tweak - Change mobile month view selector to load event details below the calendar for better theme compatibility
    • \n
    • Tweak - Better handling of edge cases on the post_excerpt for List View
    • \n
    • Tweak - Removal of generic CSS classes like .updated and .published
    • \n
    • Fix - Prevent Notices from appearing when using tribe_get_organizer()
    • \n
    • Fix - Make HTML Single Event Pages valid
    • \n
    • Fix - Numeric named categories URLs are now fully working
    • \n
    • Fix - Event Title now Accepts HTML on Tooltips
    • \n
    • Fix - Licenses Tab now will work with DISALLOW_FILE_MODS (Props to Sun for spotting and fixing this)
    • \n
    \n\n

    [4.0.5] 2016-01-15

    \n\n
      \n
    • Security - Security fix with Venues and Organizers (props to grantdayjames for reporting this!)
    • \n
    \n\n

    [4.0.4] 2015-12-23

    \n\n
      \n
    • Tweak - Including the latest embedded Event Tickets release for backward compatibility
    • \n
    \n\n

    [4.0.3] 2015-12-22

    \n\n
      \n
    • Tweak - Adjust single-event.php template to allow the \"Time\" title and content to be filterable (Props to Sitecrafting for highlighting this issue!)
    • \n
    • Fix - Resolved issue with an overly escaped Event Category edit URL that prevented editing categories (Thanks to Ian for the first report of this issue!)
    • \n
    • Fix - Fixed issue where clicking on columns on the Events listed in the Admin Dashboard were ALWAYS sorted by Event start/end date before sorting by the column selected (Cheers to Corrado for bringing this to our attention!)
    • \n
    \n\n

    [4.0.2] 2015-12-16

    \n\n
      \n
    • Tweak - Adding better support for non-numeric cost values on events (Props to Mirja for highlighting this!)
    • \n
    • Tweak - Avoid notice level errors when advanced events list widget settings are saved (Thank you Johan for reporting the issue!)
    • \n
    • Tweak - Improve messaging in the same-slug warning message (Thanks to Simon for bringing this to our attention!)
    • \n
    • Tweak - Hook to Event Tickets to inject event dates into ticket emails
    • \n
    • Tweak - Adding better support for default venues (Props to Karly for noting this!)
    • \n
    • Tweak - Improve handling of internationalized slugs (Cheers to Oliver for the help!)
    • \n
    • Fix - Ensure the past events list displays the correct events when accessed via ajax (Thank you Jesse for highlighting this!)
    • \n
    • Fix - Support ordering by venue/organizer within event queries (Thank you Doug for bringing this to our attention!)
    • \n
    • Fix - Fixed issue where events with the same date/time would sometimes be excluded from single-event navigation (Cheers to JeremyEnglert for the tip!)
    • \n
    • Fix - Resolved issue where events set with the explicit cost of 0 were not showing as \"Free\" (Thank you terrizsolo for reporting this!)
    • \n
    • Fix - Fixed bug where the datepicker in Twenty Sixteen was really ugly
    • \n
    • Fix - Fixed bug where using Quick Edit on events caused the table columns in the event list to become jumbled on save (Props to A K for the report!)
    • \n
    • Fix - Resolved bug where category links sometimes included event category 1 (Thank you Anthony for the original report of this problem!)
    • \n
    • Fix - Fixed a settings page URL (Props to Kristy for the heads up!)
    • \n
    \n\n

    [4.0.1] 2015-12-10

    \n\n
      \n
    • Tweak - Add a warning message for major updates
    • \n
    • Tweak - For SEO reasons, use an h1 for the title rather than an h2 (props to wpexplorer for this fix)
    • \n
    • Tweak - Target the calendar view grid in JS using a simpler selector
    • \n
    • Fix - Resolved WP 4.4 related fatal on the Nav Menu page that prevented the admin footer from rendering/enqueuing JS
    • \n
    • Fix - Resolved bug where visiting /events/upcoming could sometimes result in an infinite redirect loop
    • \n
    • Fix - Removed wp_trim_excerpt and use only it\'s powers, fixing the excerpt problem
    • \n
    • Fix - Fixed bug where the mobile calendar view did not display the date for the date being viewed
    • \n
    • Fix - Fixed bug where the admin toolbar\'s Events > Import > CSV did not link to the CSV importer page
    • \n
    • Fix - Fixed issue where the events list in the admin dashboard were not ordered in an intuitive manner
    • \n
    • Fix - Resolved bug where sorting by event category or tag resulted in an error
    • \n
    • Fix - Fixed bug where full event content text was displayed where excerpts should have been displayed
    • \n
    • Fix - Resolved issue where events imported via CSV were excluded from single event navigation
    • \n
    • Fix - Fixed bug where /events/list would sometimes 404 on a new install
    • \n
    • Fix - Resolved bug where multiday all-day events displayed the end date as one day later than it should be when the End of Day Cut-off was set to something other than 12am
    • \n
    • Fix - Timezone handling fixed within generated iCal feeds
    • \n
    \n\n

    [4.0] 2015-12-02

    \n\n
      \n
    • Security - A TON of escaping was added to our codebase thanks to the efforts of the always-helpful Andy Fragen (@afragen)
    • \n
    • Feature - Moved the Ticket framework code into its own plugin (event-tickets)
    • \n
    • Feature - The event cost now supports more international formats with the addition of the tribe_events_cost_separators filter (Thank you remokrol for bringing this to our attention!)
    • \n
    • Feature - Added support for the twentysixteen theme
    • \n
    • Feature - Created a new Add-Ons tab in Settings so that TEC add-ons can have a consolidated settings tab
    • \n
    • Feature - Improve the date formats UI by providing example output for each selected format
    • \n
    • Tweak - Restructured TEC\'s core settings code for reusability with other standalone plugins like Event Tickets
    • \n
    • Tweak - Deprecate old JS event names in favor of a new JS event naming standard. Example: deprecated tribe_ev_runAjax in favor of run-ajax.tribe
    • \n
    • Tweak - Consolidated import pages for TEC and add-ons
    • \n
    • Tweak - When suggesting a UTF-8 compatibility CSV formatting tool, point to one that still exists
    • \n
    • Tweak - Added the ability to filter attendees CSV items via tribe_events_tickets_attendees_csv_items (Props to @bostondv on GitHub for this patch!)
    • \n
    • Tweak - Updated all excerpt output to use tribe_events_get_the_excerpt() to ensure a consistent display of excerpt content (Cheers to Joseph to pointing this out!)
    • \n
    • Tweak - Add support for wp_get_document_title in response to the WordPress 4.4 deprecation of wp_title
    • \n
    • Tweak - Check post creation permissions before letting users create venues and organizers from the event meta box
    • \n
    • Tweak - Only display data separators between fields that have data when rendering organizers (Thank you Bud for highlighting this issue!)
    • \n
    • Tweak - When a user cannot create organizers, prevent the auto-selection of organizers when editing an event
    • \n
    • Tweak - Remove microformat CSS classes from templates and replace with namespaced content-relevant CSS classes
    • \n
    • Tweak - Changed the \"updated\" CSS class to \"tribe-updated\" so that it is properly namespaced (Thank you vijayrajesh!)
    • \n
    • Tweak - The Plugin Update Checker will now auto-save valid plugin keys (Thanks to Denon for originally bringing this up!)
    • \n
    • Tweak - Cleaned up the output of JSON-LD data. Filterable via the new tribe_google_data_markup_json filter
    • \n
    • Tweak - Drop the use of the generic CSS class \"placeholder\" in favor of \"tribe-event-placeholder\" (Thanks to Marc on the forums!)
    • \n
    • Tweak - Adjusted the CSS padding on Admin Menu items for Events
    • \n
    • Tweak - Various codesniffer fixes
    • \n
    • Tweak - tribe_get_venue_link() no longer echoes if you ask it to return an element
    • \n
    • Tweak - Error messages for empty Venue names
    • \n
    • Tweak - Improve our responsiveness for the widget mini calendar, allowing smaller sidebars.
    • \n
    • Tweak - No longer retrieve empty costs when fetching all costs for all events
    • \n
    • Tweak - Change the priority of bootstrapping the-events-calendar to ensure it occurs before any of the TEC addons in the event some addons are upgraded to v4.0 later than TEC
    • \n
    • Tweak - Adjust the logic used for adding a noindex/follow tag to event views
    • \n
    • Tweak - No longer hiding default address fields when default venues are selected when Pro is active
    • \n
    • Fix - Resolved issue where the iCal feed did not provide an appropriately formatted timezone in some cases (Cheers to Matt for the report!)
    • \n
    • Fix - Added support for translating some previously untranslatable strings (Props to tititou36, media325, and Stef!)
    • \n
    • Fix - Prevented duplicate CSS IDs on the mini calendars (Cheers to Corrado for the help!)
    • \n
    • Fix - Fixed bug causing tribe_get_single_ical_link() and tribe_get_ical_link() to use the same URL when it shouldn\'t (Props to Ben Byrne @drywall on Twitter for the heads up!)
    • \n
    • Fix - Fixed issue where the \"Add another organizer\" text wasn\'t using the correct singular label (Thank you MIKE for the report!)
    • \n
    • Fix - Various CSS fixes for twenty(ten-fifteen)
    • \n
    • Fix - Improved our handling of get_current_screen() across the plugin, avoiding notices and warnings (Thank you Mike for the help!)
    • \n
    • Fix - Fixed bug where accessing object properties on a non object errored out when saving event meta (props to @dalethedeveloper on GitHub for this fix!)
    • \n
    • Fix - Fixed bug where organizer ID meta attached sometimes included a blank record. That blank record is no longer returned in tribe_get_organizer_ids()
    • \n
    • Fix - Fixed error message returned when tabbing away from a blank event name meta box so that it properly indicates that an event name is required (Our thanks to @tapan29bd for this fix!)
    • \n
    • Fix - Resolved issue where Timezone event start/end date property name strings were malformed which guaranteed a a call to get_post_meta for Timezone date strings
    • \n
    • Fix - Fixed CSS issue where the month view calendar could sometimes extend beyond the edge of the page when Skeleton Styles were enabled
    • \n
    • Fix - Fixed a problem where iCal data was generated with incorrect dates in the case of some all days events (thanks to Matt for highlighting this)
    • \n
    • Fix - Resolved a problem causing the previous month view to appear when it should not
    • \n
    • Fix - Fixed issue in mobile month view where date was missing from heading
    • \n
    • Fix - Resolved issue that caused /events/ to 404 if it was visited on a new install before hitting \"Save\" on the Events > Settings > Display page
    • \n
    • Deprecated - The Tribe__Events__Main::defaultValueReplaceEnabled() method is being deprecated in favor of tribe_get_option(\'defaultValueReplace\'). Schedules for removal in v4.5
    • \n
    • Deprecated - The tribe_event_link() has been deprecated in favor of tribe_get_event_link(). Scheduled for removal in 5.0
    • \n
    • Deprecated - The third parameter of tribe_get_organizer_link() (the $echo parameter) has been deprecated and is scheduled for removal in 5.0
    • \n
    • Deprecated - Tribe__Events__Abstract_Deactivation in favor of Tribe__Abstract_Deactivation
    • \n
    • Deprecated - Tribe__Events__Admin__Helpers in favor of Tribe__Admin__Helpers
    • \n
    • Deprecated - Tribe__Events__App_Shop in favor of Tribe__App_Shop
    • \n
    • Deprecated - Tribe__Events__Autoloader in favor of Tribe__Autoloader
    • \n
    • Deprecated - Tribe__Events__Cache in favor of Tribe__Cache
    • \n
    • Deprecated - Tribe__Events__Cache_Listener in favor of Tribe__Cache_Listener
    • \n
    • Deprecated - Tribe__Events__Changelog_Reader in favor of Tribe__Changelog_Reader
    • \n
    • Deprecated - Tribe__Events__Credits in favor of Tribe__Credits
    • \n
    • Deprecated - Tribe__Events__Date_Utils in favor of Tribe__Date_Utils
    • \n
    • Deprecated - Tribe__Events__Field in favor of Tribe__Field
    • \n
    • Deprecated - Tribe__Events__Settings in favor of Tribe__Settings
    • \n
    • Deprecated - Tribe__Events__Settings_Tab in favor of Tribe__Settings_Tab
    • \n
    • Deprecated - Tribe__Events__Support in favor of Tribe__Support
    • \n
    • Deprecated - Tribe__Events__Template_Part_Cache in favor of Tribe__Template_Part_Cache
    • \n
    • Deprecated - Tribe__Events__Tickets__Attendees_Table in favor of Tribe__Tickets__Attendees_Table in the event-tickets plugin
    • \n
    • Deprecated - Tribe__Events__Tickets__Metabox in favor of Tribe__Tickets__Metabox in the event-tickets plugin
    • \n
    • Deprecated - Tribe__Events__Tickets__Ticket_Object in favor of Tribe__Tickets__Ticket_Object in the event-tickets plugin
    • \n
    • Deprecated - Tribe__Events__Tickets__Tickets in favor of Tribe__Tickets__Tickets in the event-tickets plugin
    • \n
    • Deprecated - Tribe__Events__Tickets__Tickets_Pro in favor of Tribe__Tickets__Tickets_Handler in the event-tickets plugin
    • \n
    • Deprecated - Tribe__Events__Validate in favor of Tribe__Validate
    • \n
    • Deprecated - Tribe__Events__View_Helpers in favor of Tribe__View_Helpers
    • \n
    • Deprecated - Tribe__Events__Main::OPTIONNAME in favor of Tribe__Main::OPTIONNAME
    • \n
    • Deprecated - Tribe__Events__Main::OPTIONNAMENETWORK in favor of Tribe__Main::OPTIONNAMENETWORK
    • \n
    • Deprecated - Tribe__Events__Main::addHelpAdminMenuItem() in favor of Tribe__Settings_Manager::add_help_admin_menu_item()
    • \n
    • Deprecated - Tribe__Events__Main::addNetworkOptionsPage() in favor of Tribe__Settings_Manager::add_network_options_page()
    • \n
    • Deprecated - Tribe__Events__Main::array_insert_after_key() in favor of Tribe__Main::array_insert_after_key()
    • \n
    • Deprecated - Tribe__Events__Main::array_insert_before_key() in favor of Tribe__Main::array_insert_before_key()
    • \n
    • Deprecated - Tribe__Events__Main::debug() in favor of Tribe__Debug::debug()
    • \n
    • Deprecated - Tribe__Events__Main::defaultValueReplaceEnabled() in favor of tribe_get_option( \'defaultValueReplace\' )
    • \n
    • Deprecated - Tribe__Events__Main::doHelpTab() in favor of Tribe__Settings_Manager::do_help_tab()
    • \n
    • Deprecated - Tribe__Events__Main::doNetworkSettingTab() in favor of Tribe__Settings_Manager::do_network_settings_tab()
    • \n
    • Deprecated - Tribe__Events__Main::doSettingTabs() in favor of Tribe__Settings_Manager::do_setting_tabs()
    • \n
    • Deprecated - Tribe__Events__Main::do_licenses_tab() in favor of Tribe__Settings_Manager::do_licenses_tab()
    • \n
    • Deprecated - Tribe__Events__Main::getNetworkOption() in favor of Tribe__Settings_Manager::get_network_option()
    • \n
    • Deprecated - Tribe__Events__Main::getNetworkOptions() in favor of Tribe__Settings_Manager::get_network_options()
    • \n
    • Deprecated - Tribe__Events__Main::getNotices() in favor of Tribe__Notices::get()
    • \n
    • Deprecated - Tribe__Events__Main::getOption() in favor of Tribe__Settings_Manager::get_option()
    • \n
    • Deprecated - Tribe__Events__Main::getOptions() in favor of Tribe__Settings_Manager::get_options()
    • \n
    • Deprecated - Tribe__Events__Main::have_addons() in favor of Tribe__Settings_Manager::have_addons()
    • \n
    • Deprecated - Tribe__Events__Main::isNotice() in favor of Tribe__Notices::is_notice()
    • \n
    • Deprecated - Tribe__Events__Main::pluginDir in favor of Tribe__Events__Main::plugin_dir
    • \n
    • Deprecated - Tribe__Events__Main::pluginName in favor of Tribe__Events__Main::plugin_name
    • \n
    • Deprecated - Tribe__Events__Main::pluginPath in favor of Tribe__Events__Main::plugin_path
    • \n
    • Deprecated - Tribe__Events__Main::pluginUrl in favor of Tribe__Events__Main::plugin_url
    • \n
    • Deprecated - Tribe__Events__Main::removeNotice() in favor of Tribe__Notices::remove_notice()
    • \n
    • Deprecated - Tribe__Events__Main::renderDebug() in favor of Tribe__Debug::render()
    • \n
    • Deprecated - Tribe__Events__Main::saveAllTabsHidden() in favor of Tribe__Settings_Manager::save_all_tabs_hidden()
    • \n
    • Deprecated - Tribe__Events__Main::setNetworkOptions() in favor of Tribe__Settings_Manager::set_network_options()
    • \n
    • Deprecated - Tribe__Events__Main::setNotice() in favor of Tribe__Notices::set_notice()
    • \n
    • Deprecated - Tribe__Events__Main::truncate() in favor of tribe_events_get_the_excerpt()
    • \n
    • Deprecated - tribe_event_beginning_of_day() in favor of tribe_beginning_of_day()
    • \n
    • Deprecated - tribe_event_end_of_day() in favor of tribe_end_of_day()
    • \n
    • Deprecated - tribe_event_format_date() in favor of tribe_format_date()
    • \n
    • Deprecated - tribe_events_the_notices() in favor of tribe_the_notices()
    • \n
    \n\n

    3.x and previous

    \n\n

    For release notes from the 3.x and older lifecycles, see our full historical release notes.

    ','The Events Calendar','The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome.','publish','closed','closed','','the-events-calendar','','','2017-03-23 21:32:11','2017-03-23 21:32:11','',0,'https://wordpress.org/plugins-wp/the-events-calendar/',0,'plugin','',0), (205,149916,'2010-02-26 09:46:56','2010-02-26 09:46:56','\n

    Add a maintenance page to your blog that lets visitors know your blog is down for maintenance, or add a coming soon page for a new website. User with admin rights gets full access to the blog including the front end.

    \n\n

    Activate the plugin and your blog is in maintenance-mode, works and only registered users with enough rights can see the front end. You can use a date with a countdown timer for visitor information or set a value and unit for information. \nAlso works with WordPress Multisite installs (each blog from the network has it\'s own maintenance settings).

    \n\n

    Features

    \n\n
      \n
    • Fully customizable (change colors, texts and backgrounds);
    • \n
    • Subscription form (export emails to .csv file);
    • \n
    • Countdown timer (remaining time);
    • \n
    • Contact form (receive emails from visitors);
    • \n
    • Coming soon page;
    • \n
    • Landing page templates;
    • \n
    • WordPress multisite;
    • \n
    • Responsive design;
    • \n
    • Social media icons;
    • \n
    • Works with any WordPress theme;
    • \n
    • SEO options;
    • \n
    • Exclude URLs from maintenance.
    • \n
    \n\n

    Bugs, technical hints or contribute

    \n\n

    Please give us feedback, contribute and file technical bugs on GitHub Repo.

    \n\n

    Credits

    \n\n

    Developed by Designmodo & StrictThemes ? WordPress Themes

    \n\n\n
      \n
    1. Unpack the download package
    2. \n
    3. Upload all files to the /wp-content/plugins/ directory, include folders
    4. \n
    5. Activate the plugin through the \'Plugins\' menu in WordPress
    6. \n
    7. Go to Settings page, where you can change what settings you need (pay attention to Exclude option!)
    8. \n
    \n\n\n
    \n
    How to use plugin filters
    \n

    See [GitHub Repo] (https://github.com/Designmodocom/WP-Maintenance-Mode) FAQ.

    \n
    Cache Plugin Support
    \n

    WP Maintenance Mode can be unstable due the cache plugins, we recommend to deactivate any cache plugin when maintenance mode is active.

    \n
    Exclude list
    \n

    If you change your login url, please add the new slug (url: http://domain.com/newlogin, then you should add: newlogin) to Exclude list from plugin settings -> General Tab.

    \n\n
    \n\n\n

    2.0.9 (29/11/2016)

    \n\n
      \n
    • new hook (wpmm_after_body) in maintenance mode template (thanks @ Karolína Vysko?ilová)
    • \n
    • pt_PT (portuguese) language update (thanks @ Pedro Mendonça)
    • \n
    • maintenance mode template can also be loaded from theme/child-theme folder (thanks @ Florian Tiar and Lachlan Heywood)
    • \n
    • new hooks for contact form (if you want to add new fields): wpmm_contact_form_start, wpmm_contact_form_before_message, wpmm_contact_form_after_message, wpmm_contact_form_end
    • \n
    • new hook for contact form validation (if you want to validate new fields): wpmm_contact_validation
    • \n
    • new hooks for contact form template (if you want to display new fields): wpmm_contact_template_start, wpmm_contact_template_before_message, wpmm_contact_template_after_message, wpmm_contact_template_end
    • \n
    • some javascript improvements
    • \n
    • small css fix for contact form (thanks @ frontenddev)
    • \n
    \n\n

    2.0.8 (09/09/2016)

    \n\n
      \n
    • add wp_scripts() function (in helpers.php) to maintain backward compatibility (for those with WP < 4.2.0)
    • \n
    • css fix for subscribe button on maintenance page
    • \n
    • fix multisite administrator access issue
    • \n
    • pt_PT (portuguese) language update (thanks @ Pedro Mendonça)
    • \n
    • new hooks for Contact module: wpmm_contact_template, wpmm_contact_subject, wpmm_contact_headers
    • \n
    • jQuery (google cdn) path fix when SCRIPT_DEBUG is true
    • \n
    \n\n

    2.0.7 (06/07/2016)

    \n\n
      \n
    • reset_settings _wpnonce check (thanks # Wordfence)
    • \n
    • modules > google analytics code sanitization (thanks @ Wordfence)
    • \n
    • move sidebar banners from our servers to plugin folder... as WordPress staff requested
    • \n
    • Subscribe button error on Mobile version (thanks @ Hostílio Thumbo)
    • \n
    • replace $wp_scripts global with wp_scripts() function
    • \n
    • de_DE language file update (thanks @ tt22tt)
    • \n
    \n\n

    2.0.6 (20/06/2016)

    \n\n
      \n
    • notifications update
    • \n
    • languages update
    • \n
    \n\n

    2.0.5 (17/06/2016)

    \n\n
      \n
    • roles (array) fix
    • \n
    \n\n

    2.0.4 (17/06/2016)

    \n\n
      \n
    • fixed issue: responsive subscribe form
    • \n
    • fixed issue: jQuery was loaded from a different folder on some WP installations
    • \n
    • fixed issue: errors after update (strstr on empty strings because of saving empty lines on exclude list)
    • \n
    • fixed issue: if \"Redirection\" from \"General\" tab is active, also redirects ajax calls
    • \n
    • fixed issue: settings page title was wrong placed
    • \n
    • \"contact\" feature update - nice email template + reply-to email header
    • \n
    • refactoring for some methods
    • \n
    • all assets are now minified
    • \n
    • rewrite count db records function (used on subscribers count)
    • \n
    • compatible with https://github.com/afragen/github-updater
    • \n
    • compatible with wp-cli http://wp-cli.org/
    • \n
    • improved responsivity
    • \n
    • improved roles access; now you can set multiple roles (editor, author, subscriber, contributor) and administrator will always have access to backend and frontend
    • \n
    • it_IT translation by benedettogit (https://github.com/benedettogit)
    • \n
    • updated all language files (need help for 100% translation)
    • \n
    \n\n

    2.0.3 (07/10/2014)

    \n\n
      \n
    • WP_Super_Cache issue was fixed
    • \n
    • fixed \"Subscribe\" button issue on Safari mobile
    • \n
    • fixed color of subscribe-success message (same color as subscribe_text)
    • \n
    • \"Social networks\" module edits: settings for links target + a new social network: linkedin
    • \n
    • new module \"Google Analytics\"
    • \n
    • loginform shortcode reintroduced
    • \n
    • dashboard link on maintenance page reintroduced
    • \n
    • the content editor accepts new css inline properties: min-height, max-height, min-width, max-width. Use them wisely! :)
    • \n
    • Settings & sidebar view + old translation files edited
    • \n
    • Update from old version 1.x to 2.x issue was fixed
    • \n
    • Translate on activation issue was fixed
    • \n
    • de_DE translation by Frank Bültge (http://bueltge.github.io/)
    • \n
    • pt_PT translation (100% translated) by Pedro Mendonça (http://www.pedromendonca.pt)
    • \n
    • ru_RU translation (100% translated) by affectiosus (https://github.com/affectiosus)
    • \n
    • nl_NL translation by dhunink (https://github.com/dhunink)
    • \n
    • es_ES translation (100% translated) by Erick Ruiz de Chavez (http://erickruizdechavez.com/)
    • \n
    • fr_FR translation by Florian TIAR (https://github.com/Mahjouba91)
    • \n
    • pt_BR translation by Jonatas Araújo (http://www.designworld.com.br/)
    • \n
    • sv_SE translation by Andréas Lundgren (http://adevade.com/)
    • \n
    \n\n

    2.0.2 (04/09/2014)

    \n\n
      \n
    • Removed \"Author Link\" option from General
    • \n
    • Countdown - save details fix
    • \n
    \n\n

    2.0.1 (02/09/2014)

    \n\n
      \n
    • Reintroduced some deprecated actions from old version (but still available in next 4 releases, after that will be removed) and replaced with new ones:
    • \n
    • wm_head -> wpmm_head
    • \n
    • wm_footer -> wpmm_footer
    • \n
    • Multisite settings link fix
    • \n
    • WP_Maintenance_Mode: init (array checking for custom_css arrays, move delete cache part into a helper, etc.), add_subscriber, send_contact, redirect fixes & optimizations
    • \n
    • WP_Maintenance_Mode_Admin: save_plugin_settings fixes, delete_cache (new method)
    • \n
    • Settings & Maintenance views fixes
    • \n
    • Readme.txt changes
    • \n
    \n\n

    2.0.0 (01/09/2014)

    \n\n
      \n
    • Changed design and functionality, new features
    • \n
    • Changed multisite behaviour: now you can activate maintenance individually (each blog from the network has it\'s own maintenance settings)
    • \n
    • Removed actions: wm_header, wm_footer, wm_content
    • \n
    • Removed filters: wm_header
    • \n
    • Removed [loginform] shortcode
    • \n
    • Some filters are deprecated (but still available in next 4 releases, after that will be removed) and replaced with new ones:
    • \n
    • wm_heading -> wpmm_heading,
    • \n
    • wp_maintenance_mode_status_code -> wpmm_status_code
    • \n
    • wm_title -> wpmm_meta_title
    • \n
    • wm_meta_author -> wpmm_meta_author
    • \n
    • wm_meta_description -> wpmm_meta_description
    • \n
    • wm_meta_keywords -> wpmm_meta_keywords
    • \n
    • Added new filters:
    • \n
    • wpmm_backtime - can be used to change the backtime from page header
    • \n
    • wpmm_meta_robots - can be used to change Robots Meta Tag option (from General)
    • \n
    • wpmm_text - can be used to change Text option (from Design > Content)
    • \n
    • wpmm_scripts - can be used to embed new javascripts files
    • \n
    • wpmm_styles - can be used to embed new css files
    • \n
    • wpmm_search_bots - if you have Bypass for Search Bots option (from General) activated, it can be used to add new bots (useragents)
    • \n
    • Removed themes and now we have a \"Design\" & \"Modules\" tabs, where the look and functionality of the maintenance page can be changed as you need
    • \n
    \n\n

    07/07/2014

    \n\n
      \n
    • Switch to new owner, contributor
    • \n
    \n\n

    1.8.11 (07/25/2013)

    \n\n
      \n
    • Fixes for php notices in scrict mode
    • \n
    • Alternative for check url, if curl is not installed
    • \n
    \n\n

    1.8.10 (07/18/2013)

    \n\n
      \n
    • Add check for urls, Performance topics
    • \n
    • Change default setting of \'Support Link\' to false
    • \n
    • Fix network settings php notices
    • \n
    \n\n

    1.8.9 (06/20/2013)

    \n\n
      \n
    • Allow empty header, title, heading string
    • \n
    • Small code changes
    • \n
    • Add Support function
    • \n
    • Remove preview, will include later in a new release with extra settings page
    • \n
    \n\n

    1.8.8 (06/05/2013)

    \n\n
      \n
    • Fix path to localized flash content
    • \n
    • Fix preview function
    • \n
    • Add ukrainian translation
    • \n
    • Add czech translation
    • \n
    • Fix exclude function for IP
    • \n
    • Security fix for save status via Ajax
    • \n
    \n\n

    1.8.7 (04/07/2013)

    \n\n
      \n
    • Add RTL support for splash page
    • \n
    • Add Filter Hook wp_maintenance_mode_status_code Status Code; default is 503
    • \n
    • Add support for custom splash page; leave a file with this name wp-maintenance-mode.php in the wp-content; the plugin use this file\nThe plugin checks in WP_CONTENT_DIR . \'/wp-maintenance-mode.php\'
    • \n
    • Small minor changes
    • \n
    • Add filter for more date on splash page
    • \n
    \n\n

    1.8.6 (02/22/2013)

    \n\n
      \n
    • Remove log inside console for JS
    • \n
    • Add support for time inside the countdown
    • \n
    • Add filter hook wm_meta_authorfor the meta data author
    • \n
    • Add filter hook wm_meta_description for custom description
    • \n
    • Add filter hook wm_meta_keywordsfor custom meta keys
    • \n
    \n\n

    1.8.5 (01/24/2013)

    \n\n
      \n
    • Added new settings for hide, view notices about the active maintenance mode
    • \n
    • Changes on source, codex
    • \n
    • Fix PHP Notices Support Thread
    • \n
    • Change default settings, added ajax
    • \n
    • Fix Preview function
    • \n
    • Fix uninstall in WPMU
    • \n
    • Small updates on styles for login form
    • \n
    \n\n

    1.8.4 (12/06/2012)

    \n\n
      \n
    • Fix for include JS in frontend to use countdown
    • \n
    • Small mini fix for a php notice
    • \n
    • Add charset on spalsh page for strange databases
    • \n
    • Enhanced default exclude adresses
    • \n
    • Add shortcode [loginform] for easy use a login form in splash page
    • \n
    • Test with WordPress 3.5
    • \n
    \n\n

    1.8.3

    \n\n
      \n
    • Fix for the forgotten update of JS-files; slow SVN :(
    • \n
    • Minor Fixes
    • \n
    \n\n

    1.8.2

    \n\n
      \n
    • Add different access for Frontend and Backend
    • \n
    • Add Rewrite after Login for Frontend Access
    • \n
    • Different small changes
    • \n
    • Test for WP 3.5
    • \n
    \n\n

    1.8.1

    \n\n
      \n
    • Add option for value of robots meta tag
    • \n
    • Add option for optional admin login
    • \n
    \n\n

    1.8.0

    \n\n
      \n
    • Include all scripts in backend via function
    • \n
    • Update datepicker and countdown js
    • \n
    • Supportet IP as exclude for see the frontend
    • \n
    • Add support for flish cache od WP Super Cache and W3 Total Cache plugins
    • \n
    • Fix for changes in WP 3.3 Multisite
    • \n
    \n\n

    1.7.1 (12/05/2011)

    \n\n
      \n
    • fix for WP smaller 3.2* on Network
    • \n
    \n\n

    1.7.0 (12/02/2011)

    \n\n
      \n
    • add functionalities to use in WP Multisite
    • \n
    • remove message in header, current is not fixed the ticked in core and the message on Admin Bar an Notice is enough
    • \n
    • check on WP 3.3RC1
    • \n
    \n\n

    1.6.10 (08/30/2011)

    \n\n
      \n
    • add hint in Admin Bar, if active
    • \n
    • small changes for WP Codex
    • \n
    \n\n

    1.6.9 (06/13/2011)

    \n\n
      \n
    • Small fix for empty string on custom design
    • \n
    \n\n

    1.6.8 (04/05/2011)

    \n\n
      \n
    • Small changes on check for datepicker
    • \n
    • Fix for Design monster
    • \n
    \n\n

    1.6.7 (01/05/2011)

    \n\n
      \n
    • Bugfix: new check for files for different themes; hope this fix the server errors
    • \n
    • Bugfix: fix add default settings
    • \n
    • Maintenance: different changes on the syntax
    • \n
    • Feature: add check for Super Admin on WP Multisite; has allways the rights for access
    • \n
    • Feature: now it is possible to exclude feed from maintenance mode
    • \n
    • Maintenance: check with 3.0.4 and 3.1-RC2
    • \n
    • Maintenance: update language file: .pot, de_DE
    • \n
    • Bugfix: JavaScript error on Bulk Actions on plugins fixed
    • \n
    • Maintenance: fix all notice, if set no values
    • \n
    \n\n

    1.6.6. (10/09/2010)

    \n\n
      \n
    • Maintenance: many changes on the code; $locale and hook in side frontend
    • \n
    • Maintenance: change attribute_escaped to esc_attr with custom method for WP smaller 2.8
    • \n
    • Maintenance: Update german language files
    • \n
    • Feature: Shortcodes is now possible in the \"Text\" option
    • \n
    • Feature: no cache header rewrite
    • \n
    \n\n

    1.6.5 (09/16/2010)

    \n\n
      \n
    • add new design \"Chemistry\" by elmastudio.de
    • \n
    • changes for include methods od class for preview
    • \n
    • changes the possibility for include of language specific flash files
    • \n
    \n\n

    1.6.4 (09/13/2010)

    \n\n
      \n
    • add preview functions
    • \n
    • bugfix for list in wp-admin/plugins.php
    • \n
    • remove datepicker.regional - dont work fine
    • \n
    • different small changes
    • \n
    • new language file .pot
    • \n
    • add flash file and change on plugin for style \"Animate\" for spanish language
    • \n
    \n\n

    1.6.3 (07/27/2010)

    \n\n
      \n
    • bugfix to include stylesheet on maintenance mode message
    • \n
    \n\n

    1.6.2 (07/08/2010)

    \n\n
      \n
    • add functions for hint in the new UI of WP 3.0
    • \n
    • add more WP Codex standard source
    • \n
    • fix strings in the language and languages files
    • \n
    • add datetimepicker-de
    • \n
    \n\n

    1.6.1 (06/18/2010)

    \n\n\n\n

    1.6 (05/17/2010)

    \n\n
      \n
    • bugfix for exclude sites
    • \n
    \n\n

    1.5.9 (05/07/2010)

    \n\n
      \n
    • change different points
    • \n
    • add possibility to wotk with MySQLDumper
    • \n
    \n\n

    = 1.5.8 (21/03/2010)=\n* fix exclude error\n* add textareas for heading and header fields

    \n\n

    1.5.7 (03/18/2010)

    \n\n
      \n
    • block admin-area via role
    • \n
    • add message for registered users with not enough rights
    • \n
    • add message on login-page
    • \n
    • different changes
    • \n
    \n\n

    1.5.6 (02/25/2010)

    \n\n
      \n
    • changes on css, site.php and different syntax on the plugin
    • \n
    \n\n

    1.5.5 (02/23/2010)

    \n\n
      \n
    • SORRY, small bug for the url to jQuery
    • \n
    \n\n

    1.5.4 (02/23/2010)

    \n\n
      \n
    • add time for countdown
    • \n
    • changes for WP 3.0
    • \n
    • changees on rights to see frontend
    • \n
    \n\n

    1.5.3 (01/05/2010)

    \n\n
      \n
    • Fix for JavaScript with WordPress 2.9
    • \n
    • Add new custom fields for fronted: title, header, heading
    • \n
    • Fix for setting userrole to see frontend
    • \n
    • Change laguage files
    • \n
    \n\n

    1.5.2 (01/04/2010)

    \n\n
      \n
    • add user-role setting
    • \n
    • correctly the de_DE language file
    • \n
    \n\n

    1.5.1 (10/04/2009)

    \n\n
      \n
    • add small fix
    • \n
    • add language files (en_ES, ro_RO)
    • \n
    \n\n

    1.5.0 (09/28/2009)

    \n\n
      \n
    • add countdown
    • \n
    • change options
    • \n
    • change default options
    • \n
    • add field for own adress to excerpt of the maintenance mode
    • \n
    • etc.
    • \n
    \n\n

    1.4.9 (07/09/2009)

    \n\n
      \n
    • also ready for WordPress 2.6
    • \n
    • add romanian language files
    • \n
    • add italian language file by Gianni Diurno
    • \n
    \n\n

    1.4.8 (03/09/2009)

    \n\n\n\n

    1.4.7 (26/08/2009)

    \n\n
      \n
    • change doc-type to utf-8 without BOM
    • \n
    \n\n

    v1.4.6 (24/08/2009)

    \n\n
      \n
    • add design \"Animate (Flash)\" by Sebastian Schmiedel
    • \n
    • add new hook for add content wm_content to include flash on content
    • \n
    • add frensh language files
    • \n
    \n\n

    v1.4.5 (19/08/2009)

    \n\n
      \n
    • fix html string in text on frontend
    • \n
    • add design \"Paint\" by Marvin Labod
    • \n
    • add turkey language files
    • \n
    \n\n

    v1.4.4 (18/08/2009)

    \n\n\n\n

    v1.4.3 (13/08/2009)

    \n\n
      \n
    • add option for the Text
    • \n
    • add option for active maintenance mode
    • \n
    • add design \"The FF Error\" by Thomas Meschke
    • \n
    • add design \"Monster\" by Sebastian Sebald
    • \n
    \n\n

    v1.4.2 (10/08/2009)

    \n\n
      \n
    • add design \"The Sun\" by Nicki Steiger
    • \n
    • now it is possible to add own css and add in settings the url to the css-file
    • \n
    \n\n

    v1.4.1 (07/08/2009)

    \n\n
      \n
    • small html-fix
    • \n
    \n\n

    v1.4 (06/08/2009)

    \n\n','WP Maintenance Mode','Adds a splash page to your site that lets visitors know your site is down for maintenance. It's perfect for a coming soon page.','publish','closed','closed','','wp-maintenance-mode','','','2016-12-07 00:25:17','2016-12-07 00:25:17','',0,'https://wordpress.org/plugins-wp/wp-maintenance-mode/',0,'plugin','',0), (208,1257425,'2013-06-03 04:18:47','2013-06-03 04:18:47','\n

    A COMPREHENSIVE, EASY TO USE, STABLE AND WELL SUPPORTED WORDPRESS SECURITY PLUGIN

    \n\n

    WordPress itself is a very secure platform. However, it helps to add some extra security and firewall to your site by using a security plugin that enforces a lot of good security practices.

    \n\n

    The All In One WordPress Security plugin will take your website security to a whole new level.

    \n\n

    This plugin is designed and written by experts and is easy to use and understand.

    \n\n

    It reduces security risk by checking for vulnerabilities, and by implementing and enforcing the latest recommended WordPress security practices and techniques.

    \n\n

    https://www.youtube.com/watch?v=CJvCTlVtazA

    \n\n

    All In One WP Security also uses an unprecedented security points grading system to measure how well you are protecting your site based on the security features you have activated.

    \n\n

    Our security and firewall rules are categorized into \"basic\", \"intermediate\" and \"advanced\". This way you can apply the firewall rules progressively without breaking your site\'s functionality.

    \n\n

    The All In One WordPress Security plugin doesn\'t slow down your site and it is 100% free.

    \n\n

    Visit the WordPress Security Plugin page for more details.

    \n\n

    Below is a list of the security and firewall features offered in this plugin:

    \n\n

    User Accounts Security

    \n\n
      \n
    • Detect if there is a user account which has the default \"admin\" username and easily change the username to a value of your choice.
    • \n
    • The plugin will also detect if you have any WordPress user accounts which have identical login and display names. Having account\'s where display name is identical to login name is bad security practice because \nyou are making it 50% easier for hackers because they already know the login name.
    • \n
    • Password strength tool to allow you to create very strong passwords.
    • \n
    • Stop user enumeration. So users/bots cannot discover user info via author permalink.
    • \n
    \n\n

    User Login Security

    \n\n
      \n
    • Protect against \"Brute Force Login Attack\" with the Login Lockdown feature. Users with a certain IP address or range will be locked out of the system for a predetermined amount of time based on the configuration settings and you can also choose to be notified \nvia email whenever somebody gets locked out due to too many login attempts.

    • \n
    • As the administrator you can view a list of all locked out users which are displayed in an easily readable and navigable table which also allows you to unlock individual or bulk IP addresses at the click of a button.

    • \n
    • Force logout of all users after a configurable time period
    • \n
    • Monitor/View failed login attempts which show the user\'s IP address, User ID/Username and Date/Time of the failed login attempt

    • \n
    • Monitor/View the account activity of all user accounts on your system by keeping track of the username, IP address, login date/time, and logout date/time.

    • \n
    • Ability to automatically lockout IP address ranges which attempt to login with an invalid username.
    • \n
    • Ability to see a list of all the users who are currently logged into your site.
    • \n
    • Allows you to specify one or more IP addresses in a special whitelist. The whitelisted IP addresses will have access to your WP login page.
    • \n
    • Add captcha to WordPress Login form.
    • \n
    • Add captcha to the forgot password form of your WP Login system.
    • \n
    \n\n

    User Registration Security

    \n\n
      \n
    • Enable manual approval of WordPress user accounts. If your site allows people to create their own accounts via the WordPress registration form, then you can minimize SPAM or bogus registrations by manually approving each registration.
    • \n
    • Ability to add captcha to the WordPress\'s user registration page to protect you from spam user registration.
    • \n
    • Ability to add Honeypot to the WordPress\'s user registration form to reduce registration attempts by robots.
    • \n
    \n\n

    Database Security

    \n\n
      \n
    • Easily set the default WP prefix to a value of your choice with the click of a button.
    • \n
    • Schedule automatic backups and email notifications or make an instant DB backup whenever you want with one click.
    • \n
    \n\n

    File System Security

    \n\n
      \n
    • Identify files or folders which have permission settings which are not secure and set the permissions to the recommend secure values with click of a button.
    • \n
    • Protect your PHP code by disabling file editing from the WordPress administration area.
    • \n
    • Easily view and monitor all host system logs from a single menu page and stay informed of any issues or problems occurring on your server so you can address them quickly.
    • \n
    • Prevent people from accessing the readme.html, license.txt and wp-config-sample.php files of your WordPress site.
    • \n
    \n\n

    htaccess and wp-config.php File Backup and Restore

    \n\n
      \n
    • Easily backup your original .htaccess and wp-config.php files in case you will need to use them to restore broken functionality.
    • \n
    • Modify the contents of the currently active .htaccess or wp-config.php files from the admin dashboard with only a few clicks
    • \n
    \n\n

    Blacklist Functionality

    \n\n
      \n
    • Ban users by specifying IP addresses or use a wild card to specify IP ranges.
    • \n
    • Ban users by specifying user agents.
    • \n
    \n\n

    Firewall Functionality

    \n\n

    This plugin allows you to easily add a lot of firewall protection to your site via htaccess file. An htaccess file is processed by your web server before any other code on your site. \nSo these firewall rules will stop malicious script(s) before it gets a chance to reach the WordPress code on your site.

    \n\n
      \n
    • Access control facility.
    • \n
    • Instantly activate a selection of firewall settings ranging from basic, intermediate and advanced.
    • \n
    • Enable the famous \"5G Blacklist\" Firewall rules courtesy of Perishable Press
    • \n
    • Forbid proxy comment posting.
    • \n
    • Block access to debug log file.
    • \n
    • Disable trace and track.
    • \n
    • Deny bad or malicious query strings.
    • \n
    • Protect against Cross Site Scripting (XSS) by activating the comprehensive advanced character string filter.\nor malicious bots who do not have a special cookie in their browser. You (the site admin) will know how to set this special cookie and be able to log into your site.
    • \n
    • WordPress PingBack Vulnerability Protection feature. This firewall feature allows the user to prohibit access to the xmlrpc.php file in order to protect against certain vulnerabilities in the pingback functionality. This is also helpful to block bots from constantly accessing the xmlrpc.php file and wasting your server resource.
    • \n
    • Ability to block fake Googlebots from crawling your site.
    • \n
    • Ability to prevent image hotlinking. Use this to prevent others from hotlinking your images.
    • \n
    • Ability to log all 404 events on your site. You can also choose to automatically block IP addresses that are hitting too many 404s.
    • \n
    • Ability to add custom rules to block access to various resources of your site.
    • \n
    \n\n

    Brute force login attack prevention

    \n\n
      \n
    • Instantly block Brute Force Login Attacks via our special Cookie-Based Brute Force Login Prevention feature. This firewall functionality will block all login attempts from people and bots.
    • \n
    • Ability to add a simple math captcha to the WordPress login form to fight against brute force login attacks.
    • \n
    • Ability to hide admin login page. Rename your WordPress login page URL so that bots and hackers cannot access your real WordPress login URL. This feature allows you to change the default login page (wp-login.php) to something you configure.
    • \n
    • Ability to use Login Honeypot which will helps reduce brute force login attempts by robots.
    • \n
    \n\n

    WhoIs Lookup

    \n\n
      \n
    • Perform a WhoIs lookup of a suspicious host or IP address and get full details.
    • \n
    \n\n

    Security Scanner

    \n\n
      \n
    • The file change detection scanner can alert you if any files have changed in your WordPress system. You can then investigate and see if that was a legitimate change or some bad code was injected.
    • \n
    • Database scanner feature can be used to scan your database tables. It will look for any common suspicious-looking strings, javascript and html code in some of the WordPress core tables.
    • \n
    \n\n

    Comment SPAM Security

    \n\n
      \n
    • Monitor the most active IP addresses which persistently produce the most SPAM comments and instantly block them with the click of a button.
    • \n
    • Prevent comments from being submitted if it doesn\'t originate from your domain (this should reduce some SPAM bot comment posting on your site).
    • \n
    • Add a captcha to your wordpress comment form to add security against comment spam.
    • \n
    • Automatically and permanently block IP addresses which have exceeded a certain number of comments labeled as SPAM.
    • \n
    \n\n

    Front-end Text Copy Protection

    \n\n
      \n
    • Ability to disable the right click, text selection and copy option for your front-end.
    • \n
    \n\n

    Regular updates and additions of new security features

    \n\n
      \n
    • WordPress Security is something that evolves over time. We will be updating the All In One WP Security plugin with new security features (and fixes if required) on a regular basis so you can rest assured that your site will be on the cutting edge of security protection techniques.
    • \n
    \n\n

    Works with Most Popular WordPress Plugins

    \n\n
      \n
    • It should work smoothly with most popular WordPress plugins.
    • \n
    \n\n

    Additional Features

    \n\n
      \n
    • Ability to remove the WordPress Generator Meta information from the HTML source of your site.
    • \n
    • Ability to remove the WordPress Version information from the JS and CSS file includes of your site.
    • \n
    • Ability to prevent people from accessing the readme.html, license.txt and wp-config-sample.php files
    • \n
    • Ability to temporarily lock down the front end of your site from general visitors while you do various backend tasks (investigate security attacks, perform site upgrades, do maintenance work etc.)
    • \n
    • Ability to export/import the security settings.
    • \n
    • Prevent other sites from displaying your content via a frame or iframe.
    • \n
    \n\n

    Plugin Support

    \n\n
      \n
    • If you have a question or problem with the All In One Security plugin, post it on the support forum and we will help you.
    • \n
    \n\n

    Developers

    \n\n
      \n
    • If you are a developer and you need some extra hooks or filters for this plugin then let us know.
    • \n
    • Github repository - https://github.com/Arsenal21/all-in-one-wordpress-security
    • \n
    \n\n

    Translations

    \n\n
      \n
    • All In One WP Security plugin can be translated to any language.
    • \n
    \n\n

    Currently available translations:

    \n\n
      \n
    • English
    • \n
    • German
    • \n
    • Spanish
    • \n
    • French
    • \n
    • Hungarian
    • \n
    • Italian
    • \n
    • Swedish
    • \n
    • Russian
    • \n
    • Chinese
    • \n
    • Portuguese (Brazil)
    • \n
    • Persian
    • \n
    \n\n

    Visit the WordPress Security Plugin page for more details.

    \n\n

    Usage

    \n\n

    Go to the settings menu after you activate the plugin and follow the instructions.

    \n\n\n

    To begin making your WordPress site more secure:

    \n\n
      \n
    1. Upload the \'all-in-one-wp-security.zip\' file from the Plugins->Add New page in the WordPress administration panel.
    2. \n
    3. Activate the plugin through the \'Plugins\' menu in WordPress
    4. \n
    5. Go to Settings menu under \'WP Security\' and start activating the security features of the plugin.
    6. \n
    \n\n\n

    Check the following page for F.A.Q (see the faq section):\nhttps://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin

    \n\n\n

    4.2.6

    \n\n
      \n
    • Added new Login Lockdown whitelist feature which allows immunity for IP address or ranges from being locked by the lockdown feature.
    • \n
    • Fixed bug - Replaced date_i18n with current_time to prevent cases where some localizations produce foreign characters in date stamp output.
    • \n
    • Added a new feature to add Honeypot to the WordPress\'s user registration form (this can help reduce registration attempts by robots).
    • \n
    • Added \"Export to CSV\" buttons for 404 Event Logs, Account Activity Logs and Failed Login Records.
    • \n
    • Minor update to 6G rules.
    • \n
    • Minor spelling and wording fixes and changes.
    • \n
    \n\n

    4.2.5

    \n\n
      \n
    • Fixed bug - added code which caters for mysql view definitions when DB prefix is changed.
    • \n
    • Fixed a typo in the user login security menu.
    • \n
    • Fixed storage of time stamp in lockdown table to match the local Wordpress server time and be consistent with the timestamp stored in the failed logins table.
    • \n
    • Prevent direct access to wp-security-core.php
    • \n
    • Updated the POT file.
    • \n
    \n\n

    4.2.4

    \n\n
      \n
    • Fix error on block_ip_if_locked(), doesn\'t exit with a wp_user. This is needed for other plugins that create the $user (aka ldap auth plugins).
    • \n
    • Fix login error message for users with pending account approval.
    • \n
    • Wordpress 4.7 compatibility.
    • \n
    \n\n

    4.2.3

    \n\n
      \n
    • Fixed bug when math captcha was displayed on Woocommerce registration page.
    • \n
    • Fixed login page bug for cases where email address and captcha are used to submit login form (thanks to @chesio for fix).
    • \n
    • Logs directory now contains a .htaccess file with proper deny directives.
    • \n
    • Small UX improvement: add for attribute to captcha label.
    • \n
    • Added check for IIS server in get_server_type function.
    • \n
    \n\n

    4.2.2

    \n\n
      \n
    • Debug logger class improvements.
    • \n
    • Added a message in the debug settings area to state that the log files are reset on every plugin update.
    • \n
    • Always return an array from scan_dir_sort_date() to prevent PHP notices.
    • \n
    • Improvements for Automated DB backups filling up space - old backup file will be deleted first.
    • \n
    • Thanks to RIPS Analyzer for sending us the vulnerability report.
    • \n
    \n\n

    4.2.1

    \n\n
      \n
    • Improve output of .htaccess to include checks and RewriteEngine On directives.
    • \n
    • Fall back to default DB backup interval in case of invalid value.
    • \n
    • The aiowps_delete_backup_files() function will produce a debug log message on every call (to help with troubleshooting when needed).
    • \n
    \n\n

    4.2.0

    \n\n
      \n
    • WPML plugin compatibility fix for the renamed admin login page feature.
    • \n
    • Fixed a few potential XSS vulnerabilities.
    • \n
    \n\n

    4.1.9

    \n\n
      \n
    • Small improvement to the new \"immediate blocking of specific usernames\" feature.
    • \n
    \n\n

    4.1.8

    \n\n
      \n
    • New feature to allow immediate blocking of specific usernames.
    • \n
    • Only activate copy (right-click) protection for non-admin users.
    • \n
    • Fixed bug where logout link in admin bar does not get updated on after the $_POST submit to reflect the new rename login setting.
    • \n
    • Fixed small bug in return_regularized_url function.
    • \n
    • Improvement/bug fix: When currently logged in user attempts to access renamed login page, redirect them to dashboard.
    • \n
    • Removed Spanish language files so they can be automatically pulled from WordPress.org.
    • \n
    • Drop unnecessary WHERE clause in some backend listings.
    • \n
    • Improvement: do not schedule a cronjob, if it is already scheduled.
    • \n
    \n\n

    4.1.7

    \n\n
      \n
    • Added sanitisation for log file data in textarea.
    • \n
    • Disabled autocomplete for Captcha field.
    • \n
    \n\n

    4.1.6

    \n\n
      \n
    • Added cleanup code for captcha string info transients.
    • \n
    • Minor change to the username label in the renamed login page to keep it inline with the standard WordPress login page.
    • \n
    • Fixed a potential vulnerability when viewing AIOWPS log files in the Dashboard menu. Thanks to Manuel LLOP for pointing this out.
    • \n
    \n\n

    4.1.5

    \n\n
      \n
    • Fixed bug where username is an email and captcha was being ignored.
    • \n
    • Reduce memory footprint of database backup.
    • \n
    • Improvements: Make hard-coded strings localizable.
    • \n
    • Partial Apache 2.3 compatibility.
    • \n
    • Improved: Hide WP version number by replacing it with a hash. This way, WordPress version number is not exposed, but browser caching is not obscured by missing version numbers.
    • \n
    \n\n

    4.1.4

    \n\n
      \n
    • Improved and tweaked the login captcha feature to avoid some issues people had with the last modification.
    • \n
    • Deleted reference to ini_get(\'safe_mode\') to avoid fatal errors for newer versions of PHP where that setting has been totally removed.
    • \n
    \n\n

    4.1.3

    \n\n
      \n
    • Added new checkbox for XMLRPC to disable only pingback methods but leave other XMLRPC functionality accessible. This will be useful for people who use Jetpack or Wordpress iOS or other apps.
    • \n
    • Updated the French language file.
    • \n
    • Fix: decbin doesn\'t add leading zero. Comparing empty strings return bad results.
    • \n
    • Fix: bugfix in the login captcha. Thanks to Sipke Mellema for pointing it out.
    • \n
    \n\n

    4.1.2

    \n\n
      \n
    • Fixed bug introduced by last file change scanner code changes.
    • \n
    • Fixed bug in SPAM comment blocking functionality.
    • \n
    • Fixed fatal error case when Divi theme and front end lockout is enabled.
    • \n
    \n\n

    4.1.1

    \n\n
      \n
    • Fixed Fatal error conflict between Rename Login feature and Yoast SEO and some themes when attempting to access wp-admin page directly.
    • \n
    • Added \"Pending Approval\" message when manual registration approval feature is enabled and a user registers.
    • \n
    • Fix (minor): No need to use strcmp to compare integer values.
    • \n
    • Updated and simplified wp-security-stop-users-enumeration.php for bug (thanks to @davidegiunchidiennea)
    • \n
    • Minor code cleanup (Thanks to @chesio for the following changes).
    • \n
    • File scanner codebase cleanup.
    • \n
    • Fix: properly report invalid email addresses in file scanner configuration.
    • \n
    • Code clean-up in AIOWPSecurity_Scan::do_file_change_scan() method.
    • \n
    • Tweak: Compare file scan data faster.
    • \n
    \n\n

    4.1.0

    \n\n
      \n
    • Fixed bug in Maintenance menu page when trying to attach a media file to the message text box.
    • \n
    • Added a new filter (called \"aiowps_ip_blocked_error_msg\") which allows the modification of the error message displayed on the login page when an IP address has been blocked by the login lockdown feature.
    • \n
    • Updated French language translation. Thanks to Claude Ribaux for providing the translation files.
    • \n
    • Thanks to @chesio for making the following two changes.
    • \n
    • Replaced deprecated call to get_currentuserinfo() function.
    • \n
    • Minor code fixes in the backup class file.
    • \n
    • Fix: display correct (error) message when write_to_htaccess() fails.
    • \n
    • Tweak: database backup filename is more human-readable. \nBefore: 24x7eg8l6i-database-backup-1463042767.zip\nAfter: database-backup-20160512-104607-24x7eg8l6i.zip
    • \n
    \n\n

    4.0.9

    \n\n
      \n
    • Made file change scanner code more robust for cases when open_basedir restriction is in effect. (Thanks to Manuel Jeanne for pointing this out).
    • \n
    • Added code which will remove WordPress version info during CSS and JS script loading if you have the \"Remove WP Generator Meta Info\" option checked. (Thanks to aldemarcalazans for pointing this out).
    • \n
    • Fixed some potential SQL injection vulnerabilities. (Thanks to Julio Potier for pointing these out).
    • \n
    • Changed the feature category of blacklist manger from \"Intermediate\" to \"Advanced\".
    • \n
    • Tweak: Remove \"@\" from list of characters blocked by advanced character string filter. (Because it is often used in retina-ready images).
    • \n
    • Fix: Use home URL instead of site URL in lock notification email subject. Thanks to @chesio for fixing this.
    • \n
    \n\n

    4.0.8

    \n\n
      \n
    • Added ability to identify IP addresses during user registration and option to block selected IPs.
    • \n
    • Added login form captcha functionality for sub-sites in a multi-site installation. (see the Brute Force menu)
    • \n
    • Fixed multi-site bug related to manual user-chosen DB prefix change.
    • \n
    • Added extra XSS protection inside admin menu pages for the \"tab\" query parameter.
    • \n
    • Added a note to the features that has the potential to lock you out if it doesn\'t work correctly on your site.
    • \n
    • Updated Brazil-Portuguese language file.
    • \n
    • Fixed issue with firewall custom rules being corrupted by magic quotes. Thanks to @chesio for fixing this.
    • \n
    \n\n

    4.0.7

    \n\n
      \n
    • Added a new action hook \"aiopws_before_set_404\" which triggers just before the AIOWPS sets a 404. (handy for cases when rename login page is used which affects some themes when accessing \"wp-admin\" directly)
    • \n
    • Fixed some potential SQL injection vulnerabilities.
    • \n
    • Thanks to @chesio for submitting the following changes and applying the fixes.
    • \n
    • Sub-directory install fixes.
    • \n
    • Improve behavior of WP File Access tab.
    • \n
    • Fix invalid nesting of HTML elements.
    • \n
    • Do not block HTTP requests that contain \"tag=\" in query string.
    • \n
    • Option to enable the 6G firewall.
    • \n
    \n\n

    4.0.6

    \n\n
      \n
    • Removed the viewing of contents of wp-config.php and .htaccess files in order to protect sensitive info.
    • \n
    • Fixed more potential XSS vulnerabilities in some other settings pages. (Once again many thanks to Erin Germ for pointing these out)
    • \n
    \n\n

    4.0.5

    \n\n
      \n
    • Fixed some potential XSS vulnerability in the blacklist, file system and file change detection settings pages. (Many thanks to Erin Germ for pointing these out)
    • \n
    \n\n

    4.0.4

    \n\n
      \n
    • Added new feature: Auto Block Spammer IPs. This feature will automatically and permanently block IP addresses which are linked to comment SPAM. (see SPAM Prevention -> Comment SPAM IP Monitoring tab)
    • \n
    • Added compatibility fix for the qTranslate-X plugin in the rename login page feature.
    • \n
    • Added ability to send to more than one email address for file change detection feature notification.
    • \n
    • Fixed bug in whois library when searching ARIN registry.
    • \n
    • Fixed the handling of display of longer IPV6 strings in dashboard summary table.
    • \n
    • Added hook for WooCommerce login form to display unlock button.
    • \n
    • Added Dutch language translation. Thanks to Jeroen van der Linde for providing the translation files.
    • \n
    • Typo fix in the \"stop users enumeration\" feature.
    • \n
    \n\n

    4.0.3

    \n\n
      \n
    • Added urlencode to query strings in URLs to prevent unexpected behaviour. Thanks to @chesio for spotting the issue.
    • \n
    • Added new feature to stop users enumeration. Thanks to Davide Giunchi @davidegiunchidiennea for adding this.
    • \n
    • Added a more robust code for check_user_exists function. Thanks to Christian Carey.
    • \n
    • Added cron cleanup of the global meta table.
    • \n
    • Added a title in each of the admin interface menu.
    • \n
    \n\n

    4.0.2

    \n\n
      \n
    • Added ability to enable/disable debug from the settings menu.
    • \n
    • Fixed bug related to using IP ranges in the whitelist settings.
    • \n
    • Added IPv6 support for the whitelist feature.
    • \n
    • Added check in file permissions feature for cases where wp-config.php may be located outside of root.
    • \n
    • Added wp cron DB cleanup events for various tables which may grow large over time.
    • \n
    • Changed firewall rule for proxy comment prevention to reflect suggestion made by Thomas O. in forum (https://wordpress.org/support/topic/high-server-cpu-with-proxy-login)
    • \n
    • Fixed CSS styling issue in admin pages for WordPrss 4.4
    • \n
    \n\n

    4.0.1

    \n\n
      \n
    • Renamed the language files to match the new textdomain slug to fix the language translation bug.
    • \n
    • Fixed bug related to the rename login feature and force logout or logout expiry events.
    • \n
    • Applied fix for log being generated by events table DB insert.
    • \n
    • Corrected a function call to static version of display error msg.
    • \n
    \n\n

    4.0.0

    \n\n
      \n
    • Updated text domain to match expected value for translate.wordpress.org translation system.
    • \n
    • Fixed bug related to multi-site user_roles not being updated for child sites.
    • \n
    • Fixed minor bug in rename login feature.
    • \n
    • Updated the Italian language file.
    • \n
    \n\n

    3.9.9

    \n\n
      \n
    • Fixed an issue with the rename login page feature for WordPress 4.3
    • \n
    • Added esc_attr() sanitization to some of the relevant parameters
    • \n
    • Added the necessary changes to allow activation via wp-cli
    • \n
    \n\n

    3.9.8

    \n\n
      \n
    • Added guard against possible XSS in the unlock request feature.
    • \n
    \n\n

    3.9.7

    \n\n
      \n
    • Added new feature which allows custom .htaccess rules. (See \"Custom Rules\" tab in Firewall menu). You can now use this to add custom rules to block access to various resources on your site.
    • \n
    • Added a new feature to block access to the wp-content/debug.log file (WordPress creates this file if you enabled debug loggin option in the config file).
    • \n
    • Removed the \"v\" from version number of the plugin.
    • \n
    • Completed testing with WordPress 4.3.
    • \n
    \n\n

    3.9.6

    \n\n
      \n
    • Added Rename Login page feature from the \"Brute Force\" menu to multisite sub-sites.
    • \n
    • Removed invalid \"length\" attribute from input element in captcha code.
    • \n
    • Fixed reset password feature whereby the URL which is sent out in the email for cases when rename login feature is enabled was not decoded properly.
    • \n
    • Corrected the check for boolean false if returned from wpdb query result.
    • \n
    • Added media button for wp editor in maintenance settings page.
    • \n
    \n\n

    3.9.5

    \n\n
      \n
    • Fixed minor bug - IP addresses blocked due to \'404\' were not being listed in the display table.
    • \n
    • Updated the Russian language translation file.
    • \n
    • The automatic database table prefix generation value will use a-z characters only.
    • \n
    • Added esc_url sanitization to the add_query_arg/remove_query_arg function instances to prevent possible XSS.
    • \n
    \n\n

    3.9.4

    \n\n
      \n
    • The sort order and orderby parameters now use a whitelisting approach for sanitization.
    • \n
    \n\n

    3.9.3

    \n\n
      \n
    • Fixed the sort order not working in the 404 error logging and account activity page.
    • \n
    \n\n

    3.9.2

    \n\n
      \n
    • Added a check for registration captcha feature to prevent errors when using another captcha plugin.
    • \n
    • Improved a few SQL statements.
    • \n
    \n\n

    3.9.1

    \n\n
      \n
    • Added new \"Force Logout\" feature which will instantly force a certain user to be logged out of their session. (See the \"Logged In Users\" tab in User Login menu)
    • \n
    • Added more security protection for aiowps log files by creating .htaccess file and rules. AIOWPS log files can now only be viewed via dashboard menu, in new tab called \"AIOWPS Logs\". (NOTE:This security currently applies only for apache or similar servers)
    • \n
    • Added backticks to SQL statement for DB prefix change to help prevent errors.
    • \n
    • Added protection against possible SQL injection attacks.
    • \n
    \n\n

    3.9.0

    \n\n
      \n
    • Added some robustness to the file-scan code.
    • \n
    • Added extra security to all relevant list table instances to prevent unlikely malicious deletion commands.
    • \n
    • Fixed the user agent part of the blacklist settings code to allow user-agents to be cleared upon saving.
    • \n
    \n\n

    3.8.9

    \n\n
      \n
    • Fixed bug in the new feature which allows permanent blocking of IP addresses that create 404 events.
    • \n
    • Fixed minor bug for all instances where wpdb \"prepare\" was being used with order/orderby parameters.
    • \n
    • Fixed a possible open redirect vulnerability. Thanks to Sucuri for pointing it out.
    • \n
    \n\n

    3.8.8

    \n\n
      \n
    • Added extra robustness and security for wp list table db commands by using wpdb \"prepare\" command.
    • \n
    • Fixed minor bug with undeclared variable in rename login feature page.
    • \n
    \n\n

    3.8.7

    \n\n
      \n
    • Added an improvement for login lockdown feature - locked IP addresses will no longer be allowed to register.
    • \n
    • Added a \"view\" link for each account in the pending registration approval table list.
    • \n
    • Fixed 404 logging/lockout bug.
    • \n
    • Added ability to permanently block IP addresses from the 404 event list for both bulk and single cases.
    • \n
    • Added ability to do bulk temp blocking for IP addresses in 404 list.
    • \n
    • Fixed a minor bug with validate_ip_list function.
    • \n
    \n\n

    3.8.6

    \n\n
      \n
    • DB cleanup cron event bug fixed.
    • \n
    • Added Swedish language translation. The translation was submitted by Tor-Björn Fjellner.
    • \n
    • Updated the Russian language translation file. Update submitted by Tor-Björn Fjellner.
    • \n
    • The events table will automatically be cleaned up so it only keeps the last 5000 entries. You can override it using a filter (if you wanted to).
    • \n
    \n\n

    3.8.5

    \n\n
      \n
    • Added functionality to prevent the aiowps_events table from getting too large.
    • \n
    • Added file change scan summary inside the alert email.
    • \n
    • Fixed the unlock feature so that it works correctly when the Rename Login Page feature is active.
    • \n
    • Added a check in the list logged in users file to prevent error when get_transient returns false.
    • \n
    \n\n

    3.8.4

    \n\n
      \n
    • Updated POT language file.
    • \n
    • Tweaked the function which retrieves the IP address to handle cases where traffic is coming from cloudflare
    • \n
    • The MySQL database will not be forced anymore at the time of creating the table. It also reads the characters set value from the system first.
    • \n
    • Applied fixes to prevent remotely exploitable vulnerabilities.
    • \n
    \n\n

    3.8.3

    \n\n
      \n
    • Modified \"Pingback Protection\" .htaccess rules to prevent xmlrpc login attacks and to be compatible with more servers.
    • \n
    • Made improvements to ensure that the rename login and white list features can be used together.
    • \n
    • Added a check to force user to enter alphanumeric string for renamed login slug.
    • \n
    • Improved the turn_off_all_firewall_rules() and turn_off_all_security_features() functions so that they also handle the updating of the htaccess file.
    • \n
    • Added an alternative way to import settings via a text box (Thanks to Dave McHale). This is for people who might have issues using the config settings file uploader.
    • \n
    • Added fix to properly update options tables when changing DB prefix in multisite system.
    • \n
    • Greatly improved the Renamed Login Page feature by removing various potential vulnerabilities.
    • \n
    • Added an if statement check to fix bug with rename login page feature - special case where user had non permalink structure was not working correctly in some rare scenarios.
    • \n
    • Updated the Italian language file.
    • \n
    • Fixed bug regarding wp_mail malformed header when \"From\" string was empty due to \"site title\" not being set.
    • \n
    • Fixed bug in IP list validation function for blacklist feature.
    • \n
    • Removed strict filtering of IP addresses so as to allow internal IP address ranges.
    • \n
    • Added stripping of orderby and order query parameters in the plugin.
    • \n
    • Added search capability by IP address, URL or referer for the 404 events list table.
    • \n
    \n\n

    3.8.2

    \n\n
      \n
    • Fixed a CSS issue with the honeypot feature.
    • \n
    • Fixed a call to the login action handler static function.
    • \n
    \n\n

    3.8.1

    \n\n
      \n
    • Minor bug fix for the honeypot feature - loading of css style sheet was not occurring when main login page rendered.
    • \n
    \n\n

    3.8.0

    \n\n
      \n
    • Improved deactivation and re-activation tasks - AIOWPS will now gracefully clean up the .htaccess rules when the plugin is deactivated.
    • \n
    • Tweaked code so that all login pages including custom ones will correctly load the CSS style sheet file needed for honeypot feature.
    • \n
    • Updated the Portugese language translation.
    • \n
    • Fixed the copy protection feature so it doesn\'t interfere with iframes and shortcodes.
    • \n
    • The plugin will now work fine even if your wp-config.php file is outside the wordpress root folder.
    • \n
    \n\n

    3.7.9.2

    \n\n
      \n
    • copy protection feature JS code improvement
    • \n
    \n\n

    3.7.9.1

    \n\n
      \n
    • Added captcha functionality for custom login form which is produced by the WP function: wp_login_form()
    • \n
    • Fixed a minor bug with the copy protection feature\'s JavaScript code.
    • \n
    • Tweaked file change scan algorithm to help prevent getMTime fatal runtime errors.
    • \n
    • Added a link to the github repository in the readme.txt file for developers.
    • \n
    \n\n

    3.7.9

    \n\n
      \n
    • Fixed a small bug related to the cookie test in the Cookie Based Brute Force feature.
    • \n
    \n\n

    3.7.8

    \n\n
      \n
    • Added new feature called Login Honeypot which will help reduce brute force login attempts by robots. (This can be found in the Brute Force menu)
    • \n
    • Added new feature to prevent other sites from displaying your content via a frame or iframe. (This can be found in the Miscellaneous menu)
    • \n
    • Added captcha feature for BuddyPress registration form.
    • \n
    • Added a new filter for the site lockout message so it can be customized.
    • \n
    • Added a new filter for template include of the site lockout feature.
    • \n
    • Temporarily deactivated the \"DB Scan\" feature.
    • \n
    \n\n

    3.7.7

    \n\n
      \n
    • Improved DB prefix change code to make it more robust.
    • \n
    • Fixed a minor bug for the Rename Login page feature.
    • \n
    • Added check when processing rename login page to see if maintenance (lockout) mode enabled. Plugin will now display lockout message instead of 404 page if site lockout enabled.
    • \n
    • Made the Cookie Based Brute Force Prevention feature more secure by introducing a 10 digit random suffix to the test cookie name.
    • \n
    \n\n

    3.7.6

    \n\n
      \n
    • Added ability to insert captcha in WordPress Multi Site registration form.
    • \n
    • Added a condition around the management permission constant. This will allow users to define a custom capability for this plugin\'s admin side via the wp-config file. This was submitted by Samuel Aguilera.
    • \n
    • Fixed a bug with the hidden login page feature.
    • \n
    • Fixed a small settings bug with the \"block fake google bot\" feature.
    • \n
    \n\n

    3.7.5

    \n\n
      \n
    • Added a new DB scan feature. Go to the \"Scanner\" menu to use this new feature.
    • \n
    • Added new settings import/export feature.
    • \n
    • Modified user accounts feature to alert administrator if one or both \"admin\" or \"Admin\" usernames are being used.
    • \n
    • Added Persian language translation. The translation was submitted by Amir Mousavi Pour (me@ameer.ir).
    • \n
    • Small change to get_mysql_tables function to prevent fatal error when mysqli query is unsuccessful.
    • \n
    • Added Italian language translation. The translation was submitted by Marco Guglielmetti.
    • \n
    \n\n

    3.7.4

    \n\n
      \n
    • Added a new feature to add copy protection for your front-end. You can find this feature under the \"Miscellaneous\" menu.
    • \n
    • Fixed comment captcha bug for multi-site. Now this feature can be activated/deactivated for subsites of a multisite installation.
    • \n
    • Added Hungarian language translation. The translation was submitted by Daniel Kocsis.
    • \n
    • Moved the custom login page feature\'s handling code to wp-loaded hook so other plugins that modify the login page can do their task before our one is triggered. This change was suggested by Mark Hudnall.
    • \n
    • Added German language translation. The translation was submitted by Manuel Fritsch.
    • \n
    • Updated the Brazilian language translation file.
    • \n
    \n\n

    3.7.3

    \n\n
      \n
    • Added Brazilian language translation. The translation was submitted by Sergio Siqueira.
    • \n
    • Added two new action hooks for plugin activation and deactivation time.
    • \n
    • Improved the get_user_ip_address() function so it handles cases when multiple addresses are returned due to proxy.
    • \n
    • Fixed the mis-alignment of login page which was broken by WP3.9 when rename login feature is used.
    • \n
    • WordPress 3.9 compatibility
    • \n
    \n\n

    3.7.2

    \n\n
      \n
    • Added a PHP Info section in the system info interface to show some important PHP details of the server.
    • \n
    • Added a filter to allow the user to have a custom translation in a place (which will be loaded instead of the default one from the plugin). This change was submitted by Samuel Aguilera.
    • \n
    • Replaced myslqi fetch_all method with fetch_assoc to cover cases where some servers do not have the correct mysql drivers.
    • \n
    • Added a new filter to allow manipulation of the htaccess rules from your custom code. The name of the filter is \'aiowps_htaccess_rules_before_writing\'.
    • \n
    • Added a \"Delete All 404 Event Logs\" button to purge all 404 logs from DB
    • \n
    • Added code to automatically send an email to the registrant when an account has been manually \"Approved\" from the User Registration menu.
    • \n
    \n\n

    3.7.1

    \n\n
      \n
    • Fixed a minor bug: dashboard link was pointing to the wrong tab for the \"Logged In Users\" tab.
    • \n
    • Fix a bug with the login page captcha. The captcha wansn\'t shown if the rename login page feature was enabled at the same time.
    • \n
    \n\n

    3.7

    \n\n
      \n
    • Added new feature - 404 detection. This allows you to log 404 events and block selected IPs. This feature can be found in the Firewall menu.
    • \n
    • Added new dashboard info box to display number of blocked IP addresses in the lockout table.
    • \n
    • Fixed bug where user could not access login page when maintenance mode and rename login page features were both active.
    • \n
    • Tweaked the hotlinking .htaccess directives to cover both http and https.
    • \n
    • Fixed code to prevent mysql errors due to some variables not having default value in failed login and lockdown tables
    • \n
    • Replaced deprecated PHP function mysql_query with mysqli.
    • \n
    • Added language file for Spanish language. The Spanish translation was done by Samuel Montoya.
    • \n
    • Added code to hide the \"DB Prefix\" menu for the non-main sites in multi-site installation
    • \n
    \n\n

    3.6

    \n\n
      \n
    • Added a new feature to prevent image hot-linking. (See the \"Prevent Hotlinks\" tab in the firewall menu)
    • \n
    • Added a check in the Rename Login Page feature to prevent people from setting the slug to \"wp-admin\"
    • \n
    • Fixed a small bug with Login Lockdown feature.
    • \n
    \n\n

    3.5.1

    \n\n
      \n
    • Fixed a bug where the cookie-based brute force directives were not being deleted from the .htaccess file when the Rename Login Page feature was being activated.
    • \n
    \n\n

    3.5

    \n\n
      \n
    • Added new feature which will Block Fake Googlebots from crawling your site. Check the Firewall menu for this new feature.
    • \n
    • Added code to prevent users from having both the Rename Login Page and Cookie-Based Brute Force features active at the same time.
    • \n
    • Added some useful info boxes in the dashboard: 1) to inform the user if the cookie based brute force or rename login page features are active, 2) last 5 logins to your site.
    • \n
    • Fixed minor bug with .htaccess backup feature.
    • \n
    • Updated the from email address value used for sending backups and file change notification. Thanks to @TheAssurer for the tip.
    • \n
    • Updated the warning message for the disable index view feature.
    • \n
    \n\n

    3.4

    \n\n
      \n
    • Consolidated \"Brute Force\" features by moving all such features to the \"Brute Force\" menu.
    • \n
    • Improved the file change detection scan feature: Introduced a button allowing admin to view the file change results from the last scan and fixed small bug whereby the change detected flag was not being cleared for applicable cases.
    • \n
    • Fixed a small bug with \"rename login page\" (hide admin login) feature.
    • \n
    • Made wp-config.php and .htaccess file backups more secure. Thanks to @TheAssurer for the tip.
    • \n
    • Made the login code more robust by catering for cases where the \"wp_login\" action was not passing 2 parameters.
    • \n
    \n\n

    3.3

    \n\n
      \n
    • Added a brand new brute force prevention feature - Rename Login Page. This feature can be found in the new menu item called \"Brute Force\".
    • \n
    • Modified the new unlock request feature so that the locked out user will only have to enter email address when they submit an unlock request.
    • \n
    • Replaced the deprecated PHP function \"mysql_list_tables\" with alternative code.
    • \n
    • Added warning message regarding WordPress iOS app when pingback protection feature in the firewall settings is active.
    • \n
    • Added Malware scan tab and information.
    • \n
    • Some minor html form and CSS corrections.
    • \n
    \n\n

    3.2

    \n\n
      \n
    • Added new feature which allows users to generate an automated unlock request link via email when they get locked out because of the login lockdown feature.
    • \n
    • Added a check to ensure that user cannot enter 0 minutes in the Force Logout feature.
    • \n
    • Fixed translations so that various previously omitted strings can now be translated.
    • \n
    • Added a new filter before locking down a user\'s IP address - aiowps_before_lockdown.
    • \n
    • Generated a new translation (POT) file.
    • \n
    \n\n

    3.1

    \n\n
      \n
    • Added a new feature that will allow you to add a captcha to the lost password form (useful if you are allowing user registration on your site).
    • \n
    • Added ability to specify a system log file in the \"Host System Logs\" tab of the \"File System Security\" menu
    • \n
    • Fixed a tab link bug. One link was going to the wrong menu tab.
    • \n
    • Updated the POT file of the plugin.
    • \n
    \n\n

    3.0

    \n\n
      \n
    • Added a new feature which allows you to add captcha to the Wordpress user registration page.
    • \n
    • Added some more helpful comments and link to video tutorial in the brute force and white list features settings pages.
    • \n
    \n\n

    2.9

    \n\n
      \n
    • Added new feature which automatically sets the status of newly registered wordpress user accounts to \"pending\" and allows manual approval by an administrator.
    • \n
    • Improved robustness of file change detection iteration code.
    • \n
    • WordPress 3.7 compatibility
    • \n
    \n\n

    2.8.1

    \n\n
      \n
    • Improved the login captcha implementation
    • \n
    • Changed the management permission to manage_options
    • \n
    \n\n

    2.8

    \n\n
      \n
    • Added a feature to insert a simple math captcha to the WordPress comment form (to reduce comment spam). Check the spam prevention menu for this new feature.
    • \n
    • Fixed a minor bug with bulk unlock/delete in user login menu
    • \n
    • Fixed a minor bug with math captcha logic.
    • \n
    \n\n

    2.7

    \n\n
      \n
    • Added a simple math captcha functionality for the WP login page. This is another easy yet effective way to combat Brute Force Login Attacks. You can enable this new feature from the user login security menu.
    • \n
    \n\n

    2.6

    \n\n
      \n
    • Added a new Login Whitelist feature. This feature enables you to specify one or more IP addresses in a special whitelist which will have access to your WP login page.\nAll other IP addresses trying to access your WP login page which are not in the whitelist will be automatically blocked.
    • \n
    • The IP address will also be included in the email that gets sent to the admin for the ip address lockout notification.
    • \n
    • Language file loading fix for Chinese language.
    • \n
    • Tweaked the code which creates a .htaccess file in the backup directory to ensure it gets run even if the directory already existed.
    • \n
    • Made DB backups more secure.
    • \n
    • Added more useful debug logs for .htaccess file manipulation failure scenarios.
    • \n
    \n\n

    2.5

    \n\n
      \n
    • Added a new feature which will list the currently logged in users who have been active within the last 15 minutes.
    • \n
    • Added a new feature in settings menu which will disable all firewall rules and clear all applicable directives in the .htaccess file.
    • \n
    • Improved the way the wp-config.php file is handled when it contains an ending PHP tag \"?>\" (older sites that were using PHP4 earlier).
    • \n
    \n\n

    2.4

    \n\n
      \n
    • Added new feature/checkbox which will instantly lockout IP address ranges which attempt to login with an invalid username.
    • \n
    • Fixed a bug in the Comment SPAM IP Monitoring page where trying to block one or more IPs was failing.
    • \n
    • Removed the word \"config\" from the list of bad query strings check (to add compatibility with a few more plugins)
    • \n
    • Added a notice in the dashboard menu to show you if there are any recent file changes that the plugin detected.
    • \n
    • Fixed bug with php File Editing feature. Code now also handles older style wp-config.php files which have the php end tag \"?>\"
    • \n
    • Fixed bug with \"Disable All Security Features\" button functionality. When clicked, this will now also make the appropriate changes to the .htacces and wp-config.php files if necessary.
    • \n
    • Changed the storage of backup files from the plugin\'s directory to the uploads directory. Also added a .htaccess file for security.
    • \n
    • Fixed the way user-agent strings were written to the .htacess file from the Blacklist feature. The code now will correctly identify and represent spaces and escaped chars.
    • \n
    • Fixed a bug related to sending backup to correct email address.
    • \n
    \n\n

    2.3

    \n\n
      \n
    • Added new menu called Scanner with a new feature called File Change Detection. This feature will alert you if any files have changed, added or removed from your system.
    • \n
    • Fixed \"Deny Bad Query Strings\" rules to not break the ability to drag components in the WordPress \"Appearance->Menus\" page
    • \n
    • Fixed an activation time warning (on sites with WP_DEBUG option enabled)
    • \n
    • Re-implemented the wp-config.php file content backup feature. It now directly downloads the contents of the file to your computer.
    • \n
    • Multi-site enhancements: Suppressed access to configuration settings for features which are not allowed to be configured from subsites of multi-site installations.
    • \n
    • Fixed a bug with login lockdown feature.
    • \n
    \n\n

    2.2

    \n\n
      \n
    • Added a new feature which will block some spambots from submitting comments.
    • \n
    • Moved Comment SPAM IP monitoring interface to the new \"SPAM Prevention\" menu.
    • \n
    • Fixed a bug with login lockdown feature for both multi and single site.
    • \n
    • Improved firewall feature for multi-site by making the \"Firewall\" menu available only for the main site and not the sub-sites.
    • \n
    • Added random prefix to backup file names.
    • \n
    • Fixed a bug for WP multi-site install where DB tables do not get created when new blog are created in the network.
    • \n
    \n\n

    2.1.1

    \n\n
      \n
    • Fixed a version tagging issue.
    • \n
    \n\n

    2.1

    \n\n
      \n
    • Fixed an issue with install time error on some sites for WordPress 3.6
    • \n
    • Fixed some WP Debug related errors for WordPress 3.6
    • \n
    • Replaced the deprecated $wpdb->escape() function calls with esc_sql() calls
    • \n
    \n\n

    2.0

    \n\n
      \n
    • Fixed a bug for general DB backup functionality.
    • \n
    • Fixed multi-site DB backup - the plugin will now backup only the tables relevant for the sub-site in question.
    • \n
    • Added blank index.html files in various folders inside the plugin.
    • \n
    • Disabled the wp-config.php file backup feature until we find a more secure method of doing the backup.
    • \n
    \n\n

    1.9

    \n\n
      \n
    • Added new WordPress PingBack Vulnerability Protection feature. This allows the user to prohibit access to the xmlrpc.php file in order to protect against certain vulnerabilities in the pingback functionality.
    • \n
    • Added a configuration item in the brute force login prevention feature to allow ajax functionality to work properly when this feature is enabled.
    • \n
    • Added a POT file for language translations.
    • \n
    • Made the DB Prefix feature more robust by adding a check to ensure that plugin can write to the wp-config.php file. This will prevent user from losing access to their site in cases where the system changed the prefix but not the entry in the wp-config.php file.
    • \n
    • Tightened the data validation for the cookie based brute force login feature to ensure that the user must enter a secret word which consists of alphanumeric characters.
    • \n
    • Added edit links to the user account list in the \"User Acounts\" menu.
    • \n
    \n\n

    1.8

    \n\n
      \n
    • Moved the front end site lockout feature to a new menu called \"Maintenance\".
    • \n
    • Added a feature in the front-end lockout feature to allow people to specify their own message which will be displayed on the front-end to visitors who try to access the site when it is in lock out state.
    • \n
    • Fixed a bug in the front-end lockout feature by adding some checks which ensure that the admin will not get locked if the feature is still active and their login session expires or they log out.
    • \n
    • Added a widget in the dashboard menu to show the status of the \"maintenance mode\" feature.
    • \n
    \n\n

    1.7

    \n\n
      \n
    • Added a new feature which is a password strength tool which calculates how easy it is for your chosen password to be cracked using a desktop PC and the appropriate SW. This tool should help you create strong passwords.
    • \n
    • Added a front-end general visitor lockout feature. This feature allows you to temporarily lock down the front end of your site while you do security investigation, site upgrades, tweaks etc.
    • \n
    \n\n

    1.6

    \n\n
      \n
    • Added a new option in the cookie-based Brute Force Login Attack prevention feature to allow users to use this feature together with the WordPress\'s post/page password protection feature.
    • \n
    • Fixed a bug in the 5G firewall rules to so that the printed rules include the correct number of \'\\\' characters.
    • \n
    • Fixed a minor bug in the \"restore from backed up htaccess file\" feature.
    • \n
    • Enhanced the \"Save current wp-config.php file\" feature so it will continue to work with all of the firewall rules active on the site.
    • \n
    • Added extra checks to account for some error scenarios caused on some servers when recursive file search is done.
    • \n
    \n\n

    1.5

    \n\n
      \n
    • Added new feature - Cookie-based Brute Force Login Attack Prevention. Check under the \"Firewall\" menu for this new feature.\nThis feature will stop hackers in their tracks when they try to access your wp-admin or login pages. This feature will secure your WordPress backend by enforcing the requirement that anybody trying to access these pages will require a special cookie.

    • \n
    • Fixed bug related to setting of default configuration for first-time plugin activation.

    • \n
    \n\n

    1.4

    \n\n
      \n
    • Tweaked the \"Deny Bad Query Strings\" firewall rules so that plugin deletion and update operations from the WordPress plugins menu are not affected.
    • \n
    • Fixed a minor bug related to scheduled database backups.
    • \n
    • Added some extra default settings to be applied to the plugin\'s configuration pages upon activation for the first time.
    • \n
    • Plugin will now display a recommendation message if user sets scheduled backup frequency to less than 24 hours.
    • \n
    \n\n

    1.3

    \n\n
      \n
    • Added a new feature to remove the WordPress Generator Meta information from the HTML source of your site.
    • \n
    • Tweaked the \"Advanced Character String Filter\" to fix issue which was affecting plugins such as \"Admin Management Xtended\" and also pages with keywords such as \"password\" in the URL.
    • \n
    • Updated one rule in the \"Advanced Character String Filter\" feature to make it compatible with W3 Total Cache Plugin\'s minify feature.
    • \n
    • Added a \"Delete All Failed Login Records\" option in the \"Failed Login Records\" tab. This will delete all entries in the failed logins table and will make it less tedious for users who get a lot of brute force attacks on their site.
    • \n
    \n\n

    1.2

    \n\n
      \n
    • Moved the rules which disable index views from the \"basic firewall\" rules to the \"additional rules\" section. This will prevent any site breakage for \nthose who want to enable the basic firewall but do not have \"AllowOverride\" option enabled in their httpd.conf
    • \n
    \n\n

    1.1

    \n\n
      \n
    • Added the following new feature:
    • \n
    • Prevent people from accessing the readme.html, license.txt and wp-config-sample.php files.
    • \n
    \n\n

    1.0

    \n\n
      \n
    • First commit to the WP repository.
    • \n
    ','All In One WP Security & Firewall','A comprehensive, user-friendly, all in one WordPress security and firewall plugin for your site.','publish','open','closed','','all-in-one-wp-security-and-firewall','','','2017-03-24 07:41:11','2017-03-24 07:41:11','',0,'https://wordpress.org/plugins-wp/all-in-one-wp-security-and-firewall/',0,'plugin','',0); INSERT INTO `wporg_367_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 (213,395440,'2010-01-13 04:17:23','2010-01-13 04:17:23','\n

    Have you ever been frustrated with forum or bulletin board software that was slow, bloated and always got your server hacked? bbPress is focused on ease of integration, ease of use, web standards, and speed.

    \n\n

    We\'re keeping things as small and light as possible while still allowing for great add-on features through WordPress\'s extensive plugin system. What does all that mean? bbPress is lean, mean, and ready to take on any job you throw at it.

    \n\n\n

    From your WordPress dashboard

    \n\n
      \n
    1. Visit \'Plugins > Add New\'
    2. \n
    3. Search for \'bbPress\'
    4. \n
    5. Activate bbPress from your Plugins page. (You\'ll be greeted with a Welcome page.)
    6. \n
    7. Visit \'Forums > Add New\' and create some forums. (You can always delete these later.)
    8. \n
    9. If you have pretty permalinks enabled, visit yourdomain.com/forums, or if you do not have pretty permalinks enabled, visit yourdomain.com?post_type=forum
    10. \n
    \n\n

    From WordPress.org

    \n\n
      \n
    1. Download bbPress.
    2. \n
    3. Upload the \'bbpress\' directory to your \'/wp-content/plugins/\' directory, using your favorite method (ftp, sftp, scp, etc...)
    4. \n
    5. Activate bbPress from your Plugins page. (You\'ll be greeted with a Welcome page.)
    6. \n
    7. Visit \'Forums > Add New\' and create some forums. (You can always delete these later.)
    8. \n
    9. If you have pretty permalinks enabled, visit yourdomain.com/forums, or if you do not have pretty permalinks enabled, visit yourdomain.com?post_type=forum
    10. \n
    \n\n

    Extra

    \n\n
      \n
    1. Visit \'Settings > Forums\' and adjust your configuration.
    2. \n
    3. Adjust the CSS of your theme as needed, to make everything pretty.
    4. \n
    \n\n\n

    2.5.12

    \n\n
      \n
    • Fix role initialization bug
    • \n
    \n\n

    2.5.11

    \n\n
      \n
    • Improved support for WordPress 4.7
    • \n
    • Improved localization of role names
    • \n
    • Increase minimum WordPress version to 4.2
    • \n
    \n\n

    2.5.10

    \n\n
      \n
    • Improved user display-name rendering
    • \n
    \n\n

    2.5.9

    \n\n
      \n
    • Improved user mentions
    • \n
    \n\n

    2.5.8

    \n\n
      \n
    • Improved ajax actions
    • \n
    • Improved user query parsing
    • \n
    • Fix BuddyPress Groups notice
    • \n
    \n\n

    2.5.7

    \n\n
      \n
    • Improved output of certain URLs
    • \n
    \n\n

    2.5.6

    \n\n
      \n
    • Improved notification & subscription email sending
    • \n
    \n\n

    2.5.5

    \n\n
      \n
    • Improved bulk editing of users
    • \n
    • Improved suggesting of topics & authors for moderators
    • \n
    • Improved converter tool access
    • \n
    \n\n

    2.5.4

    \n\n
      \n
    • Fix reply editing causing polluted hierarchy
    • \n
    • Add tool for repairing reply positions within topics
    • \n
    • Improved custom slug and displayed user field sanitization
    • \n
    • Improved SSL support when relying on theme compatibility
    • \n
    \n\n

    2.5.3

    \n\n
      \n
    • WordPress 3.8 support (dashicons, new color schemes)
    • \n
    • Fix dropdown selects in settings pages
    • \n
    • Fix accidental topic subscription removal on reply form
    • \n
    • Fix poor grammar in profile title element
    • \n
    • Fix admin area SSL support
    • \n
    \n\n

    2.5.2

    \n\n
      \n
    • Fix BuddyPress (1.9.1) Notification integration
    • \n
    \n\n

    2.5.1

    \n\n
      \n
    • Updated subscriptions setting description
    • \n
    • Fix forum subscriptions not appearing on profiles for some users
    • \n
    • Allow links to have targets
    • \n
    • Improve Windows compatibility
    • \n
    \n\n

    2.5

    \n\n
      \n
    • Added forum subscriptions
    • \n
    • Added importers for AEF, Drupal, FluxBB, Kunena Forums (Joomla), MyBB, Phorum, PHPFox, PHPWind, PunBB, SMF, Xenforo and XMB
    • \n
    • Added BuddyPress Notifications integration
    • \n
    • Added ability to enqueue scripts and styles in the template stack
    • \n
    • Fix various existing importer scripts
    • \n
    • Fix forum visibility meta saving
    • \n
    • Fix Akismet anonymous user meta checking
    • \n
    • Fix inconsistent bbp_dropdown() results
    • \n
    • Fix topic and reply ping-status inconsistencies
    • \n
    \n\n

    2.4.1

    \n\n
      \n
    • Fix forum status saving
    • \n
    • Fix widget settings saving
    • \n
    • Fix custom wp_title compatibility
    • \n
    • Fix search results custom permalink compatibility
    • \n
    • Fix custom user topics & replies pages
    • \n
    • Fix hierarchical reply handling in converter
    • \n
    \n\n

    2.4

    \n\n
      \n
    • Added hierarchical reply support
    • \n
    • Added ability to disable forum search
    • \n
    • Reorganized settings page
    • \n
    • Improved rewrite rules
    • \n
    • Improved responsive CSS
    • \n
    • Improved code posting
    • \n
    • Improved user capability integration
    • \n
    • Improved cache getting and setting
    • \n
    • Audit strict type comparisons
    • \n
    • Audit GlotPress string escaping
    • \n
    • Audit title attribute usage
    • \n
    • Audit WordPress core function usage
    • \n
    • General code clean-up
    • \n
    \n\n

    2.3.2

    \n\n
      \n
    • Improved posting of preformatted code
    • \n
    • Improved theme compatibility CSS
    • \n
    • Improved BuddyPress Activity Streams integration
    • \n
    \n\n

    2.3.1

    \n\n
      \n
    • Improved posting of preformatted code
    • \n
    • Fix deleting of post cache group
    • \n
    • Fix moderators not having view_trash capability
    • \n
    \n\n

    2.3

    \n\n
      \n
    • Added forum search functionality
    • \n
    • Improved BuddyPress Group Forums integration
    • \n
    • Improved allowed tags in topics and replies
    • \n
    • Added template stack support to theme compatability
    • \n
    • Added more forum migration options
    • \n
    \n\n

    2.2.4

    \n\n
      \n
    • Prepare converter queries
    • \n
    • Improve validation and sanitization of form values
    • \n
    \n\n

    2.2.3

    \n\n
      \n
    • Improve compatibility with some themes
    • \n
    • Fix integration with BuddyPress Group Forums
    • \n
    • Fix BuddyPress Activity Stream integration
    • \n
    \n\n

    2.2.2

    \n\n
      \n
    • RTL and i18n fixes
    • \n
    • Improved user profile theme compatibility
    • \n
    • Fixed incorrect link in credits page
    • \n
    • Fixed admin area JS issues related to topic suggest
    • \n
    • Fixed template part reference in extras user edit template
    • \n
    \n\n

    2.2.1

    \n\n
      \n
    • Fix role mapping for non-WordPress roles
    • \n
    • Fix issue with private forums being blocked
    • \n
    • Allow moderators to see hidden forums
    • \n
    \n\n

    2.2

    \n\n
      \n
    • Improved user roles and capabilities
    • \n
    • Improved theme compatibility
    • \n
    • Improved BuddyPress Group Forums integration
    • \n
    • Improved forums convertion tool
    • \n
    • Improved forums tools and settings
    • \n
    • Improved multisite support
    • \n
    • Added What\'s New and Credits pages
    • \n
    • WordPress 3.5 and BuddyPress 1.7 ready
    • \n
    \n\n

    2.1.2

    \n\n
      \n
    • Fixed admin-side help verbiage
    • \n
    • Fixed reply height CSS
    • \n
    • Fixed password converter
    • \n
    • Fixed child post trash and delete functions
    • \n
    \n\n

    2.1.1

    \n\n
      \n
    • Fixed Invision, phpBB, and vBulletin importers
    • \n
    • Fixed private/hidden forum bugs
    • \n
    • Fixed topic split meta values
    • \n
    • Fixed theme compatibility logic error
    • \n
    • Fixed role mask issues for shared user installs
    • \n
    • Fixed missing function cruft
    • \n
    • Fixed missing filter on displayed user fields
    • \n
    \n\n

    2.1

    \n\n
      \n
    • WordPress 3.4 compatibility
    • \n
    • Deprecate $bbp global, use bbpress() singleton
    • \n
    • Private forums now visible to registered users
    • \n
    • Updated forum converter
    • \n
    • Topic and reply edits now ran through Akismet
    • \n
    • Fixed Akismet edit bug
    • \n
    • Fixed Widgets nooping globals
    • \n
    • Fixed translation load order
    • \n
    • Fixed user-edit bugs
    • \n
    • Fixed settings screen regressions
    • \n
    • Improved post cache invalidation
    • \n
    • Improved admin-side nonce checks
    • \n
    • Improved admin settings API
    • \n
    • Improved bbPress 1.1 converter
    • \n
    • Improved BuddyPress integration
    • \n
    • Improved Theme-Compatibility
    • \n
    • Improved template coverage
    • \n
    • Improved query performance
    • \n
    • Improved breadcrumb behavior
    • \n
    • Improved multisite integration
    • \n
    • Improved code clarity
    • \n
    • Improved RTL styling
    • \n
    • Added 2x menu icons for HiDPI displays
    • \n
    • Added fancy editor support
    • \n
    • Added fallback theme picker
    • \n
    • Added tools for importing, resetting, and removing
    • \n
    \n\n

    2.0

    \n\n
      \n
    • Released on September 21, 2011
    • \n
    \n\n

    2.0-rc-5

    \n\n
      \n
    • Fixed Genesis incompatibilities
    • \n
    • Fixed BuddyPress activity stream issues
    • \n
    • Fixed Subscription email sending issues
    • \n
    • Fixed Theme Compat display issues for some themes
    • \n
    • Improved Theme Compat class
    • \n
    • More future proofing internal API\'s
    • \n
    \n\n

    2.0-rc-4

    \n\n
      \n
    • BuddyPress @mention integration
    • \n
    • Improved Akismet user agent handling
    • \n
    • Added blacklist_keys support
    • \n
    • Fixed spam/deleted user handling
    • \n
    • Updated green admin color scheme for WordPress 3.2
    • \n
    • Added actions to topic/reply forms
    • \n
    • Improved support for future ajaxification
    • \n
    \n\n

    2.0-rc-3

    \n\n
      \n
    • Fixed activation/deactivation
    • \n
    • Added Forum Participant role for multisite use
    • \n
    \n\n

    2.0-rc-2

    \n\n
      \n
    • BuddyPress activity action integration
    • \n
    • Multisite integration
    • \n
    • Fixed a bushel of bugs
    • \n
    • Fixed tag pagination again
    • \n
    • Fixed ajax priority loading
    • \n
    \n\n

    2.0-rc-1

    \n\n
      \n
    • Fixed tag pagination
    • \n
    • Broke tag pagination
    • \n
    • Squashed a bunch of bugs
    • \n
    \n\n

    2.0-beta-3b

    \n\n
      \n
    • Fix regression in forum index theme compatibility template
    • \n
    • Audit usage of get strings for moderator level and above users
    • \n
    \n\n

    2.0-beta-3

    \n\n
      \n
    • Akismet integration
    • \n
    • Fixes replies within wp-admin
    • \n
    • Fixes reply notification links
    • \n
    • Fixes inconsistent breadcrumb behavior
    • \n
    • Fixes theme compatibility issues
    • \n
    • Fixes archive and page conflicts
    • \n
    • Improvements to unpretty permalink support
    • \n
    • Improvements to importer
    • \n
    • Improvements to multisite support
    • \n
    • Normalize theme, shortcodes, and template parts
    • \n
    • Add humans.txt
    • \n
    • Add empty index.php files to prevent snooping
    • \n
    • Add max length to topic titles (default 80 chars)
    • \n
    \n\n

    2.0-beta-2

    \n\n
      \n
    • GlotPress integration
    • \n
    • Fixes Forum archive bug
    • \n
    • Fixes and improvements to importer
    • \n
    • Adds home link support to breadcrumb
    • \n
    • Improvements to Theme Compatibility
    • \n
    • Numerous template and CSS improvements
    • \n
    • RTL support
    • \n
    • Improved multisite support
    • \n
    • Add filters for future anti-spam support
    • \n
    • Add missing breadcrumbs to various template files
    • \n
    • Topic/reply trash fixes
    • \n
    \n\n

    2.0-beta-1

    \n\n
      \n
    • In development
    • \n
    ','bbPress','bbPress is forum software, made the WordPress way.','publish','open','closed','','bbpress','','','2016-12-09 07:46:58','2016-12-09 07:46:58','',0,'https://wordpress.org/plugins-wp/bbpress/',0,'plugin','',0), (216,415926,'2012-06-07 05:27:56','2012-06-07 05:27:56','\n

    The EWWW Image Optimizer is a WordPress plugin that will automatically optimize your images as you upload them to your blog. It can optimize the images that you have already uploaded, convert your images automatically to the file format that will produce the smallest image size (make sure you read the WARNINGS), and optionally apply lossy compression to achieve huge savings for PNG and JPG images.

    \n\n

    Why use EWWW Image Optimizer?

    \n\n
      \n
    1. Your pages will load faster. Smaller image sizes means faster page loads. This will make your visitors happy, and can increase revenue.
    2. \n
    3. Faster backups. Smaller image sizes also means faster backups.
    4. \n
    5. Less bandwidth usage. Optimizing your images can save you hundreds of KB per image, which means significantly less bandwidth usage.
    6. \n
    7. Super fast. The plugin can run on your own server, so you don?t have to wait for a third party service to receive, process, and return your images. You can optimize hundreds of images in just a few minutes. PNG files take the longest, but you can adjust the settings for your situation.
    8. \n
    9. Best JPG optimization. With TinyJPG integration, nothing else comes close (requires an API subscription).
    10. \n
    11. Best PNG optimization. You can use pngout, optipng, and pngquant in conjunction. And if that isn\'t enough, try the powerful TinyPNG option.
    12. \n
    13. Root access not needed Pre-compiled binaries are made available to install directly within the Wordpress folder, and cloud optimization is provided for those who cannot run the binaries locally.
    14. \n
    15. Optimize everything With the wp_image_editor class extension, and the ability to specify your own folders for scanning, any image in Wordpress can be optimized.
    16. \n
    \n\n

    By default, EWWW Image Optimizer uses lossless optimization techniques, so your image quality will be exactly the same before and after the optimization. The only thing that will change is your file size. The one small exception to this is GIF animations. While the optimization is technically lossless, you will not be able to properly edit the animation again without performing an --unoptimize operation with gifsicle. The gif2png and jpg2png conversions are also lossless but the png2jpg process is not lossless. The lossy optimization for JPG and PNG files uses sophisticated algorithms to minimize perceptual quality loss, which is vastly different than setting a static quality/compression level.

    \n\n

    The tools used for optimization are jpegtran, TinyJPG, JPEGmini, optipng, pngout, pngquant, TinyPNG, and gifsicle. Most of these are freely available except TinyJPG/TinyPNG and JPEGmini. Images are converted using the above tools and one of the following: GMagick, IMagick, or GD.

    \n\n

    EWWW Image Optimizer calls optimization utilities directly which is well suited to shared hosting situations where these utilities may already be installed. Pre-compiled binaries/executables are provided for optipng, gifsicle, pngquant, cwebp, and jpegtran. Pngout can be installed with one-click from the settings page. If none of that works, there is a cloud option that will work for any site.

    \n\n

    If you need a version of this plugin for API use only, see EWWW Image Optimizer Cloud. It is much more compact as it does not contain any binaries or any mention of the exec() function.

    \n\n

    Support

    \n\n

    If you need assistance using the plugin, please visit our Support Page. The forums are community supported only.\nThe EWWW Image Optimizer is developed at https://github.com/nosilver4u/ewww-image-optimizer

    \n\n

    Bulk Optimize

    \n\n

    Optimize all your images from a single page using the Bulk Scanner. This includes the Media Library, your theme, and a handful of pre-configured folders (see Optimize Everything Else below). Officially supported galleries (GRAND FlaGallery, NextCellent and NextGEN) have their own Bulk Optimize pages.

    \n\n

    Skips Previously Optimized Images

    \n\n

    All optimized images are stored in the database so that the plugin does not attempt to re-optimize them unless they are modified. On the Bulk Optimize page you can view a list of already optimized images. You may also remove individual images from the list, or use the Force optimize option to override the default behavior. The re-optimize links on the Media Library page also force the plugin to ignore the previous optimization status of images.

    \n\n

    WP Image Editor

    \n\n

    All images created by the built-in WP_Image_Editor class will be automatically optimized. Current implementations are GD, Imagick, and Gmagick. Images optimized via this class include Animated GIF Resize, BuddyPress Activity Plus (thumbs), Easy Watermark, Hammy, Imsanity, MediaPress, Meta Slider, MyArcadePlugin, OTF Regenerate Thumbnails, Regenerate Thumbnails, Simple Image Sizes, WP Retina 2x, WP RSS Aggregator and probably countless others. If you are not sure if a plugin uses WP_Image_Editor, send an inquiry on the support page.

    \n\n

    Optimize Everything Else

    \n\n

    Site admins can specify any folder within their WordPress folder to be optimized. The Bulk Scan under Media->Bulk Optimize will optimize theme images, BuddyPress avatars, BuddyPress Activity Plus images, Meta Slider slides, WP Symposium images, GD bbPress attachments, Grand Media Galleries, and any user-specified folders. Additionally, this tool can run on an hourly basis via wp_cron to keep newly uploaded images optimized. Scheduled optimization should not be used for any plugin that uses the built-in Wordpress image functions.

    \n\n

    WebP Images

    \n\n

    Can generate WebP versions of your images, and enables you to serve even smaller images to supported browsers. Several methods are available for serving WebP images, including Apache-compatible rewrite rules and our Alternative WebP Rewriting option compatible with caches and CDNs. Also works with the WebP option in the Cache Enabler plugin from KeyCDN.

    \n\n

    WP-CLI

    \n\n

    Allows you to run all Bulk Optimization processes from your command line, instead of the web interface. It is much faster, and allows you to do things like run it in \'screen\' or via regular cron (instead of wp-cron, which can be unpredictable on low-traffic sites). Install WP-CLI from wp-cli.org, and run \'wp-cli.phar help ewwwio optimize\' for more information.

    \n\n

    FooGallery

    \n\n

    All images uploaded and cached by FooGallery are automatically optimized. Previous uploads can be optimized by running the Media Library Bulk Optimize. Previously cached images can be optimized by entering the wp-content/uploads/cache/ folder under Folders to Optimize and running a Scan & Optimize from the Bulk Optimize page.

    \n\n

    NextGEN Gallery

    \n\n

    Features optimization on upload capability, re-optimization, and bulk optimizing. The NextGEN Bulk Optimize function is located near the bottom of the NextGEN menu, and will optimize all images in all galleries. It is also possible to optimize groups of images in a gallery, or multiple galleries at once.

    \n\n

    NextCellent Gallery

    \n\n

    Features all the same capability as NextGEN, and is the continuation of legacy (1.9.x) NextGEN support.

    \n\n

    GRAND Flash Album Gallery

    \n\n

    Features optimization on upload capability, re-optimization, and bulk optimizing. The Bulk Optimize function is located near the bottom of the FlAGallery menu, and will optimize all images in all galleries. It is also possible to optimize groups of images in a gallery, or multiple galleries at once.

    \n\n

    Image Store

    \n\n

    Uploads are automatically optimized. Look for Optimize under the Image Store (Galleries) menu to see status of optimization and for re-optimization and bulk-optimization options. Using the Bulk Optimization tool under Media Library automatically includes all Image Store uploads.

    \n\n

    CDN Support

    \n\n

    Uploads to Amazon S3, Azure Storage, Cloudinary, and DreamSpeed CDN are optimized. All pull mode CDNs like Cloudflare, KeyCDN, MaxCDN, and Sucuri CloudProxy are also supported.

    \n\n

    Translations

    \n\n

    Huge thanks to all our translators! See the full list here: https://translate.wordpress.org/projects/wp-plugins/ewww-image-optimizer/contributors

    \n\n

    If you would like to help translate this plugin (new or existing translations), you can do so here: https://translate.wordpress.org/projects/wp-plugins/ewww-image-optimizer\nTo receive updates when new strings are available for translation, you can signup here: https://ewww.io/register/

    \n\n

    Contact and Credits

    \n\n

    Written by Shane Bishop. Based upon CW Image Optimizer, which was written by Jacob Allred at Corban Works, LLC. CW Image Optimizer was based on WP Smush.it. Jpegtran is the work of the Independent JPEG Group.
    \nHammer designed by John Caserta from The Noun Project.
    \nImages designed by Simon Henrotte from The Noun Project.

    \n\n

    optipng

    \n\n

    Copyright (C) 2001-2014 Cosmin Truta and the Contributing Authors.\nFor the purpose of copyright and licensing, the list of Contributing\nAuthors is available in the accompanying AUTHORS file.

    \n\n

    This software is provided \'as-is\', without any express or implied\nwarranty. In no event will the author(s) be held liable for any damages\narising from the use of this software.

    \n\n

    pngquant.c

    \n\n

    © 1989, 1991 by Jef Poskanzer.

    \n\n

    Permission to use, copy, modify, and distribute this software and its\n documentation for any purpose and without fee is hereby granted, provided\n that the above copyright notice appear in all copies and that both that\n copyright notice and this permission notice appear in supporting\n documentation. This software is provided \"as is\" without express or\n implied warranty.

    \n\n

    pngquant.c and rwpng.c/h

    \n\n

    © 1997-2002 by Greg Roelofs; based on an idea by Stefan Schneider.\n © 2009-2014 by Kornel Lesi?ski.

    \n\n

    All rights reserved.

    \n\n

    Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:

    \n\n
      \n
    1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.

    2. \n
    3. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.

      \n\n

      THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

    4. \n
    \n\n

    WebP

    \n\n

    Copyright (c) 2010, Google Inc. All rights reserved.

    \n\n

    Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:

    \n\n
      \n
    • Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.

    • \n
    • Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in\nthe documentation and/or other materials provided with the\ndistribution.

    • \n
    • Neither the name of Google nor the names of its contributors may\nbe used to endorse or promote products derived from this software\nwithout specific prior written permission.

    • \n
    \n\n

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

    \n\n\n
      \n
    1. Upload the \'ewww-image-optimizer\' plugin to your \'/wp-content/plugins/\' directory.
    2. \n
    3. Activate the plugin through the \'Plugins\' menu in WordPress.
    4. \n
    5. Ensure jpegtran, optipng, pngout and gifsicle are installed on your Linux server (basic installation instructions are below if they are not). You will receive a warning when you activate the plugin if they are not present. This message will go away once you have them installed.
    6. \n
    7. The plugin will attempt to install jpegtran, optipng, and gifsicle automatically for you. This requires that the wp-content folder is writable by the user running the web server.
    8. \n
    9. If the automatic install did not work, find the appropriate binaries for your system in the ewww-image-optimizer plugin folder, copy them to wp-content/ewww/ and remove the OS \'tag\' (like -linux or -fbsd). No renaming is necessary on Windows, just copy the .exe files to the wp-content/ewww folder. IMPORTANT: Do not symlink or modify the binaries in any way, or they will not pass the security checks. If you transfer files via FTP, be sure to transfer in binary mode, not ascii or text.
    10. \n
    11. If the binaries don\'t run locally, you can sign up for the EWWW IO cloud service to run them via our optimization servers: https://ewww.io/plans/
    12. \n
    13. Recommended Visit the settings page to enable/disable specific tools and turn on advanced optimization features.
    14. \n
    15. Done!
    16. \n
    \n\n

    If these steps do not work, additional documentation is available at https://docs.ewww.io. If you need further assistance using the plugin, please visit our Support Page. The forums are community supported only.

    \n\n

    Webhosts

    \n\n

    In general, these lists only apply to shared hosting services. If the providers below have VPS or dedicated server options, those will likely work just fine. If you have any contributions or corrections to these lists, please contact me via the form at https://ewww.io

    \n\n

    Webhosts where things work (mostly) out of the box:

    \n\n\n\n

    Webhosts where the plugin will only work in cloud mode or only some tools are installed locally:

    \n\n
      \n
    • Cloudways
    • \n
    • Flywheel
    • \n
    • Gandi
    • \n
    • Hostwinds
    • \n
    • ipage (JPG only)
    • \n
    • ipower
    • \n
    • one.com - may not even work in cloud mode
    • \n
    • WP Engine - use EWWW Image Optimizer Cloud fork: https://wordpress.org/plugins/ewww-image-optimizer-cloud/
    • \n
    \n\n\n
    \n
    Google Pagespeed says my images need compressing or resizing, but I already optimized all my images. What do I do?
    \n

    Try this for starters: http://docs.ewww.io/article/5-pagespeed-says-my-images-need-more-work

    \n
    The plugin complains that I\'m missing something, what do I do?
    \n

    This article will walk you through installing the required tools (and the alternatives if installation does not work): http://docs.ewww.io/article/6-the-plugin-says-i-m-missing-something

    \n
    Does the plugin replace existing images?
    \n

    Yes, but only if the optimized version is smaller. The plugin should NEVER create a larger image.

    \n
    Can I resize my images with this plugin?
    \n

    Yes, you can, set it up on the Advanced tab.

    \n
    Can I lower the compression setting for JPGs to save more space?
    \n

    The lossy JPG optimization using TinyJPG and JPEGmini will determine the ideal quality setting and give you the best results, but you can also adjust the default quality for conversion and resizing. More information here: http://docs.ewww.io/article/12-jpq-quality-and-wordpress

    \n
    The bulk optimizer doesn\'t seem to be working, what can I do?
    \n

    If it doesn\'t seem to work at all, check for javascript problems using the developer console in Firefox or Chrome. If it is not working just on some images, you may need to increase the setting max_execution_time in your php.ini file. There are also other timeouts with Apache, and possibly other limitations of your webhost. If you\'ve tried everything else, the last thing to look for is large PNG files. In my tests on a shared hosting setup, \"large\" is anything over 300 KB. You can first try decreasing the PNG optimization level in the settings. If that doesn\'t work, perhaps you ought to convert that PNG to JPG or set a max PNG optimization size. Screenshots are often done as PNG files, but that is a poor choice for anything with photographic elements.\n[youtube https://www.youtube.com/watch?v=V4U2hQlmkvQ]

    \n
    What are the supported operating systems?
    \n

    I\'ve tested it on Windows (with Apache), Linux, Mac OSX, FreeBSD 9, and Solaris (v10). The cloud API will work on any OS.

    \n
    How are JPGs optimized?
    \n

    Lossless optimization is done with the command jpegtran -copy all -optimize -progressive -outfile optimized-file original-file. Optionally, the -copy switch gets the \'none\' parameter if you choose to strip metadata from your JPGs on the options page. Lossy optimization is done using the outstanding TinyJPG and JPEGmini utilities.

    \n
    How are PNGs optimized?
    \n

    There are three parts (and all are optional). First, using the command pngquant original-file, then using the commands pngout-static -s2 original-file and optipng -o2 original-file. You can adjust the optimization levels for both tools on the settings page. Optipng is an automated derivative of pngcrush, which is another widely used png optimization utility. EWWW I.O. Cloud uses TinyPNG for 10% better lossy compression than standalone pngquant.

    \n
    How are GIFs optimized?
    \n

    Using the command gifsicle -b -O3 --careful original file. This is particularly useful for animated GIFs, and can also streamline your color palette. That said, if your GIF is not animated, you should strongly consider converting it to a PNG. PNG files are almost always smaller, they just don\'t do animations. The following command would do this for you on a Linux system with imagemagick: convert somefile.gif somefile.png

    \n
    I want to know more about image optimization, and why you chose these options/tools.
    \n

    That\'s not a question, but since I made it up, I\'ll answer it. See these resources:
    \nhttp://developer.yahoo.com/performance/rules.html#opt_images
    \nhttps://developers.google.com/speed/docs/insights/OptimizeImages

    \n\n

    Pngout, TinyJPG/TinyPNG, JPEGmini, and Pngquant were recommended by EWWW IO users. Pngout (usually) optimizes better than Optipng, and best when they are used together. TinyJPG is the best lossy compression tool that I have found for JPG images. Pngquant is an excellent lossy optimizer for PNGs, and is one of the tools used by TinyPNG.

    \n\n
    \n\n\n
      \n
    • I no longer have a Mac with which to build new binaries. Until I can raise enough funds, there will be no more updates for the Mac OS X tools, and I may have to temporarily remove Mac support if any security issues arise in the meantime: https://www.gofundme.com/ewww-image-optimizer-mac-dev-laptop
    • \n
    • Feature requests can be submitted via https://ewww.io/contact-us/ and commented on here: https://trello.com/b/Fp81dWof/ewww-image-optimizer
    • \n
    • If you would like to help translate this plugin in your language, get started here: https://translate.wordpress.org/projects/wp-plugins/ewww-image-optimizer/
    • \n
    \n\n

    3.2.7

    \n\n
      \n
    • added: function to remove duplicate records from the ewwwio table when doing a bulk scan or re-optimizing an image
    • \n
    • changed: zero-byte files skipped during bulk scan instead of during optimization
    • \n
    • changed: exec() check rewritten, please report any errors right away
    • \n
    • fixed: plugin status shows All Clear even though exec disabled and warning is displayed
    • \n
    \n\n

    3.2.6

    \n\n
      \n
    • changed: time elapsed test now runs every 10 attachments
    • \n
    • fixed: time elapsed test during bulk scan was not running every X number of images
    • \n
    • fixed: scan was not returning results directly after detecting a broken attachment
    • \n
    • fixed: maximum number of rows for ewwwio_images was not high enough, bumped to 4 billion
    • \n
    • fixed: db migration function was not linking records to attachments properly
    • \n
    \n\n

    3.2.5

    \n\n
      \n
    • fixed: converting PNG to JPG with GD did not properly convert resizes
    • \n
    • fixed: broken attachment metadata could halt the bulk scanner
    • \n
    • fixed: background optimization running when sleep is disabled
    • \n
    \n\n

    3.2.4

    \n\n
      \n
    • changed: when license has been exceeded, visiting the settings page flushes the license cache
    • \n
    • fixed: warnings for illegal string offsets
    • \n
    • fixed: regression with the dreaded duplicate key name
    • \n
    • fixed: scheduled optimization could run during bulk optimization, causing unexpected results
    • \n
    \n\n

    3.2.3

    \n\n
      \n
    • added: image linker for media images optimized using scheduled optimizer or the old Scan and Optimize
    • \n
    • added: low memory mode for bulk scanner with notice to user
    • \n
    • added: ability to manually configure how much memory is available using EWWW_MEMORY_LIMIT constant
    • \n
    • added: variable query counts depending on available memory
    • \n
    • added: ability to view and remove debug.log from settings page
    • \n
    • added: ability to manually disable background optimization using EWWW_DISABLE_ASYNC constant
    • \n
    • changed: check every 100 images during scan to avoid timeouts and memory errors
    • \n
    • changed: additional folder scanner can stop & resume mid-folder
    • \n
    • fixed: bulk scanner updates timestamps when it should not
    • \n
    • fixed: special characters are mangled during database insert on some systems
    • \n
    • fixed: pending images that were already optimized were not cleared from queue
    • \n
    • fixed: images with invalid updated dates in database corrected
    • \n
    • fixed: images that should be excluded from optimization were still queued even though they would not be optimized
    • \n
    • fixed: results column was too short, causing bulk optimization to get stuck on an image that was previously optimized
    • \n
    • fixed: if two different attachments reference the same image, duplicate records could be inserted into database during media scan
    • \n
    \n\n

    3.2.2

    \n\n
      \n
    • added: estimated time remaining on bulk optimize
    • \n
    • added: \'ewww_image_optimizer_image_resized\' hook added right after resizing, before original is overwritten
    • \n
    • changed: image resizing is performed before any thumbnails are generated for reduced resource usage
    • \n
    • fixed: compatibility with Azure storage plugin
    • \n
    • fixed: bulk optimization not playing nice with WP Offload S3
    • \n
    • fixed: optimization results for resized original not displayed when using Imsanity
    • \n
    • fixed: bulk optimization not working for utf-8 filenames - credit to devsporadic on github
    • \n
    • fixed: retina paths not tested correctly in some odd cases
    • \n
    • notice: FreeBSD 9 is EOL, version 10.3 is now the currently supported version
    • \n
    • notice: RHEL 5 and CentOS 5 will be EOL at the end of March, at that point version 6 will be the lowest supported version
    • \n
    • removed: generating full-size retina image automatically when resizing images and WP Retina 2x Pro detected
    • \n
    \n\n

    3.2.1

    \n\n
      \n
    • fixed: really old versions of PHP (less than 5.5) cannot cope with using empty() on a function return value
    • \n
    • fixed: queue of images not reset when reloading bulk page
    • \n
    \n\n

    3.2.0

    \n\n
      \n
    • added: option to ignore folders when optimizing
    • \n
    • added: ability to disable optimization or creation for any or all previews of PDF files in WordPress 4.7
    • \n
    • added: optimization results detail for all resizes of an image in media library list view
    • \n
    • added: automatic metadata rebuilding for broken image attachments in media library during bulk scan
    • \n
    • changed: bulk optimizers for media library and everything else have been merged
    • \n
    • changed: bulk optimization processes images in batches for fewer AJAX requests to your server
    • \n
    • changed: tool locations saved for the duration of a request to improve optimization speed
    • \n
    • changed: optimization results no longer stored in attachment metadata
    • \n
    • changed: populating list of optimized images during scan uses less memory
    • \n
    • changed: obsolete options removed from database
    • \n
    • changed: if scan is interrupted, it will automatically retry
    • \n
    • changed: excessive re-optimization warning ignores theme and plugin images
    • \n
    • changed: if full-size image is converted, all resizes, custom sizes, and retina images will be converted
    • \n
    • changed: conversion will not inject extra numbers if possible
    • \n
    • changed: image results message generated on demand to avoid stale results
    • \n
    • removed: ability to use the ImageMagick \'convert\' binary, use Imagick extension for PHP instead
    • \n
    • removed: unoptimized images page, bulk scanner is now able to accomplish the job more accurately
    • \n
    • fixed: parallel mode prevents successful conversion
    • \n
    • fixed: removing API key on multisite did not fallback to local mode properly
    • \n
    • fixed: pngout enabled after API key removed
    • \n
    • fixed: image paths with special characters stored incorrectly in database
    • \n
    • fixed: parallel optimization for retina and custom sizes was missing parameters
    • \n
    • fixed: bulk optimizing a single image was broken, but who does that anyway?
    • \n
    • fixed: notice when LIBXML_VERSION is undefined and alt webp is enabled
    • \n
    • fixed: invalid default value for timestamp in db records
    • \n
    • fixed: one-click optimization returns no error when running out of API credits
    • \n
    • fixed: background mode was not checked properly in nextgen and flagallery functions
    • \n
    • fixed: incorrect mimetype set after image conversion for PNG2JPG
    • \n
    • fixed: using getimagesize on pdf files
    • \n
    ','EWWW Image Optimizer','Reduce image sizes in WordPress including NextGEN, GRAND FlAGallery, FooGallery and more using lossless/lossy methods and image format conversion.','publish','open','closed','','ewww-image-optimizer','','','2017-02-27 18:43:31','2017-02-27 18:43:31','',0,'https://wordpress.org/plugins-wp/ewww-image-optimizer/',0,'plugin','',0), (218,8393220,'2012-08-15 19:11:40','2012-08-15 19:11:40','\n

    Force Regenerate Thumbnails allows you to delete all old images size and REALLY regenerate the thumbnails for your image attachments.

    \n\n

    See the screenshots tab for more details.

    \n\n\n
      \n
    1. Go to your admin area and select Plugins -> Add new from the menu.
    2. \n
    3. Search for \"Force Regenerate Thumbnails\".
    4. \n
    5. Click install.
    6. \n
    7. Click activate.
    8. \n
    \n\n\n

    2.0.6

    \n\n
      \n
    • Add PHP7 compatibility
    • \n
    \n\n

    2.0.5

    \n\n
      \n
    • No timeout limit
    • \n
    \n\n

    2.0.4

    \n\n
      \n
    • Fix issue when \"opendir()\" return FALSE (thanks Krody Robert)
    • \n
    \n\n

    2.0.3

    \n\n
      \n
    • Add debug information on regenerate
    • \n
    • Fix issue with update \"_wp_attachment_metadata\" and \"_wp_attached_file\" on windows
    • \n
    \n\n

    2.0.2

    \n\n
      \n
    • New style for results (thanks @justonarnar)
    • \n
    • Automatic update \"_wp_attachment_metadata\" and \"_wp_attached_file\" (thanks @norecipes)
    • \n
    \n\n

    2.0.1

    \n\n
      \n
    • Fix issue with get_option(\'upload_path\') in Wordpress 3.5+ (thanks @DavidLingren)
    • \n
    \n\n

    2.0.0

    \n\n
      \n
    • Fix error handle
    • \n
    \n\n

    1.8

    \n\n
      \n
    • New function to display ajax results
    • \n
    \n\n

    1.7

    \n\n
      \n
    • Fix issue with getters path in Linux/Windows/Unix servers
    • \n
    \n\n

    1.6

    \n\n
      \n
    • New CORE to regenerate thumbnails
    • \n
    \n\n

    1.5

    \n\n
      \n
    • Reviewed some messages
    • \n
    \n\n

    1.4

    \n\n
      \n
    • Change default image editor to GB in Wordpress 3.5+ (thanks @nikcree)
    • \n
    \n\n

    1.3

    \n\n
      \n
    • Fix message error when WP_DEBUG in wp_config.php
    • \n
    \n\n

    1.2

    \n\n
      \n
    • Fix for JPEG images
    • \n
    \n\n

    1.1

    \n\n
      \n
    • Delete all custom image sizes when regenerate thumbnails
    • \n
    • Notifies you when thumbnails was deleted
    • \n
    \n\n

    1.0

    \n\n
      \n
    • First release.
    • \n
    ','Force Regenerate Thumbnails','Delete and REALLY force the regenerate thumbnail.','publish','open','closed','','force-regenerate-thumbnails','','','2016-09-05 22:59:04','2016-09-05 22:59:04','',0,'https://wordpress.org/plugins-wp/force-regenerate-thumbnails/',0,'plugin','',0), (265,3439548,'2009-04-23 18:46:06','2009-04-23 18:46:06','\n

    Are you looking for modern, robust, and sophisticated social network software? BuddyPress is a suite of components that are common to a typical social network, and allows for great add-on features through WordPress\'s extensive plugin system.

    \n\n

    BuddyPress is focused on ease of integration, ease of use, and extensibility. It is deliberately powerful yet unbelievably simple social network software, built by contributors to WordPress.

    \n\n

    Enable registered members to create profiles, have private conversations, make connections, create & interact in groups, and much more. Truly a social network in a box, BuddyPress helps you more easily build a home for your company, school, sports team, or other niche community.

    \n\n

    Extensions

    \n\n

    BuddyPress has an ever-increasing array of extended features developed by an active and thriving plugin development community, with hundreds of free-and-open BuddyPress-compatible plugins available at WordPress.org. Any plugin can be conveniently installed using the plugin installer in your WordPress Dashboard.

    \n\n

    More Information

    \n\n

    Visit the BuddyPress website for documentation, support, and information on getting involved in the project and community.

    \n\n

    Languages

    \n\n

    BuddyPress is available in many languages thanks to the volunteer efforts of individuals all around the world. Check out our translations page on the BuddyPress Codex for more details.

    \n\n

    Please consider helping translate BuddyPress at our GlotPress project. Growing the BuddyPress community means better software for everyone!

    \n\n\n

    From your WordPress dashboard

    \n\n
      \n
    1. Visit \'Plugins > Add New\'
    2. \n
    3. Search for \'BuddyPress\'
    4. \n
    5. Activate BuddyPress from your Plugins page. (You will be greeted with a Welcome page.)
    6. \n
    \n\n

    From WordPress.org

    \n\n
      \n
    1. Download BuddyPress.
    2. \n
    3. Upload the \'buddypress\' directory to your \'/wp-content/plugins/\' directory, using your favorite method (ftp, sftp, scp, etc...)
    4. \n
    5. Activate BuddyPress from your Plugins page. (You will be greeted with a Welcome page.)
    6. \n
    \n\n

    Once Activated

    \n\n
      \n
    1. If you do not have pretty permalinks enabled, you will see a notice to enable them. (BuddyPress will not currently work without them.)
    2. \n
    3. Visit \'Settings > BuddyPress > Components\' and adjust the active components to match your community. (You can always toggle these later.)
    4. \n
    5. Visit \'Settings > BuddyPress > Pages\' and setup your directories and special pages. We create a few automatically, but suggest you customize these to fit the flow and verbiage of your site.
    6. \n
    7. Visit \'Settings > BuddyPress > Settings\' and take a moment to match BuddyPress\'s settings to your expectations. We pick the most common configuration by default, but every community is different.
    8. \n
    \n\n

    Once Configured

    \n\n
      \n
    • BuddyPress comes with a robust theme-compatibility API that does its best to make every BuddyPress page look and feel right with just-about any WordPress theme. You may need to adjust some styling on your own to make everything look pristine.
    • \n
    • A few BuddyPress specific themes are readily available for download from WordPress.org, and hundreds more are available from third-party theme authors. BuddyPress themes are just WordPress themes with additional templates for each component, and with a little work you could easily create your own too!
    • \n
    • BuddyPress also comes with built-in support for Akismet and bbPress, two very popular and very powerful WordPress plugins. If you\'re using either, visit their settings pages and ensure everything is configured to your liking.
    • \n
    \n\n

    Multisite & Multiple Networks

    \n\n

    BuddyPress can be activated and operate in just about any scope you need for it to.

    \n\n
      \n
    • Activate at the site level to only load BuddyPress on that site.
    • \n
    • Activate at the network level for full integration with all sites in your network. (This is the most common multisite installation type.)
    • \n
    • Enable multiblog mode to allow your BuddyPress content to be displayed on any site in your WordPress Multisite network, using the same central data.
    • \n
    • Extend BuddyPress with a third-party multi-network plugin to allow each site or network to have an isolated and dedicated community, all from the same WordPress installation.
    • \n
    \n\n

    Read more about custom BuddyPress activations on our codex page.

    \n\n

    Discussion Forums

    \n\n

    Try bbPress. It integrates with BuddyPress Groups, Profiles, and Notifications. Each group on your site can choose to have its own forum, and each user\'s topics, replies, favorites, and subscriptions appear in their profiles.

    \n\n\n
    \n
    Can I use my existing WordPress theme?
    \n

    Yes! BuddyPress works out-of-the-box with nearly every WordPress theme.

    \n
    Will this work on WordPress multisite?
    \n

    Yes! If your WordPress installation has multisite enabled, BuddyPress will support the global tracking of blogs, posts, comments, and even custom post types with a little bit of custom code.

    \n
    Where can I get support?
    \n

    Our community provides free support at https://buddypress.org/support/.

    \n
    Where can I find documentation?
    \n

    Our codex can be found at https://codex.buddypress.org/.

    \n
    Where can I report a bug?
    \n

    Report bugs, suggest ideas, and participate in development at https://buddypress.trac.wordpress.org.

    \n
    Where can I get the bleeding edge version of BuddyPress?
    \n

    Check out the development trunk of BuddyPress from Subversion at https://buddypress.svn.wordpress.org/trunk/, or clone from Git at git://buddypress.git.wordpress.org/.

    \n
    Who builds BuddyPress?
    \n

    BuddyPress is free software, built by an international community of volunteers. Some contributors to BuddyPress are employed by companies that use BuddyPress, while others are consultants who offer BuddyPress-related services for hire. No one is paid by the BuddyPress project for his or her contributions. If you would like to provide monetary support to BuddyPress, please consider a donation to the WordPress Foundation, or ask your favorite contributor how they prefer to have their efforts rewarded.

    \n\n
    \n\n\n

    2.8.2

    \n\n

    See: https://codex.buddypress.org/releases/version-2-8-2/

    \n\n

    2.8.1

    \n\n

    See: https://codex.buddypress.org/releases/version-2-8-1/

    \n\n

    2.8.0

    \n\n

    See: https://codex.buddypress.org/releases/version-2-8-0/

    \n\n

    2.7.4

    \n\n

    See: https://codex.buddypress.org/releases/version-2-7-4/

    \n\n

    2.7.4

    \n\n

    See: https://codex.buddypress.org/releases/version-2-7-4/

    \n\n

    2.7.2

    \n\n

    See: https://codex.buddypress.org/releases/version-2-7-2/

    \n\n

    2.7.1

    \n\n

    See: https://codex.buddypress.org/releases/version-2-7-1/

    \n\n

    2.7.0

    \n\n

    See: https://codex.buddypress.org/releases/version-2-7-0/

    \n\n

    2.6.2

    \n\n

    See: https://codex.buddypress.org/releases/version-2-6-2/

    \n\n

    2.6.1.1

    \n\n

    See: https://codex.buddypress.org/releases/version-2-6-1-1/

    \n\n

    2.6.1

    \n\n

    See: https://codex.buddypress.org/releases/version-2-6-1/

    \n\n

    2.6.0

    \n\n

    See: https://codex.buddypress.org/releases/version-2-6-0/

    \n\n

    2.5.3

    \n\n

    See: https://codex.buddypress.org/releases/version-2-5-3/

    \n\n

    2.5.2

    \n\n

    See: https://codex.buddypress.org/releases/version-2-5-2/

    \n\n

    2.5.1

    \n\n

    See: https://codex.buddypress.org/releases/version-2-5-1/

    \n\n

    2.5

    \n\n

    See: https://codex.buddypress.org/releases/version-2-5-0/

    \n\n

    2.4.3

    \n\n

    See: https://codex.buddypress.org/releases/version-2-4-3/

    \n\n

    2.4.2

    \n\n

    See: https://codex.buddypress.org/releases/version-2-4-2/

    \n\n

    2.4.1

    \n\n

    See: https://codex.buddypress.org/releases/version-2-4-1/

    \n\n

    2.4

    \n\n

    See: https://codex.buddypress.org/releases/version-2-4-0/

    \n\n

    2.3.5

    \n\n

    See: https://codex.buddypress.org/releases/version-2-3-5/

    \n\n

    2.3.4

    \n\n

    See: https://codex.buddypress.org/releases/version-2-3-4/

    \n\n

    2.3.3

    \n\n

    See: https://codex.buddypress.org/releases/version-2-3-3/

    \n\n

    2.3.2

    \n\n

    See: https://codex.buddypress.org/releases/version-2-3-2/

    \n\n

    2.3.1

    \n\n

    See: https://codex.buddypress.org/releases/version-2-3-1/

    \n\n

    2.3

    \n\n

    See: https://codex.buddypress.org/releases/version-2-3-0/

    \n\n

    2.2.1

    \n\n

    See: https://codex.buddypress.org/releases/version-2-2-1/

    \n\n

    2.2

    \n\n

    See: https://codex.buddypress.org/releases/version-2-2/

    \n\n

    Older

    \n\n

    See: https://codex.buddypress.org/releases/

    ','BuddyPress','BuddyPress helps site builders and WordPress developers add community features to their websites, with user profile fields, activity streams, messagin …','publish','open','closed','','buddypress','','','2017-03-10 16:09:12','2017-03-10 16:09:12','',0,'https://wordpress.org/plugins-wp/buddypress/',0,'plugin','',0), (363,89305,'2010-11-10 17:14:02','2010-11-10 17:14:02','\n

    The theme check plugin is an easy way to test your theme and make sure it\'s up to spec with the latest theme review standards. With it, you can run all the same automated testing tools on your theme that WordPress.org uses for theme submissions.

    \n\n

    The tests are run through a simple admin menu and all results are displayed at once. This is very handy for theme developers, or anybody looking to make sure that their theme supports the latest WordPress theme standards and practices.

    \n\n

    How to enable trac formatting

    \n\n

    The Theme Review team use this plugin while reviewing themes and copy/paste the output into trac tickets, the trac system has its own markup language.\nTo enable trac formatting in Theme-Check you need to define a couple of variables in wp-config.php:\nTC_PRE and TC_POST are used as a ticket header and footer.\nExamples:\n define( \'TC_PRE\', \'Theme Review:[[br]]\n - Themes should be reviewed using \"define(\\\'WP_DEBUG\\\', true);\" in wp-config.php[[br]]\n - Themes should be reviewed using the test data from the Theme Checklists (TC)\n -----\n \' );

    \n\n
    define( \'TC_POST\', \'Feel free to make use of the contact details below if you have any questions,\ncomments, or feedback:[[br]]\n[[br]]\n* Leave a comment on this ticket[[br]]\n* Send an email to the Theme Review email list[[br]]\n* Use the #wordpress-themes IRC channel on Freenode.\' );\n
    \n\n

    If either of these two vars are defined a new trac tickbox will appear next to the Check it! button.

    \n\n\n
    \n
    What\'s with the version numbers?
    \n

    The version number is the date of the revision of the guidelines used to create it.

    \n
    Why does it flag something as bad?
    \n

    It\'s not flagging \"bad\" things, as such. The theme check is designed to be a non-perfect way to test for compliance with the Theme Review guidelines. Not all themes must adhere to these guidelines. The purpose of the checking tool is to ensure that themes uploaded to the central WordPress.org theme repository meet the latest standards of WordPress themes and will work on a wide variety of sites.

    \n\n

    Many sites use customized themes, and that\'s perfectly okay. But themes that are intended for use on many different kinds of sites by the public need to have a certain minimum level of capabilities, in order to ensure proper functioning in many different environments. The Theme Review guidelines are created with that goal in mind.

    \n\n

    This theme checker is not perfect, and never will be. It is only a tool to help theme authors, or anybody else who wants to make their theme more capable. All themes submitted to WordPress.org are hand-reviewed by a team of experts. The automated theme checker is meant to be a useful tool only, not an absolute system of measurement.

    \n\n

    This plugin does not decide the guidelines used. Any issues with particular theme review guidelines should be discussed on the Make Themes site.

    \n\n
    \n\n\n

    20160523.1

    \n\n
      \n
    • Fix for theme-names with dashes in them
    • \n
    • Comments stripping changes
    • \n
    • Many changes by the theme review team and others. See Github for full change list.
    • \n
    \n\n

    20151211.1

    \n\n
      \n
    • Full sync with Github and all the changes that have happened there.
    • \n
    • Release for 4.4 deprecated functions.
    • \n
    \n\n

    20140929.1

    \n\n
      \n
    • Added new checks and updates from Frank Klein at Automattic. Thanks Frank!
    • \n
    • Updated deprecated function listings
    • \n
    • Customizer check: All add_settings must use sanitization callbacks, for security
    • \n
    • Plugin territory checks: Themes must not register post types or taxonomies or add shortcodes for post content
    • \n
    • Widgets: Calls to register_sidebar must be called from the widgets_init action hook
    • \n
    • Title: tags must exist and not have anything in them other than a call to wp_title()
    • \n
    • CDN: Checks for use of common CDNs (recommended only)
    • \n
    • Note: Changed plugin and author URIs due to old URIs being invalid. These may change again in the future, the URIs to my own site are temporarily only.
    • \n
    \n\n

    20131213.1

    \n\n
      \n
    • Corrected errors not being displayed by the plugin and it incorrectly giving a \"pass\" result to everything.
    • \n
    \n\n

    20131212.1

    \n\n
      \n
    • Updated for 3.8
    • \n
    • Most files have changed for better I18N support, so the language files were removed temporarily until translation can be redone.
    • \n
    \n\n

    20121211.1

    \n\n
      \n
    • Updated for 3.5
    • \n
    • Remove Paypal button.
    • \n
    \n\n

    20110805.1

    \n\n
      \n
    • TimThumb checks removed.
    • \n
    • Proper i18n loading. Fixes http://bit.ly/ouD5Ke.
    • \n
    • Screenshot now previewed in results, with filesize and dimensions.
    • \n
    \n\n

    20110602.2

    \n\n
      \n
    • New file list functions hidden folders now detectable.
    • \n
    • Better fopen checks.
    • \n
    • TimThumb version bump
    • \n
    \n\n

    20110602.1

    \n\n
      \n
    • DOS/UNIX line ending style checks are now a requirement for proper theme uploading.
    • \n
    • Timthumb version bump
    • \n
    • Several fixes reported by GaryJ
    • \n
    • 3.2 deprecated functions added
    • \n
    \n\n

    20110412.1

    \n\n
      \n
    • Fix regex\'s
    • \n
    • Added check for latest footer injection hack.
    • \n
    • Fix tags check to use new content function correctly
    • \n
    • Sync of all changes made for wporg uploader theme-check.
    • \n
    • Updated checks post 3.1. added screenshot check to svn.
    • \n
    • Fix links check to not return a false failure in some cases
    • \n
    • rm one of the checks that causes problems on wporg uploader (and which is also unnecessary)
    • \n
    • Move unneeded functions out of checkbase into main.php.
    • \n
    • Minor formatting changes only (spacing and such)
    • \n
    • Add check for wp_link_pages() + fix eval() check
    • \n
    \n\n

    20110219.2

    \n\n
      \n
    • Merged new UI props Gua Bob 1
    • \n
    • Last tested theme is always pre-selected in the themes list.
    • \n
    • Fixed php error in admin_menu.php
    • \n
    \n\n

    20110219.1

    \n\n\n\n

    20110201.2

    \n\n
      \n
    • UI bug fixes forum post props Mamaduka.
    • \n
    • Textdomain checks for twentyten and no domain.
    • \n
    • Fix div not closing props Mamaduka.
    • \n
    \n\n

    20110201.1

    \n\n
      \n
    • i18n working
    • \n
    • sr_RS de_DE ro_RO langs props Daniel Tara and Emil Uzelac.
    • \n
    • Child theme support added, checks made against parent AND child at runtime.
    • \n
    • Trac formatting button added for reviewers.
    • \n
    \n\n

    20101228.3

    \n\n
      \n
    • Last revision for 3.1 (hopefully)
    • \n
    • Chips suggestion of checking for inclusion of searchform.php ( not\nperfect yet, need more examples to look for ).
    • \n
    • add_theme_page is required, all others flagged and displayed with line\nnumbers.
    • \n
    • <?= detected properly, short tags outputted with line umbers.
    • \n
    • Mostly internationalized, needs translations now.
    • \n
    • Bug fixes.
    • \n
    \n\n

    20101228.2

    \n\n
      \n
    • Added menu checking.
    • \n
    • ThemeURI AuthourURI added to results.
    • \n
    • Lots of small fixes.
    • \n
    • Started translation.
    • \n
    \n\n

    20101228.1

    \n\n
      \n
    • Fix embed_defaults filter check and stylesheet file data check.
    • \n
    \n\n

    20101226.1

    \n\n
      \n
    • Whole system redesign to allow easier synching with WordPress.org uploader. Many other additions/subtractions/changes as well.
    • \n
    • WordPress 3.1 guidelines added, to help theme authors ensure compatibility for upcoming release.
    • \n
    \n\n

    20101110.7

    \n\n
      \n
    • Re-added malware.php checks for fopen and file_get_contents (INFO)
    • \n
    • fixed a couple of undefined index errors.
    • \n
    \n\n

    20101110.4_r2

    \n\n
      \n
    • Fixed Warning: Wrong parameter count for stristr()
    • \n
    \n\n

    20101110.4_r1

    \n\n
      \n
    • Added echo to suggested.php
    • \n
    \n\n

    20101110.4

    \n\n
      \n
    • Fixed deprecated function call to get_plugins()
    • \n
    \n\n

    20101110.3

    \n\n
      \n
    • Fixed undefined index.
    • \n
    \n\n

    20101110.2

    \n\n
      \n
    • Missing < in main.php
    • \n
    • Added conditional checks for licence.txt OR Licence tags in style.css
    • \n
    • UI improvements.
    • \n
    \n\n

    20101110.1

    \n\n
      \n
    • Date fix!
    • \n
    \n\n

    10112010_r1

    \n\n
      \n
    • Fixed hardcoded links check. Added FAQ
    • \n
    \n\n

    10112010

    \n\n
      \n
    • First release.
    • \n
    ','Theme Check','A simple and easy way to test your theme for all the latest WordPress standards and practices. A great theme development tool!','publish','open','closed','','theme-check','','','2016-12-04 21:19:00','2016-12-04 21:19:00','',0,'https://wordpress.org/plugins-wp/theme-check/',0,'plugin','',0), (365,14775228,'2016-01-27 05:33:09','2016-01-27 05:33:09','\n

    Loginizer is a WordPress plugin which helps you fight against bruteforce attack by blocking login for the IP after it reaches maximum retries allowed. You can blacklist or whitelist IPs for login using Loginizer. You can use various other features like Two Factor Auth, reCAPTCHA, PasswordLess Login, etc. to improve security of your website.

    \n\n

    Loginizer is actively used by more than 450000+ WordPress websites.

    \n\n

    You can find our official documentation at https://loginizer.com/docs and our Frequently Asked Questions on our support portal at https://loginizer.com/members. We are also active in our community support forums on wordpress.org if you are one of our free users. Our Premium Support Ticket System is at https://loginizer.com/members

    \n\n

    Get Support and Pro Features

    \n\n

    Get professional support from our experts and pro features to take your site\'s security to the next level with Loginizer-Security.

    \n\n

    Pro Features :

    \n\n
      \n
    • MD5 Checksum - of Core WordPress Files. The admin can check and ignore files as well.
    • \n
    • PasswordLess Login - At the time of Login, the username / email address will be asked and an email will be sent to the email address of that account with a temporary link to login.
    • \n
    • Two Factor Auth via Email - On login, an email will be sent to the email address of that account with a temporary 6 digit code to complete the login.
    • \n
    • Two Factor Auth via App - The user can configure the account with a 2FA App like Google Authenticator, Authy, etc.
    • \n
    • Login Challenge Question - The user can setup a Challenge Question and Answer as an additional security layer. After Login, the user will need to answer the question to complete the login.
    • \n
    • reCAPTCHA - Google\'s reCAPTCHA can be configured for the Login screen, Comments Section, Registration Form, etc. to prevent automated brute force attacks. Supports WooCommerce as well.
    • \n
    • Rename Login Page - The Admin can rename the login URL (slug) to something different from wp-login.php to prevent automated brute force attacks.
    • \n
    • Rename WP-Admin URL - The Admin area in WordPress is accessed via wp-admin. With loginizer you can change it to anything e.g. site-admin
    • \n
    • Rename Login with Secrecy - If set, then all Login URL\'s will still point to wp-login.php and users will have to access the New Login Slug by typing it in the browser.
    • \n
    • Disable XML-RPC - An option to simply disable XML-RPC in WordPress. Most of the WordPress users don\'t need XML-RPC and can disable it to prevent automated brute force attacks.
    • \n
    • Rename XML-RPC - The Admin can rename the XML-RPC to something different from xmlrpc.php to prevent automated brute force attacks.
    • \n
    • Change the Admin Username - The Admin can rename the admin username to something more difficult.
    • \n
    • Auto Blacklist IPs - IPs will be auto blacklisted, if certain usernames saved by the Admin are used to login by malicious bots / users.
    • \n
    • Disable Pingbacks - Simple way to disable PingBacks.
    • \n
    \n\n

    Features in Loginizer include:

    \n\n
      \n
    • Blocks IP after maximum retries allowed
    • \n
    • Extended Lockout after maximum lockouts allowed
    • \n
    • Email notification to admin after max lockouts
    • \n
    • Blacklist IP/IP range
    • \n
    • Whitelist IP/IP range
    • \n
    • Check logs of failed attempts
    • \n
    • Create IP ranges
    • \n
    • Delete IP ranges
    • \n
    • Licensed under GNU GPL version 3
    • \n
    • Safe & Secure
    • \n
    \n\n\n

    Upload the Loginizer plugin to your blog, Activate it.\nThat\'s it. You\'re done!

    \n\n\n

    1.3.4

    \n\n
      \n
    • [Bug Fix] Fixed the BigInteger Class for PHP 7 compatibility.
    • \n
    \n\n

    1.3.3

    \n\n
      \n
    • [Feature] IPv6 support has been added.
    • \n
    • [Feature] The last attempted username will now be shown in the Login Logs.
    • \n
    • [Bug Fix] The documentation in the plugin was pointing to a wrong link. This is now fixed.
    • \n
    \n\n

    1.3.2

    \n\n
      \n
    • [Feature] Added option to choose between REMOTE_ADDR, HTTP_CLIENT_IP and HTTP_X_FORWARDED for websites behind a proxy
    • \n
    • [Task] The news.js will now be loaded from HTTPS servers
    • \n
    \n\n

    1.3.1

    \n\n
      \n
    • [Feature] The Login attempt logs will now be shown as per the last attempt TIME and in Descending Order
    • \n
    • [Feature] Added an option to Reset the Login attempts for all or specific IPs
    • \n
    \n\n

    1.3.0

    \n\n
      \n
    • [Feature] Added pagination in the Brute Force Logs Wizard
    • \n
    • [Bug Fix] Disabling and Re-Enabling Loginizer caused an SQL error
    • \n
    \n\n

    1.2.0

    \n\n
      \n
    • [Task] The brute force logs will now be sorted as per the time of failed login attemps
    • \n
    • [Bug Fix] Dashboard showed wrong permissions if wp-content path had been changed
    • \n
    • [Bug Fix] Added Directory path to include files which caused issues with some plugins
    • \n
    \n\n

    1.1.1

    \n\n
      \n
    • [Bug Fix] Added ABSPATH instead of get_home_path()
    • \n
    \n\n

    1.1.0

    \n\n
      \n
    • [Feature] New Dashboard
    • \n
    • [Feature] System Information added in the new Dashboard
    • \n
    • [Feature] File Permissions added in the new Dashboard
    • \n
    • [Feature] New UI
    • \n
    • [Bug Fix] Fixed bug to add IP Range from 0.0.0.1 - 255.255.255.255
    • \n
    • [Bug Fix] Removed /e from preg_replace causing warnings in PHP
    • \n
    \n\n

    1.0.2

    \n\n
      \n
    • Fixed Extended Lockout bug
    • \n
    • Fixed Lockout bug
    • \n
    • Handle login attempts via XML-RPC
    • \n
    \n\n

    1.0.1

    \n\n
      \n
    • Database structure changes to make the plugin work faster
    • \n
    • Minor fixes
    • \n
    \n\n

    1.0

    \n\n
      \n
    • Blocks IP after maximum retries allowed
    • \n
    • Extended Lockout after maximum lockouts allowed
    • \n
    • Email notification to admin after max lockouts
    • \n
    • Blacklist IP/IP range
    • \n
    • Whitelist IP/IP range
    • \n
    • Check logs of failed attempts
    • \n
    • Create IP ranges
    • \n
    • Delete IP ranges
    • \n
    • Licensed under GNU GPL version 3
    • \n
    • Safe & Secure
    • \n
    ','Loginizer','Loginizer is a WordPress security plugin which helps you fight against bruteforce attacks.','publish','open','closed','','loginizer','','','2017-03-17 08:21:10','2017-03-17 08:21:10','',0,'https://wordpress.org/plugins-wp/loginizer/',0,'plugin','',0), (1407,148148,'2016-04-26 03:00:14','2016-04-26 03:00:14','','','','inherit','closed','closed','','113-autosave-v1','','','2016-04-26 03:00:14','2016-04-26 03:00:14','',113,'https://wordpress.org/plugins-wp/113-autosave-v1/',0,'revision','',0), (1412,71562,'2016-04-28 15:31:08','2016-04-28 15:31:08','

    WordPress can host your plugin

    \r\nYou?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    1. Keep track of how many people have downloaded it.
    2. \r\n
    3. Let people leave comments about your plugin.
    4. \r\n
    5. Get your plugin rated against all the other cool WordPress plugins.
    6. \r\n
    7. Give your plugin lots of exposure in this centralized repository.
    8. \r\n
    \r\n

    There are only a few restrictions

    \r\n
      \r\n
    1. Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.?
    2. \r\n
    3. The plugin must not do anything illegal, or be morally offensive (that?s subjective, we know).
    4. \r\n
    5. You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    6. \r\n
    7. The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    8. \r\n
    9. If you don?t specify a compatible license, what you check in is considered GPLv2 or later.
    10. \r\n
    11. We also have a large list of detailed guidelines, but mostly they say how not to be a spammer.
    12. \r\n
    \r\n

    It?s pretty simple

    \r\n
      \r\n
    1. Sign up.
    2. \r\n
    3. Within some vaguely defined amount of time, your plugin will be manually reviewed. You may be emailed and asked to provide more information.
    4. \r\n
    5. Once approved, you?ll then have access to a Subversion Repository where you?ll store your plugin.
    6. \r\n
    7. Once you put your plugin (and a readme file!) in that repository, it will shortly be automatically entered into the plugins browser.
    8. \r\n
    9. Check out the FAQ for more information.
    10. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-04-28 15:31:08','2016-04-28 15:31:08','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (1413,71562,'2016-04-28 15:31:56','2016-04-28 15:31:56','

    WordPress can host your plugin

    \r\nYou?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    1. Keep track of how many people have downloaded it.
    2. \r\n
    3. Let people leave comments about your plugin.
    4. \r\n
    5. Get your plugin rated against all the other cool WordPress plugins.
    6. \r\n
    7. Give your plugin lots of exposure in this centralized repository.
    8. \r\n
    \r\n

    There are only a few restrictions

    \r\n
      \r\n
    1. Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.?
    2. \r\n
    3. The plugin must not do anything illegal, or be morally offensive (that?s subjective, we know).
    4. \r\n
    5. You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    6. \r\n
    7. The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    8. \r\n
    9. If you don?t specify a compatible license, what you check in is considered GPLv2 or later.
    10. \r\n
    11. We also have a large list of detailed guidelines, but mostly they say how not to be a spammer.
    12. \r\n
    \r\n

    It?s pretty simple

    \r\n
      \r\n
    1. Sign up.
    2. \r\n
    3. Within some vaguely defined amount of time, your plugin will be manually reviewed. You may be emailed and asked to provide more information.
    4. \r\n
    5. Once approved, you?ll then have access to a Subversion Repository where you?ll store your plugin.
    6. \r\n
    7. Once you put your plugin (and a readme file!) in that repository, it will shortly be automatically entered into the plugins browser.
    8. \r\n
    9. Check out the FAQ for more information.
    10. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-04-28 15:31:56','2016-04-28 15:31:56','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (1414,71562,'2016-04-28 15:32:13','2016-04-28 15:32:13','

    WordPress can host your plugin

    \r\nYou?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    1. Keep track of how many people have downloaded it.
    2. \r\n
    3. Let people leave comments about your plugin.
    4. \r\n
    5. Get your plugin rated against all the other cool WordPress plugins.
    6. \r\n
    7. Give your plugin lots of exposure in this centralized repository.
    8. \r\n
    \r\n

    There are only a few restrictions

    \r\n
      \r\n
    1. Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.?
    2. \r\n
    3. The plugin must not do anything illegal, or be morally offensive (that?s subjective, we know).
    4. \r\n
    5. You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    6. \r\n
    7. The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    8. \r\n
    9. If you don?t specify a compatible license, what you check in is considered GPLv2 or later.
    10. \r\n
    11. We also have a large list of detailed guidelines, but mostly they say how not to be a spammer.
    12. \r\n
    \r\n

    It?s pretty simple

    \r\n
      \r\n
    1. Sign up.
    2. \r\n
    3. Within some vaguely defined amount of time, your plugin will be manually reviewed. You may be emailed and asked to provide more information.
    4. \r\n
    5. Once approved, you?ll then have access to a Subversion Repository where you?ll store your plugin.
    6. \r\n
    7. Once you put your plugin (and a readme file!) in that repository, it will shortly be automatically entered into the plugins browser.
    8. \r\n
    9. Check out the FAQ for more information.
    10. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-04-28 15:32:13','2016-04-28 15:32:13','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (1415,71562,'2016-04-28 15:49:51','2016-04-28 15:49:51','You?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\n
      \n
    • Keep track of how many people have downloaded it.
    • \n
    • Let people leave comments about your plugin.
    • \n
    • Get your plugin rated against all the other cool WordPress plugins.
    • \n
    • Give your plugin lots of exposure in this centralized repository.
    • \n
    \n

    There are some restrictions

    \n
      \n
    • Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.?\n
        \n
      • If you don?t specify a compatible license, what you check in is considered GPLv2 or later.
      • \n
      \n
    • \n
    • The plugin must not do anything illegal or be morally offensive (that?s subjective, we know).
    • \n
    • You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    • \n
    • The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    • \n
    • Your plugin must abide by our list of detailed guidelines, which include not being a spammer and not abusing the systems.
    • \n
    \n

    Submission is Simple

    \n
      \n
    1. Sign up for an account on WordPress.org.
    2. \n
    3. Submit your plugin for review.
    4. \n
    5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
    6. \n
    7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
    8. \n
    9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
    10. \n
    11. Check out the FAQ for more information.
    12. \n
    \n

    Readme files

    \nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-autosave-v1','','','2016-04-28 15:49:51','2016-04-28 15:49:51','',8,'https://wordpress.org/plugins-wp/8-autosave-v1/',0,'revision','',0), (1416,71562,'2016-06-14 16:26:07','2016-06-14 16:26:07','Once submitted, your plugin will be manually reviewed for any common errors as well as ensuring it complies with all the guidelines.\r\n\r\nEven if you\'ve submitted a dozen plugins, take the time to refresh your memory with the following information:\r\n\r\n\r\n[wporg-plugin-upload]\r\n\r\n
    \r\n\r\n

    FAQ

    \r\n

    How long will the review process take?

    \r\nThis is in the Developer FAQ. It takes anywhere between 1 and 10 days. We attempt to review all plugins within 5 business days of submission, but the process takes as long as it takes, depending on the complexity of your plugin.\r\n

    What will my plugin URL be?

    \r\nYour plugin\'s URL will be populated based on the value of Plugin Name in your main plugin file (the one with the plugin headers). If you set yours as Plugin Name: Boaty McBoatface then your URL will be https://wordpress.org/plugins/boaty-mcboatface and your slug will be boaty-mcboatface for example. If there is an existing plugin with your name, then you will be boaty-mcboatface-2 and so on. It behaves exactly like WordPress post names.\r\n\r\nOnce your plugin is approved, it cannot be renamed.\r\n

    I made a mistake in my plugin name. Should I resubmit?

    \r\nPlease don\'t! Instead email plugins@wordpress.org and we can rename your plugin as long as it\'s not approved. Since we check emails first, the odds are we\'ll catch it. If we don\'t, just email us and explain the mistake. We\'ll explain what do to.\r\n

    Why was I told my plugin name was unacceptable?

    \r\nThis is explained in detail in our detailed plugin guidelines, but currently we give you the chance to rename yout during the review process if the plugin name violates the guideline. Some terms (like \'plugin\' and \'wordpress\') will be removed for you, as those should not be used at all. We get it. You\'re a WordPress Plugin.\r\n\r\nRegarding other companies and plugins\' names and trademarks, don\'t use them to start your plugin name. If you\'re not Facebook, you shouldn\'t submit a plugin that uses facebook as the first term in your slug. \"Facebook Like Sharer\" (which would be facebook-like-sharer) is not acceptable, but \"Like Sharer for Facebook (which would be like-sharer-for-facebook) would be alright.\r\n\r\n
    \r\n\r\n','Add your Plugin','','inherit','closed','closed','','10-autosave-v1','','','2016-06-14 16:26:07','2016-06-14 16:26:07','',10,'https://wordpress.org/plugins-wp/10-autosave-v1/',0,'revision','',0), (1417,71562,'2016-04-28 15:36:58','2016-04-28 15:36:58','

    WordPress can host your plugin

    \r\nYou?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    1. Keep track of how many people have downloaded it.
    2. \r\n
    3. Let people leave comments about your plugin.
    4. \r\n
    5. Get your plugin rated against all the other cool WordPress plugins.
    6. \r\n
    7. Give your plugin lots of exposure in this centralized repository.
    8. \r\n
    \r\n

    There are only a few restrictions

    \r\n
      \r\n
    1. Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.?
    2. \r\n
    3. The plugin must not do anything illegal, or be morally offensive (that?s subjective, we know).
    4. \r\n
    5. You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    6. \r\n
    7. The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    8. \r\n
    9. If you don?t specify a compatible license, what you check in is considered GPLv2 or later.
    10. \r\n
    11. We also have a large list of detailed guidelines, but mostly they say how not to be a spammer.
    12. \r\n
    \r\n

    It?s pretty simple

    \r\n
      \r\n
    1. Sign up for an account on WordPress.org.
    2. \r\n
    3. Submit your plugin for review.
    4. \r\n
    5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
    6. \r\n
    7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
    8. \r\n
    9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
    10. \r\n
    11. Check out the FAQ for more information.
    12. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-04-28 15:36:58','2016-04-28 15:36:58','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (1418,71562,'2016-04-28 15:45:40','2016-04-28 15:45:40','

    Submit your plugin for hosting

    \r\nOnce submitted, your plugin will be manually reviewed for any common errors as well as ensuring it complies with all the guidelines.\r\n\r\nWhile you\'re waiting for your review, you should refresh your memory with the following information:\r\n\r\nNote: The plugin name you submit here will become the URL of the plugin in the directory (aka your plugin\'s slug) and it is not changeable after approval. The plugin name works exactly like the WordPress post title does. If you submit \"My Cool Product Name\" then your plugin URL will become https://wordpress.org/plugins/my-cool-product-name and your slug will be my-cool-product-name, which may not be what you wanted.\r\n\r\nWe recommend you leave out small words like \'the\', \'and\', \'with\', etc. You can submit your plugin name as the desired slug (ex booster-pack-gold instead of \"Booster Pack for Jetpack - Gold Edition\", which would be booster-pack-for-jetpack--gold-edition) to ensure you get the best slug for your plugin.\r\n\r\nPlease remember to respect other companies and plugins\' names and trademarks. If you\'re not Facebook, you shouldn\'t submit a plugin that uses facebook as the first term in your slug.\r\n\r\n[wporg-plugin-upload]','Add your Plugin','','inherit','closed','closed','','10-revision-v1','','','2016-04-28 15:45:40','2016-04-28 15:45:40','',10,'https://wordpress.org/plugins-wp/10-revision-v1/',0,'revision','',0), (1419,71562,'2016-04-28 15:46:53','2016-04-28 15:46:53','

    WordPress can host your plugin

    \r\nYou?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    1. Keep track of how many people have downloaded it.
    2. \r\n
    3. Let people leave comments about your plugin.
    4. \r\n
    5. Get your plugin rated against all the other cool WordPress plugins.
    6. \r\n
    7. Give your plugin lots of exposure in this centralized repository.
    8. \r\n
    \r\n

    There are only a few restrictions

    \r\n
      \r\n
    1. Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.?
    2. \r\n
    3. The plugin must not do anything illegal, or be morally offensive (that?s subjective, we know).
    4. \r\n
    5. You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    6. \r\n
    7. The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    8. \r\n
    9. If you don?t specify a compatible license, what you check in is considered GPLv2 or later.
    10. \r\n
    11. We also have a large list of detailed guidelines, but mostly they say how not to be a spammer.
    12. \r\n
    \r\n

    It?s pretty simple

    \r\n
      \r\n
    1. Sign up for an account on WordPress.org.
    2. \r\n
    3. Submit your plugin for review.
    4. \r\n
    5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
    6. \r\n
    7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
    8. \r\n
    9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
    10. \r\n
    11. Check out the FAQ for more information.
    12. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-04-28 15:46:53','2016-04-28 15:46:53','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (1420,71562,'2016-04-28 15:47:33','2016-04-28 15:47:33','

    WordPress can host your plugin

    \r\nYou?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    1. Keep track of how many people have downloaded it.
    2. \r\n
    3. Let people leave comments about your plugin.
    4. \r\n
    5. Get your plugin rated against all the other cool WordPress plugins.
    6. \r\n
    7. Give your plugin lots of exposure in this centralized repository.
    8. \r\n
    \r\n

    There are only a few restrictions

    \r\n
      \r\n
    1. Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.?
    2. \r\n
    3. The plugin must not do anything illegal, or be morally offensive (that?s subjective, we know).
    4. \r\n
    5. You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    6. \r\n
    7. The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    8. \r\n
    9. If you don?t specify a compatible license, what you check in is considered GPLv2 or later.
    10. \r\n
    11. We also have a large list of detailed guidelines, but mostly they say how not to be a spammer.
    12. \r\n
    \r\n

    It?s pretty simple

    \r\n
      \r\n
    1. Sign up for an account on WordPress.org.
    2. \r\n
    3. Submit your plugin for review.
    4. \r\n
    5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
    6. \r\n
    7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
    8. \r\n
    9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
    10. \r\n
    11. Check out the FAQ for more information.
    12. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-04-28 15:47:33','2016-04-28 15:47:33','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (1421,71562,'2016-04-28 15:50:17','2016-04-28 15:50:17','You?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    • Keep track of how many people have downloaded it.
    • \r\n
    • Let people leave comments about your plugin.
    • \r\n
    • Get your plugin rated against all the other cool WordPress plugins.
    • \r\n
    • Give your plugin lots of exposure in this centralized repository.
    • \r\n
    \r\n

    There are some restrictions

    \r\n
      \r\n
    • Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.?\r\n
        \r\n
      • If you don?t specify a compatible license, what you check in will considered GPLv2 or later.
      • \r\n
      \r\n
    • \r\n
    • The plugin must not do anything illegal or be morally offensive (that?s subjective, we know).
    • \r\n
    • You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    • \r\n
    • The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    • \r\n
    • Your plugin must abide by our list of detailed guidelines, which include not being a spammer and not abusing the systems.
    • \r\n
    \r\n

    Submission is Simple

    \r\n
      \r\n
    1. Sign up for an account on WordPress.org.
    2. \r\n
    3. Submit your plugin for review.
    4. \r\n
    5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
    6. \r\n
    7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
    8. \r\n
    9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
    10. \r\n
    11. Check out the FAQ for more information.
    12. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-04-28 15:50:17','2016-04-28 15:50:17','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (1422,71562,'2016-04-28 15:50:47','2016-04-28 15:50:47','You?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    • Keep track of how many people have downloaded it.
    • \r\n
    • Let people leave comments about your plugin.
    • \r\n
    • Get your plugin rated against all the other cool WordPress plugins.
    • \r\n
    • Give your plugin lots of exposure in this centralized repository.
    • \r\n
    \r\n

    There are some restrictions

    \r\n
      \r\n
    • Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.? (If you don?t specify a compatible license, what you check in will considered GPLv2 or later.)
    • \r\n
    • The plugin must not do anything illegal or be morally offensive (that?s subjective, we know).
    • \r\n
    • You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    • \r\n
    • The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    • \r\n
    • Your plugin must abide by our list of detailed guidelines, which include not being a spammer and not abusing the systems.
    • \r\n
    \r\n

    Submission is Simple

    \r\n
      \r\n
    1. Sign up for an account on WordPress.org.
    2. \r\n
    3. Submit your plugin for review.
    4. \r\n
    5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
    6. \r\n
    7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
    8. \r\n
    9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
    10. \r\n
    11. Check out the FAQ for more information.
    12. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-04-28 15:50:47','2016-04-28 15:50:47','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (1434,71562,'2016-05-02 20:22:56','2016-05-02 20:22:56','Once submitted, your plugin will be manually reviewed for any common errors as well as ensuring it complies with all the guidelines.\r\n\r\n

    Your Plugin Name

    \r\n\r\nYour plugin\'s URL will be pulled from the value of Plugin Name: in your main plugin file. If you set yours as Plugin Name: Boaty McBoatface then your URL will be https://wordpress.org/plugins/boaty-mcboatface and your slug will be boaty-mcboatface for example. If there is an existing plugin with your name, then you will be boaty-mcboatface-2 and so on. It behaves exactly like WordPress post names.\r\n\r\nIf your name is deemed unacceptable, you will be given the chance to rename it during the review process. Once your plugin is approved, it cannot be renamed. Chose your name wisely and respectfully.\r\n\r\nWe recommend you leave out small words like \'the\', \'and\', \'with\', etc. You can submit your plugin name as the desired slug (ex booster-pack-gold instead of \"Booster Pack for Jetpack - Gold Edition\", which would be booster-pack-for-jetpack--gold-edition) to ensure you get the best slug for your plugin.\r\n\r\nRegarding other companies and plugins\' names and trademarks, don\'t use them to start your plugin name. If you\'re not Facebook, you shouldn\'t submit a plugin that uses facebook as the first term in your slug. \"Facebook Like Sharer\" (which would be facebook-like-sharer) is not acceptable, but \"Like Sharer for Facebook (which would be like-sharer-for-facebook) would be alright.\r\n\r\n

    While You\'re Waiting For Your Review...

    \r\nYou should refresh your memory with the following information:\r\n\r\n\r\n\r\n[wporg-plugin-upload]','Add your Plugin','','inherit','closed','closed','','10-revision-v1','','','2016-05-02 20:22:56','2016-05-02 20:22:56','',10,'https://wordpress.org/plugins-wp/10-revision-v1/',0,'revision','',0), (1435,71562,'2016-05-02 20:23:14','2016-05-02 20:23:14','Once submitted, your plugin will be manually reviewed for any common errors as well as ensuring it complies with all the guidelines.\r\n\r\n

    Your Plugin Name

    \r\n\r\nYour plugin\'s URL will be populated based on the value of Plugin Name: in your main plugin file. If you set yours as Plugin Name: Boaty McBoatface then your URL will be https://wordpress.org/plugins/boaty-mcboatface and your slug will be boaty-mcboatface for example. If there is an existing plugin with your name, then you will be boaty-mcboatface-2 and so on. It behaves exactly like WordPress post names.\r\n\r\nIf your name is deemed unacceptable, you will be given the chance to rename it during the review process. Once your plugin is approved, it cannot be renamed. Chose your name wisely and respectfully.\r\n\r\nWe recommend you leave out small words like \'the\', \'and\', \'with\', etc. You can submit your plugin name as the desired slug (ex booster-pack-gold instead of \"Booster Pack for Jetpack - Gold Edition\", which would be booster-pack-for-jetpack--gold-edition) to ensure you get the best slug for your plugin.\r\n\r\nRegarding other companies and plugins\' names and trademarks, don\'t use them to start your plugin name. If you\'re not Facebook, you shouldn\'t submit a plugin that uses facebook as the first term in your slug. \"Facebook Like Sharer\" (which would be facebook-like-sharer) is not acceptable, but \"Like Sharer for Facebook (which would be like-sharer-for-facebook) would be alright.\r\n\r\n

    While You\'re Waiting For Your Review...

    \r\nYou should refresh your memory with the following information:\r\n\r\n\r\n\r\n[wporg-plugin-upload]','Add your Plugin','','inherit','closed','closed','','10-revision-v1','','','2016-05-02 20:23:14','2016-05-02 20:23:14','',10,'https://wordpress.org/plugins-wp/10-revision-v1/',0,'revision','',0), (1436,71562,'2016-05-02 20:25:59','2016-05-02 20:25:59','Once submitted, your plugin will be manually reviewed for any common errors as well as ensuring it complies with all the guidelines.\r\n\r\n

    Your Plugin Name

    \r\n\r\nYour plugin\'s URL will be populated based on the value of Plugin Name in your main plugin file. If you set yours as Plugin Name: Boaty McBoatface then your URL will be https://wordpress.org/plugins/boaty-mcboatface and your slug will be boaty-mcboatface for example. If there is an existing plugin with your name, then you will be boaty-mcboatface-2 and so on. It behaves exactly like WordPress post names.\r\n\r\nIf your name is deemed unacceptable, you will be given the chance to rename it during the review process. Once your plugin is approved, it cannot be renamed. Chose your name wisely and respectfully.\r\n\r\nWe recommend you leave out small words like \'the\', \'and\', \'with\', etc. You can submit your plugin name as the desired slug (ex booster-pack-gold instead of \"Booster Pack for Jetpack - Gold Edition\", which would be booster-pack-for-jetpack--gold-edition) to ensure you get the best slug for your plugin.\r\n\r\nRegarding other companies and plugins\' names and trademarks, don\'t use them to start your plugin name. If you\'re not Facebook, you shouldn\'t submit a plugin that uses facebook as the first term in your slug. \"Facebook Like Sharer\" (which would be facebook-like-sharer) is not acceptable, but \"Like Sharer for Facebook (which would be like-sharer-for-facebook) would be alright.\r\n\r\n

    While You\'re Waiting For Your Review...

    \r\nYou should refresh your memory with the following information:\r\n\r\n\r\n\r\n[wporg-plugin-upload]','Add your Plugin','','inherit','closed','closed','','10-revision-v1','','','2016-05-02 20:25:59','2016-05-02 20:25:59','',10,'https://wordpress.org/plugins-wp/10-revision-v1/',0,'revision','',0), (1437,71562,'2016-05-02 20:27:15','2016-05-02 20:27:15','Once submitted, your plugin will be manually reviewed for any common errors as well as ensuring it complies with all the guidelines.\r\n\r\n

    Your Plugin Name

    \r\n\r\nYour plugin\'s URL will be populated based on the value of Plugin Name in your main plugin file. If you set yours as Plugin Name: Boaty McBoatface then your URL will be https://wordpress.org/plugins/boaty-mcboatface and your slug will be boaty-mcboatface for example. If there is an existing plugin with your name, then you will be boaty-mcboatface-2 and so on. It behaves exactly like WordPress post names.\r\n\r\nIf your name is deemed unacceptable, you will be given the chance to rename it during the review process. Once your plugin is approved, it cannot be renamed. Some terms (like \'plugin\' and \'wordpress\') will be removed for you, as those should not be used at all. We get it. You\'re a WordPress Plugin.\r\n\r\nRegarding other companies and plugins\' names and trademarks, don\'t use them to start your plugin name. If you\'re not Facebook, you shouldn\'t submit a plugin that uses facebook as the first term in your slug. \"Facebook Like Sharer\" (which would be facebook-like-sharer) is not acceptable, but \"Like Sharer for Facebook (which would be like-sharer-for-facebook) would be alright.\r\n\r\n

    While You\'re Waiting For Your Review...

    \r\nYou should refresh your memory with the following information:\r\n\r\n\r\n\r\n[wporg-plugin-upload]','Add your Plugin','','inherit','closed','closed','','10-revision-v1','','','2016-05-02 20:27:15','2016-05-02 20:27:15','',10,'https://wordpress.org/plugins-wp/10-revision-v1/',0,'revision','',0), (30184,186678,'2014-09-17 08:50:07','2014-09-17 08:50:07','\n

    This is a feature plugin intended to implement #34923: Introduce basic content authorship in the Customizer.

    \n\n

    The goal for this plugin is to be able to expose the editing of posts and pages in the Customizer, allowing you to edit post data and postmeta for any number of posts, and preview the changes before saving them for others to see. This plugin was birthed out of the Widget Customizer feature-as-plugin project which was merged into WordPress Core: as widgets (in 3.9) and nav menus (4.3) can now be managed in the Customizer, so too should posts and pages be editable in the Customizer as well.

    \n\n

    Did you know that changing the featured image actually makes the change live even before you save the post? This is very surprising/unexpected behavior. The only way to truly preview a change to a featured image is to use something like Customize Posts.

    \n\n

    Likewise, did you know that changing a page template cannot be previewed from the post editor? When you change the selected page template, the change will not show up when you preview the page (see #11049). However, in Customize Posts you can preview changes to the page template just by changing the dropdown selection, and then you can see what your page would look like with the new template after the preview refreshes.

    \n\n

    Most other changes to metaboxes containing data that gets saved to custom fields (postmeta) also get written when clicking the Preview button. The Customize Posts plugin provides a framework to edit postmeta in the Customizer with a live preview of the changes. (Fixing this underlying issue of incorrectly persisting postmeta when doing a preview is captured in #20299.)

    \n\n

    As much as possible, the previewing of changes in Customize Posts utilizes the selective refresh capabilities introduced in WordPress 4.5. Not only does this mean it is faster to preview changes to posts and postmeta, but it also allows you to shift-click on an element to focus on the corresponding control in the Customizer pane. For example you can shift-click on the post title in the preview to focus on the post title control\'s input field, or shift-click on a featured image to focus on the control\'s button to open the media library.

    \n\n

    Development of this plugin is done on GitHub. Pull requests welcome. Please see issues reported there before going to the plugin forum.

    \n\n

    (This Customize Posts plugin is not to be confused with 10up\'s Post Customizer.)

    \n\n

    Demo Videos

    \n\n

    The following are listed in reverse chronological order. The first, more recent videos, show more polish.

    \n\n

    [2016-04-28] New features in 0.5.0.

    \n\n

    [youtube https://www.youtube.com/watch?v=2NXh-1_eUqI]

    \n\n

    [2016-03-28] Previewing post from Post Edit screen.

    \n\n

    [youtube https://www.youtube.com/watch?v=Q62nav1k4gY]

    \n\n

    [2016-03-05] Opening a draft post in the Customizer to preview title wrapping.

    \n\n

    [youtube https://www.youtube.com/watch?v=sXu2pA42J88]

    \n\n

    [2016-03-04] Demo featuring the WP visual rich text editor (TinyMCE), including the insertion of images from the media library. Post content can be edited in the Customizer and previewed in multiple contexts. For example, this allows you to preview how a Read More tag will appear when the post appears on a post list page, and you can navigate to the single post to continue previewing subsequent paragraphs. You can expand the editor into a full-screen mode to focus on writing and then quickly preview the changes on the site by toggling the editor. You can make changes to as many posts as you want, but none of the changes will go live until you hit Save & Publish: everything is previewed so there is no ?save and surprise?.

    \n\n

    [youtube https://www.youtube.com/watch?v=QJsEl0gd7dk]

    \n\n

    [2016-03-03] Demonstration of integration with Customize Setting Validation (#34893) to gracefully handle failures to save due to post locking and concurrent user editing:

    \n\n

    [youtube https://www.youtube.com/watch?v=OUwwTt6FtlQ]

    \n\n

    [2016-03-01] Demonstration of hooking into edit post links so that they actually work in the Customizer and expand the section to edit the given post (as opposed to the link doing nothing at all when clicked), as well as shift-clicking on the title and content (needs better discovery UI, see #27403):

    \n\n

    [youtube https://www.youtube.com/watch?v=nYfph3NbNCc]

    \n\n\n

    [0.8.5] - 2017-01-03

    \n\n
      \n
    • Add syncing of customize post settings to Backbone post models; try this out with the Next Recent Posts Widget. Fixes #331, PR #333.
    • \n
    • Improve logic for determining when to do fallback refresh for post field partials, reducing the number of needless full page refreshes. PR #335.
    • \n
    • Differentiate featured image partials on index templates for separate posts, allowing changes to featured images to be previewed properly on the homepage and archive views. Fixes #297, PR #334.
    • \n
    • Handle edit post links that have child elements; remove need for data-customize-post-id attribute. PR #332.
    • \n
    \n\n

    See issues and PRs in milestone and full release commit log.

    \n\n

    [0.8.4] - 2016-12-03

    \n\n
      \n
    • Ensure auto-draft posts referenced in snapshot/changeset get transitioned to customize-draft, and that customize-draft nav_menus_created_posts get published (PR #326).
    • \n
    • Improve method for skipping attachments so no error in console appears (PR #325, Issue #32).
    • \n
    \n\n

    See issues and PRs in milestone and full release commit log.

    \n\n

    [0.8.3] - 2016-11-24

    \n\n
      \n
    • Prevent extra section params from being passed along to previewUrl (PR #306)
    • \n
    • Fix errors and erroneous selective refresh caused by dirty post settings not being synced into nav menu item settings (PR #307)
    • \n
    • Add compat for WP4.5 where settingConstructor is not defined (PR #308)
    • \n
    • Fix handling of postmeta preview filter when no modifications are in customized state (PR #309)
    • \n
    • Improve compatibility with Customize Changesets (PR #300)
    • \n
    • Recognize and handle dropdown-pages control in WP 4.7-alpha (PR #311)
    • \n
    • Prevent attempting to update original titles for removed nav menu items (placeholders) (PR #312)
    • \n
    • Restore edit_post_link() in WordPress 4.7 (PR #314)
    • \n
    • Disable polyfill for nav menu item loading/searching fix landing in 4.7 (PR #315)
    • \n
    • Eliminate determination of user capability in setting constructor (PR #316)
    • \n
    • Prevent sending back DB-persisted setting values in customize_save_response unless changeset is being published (PR #317)
    • \n
    • Pass missing options param in wrapped isLinkPrewable function (PR #318)
    • \n
    • Improve compat with posts & pages created as stubs in 4.7 (PR #320)
    • \n
    \n\n

    See issues and PRs in milestone and full release commit log.

    \n\n

    Props Weston Ruter (@westonruter), Sayed Taqui (@sayedwp), Utkarsh Patel (@PatelUtkarsh).

    \n\n

    [0.8.2] - 2016-10-03

    \n\n
      \n
    • Fixed browser incompatible way of parsing local datetime strings. This is a follow-up on #293, which was not fully fixed in 0.8.1. PR #304.
    • \n
    • Improved fetching of post/postmeta settings so that the customized state is included in the request, and allow for placeholder nav_menu_item settings to be fetched. PR #299.
    • \n
    • Added $setting context to customize_previewed_postmeta_rows filter and add new customize_previewed_postmeta_rows_{$setting->post_meta} filter. PR #299.
    • \n
    \n\n

    Props Weston Ruter (@westonruter), Utkarsh Patel (@PatelUtkarsh).

    \n\n

    See issues and PRs in milestone and full release commit log.

    \n\n

    [0.8.1] - 2016-09-23

    \n\n

    Fixed compatibility with Safari in the wp.customize.Posts.getCurrentTime() method. See #293. Props Piotr Delawski (@delawski).

    \n\n

    [0.8.0] - 2016-09-22

    \n\n

    Added:

    \n\n
      \n
    • Add ability to edit and create pages from dropdown-pages controls, such as the controls for page on front and page for posts. Adds startEditPageFlow and startAddPageFlow methods from the Customize Object Selector plugin. See #271 and PRs #272, #284, #285.
    • \n
    • Allow page/post stubs created via nav menus in 4.7-alpha to also be edited like any other page. See #253 and PR #287.
    • \n
    • For nav menu items linking to a post/page, add a edit button that appears in the nav menu item control next to the original link. Clicking edit will expand the section for that post/page, and collapsing the section will return focus to the button in the nav menu item control. See #147 and PR #288.
    • \n
    • Sync post/page changes to available nav menu items and nav menu item controls, ensuring titles are consistent in available item lists and in the nav menu item control\'s title, label placeholder, and original link, and in the nav menu item setting\'s original_title property. If a nav menu item lacks its own title and inherits from original_title, post/page changes will now trigger nav menu selective refresh updates. See #156 and PR #288, #289.
    • \n
    • Sync pages additions, changes, and removals to all dropdown-pages controls, in particular to the page on front and page for posts controls in the static front page section. See #153. PRs #190, #270, #275, #276.
    • \n
    • Add support post parent control via Customize Object Selector plugin\'s control (in v0.3). See #65 and PRs #189, #233.
    • \n
    • Add rudimentary number-based menu order control. See #84 and PR #255, #257.
    • \n
    • Add previewing of title changes for pages listed by wp_list_pages(). PR #256.
    • \n
    • Implement support for all of the WP_Query query vars, including post meta queries, ensuring results have posts\' customized state applied as expected. This is a big improvement to ensure customized posts and postmeta will appear the same before or after saving the customized state. Previously, previewing WP_Query results was very limited and often not accurate. As part of this, get_posts() and any queries made with suppress_filters on will be overridden to force filters to apply. See #246 and PR #248.
    • \n
    • Add support to WP_Customize_Postmeta_Setting for representing non-single postmeta. Such settings are instantiated with a true single arg and they require an array value. The customize_sanitize_{$setting_id} filter will apply to each array item separately, as will the sanitize_meta() call. PR #248.
    • \n
    • Ensure that static front page constructs get registered even without any pages yet created. Add active callback to the static front page section so that it will appear as soon as a published page exists (either via adding a new page from the Pages panel or via a nav menu item page stub in WP 4.7-alpha). See #252 and PR #254.
    • \n
    • Refactor editor control to be reusable for not just post content but also custom fields (postmeta). See PRs #216, #269.
    • \n
    • Ensure that the results of get_pages() has the customized state applied. This enables support for wp_dropdown_pages() (and thus the post parent control). See #241 and PR #250.
    • \n
    • Prevent the same page from being selected as both the page for posts and the page on front. PR #270.
    • \n
    • Improve support for page for posts by hiding page template and content since not displayed. Show notice that the page for posts is being edited. See #228, #277 and PR #278.
    • \n
    • Allow posts component to be filtered out to be disabled like other components (widgets and nav_menus). See #132 with PRs #219 and #258.
    • \n
    • Disable edit-post-links module in customize-direct-manipulation plugin so that edit links in the preview will continue to work in Customize Posts. PR #234.
    • \n
    • Let Customize link in admin bar deep link on the post section when on a singular template. See #105 and PR #236.
    • \n
    • Use non-minified scripts and styles if plugin installed via git (submodule), eliminating the need to add SCRIPT_DEBUG or do a build. PR #249.
    • \n
    • Add all to wp_transition_post_status()``when transitioning fromauto-drafttocustomize-draft`. PR #266.
    • \n
    • Include nav menu items and their postmeta in requests to fetch settings. This is to facilitate custom fields in nav menus items. PRs #263, #268, #274.
    • \n
    • Support constructing Setting objects in JS using a specific settingConstructor if defined for a given setting type when fetching settings. PR #286.
    • \n
    \n\n

    Changed:

    \n\n
      \n
    • For registered post type attributes, use public instead of show_ui as default show_in_customizer flag. See #264 and PR #265.
    • \n
    \n\n

    Fixed:

    \n\n
      \n
    • Restrict page template control to just the page post type (as opposed to other post types that support page-attributes). PR #227.
    • \n
    • Ensure that preview urls are used as permalinks for customized posts. PR #245.
    • \n
    • Ensure the page for posts can be previewed as the page for posts (and not a normal page). See #260 and PR #292.
    • \n
    • Fix ability to do translation via translate.wordpress.org. PR #215.
    • \n
    • Ensure wp_insert_post_empty_content filter gets removed after trashing. PR #214.
    • \n
    • Fix theme compat for twentysixteen content rendering by including additional template tags. PR #226.
    • \n
    • Fix display of notifications in date control. See #229 and PR #230.
    • \n
    • Use notification.setting instead of notification.data.setting. PR #238.
    • \n
    • Add syncing of slug (post_name) between edit post screen and customize post preview. PR #239.
    • \n
    • Eliminate post type names in generic strings to ensure ability to translate. See #237 and PR #242.
    • \n
    • Use flexbox for post selection lookup select2 and add button. PR #244.
    • \n
    • Remove underline from time-info-handle in 4.7-alpha. PR #242.
    • \n
    • Make sure post_author is string in PHP but keep int in JS. PR #251.
    • \n
    • Ensure that a post section is expanded when a post editor control is expanded. Issue #259 and PR #280.
    • \n
    • Prevent ESC key from causing the editor to collapse unexpectedly. See #281 and PR #282.
    • \n
    • Ensure that all TinyMCE UIs are hidden when the editor control is collapsed. See #231 and PR #282.
    • \n
    \n\n

    Removed:

    \n\n
      \n
    • Removed the customize_previewed_posts_for_query filter since now unnecessary and irrelevant after refactor in #248.
    • \n
    \n\n

    See issues and PRs in milestone and full release commit log

    \n\n

    Props: Weston Ruter (@westonruter), Sayed Taqui (@sayedwp), Sunny Ratilal (@sunnyratilal), Ryan Kienstra (@kienstra), Eduard Maghakyan (@EduardMaghakyan).

    \n\n

    [0.7.0] - 2016-08-06

    \n\n

    Added:

    \n\n
      \n
    • Introduce Select2 dropdown in a post type\'s panel for searching for any post to load, even if it is not shown in the preview. Selecting a post adds its section to the Customizer and expands it while also navigating to the post\'s URL in the preview. Trashed posts are also listed, and selecting a trashed post will load its post data into the Customizer in its untrashed state (restoring its original status and slug) so that upon save it will be be untrashed. (#196, #199)
    • \n
    • Add control for post date, including synchronization with publish/future status for when date is in future. Control includes timezone information and countdown for when schedule publish will happen. Also includes reset link to leave the date empty so that it will default to the current date/time when it is published. (#56, #202)
    • \n
    • Improve UX for trashing posts, adding a Move to Trash link. (#172, #211)
    • \n
    • Add initial support for meta queries when the Customizer state includes changes to postmeta. (#174, #191, #197, #193)
    • \n
    • Allow post field control labels to be defined in register_post_type() so that the names can be repurposed to be appropriate to the custom post type. (#195)
    • \n
    • Add low-fidelity live JS-applied previews to post title changes while waiting for high-fidelity PHP-applied selective refresh requests to response. (#43)
    • \n
    \n\n

    Fixed:

    \n\n
      \n
    • Ensure title is focused and selected when creating a new post. (#209, #208, #206)
    • \n
    • Make sure that posts are loaded for any post sections/controls that are autofocused. (#204, #205)
    • \n
    • Speed up performance by registering post/postmeta settings and partials only as they are needed (just in time), introducing a new ensurePosts API call to fetch the settings over Ajax and create the relevant section. (#201)
    • \n
    • Improve test coverage. (#200)
    • \n
    • Fix editor text not persistent issue across all posts and post types. (#129, #198)
    • \n
    • Sort posts in a section reverse-chronologically by date (if non-hierarchical) or else by menu_order if hierarchical. (#124)
    • \n
    • Ensure changes to post status are reflected in return value when calling get_post_status(). (#194)
    • \n
    \n\n

    See full commit log: 0.6.1...0.7.0

    \n\n

    Issues in milestone: milestone:0.7.0

    \n\n

    Props: Weston Ruter (@westonruter), John Regan (@johnregan3), Sayed Taqui (@sayedwp), Utkarsh Patel (@PatelUtkarsh), Luke Gedeon (@lgedeon), Ahmad Awais (@ahmadawais), Derek Herman (@valendesigns), Piotr Delawski (@delawski)

    \n\n

    [0.6.1] - 2016-06-16

    \n\n
      \n
    • Send values to JS via js_value() and use the settings json method if available.
    • \n
    • Move comments_open and pings_open filters to the WP_Customize_Posts_Preview::add_preview_filters method.
    • \n
    • Fix purgeTrash to ensure trashed post sections do not appear in the Customizer root panel after publishing changes.
    • \n
    • Ensure the modified date is not changed when transitioning to customize-draft.
    • \n
    • Make sure the customize-draft status is always available to Customize Snapshots & wp-admin
    • \n
    • Fix PHP notice generated when a post type is registered without map_meta_cap
    • \n
    • Delete auto-draft and customize-draft status posts when saving the trash post_status
    • \n
    • Use a post type\'s edit_posts capability for sections
    • \n
    • Defer embedding a sections contents until expanded
    • \n
    • Implement focusControl support for deferred-embedded post section controls
    • \n
    • Add support for focusing on controls for setting properties when those properties are invalid
    • \n
    • Prevent customized-posts messages sent via selective-refresh from effecting post-navigation state
    • \n
    • Improve feature detection for including customize-controls patched for trac-36521
    • \n
    • Included plugin-support and theme-support PHP files that were inadvertantly omitted from the 0.6.0 build.
    • \n
    \n\n

    See full commit log: 0.6.0...0.6.1

    \n\n

    Issues in milestone: milestone:0.6.1

    \n\n

    Props: Weston Ruter (@westonruter), Derek Herman (@valendesigns)

    \n\n

    0.6.0 - 2016-06-02

    \n\n

    Added:

    \n\n
      \n
    • Add the ability to create new posts and pages in the Customizer. Created posts get auto-draft status in the DB so they will be garbage-collected if the Customizer is never saved. A new view link appears in the post section allowing a newly-created post to be navigated to easily without having to find the created post linked to in the preview. (Issues #48, #50, PR #134)
    • \n
    • Add post status control and preview, with trash status support (Issues #40, #137, PR #152)
    • \n
    • Add support for setting validation in WordPress 4.6-alpha, showing notifications if attempting to save when a post is locked or a conflicting update was previously made. (Issue #142, PR #150)
    • \n
    • Add the ability to vertically resize the post editor (Issue #136, PR #149)
    • \n
    • Add post slug control, wherein changes do not cause the preview to refresh by default since there is nothing to see (Issue #63, PR #148)
    • \n
    • Posts data as saved will now be synced back into the Customizer interface, ensuring that if a post slug gets the infamous -2 added, you?ll see that in the Control. Likewise, if a wp_insert_post_data filter or content_save_pre changes your data in some way, these will be shown in the post?s Customizer controls upon saving.
    • \n
    • Add extendable theme & plugin compatibility classes that can configure partial rendering. All Core themes & Jetpack are currently supported. (Issues #82, #103, PR #123)
    • \n
    • Use plugins_url() for each asset URL so that the plugin can be installed as a submodule without SCRIPT_DEBUG (Issue #133)
    • \n
    \n\n

    Fixed:

    \n\n
      \n
    • Add all postmeta settings for registered types not just the ones actually referenced (Issues #141, #145)
    • \n
    • Export all registered post types to client, but only register panels if show_in_customizer (PR #130)
    • \n
    • Ensure that control pane expand button is visible when editor is open and the Customizer pane is collapsed (Issue #44, PR #126)
    • \n
    • Improve compatibility with the Customize Snapshots plugin.
    • \n
    • Improve compatibility with the WP REST API plugin.
    • \n
    • Supply a default (no title) placeholder to the post title control for new posts.
    • \n
    • Filter post and page links in the Customizer to return the preview URL.
    • \n
    \n\n

    See full commit log: 0.5.0...0.6.0

    \n\n

    Issues in milestone: milestone:0.6

    \n\n

    Props: Weston Ruter (@westonruter), Derek Herman (@valendesigns), Philip Ingram (@pingram3541), Daniel Bachhuber (@danielbachhuber), Stuart Shields (@stuartshields)

    \n\n

    0.5.0 - 2016-04-27

    \n\n

    Added:

    \n\n
      \n
    • Support for postmeta, including a framework for registering postmeta types. (Issues #1, PR #89)
    • \n
    • Page template control and preview, with sync from Customizer post preview back to post edit screen. (Issue #85, PR #89)
    • \n
    • Featured image control, with sync from Customizer post preview back to post edit screen. Changes to the featured image can now be previewed, where normally this is not possible in WordPress. Improved featured image selection on edit post screen to not update featured image in place, instead waiting until the post is Saved until updating the featured image postmeta. The featured image can be set from the post edit screen and then previewed in the Customizer via the post Preview Changes button: the featured image can be further changed in the Customizer post preview, with changes synced back to the post edit screen when the Customizer post preview is exited. (Issue #57, PR #102)
    • \n
    • Author control and preview, with sync from Customizer post preview back to post edit screen (Issue #62, PRs #89 #92)
    • \n
    • Excerpt control and preview, with sync from Customizer post preview back to post edit screen (Issue #60, PR #91)
    • \n
    • Comment status control and preview, with sync from Customizer post preview back to post edit screen (Issues #61, PR #100)
    • \n
    • Ping status control and preview, with sync from Customizer post preview back to post edit screen (Issue #64, PR #100)
    • \n
    • Improve PHPUnit test coverage to 98%.
    • \n
    • Note: Selective refresh support was specifically tested with Twenty Fifteen and Twenty Sixteen. See #103 for a way for themes to configure how they represent the various post fields in template parts.
    • \n
    \n\n

    Fixed:

    \n\n
      \n
    • Improve editor styles in mobile and in fullscreen mode. (Issue #45, PR #107)
    • \n
    • Modals, toolbars, and tooltips and are no longer hidden (Issue #80, PRs #81, #101).
    • \n
    • Improve compatibility with Customize Widgets Plus (PR #83). See also https://github.com/xwp/wp-customize-widgets-plus/pull/46 for a fix in the Customizer post preview.
    • \n
    • Export post/postmeta settings during selective refresh requests so that new posts added will appear in the panel, such as when adding the number of posts to show in the Recent Posts widget. (Issue #97, PR #99)
    • \n
    • Improve compatibility with Customize Snapshots (PR #95)
    • \n
    \n\n

    See v0.5 release post on Make XWP.

    \n\n

    See full commit log: 0.4.2...0.5.0

    \n\n

    Issues in milestone: milestone:0.5

    \n\n

    Props: Weston Ruter (@westonruter), Derek Herman (@valendesigns), Luke Carbis (@lukecarbis), Mike Crantea (@mehigh), Stuart Shields (@stuartshields)

    \n\n

    0.4.2 - 2016-03-30

    \n\n

    Restore stylesheet erroneously deleted during grunt deploy.

    \n\n

    0.4.1 [YANKED]

    \n\n
      \n
    • Restore editability of pages in the Customizer (remove default condition that a post type have publicly_queryable as true).
    • \n
    • Log errors in customize-posts message receiver instead of throwing them.
    • \n
    \n\n

    0.4.0 - 2016-03-29

    \n\n
      \n
    • Open Customizer to preview and make additional changes when clicking Preview from post edit admin screen (see video).
    • \n
    • Introduce show_in_customizer arg for register_post_type(), and let override condition on show_ui ~~and publicly_queryable~~ being both true.
    • \n
    • Fix modals and inline toolbars in TinyMCE editor displayed in Customizer.
    • \n
    • Fix initialization when TinyMCE does not default to Visual.
    • \n
    • Complete support for Jetpack Infinite Scroll, ensuring posts are listed in Customizer in order of appearance.
    • \n
    • Remove dependency on widgets component being loaded.
    • \n
    • Allow auto-draft posts to be previewed.
    • \n
    • Add Grunt, contributing.
    • \n
    \n\n

    0.3.0 - 2016-03-08

    \n\n
      \n
    • Complete rewrite of plugin.
    • \n
    • Added: Selective refresh is now used to preview changes to the title and content.
    • \n
    • Added: A TinyMCE editor is now used to edit content, including initial support for Shortcake.
    • \n
    • Added: Each post type has a separate panel. Each post is represented by a section within those panels.
    • \n
    • Added: Edit post links in Customizer preview now open post section.
    • \n
    • Added: Integration with Customize Setting Validation to show show error message when post locking or version conflict happens.
    • \n
    • Removed: Postmeta fields (custom fields, page template, featured image) were removed for rewrite but will be re-introduced.
    • \n
    \n\n

    0.2.4 - 2016-01-06

    \n\n

    Remove shim that implemented the customize_save_response filter which was introduced in 4.2. The shim used a slightly different filter name and broke insertion of nav menu items in the Customizer.

    \n\n

    0.2.3 - 2015-01-09

    \n\n

    Change method for registering scripts/styles to fix conflict w/ Jetpack. PR #26

    \n\n

    0.2.2 - 2014-12-12

    \n\n

    Add compatibility with WordPress 4.1 now that the Customizer has a proper JS API.

    \n\n

    0.2.1 - 2014-09-22

    \n\n

    Supply missing selected attribute on post_status dropdown.

    \n\n

    0.2.0 - 2014-09-17

    \n\n

    Initial release on WordPress.org. Key new features:

    \n\n
      \n
    • Postmeta can now be added, modified, and deleted?all of actions which are fully previewable.
    • \n
    • Grant customize capability to authors and editors who normally can\'t access the Customizer, so they can edit posts there.
    • \n
    • Move the ?Customize? admin bar link to the top level, and add one for editors and authors.
    • \n
    • Allow the Page Template and Featured Image to be modified and previewed.
    • \n
    ','Customize Posts','Edit posts and postmeta in the Customizer. Stop editing your posts/postmeta blind!','publish','open','closed','','customize-posts','','','2017-01-03 19:18:10','2017-01-03 19:18:10','',0,'https://wordpress.org/plugins-wp/customize-posts/',0,'plugin','',0), (41744,7045072,'2016-02-04 21:37:48','2016-02-04 21:37:48','\n

    This is a feature plugin that is a spinoff of the main Two-Factor Authentication plugin, found at https://github.com/georgestephanis/two-factor/.

    \n\n

    With Application Passwords you are able to authenticate a user without providing that user\'s password directly, instead you will use a base64 encoded string of their username and a new application password.

    \n\n

    Creating a New Application Password

    \n\n
      \n
    1. Go the User Profile page of the user that you want to generate a new application password for. To do so, click Users on the left side of the WordPress admin, then click on the user that you want to manage.
    2. \n
    3. Scroll down until you see the Application Passwords section. This is typically at the bottom of the page.
    4. \n
    5. Within the input field, type in a name for your new application password, then click Add New.\nNote: The application password name is only used to describe your password for easy management later. It will not affect your password in any way. Be descriptive, as it will lead to easier management if you ever need to change it later.
    6. \n
    7. Once the Add New button is clicked, your new application password will appear. Be sure to keep this somewhere safe, as it will not be displayed to you again. If you lose this password, it cannot be obtained again.
    8. \n
    \n\n

    Testing an Application Password

    \n\n

    WordPress REST API

    \n\n

    This test uses the technologies listed below, but you can use any REST API request.

    \n\n
      \n
    • WordPress REST API
    • \n
    • cURL
    • \n
    • Mac OSX or Linux
    • \n
    • A Mac or Linux terminal
    • \n
    • Local development environment (e.g. MAMP, XAMPP, DesktopServer, Vagrant) running on localhost
    • \n
    \n\n
      \n
    1. Now that you have your new password, you will need to base64 encode it using a terminal window as well as your username to use it with the REST API.\nThe command you will use is as follows:\nshell\necho -n \"USERNAME:PASSWORD\" | base64\nWithin this, you will replace USERNAME:PASSWORD with your username and newly generated application password. For example:\nshell\necho -n \"admin:mypassword123\" | base64

    2. \n
    3. Once your username and password are base64 encoded, you are now able to make a simple REST API call using the terminal window to update a post. Because you are performing a POST request, you will need to authorize the request using your newly created base64 encoded access token. If authorized correctly, you will see the post title update to \"New Title.\"\nshell\ncurl --header \"Authorization: Basic ACCESS_TOKEN\" -X POST -d \"title=New Title\" http://LOCALHOST/wp-json/wp/v2/posts/POST_ID}\nWhen running this command, be sure to replace ACCESS_TOKEN with your newly generated access token, LOCALHOST with the location of your local WordPress installation, and POST_ID with the ID of the post that you want to edit.

    4. \n
    \n\n

    XML-RPC

    \n\n

    This test uses the technologies listed below, but you can use any XML-RPC request.

    \n\n
      \n
    • XML-RPC enabled within WordPress
    • \n
    • cURL
    • \n
    • Mac OSX or Linux
    • \n
    • A Mac or Linux terminal
    • \n
    • Local development environment (e.g. MAMP, DesktopServer, Vagrant) running on localhost
    • \n
    \n\n

    Once you have created a new application password, it\'s time to send a request to test it. Unlike the WordPress REST API, XML-RPC does not require your username and password to be base64 encoded. To begin the process, open a terminal window and enter the following:\n shell\ncurl -H \'Content-Type: text/xml\' -d \'<methodCall><methodName>wp.getUsers</methodName><params><param><value>1</value></param><param><value>USERNAME</value></param><param><value>PASSWORD</value></param></params></methodCall>\' LOCALHOST\nIn the above example, replace USERNAME with your username, and PASSWORD with your new application password. This should output a response containing all users on your site.

    \n\n\n
      \n
    1. Download the zip file.
    2. \n
    3. Log into WordPress, hover over Plugins, and click Add New.
    4. \n
    5. Click on the Upload Plugin button.
    6. \n
    7. Select the zip file you downloaded.
    8. \n
    9. Click Install Plugin.
    10. \n
    11. Activate.
    12. \n
    ','Application Passwords','A feature plugin for core to provide Application Passwords','publish','open','closed','','application-passwords','','','2016-02-03 21:51:10','2016-02-03 21:51:10','',0,'https://wordpress.org/plugins-wp/application-passwords/',0,'plugin','',0), (42409,1,'2016-03-07 03:29:18','2016-03-07 03:29:18','\n

    ???? reactions.

    \n\n

    It\'s what you\'ve always dreamed of.

    \n\n

    Additional information at https://make.wordpress.org/core/2016/03/07/reactions/

    \n\n

    \n\n

    \n\n\n

    0.1.0

    \n\n

    First release.

    ','Reactions','???? reactions.','publish','closed','closed','','react','','','2015-04-10 19:47:15','2015-04-10 19:47:15','',0,'https://wordpress.org/plugins-wp/react/',0,'plugin','',0), (43563,71562,'2016-05-09 20:44:03','2016-05-09 20:44:03','Once submitted, your plugin will be manually reviewed for any common errors as well as ensuring it complies with all the guidelines.\r\n\r\nEven if you\'ve submitted a dozen plugins, take the time to refresh your memory with the following information:\r\n\r\n\r\n\r\n

    FAQ

    \r\n\r\n

    How long will the review process take?

    \r\n\r\nThis is in the Developer FAQ. It takes anywhere between 1 and 10 days. We attempt to review all plugins within 5 business days of submission, but the process takes as long as it takes, depending on the complexity of your plugin.\r\n\r\n

    What will my plugin URL be?

    \r\n\r\nYour plugin\'s URL will be populated based on the value of Plugin Name in your main plugin file (the one with the plugin headers). If you set yours as Plugin Name: Boaty McBoatface then your URL will be https://wordpress.org/plugins/boaty-mcboatface and your slug will be boaty-mcboatface for example. If there is an existing plugin with your name, then you will be boaty-mcboatface-2 and so on. It behaves exactly like WordPress post names.\r\n\r\nOnce your plugin is approved, it cannot be renamed. \r\n\r\n

    I made a mistake in my plugin name. Should I resubmit?

    \r\n\r\nPlease don\'t! Instead email plugins@wordpress.org and we can rename your plugin as long as it\'s not approved. Since we check emails first, the odds are we\'ll catch it. If we don\'t, just email us and explain the mistake. We\'ll explain what do to. \r\n\r\n

    Why was I told my plugin name was unacceptable?

    \r\n\r\nThis is explained in detail in our detailed plugin guidelines, but currently we give you the chance to rename yout during the review process if the plugin name violates the guideline. Some terms (like \'plugin\' and \'wordpress\') will be removed for you, as those should not be used at all. We get it. You\'re a WordPress Plugin.\r\n\r\nRegarding other companies and plugins\' names and trademarks, don\'t use them to start your plugin name. If you\'re not Facebook, you shouldn\'t submit a plugin that uses facebook as the first term in your slug. \"Facebook Like Sharer\" (which would be facebook-like-sharer) is not acceptable, but \"Like Sharer for Facebook (which would be like-sharer-for-facebook) would be alright.\r\n\r\n[wporg-plugin-upload]','Add your Plugin','','inherit','closed','closed','','10-revision-v1','','','2016-05-09 20:44:03','2016-05-09 20:44:03','',10,'https://wordpress.org/plugins-wp/10-revision-v1/',0,'revision','',0), (48929,8772187,'2016-06-12 06:38:50','2016-06-12 06:38:50','Once submitted, your plugin will be manually reviewed for any common errors as well as ensuring it complies with all the guidelines.\r\n\r\nEven if you\'ve submitted a dozen plugins, take the time to refresh your memory with the following information:\r\n\r\n\r\n
    \r\n\r\n

    FAQ

    \r\n

    How long will the review process take?

    \r\nThis is in the Developer FAQ. It takes anywhere between 1 and 10 days. We attempt to review all plugins within 5 business days of submission, but the process takes as long as it takes, depending on the complexity of your plugin.\r\n

    What will my plugin URL be?

    \r\nYour plugin\'s URL will be populated based on the value of Plugin Name in your main plugin file (the one with the plugin headers). If you set yours as Plugin Name: Boaty McBoatface then your URL will be https://wordpress.org/plugins/boaty-mcboatface and your slug will be boaty-mcboatface for example. If there is an existing plugin with your name, then you will be boaty-mcboatface-2 and so on. It behaves exactly like WordPress post names.\r\n\r\nOnce your plugin is approved, it cannot be renamed.\r\n

    I made a mistake in my plugin name. Should I resubmit?

    \r\nPlease don\'t! Instead email plugins@wordpress.org and we can rename your plugin as long as it\'s not approved. Since we check emails first, the odds are we\'ll catch it. If we don\'t, just email us and explain the mistake. We\'ll explain what do to.\r\n

    Why was I told my plugin name was unacceptable?

    \r\nThis is explained in detail in our detailed plugin guidelines, but currently we give you the chance to rename yout during the review process if the plugin name violates the guideline. Some terms (like \'plugin\' and \'wordpress\') will be removed for you, as those should not be used at all. We get it. You\'re a WordPress Plugin.\r\n\r\nRegarding other companies and plugins\' names and trademarks, don\'t use them to start your plugin name. If you\'re not Facebook, you shouldn\'t submit a plugin that uses facebook as the first term in your slug. \"Facebook Like Sharer\" (which would be facebook-like-sharer) is not acceptable, but \"Like Sharer for Facebook (which would be like-sharer-for-facebook) would be alright.\r\n\r\n
    \r\n\r\n[wporg-plugin-upload]','Add your Plugin','','inherit','closed','closed','','10-revision-v1','','','2016-06-12 06:38:50','2016-06-12 06:38:50','',10,'https://wordpress.org/plugins-wp/10-revision-v1/',0,'revision','',0), (48975,71562,'2016-06-14 16:26:22','2016-06-14 16:26:22','Once submitted, your plugin will be manually reviewed for any common errors as well as ensuring it complies with all the guidelines.\r\n\r\nEven if you\'ve submitted a dozen plugins, take the time to refresh your memory with the following information:\r\n\r\n\r\n[wporg-plugin-upload]\r\n\r\n
    \r\n\r\n

    FAQ

    \r\n

    How long will the review process take?

    \r\nThis is in the Developer FAQ. It takes anywhere between 1 and 10 days. We attempt to review all plugins within 5 business days of submission, but the process takes as long as it takes, depending on the complexity of your plugin.\r\n

    What will my plugin URL be?

    \r\nYour plugin\'s URL will be populated based on the value of Plugin Name in your main plugin file (the one with the plugin headers). If you set yours as Plugin Name: Boaty McBoatface then your URL will be https://wordpress.org/plugins/boaty-mcboatface and your slug will be boaty-mcboatface for example. If there is an existing plugin with your name, then you will be boaty-mcboatface-2 and so on. It behaves exactly like WordPress post names.\r\n\r\nOnce your plugin is approved, it cannot be renamed.\r\n

    I made a mistake in my plugin name. Should I resubmit?

    \r\nPlease don\'t! Instead email plugins@wordpress.org and we can rename your plugin as long as it\'s not approved. Since we check emails first, the odds are we\'ll catch it. If we don\'t, just email us and explain the mistake. We\'ll explain what do to.\r\n

    Why was I told my plugin name was unacceptable?

    \r\nThis is explained in detail in our detailed plugin guidelines, but currently we give you the chance to rename yout during the review process if the plugin name violates the guideline. Some terms (like \'plugin\' and \'wordpress\') will be removed for you, as those should not be used at all. We get it. You\'re a WordPress Plugin.\r\n\r\nRegarding other companies and plugins\' names and trademarks, don\'t use them to start your plugin name. If you\'re not Facebook, you shouldn\'t submit a plugin that uses facebook as the first term in your slug. \"Facebook Like Sharer\" (which would be facebook-like-sharer) is not acceptable, but \"Like Sharer for Facebook (which would be like-sharer-for-facebook) would be alright.','Add your Plugin','','inherit','closed','closed','','10-revision-v1','','','2016-06-14 16:26:22','2016-06-14 16:26:22','',10,'https://wordpress.org/plugins-wp/10-revision-v1/',0,'revision','',0), (48976,71562,'2016-06-14 16:27:01','2016-06-14 16:27:01','Once submitted, your plugin will be manually reviewed for any common errors as well as ensuring it complies with all the guidelines.\r\n\r\n[wporg-plugin-upload]\r\n\r\nEven if you\'ve submitted a dozen plugins, take the time to refresh your memory with the following information:\r\n\r\n\r\n
    \r\n\r\n

    FAQ

    \r\n

    How long will the review process take?

    \r\nThis is in the Developer FAQ. It takes anywhere between 1 and 10 days. We attempt to review all plugins within 5 business days of submission, but the process takes as long as it takes, depending on the complexity of your plugin.\r\n

    What will my plugin URL be?

    \r\nYour plugin\'s URL will be populated based on the value of Plugin Name in your main plugin file (the one with the plugin headers). If you set yours as Plugin Name: Boaty McBoatface then your URL will be https://wordpress.org/plugins/boaty-mcboatface and your slug will be boaty-mcboatface for example. If there is an existing plugin with your name, then you will be boaty-mcboatface-2 and so on. It behaves exactly like WordPress post names.\r\n\r\nOnce your plugin is approved, it cannot be renamed.\r\n

    I made a mistake in my plugin name. Should I resubmit?

    \r\nPlease don\'t! Instead email plugins@wordpress.org and we can rename your plugin as long as it\'s not approved. Since we check emails first, the odds are we\'ll catch it. If we don\'t, just email us and explain the mistake. We\'ll explain what do to.\r\n

    Why was I told my plugin name was unacceptable?

    \r\nThis is explained in detail in our detailed plugin guidelines, but currently we give you the chance to rename yout during the review process if the plugin name violates the guideline. Some terms (like \'plugin\' and \'wordpress\') will be removed for you, as those should not be used at all. We get it. You\'re a WordPress Plugin.\r\n\r\nRegarding other companies and plugins\' names and trademarks, don\'t use them to start your plugin name. If you\'re not Facebook, you shouldn\'t submit a plugin that uses facebook as the first term in your slug. \"Facebook Like Sharer\" (which would be facebook-like-sharer) is not acceptable, but \"Like Sharer for Facebook (which would be like-sharer-for-facebook) would be alright.','Add your Plugin','','inherit','closed','closed','','10-revision-v1','','','2016-06-14 16:27:01','2016-06-14 16:27:01','',10,'https://wordpress.org/plugins-wp/10-revision-v1/',0,'revision','',0), (48977,71562,'2016-06-14 16:29:22','2016-06-14 16:29:22','You?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    • Keep track of how many people have downloaded it.
    • \r\n
    • Let people leave comments about your plugin.
    • \r\n
    • Get your plugin rated against all the other cool WordPress plugins.
    • \r\n
    • Give your plugin lots of exposure in this centralized repository.
    • \r\n
    \r\n

    There are some restrictions

    \r\n
      \r\n
    • Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.? (If you don?t specify a compatible license, what you check in will considered GPLv2 or later.)
    • \r\n
    • The plugin must not do anything illegal or be morally offensive (that?s subjective, we know).
    • \r\n
    • You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    • \r\n
    • The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    • \r\n
    • Your plugin must abide by our list of detailed guidelines, which include not being a spammer and not abusing the systems.
    • \r\n
    \r\n

    Submission is Simple

    \r\n
      \r\n
    1. Sign up for an account on WordPress.org.
    2. \r\n
    3. Submit your plugin for review.
    4. \r\n
    5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
    6. \r\n
    7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
    8. \r\n
    9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
    10. \r\n
    11. Check out the FAQ for more information.
    12. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-06-14 16:29:22','2016-06-14 16:29:22','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (48978,8772187,'2016-06-14 17:18:01','2016-06-14 17:18:01','','readme','','inherit','open','closed','','readme','','','2016-06-14 17:18:01','2016-06-14 17:18:01','',0,'https://wordpress.org/plugins-wp/files/2016/06/readme.txt',0,'attachment','',0), (49138,148148,'2016-06-19 10:04:33','2016-06-19 10:04:33','You?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    • Keep track of how many people have downloaded it.
    • \r\n
    • Let people leave comments about your plugin.
    • \r\n
    • Get your plugin rated against all the other cool WordPress plugins.
    • \r\n
    • Give your plugin lots of exposure in this centralized repository.
    • \r\n
    \r\n

    There are some restrictions

    \r\n
      \r\n
    • Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.? (If you don?t specify a compatible license, what you check in will considered GPLv2 or later.)
    • \r\n
    • The plugin must not do anything illegal or be morally offensive (that?s subjective, we know).
    • \r\n
    • You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    • \r\n
    • The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    • \r\n
    • Your plugin must abide by our list of detailed guidelines, which include not being a spammer and not abusing the systems.
    • \r\n
    \r\n

    Submission is Simple

    \r\n
      \r\n
    1. Sign up for an account on WordPress.org.
    2. \r\n
    3. Submit your plugin for review.
    4. \r\n
    5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
    6. \r\n
    7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
    8. \r\n
    9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
    10. \r\n
    11. Check out the FAQ for more information.
    12. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-06-19 10:04:33','2016-06-19 10:04:33','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (49158,1,'2008-07-06 21:04:53','2008-07-06 21:04:53','\n

    This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.

    ','Hello Dolly','This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.','publish','open','closed','','hello-dolly','','','2016-11-21 02:48:25','2016-11-21 02:48:25','',0,'https://wordpress.org/plugins-wp/hello-dolly/',0,'plugin','',0), (51436,5911429,'2016-10-11 01:33:19','2016-10-11 01:33:19','[readme-validator]','Readme Validator','','publish','closed','closed','','readme-validator','','','2016-10-11 01:33:19','2016-10-11 01:33:19','',8,'https://wordpress.org/plugins-wp/?page_id=51436',0,'page','',0), (51437,148148,'2016-10-11 01:33:19','2016-10-11 01:33:19','[readme-validator]','Readme Validator','','inherit','closed','closed','','51436-revision-v1','','','2016-10-11 01:33:19','2016-10-11 01:33:19','',51436,'https://wordpress.org/plugins-wp/51436-revision-v1/',0,'revision','',0), (52125,71562,'2016-11-17 00:00:23','2016-11-17 00:00:23','You?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    • Keep track of how many people have downloaded it.
    • \r\n
    • Let people leave comments about your plugin.
    • \r\n
    • Get your plugin rated against all the other cool WordPress plugins.
    • \r\n
    • Give your plugin lots of exposure in this centralized repository.
    • \r\n
    \r\n

    There are some restrictions

    \r\n
      \r\n
    • Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.? (If you don?t specify a compatible license, what you check in will considered GPLv2 or later.)
    • \r\n
    • The plugin must not do anything illegal or be morally offensive (that?s subjective, we know).
    • \r\n
    • You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    • \r\n
    • The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    • \r\n
    • Your plugin must abide by our list of detailed guidelines, which include not being a spammer and not abusing the systems.
    • \r\n
    \r\n

    Submission is Simple

    \r\n
      \r\n
    1. Sign up for an account on WordPress.org.
    2. \r\n
    3. Submit your plugin for review.
    4. \r\n
    5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
    6. \r\n
    7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
    8. \r\n
    9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
    10. \r\n
    11. Check out the FAQ for more information.
    12. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-11-17 00:00:23','2016-11-17 00:00:23','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (52126,71562,'2016-11-17 00:01:29','2016-11-17 00:01:29','You?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    • Keep track of how many people have downloaded it.
    • \r\n
    • Let people leave comments about your plugin.
    • \r\n
    • Get your plugin rated against all the other cool WordPress plugins.
    • \r\n
    • Give your plugin lots of exposure in this centralized repository.
    • \r\n
    \r\n

    There are some restrictions

    \r\n
      \r\n
    • Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.? (If you don?t specify a compatible license, what you check in will considered GPLv2 or later.)
    • \r\n
    • The plugin must not do anything illegal or be morally offensive (that?s subjective, we know).
    • \r\n
    • You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    • \r\n
    • The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    • \r\n
    • Your plugin must abide by our list of detailed guidelines, which include not being a spammer and not abusing the systems.
    • \r\n
    \r\n

    Submission is Simple

    \r\n
      \r\n
    1. Sign up for an account on WordPress.org.
    2. \r\n
    3. Submit your plugin for review.
    4. \r\n
    5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
    6. \r\n
    7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
    8. \r\n
    9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
    10. \r\n
    11. Check out the FAQ for more information.
    12. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-11-17 00:01:29','2016-11-17 00:01:29','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (52127,71562,'2016-11-17 00:01:47','2016-11-17 00:01:47','You?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    • Keep track of how many people have downloaded it.
    • \r\n
    • Let people leave comments about your plugin.
    • \r\n
    • Get your plugin rated against all the other cool WordPress plugins.
    • \r\n
    • Give your plugin lots of exposure in this centralized repository.
    • \r\n
    \r\n

    There are some restrictions

    \r\n
      \r\n
    • Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.? (If you don?t specify a compatible license, what you check in will considered GPLv2 or later.)
    • \r\n
    • The plugin must not do anything illegal or be morally offensive (that?s subjective, we know).
    • \r\n
    • You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    • \r\n
    • The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    • \r\n
    • Your plugin must abide by our list of detailed guidelines, which include not being a spammer and not abusing the systems.
    • \r\n
    \r\n

    Submission is Simple

    \r\n
      \r\n
    1. Sign up for an account on WordPress.org.
    2. \r\n
    3. Submit your plugin for review.
    4. \r\n
    5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
    6. \r\n
    7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
    8. \r\n
    9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
    10. \r\n
    11. Check out the FAQ for more information.
    12. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-11-17 00:01:47','2016-11-17 00:01:47','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (52128,71562,'2016-11-17 00:03:42','2016-11-17 00:03:42','You?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    • Keep track of how many people have downloaded it.
    • \r\n
    • Let people leave comments about your plugin.
    • \r\n
    • Get your plugin rated against all the other cool WordPress plugins.
    • \r\n
    • Give your plugin lots of exposure in this centralized repository.
    • \r\n
    \r\n

    There are some restrictions

    \r\n
      \r\n
    • Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.? (If you don?t specify a compatible license, what you check in will considered GPLv2 or later.)
    • \r\n
    • The plugin must not do anything illegal or be morally offensive (that?s subjective, we know).
    • \r\n
    • You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    • \r\n
    • The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    • \r\n
    • Your plugin must abide by our list of detailed guidelines, which include not being a spammer and not abusing the systems.
    • \r\n
    \r\n

    Submission is Simple

    \r\n
      \r\n
    1. Sign up for an account on WordPress.org.
    2. \r\n
    3. Submit your plugin for review.
    4. \r\n
    5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
    6. \r\n
    7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
    8. \r\n
    9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
    10. \r\n
    11. Check out the FAQ for more information.
    12. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-11-17 00:03:42','2016-11-17 00:03:42','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (52146,71562,'2016-11-17 23:03:46','2016-11-17 23:03:46','You?ve got a cool new plugin and are hoping to give it some exposure. You?re in the right place. Just ask us to host it for you. You?ll be able to:\r\n
      \r\n
    • Keep track of how many people have downloaded it.
    • \r\n
    • Let people leave comments about your plugin.
    • \r\n
    • Get your plugin rated against all the other cool WordPress plugins.
    • \r\n
    • Give your plugin lots of exposure in this centralized repository.
    • \r\n
    \r\n

    There are some restrictions

    \r\n
      \r\n
    • Your plugin must be compatible with the GNU General Public License v2, or any later version. We strongly recommend using the same license as WordPress ? ?GPLv2 or later.?
    • \r\n
    • The plugin must not do anything illegal or be morally offensive (that?s subjective, we know).
    • \r\n
    • You have to actually use the Subversion repository we give you in order for your plugin to show up on this site. The WordPress Plugins Directory is a hosting site, not a listing site.
    • \r\n
    • The plugin must not embed external links on the public site (like a \"powered by\" link) without explicitly asking the user\'s permission.
    • \r\n
    • Your plugin must abide by our list of detailed guidelines, which include not being a spammer and not abusing the systems.
    • \r\n
    \r\n

    Submission is Simple

    \r\n
      \r\n
    1. Sign up for an account on WordPress.org.
    2. \r\n
    3. Submit your plugin for review.
    4. \r\n
    5. After your plugin is manually reviewed, you will either be approved or emailed and asked to provide more information and/or make corrections.
    6. \r\n
    7. Once approved, you?ll be given access to a Subversion Repository where you?ll store your plugin.
    8. \r\n
    9. Shortly after you upload your plugin (and a readme file!) to that repository, it will be automatically displayed in the plugins browser.
    10. \r\n
    11. Check out the FAQ for more information.
    12. \r\n
    \r\n

    Readme files

    \r\nTo make your entry in the plugin browser most useful, each plugin should have a readme file named readme.txt that adheres to the WordPress plugin readme file standard. You can put your readme file through the readme validator to check it.','Developer Information','','inherit','closed','closed','','8-revision-v1','','','2016-11-17 23:03:46','2016-11-17 23:03:46','',8,'https://wordpress.org/plugins-wp/8-revision-v1/',0,'revision','',0), (54849,8772187,'2017-03-09 18:22:17','2017-03-09 18:22:17','\n

    See Trac tickets:

    \n\n
      \n
    • #32417: Add new core media widget
    • \n
    • #39993: Introduce Core Widget: Image
    • \n
    • #39994: Introduce Core Widget: Video
    • \n
    • #39995: Introduce Core Widget: Audio
    • \n
    \n\n

    Media widgets from this plugin are planned to be copied into core and deactivated in this\nplugin in future releases.

    \n\n

    For contributing patches to this plugin and for following developments, please see its GitHub project.

    \n\n\n

    [0.1.0] - (Unreleased)

    \n\n

    Work in progress.

    ','Core Media Widgets','Feature plugin for introducing new core media widgets for images, audio, and video.','publish','closed','closed','','wp-core-media-widgets','','','2017-04-07 00:33:15','2017-04-07 00:33:15','',0,'https://wordpress.org/plugins-wp/wp-core-media-widgets/',0,'plugin','',0), (65905,8772187,'2017-03-29 18:19:06','2017-03-29 18:19:06','','readme','','inherit','closed','closed','','readme-2','','','2017-03-29 18:19:06','2017-03-29 18:19:06','',0,'https://wordpress.org/plugins/files/2017/03/readme.txt',0,'attachment','text/plain',0), (65931,15273688,'2017-04-05 23:17:28','2017-04-05 23:17:28','','05_23-17-28_acf-form-builder-frontend-post-submission','','inherit','closed','closed','','05_23-17-28_acf-form-builder-frontend-post-submission','','','2017-04-05 23:17:28','2017-04-05 23:17:28','',0,'https://wordpress.org/plugins/files/2017/03/05_23-17-28_acf-form-builder-frontend-post-submission.zip',0,'attachment','application/zip',0), (65941,14269730,'2017-04-06 00:00:20','2017-04-06 00:00:20','','06_00-00-20_wp-optimization-test','','inherit','closed','closed','','06_00-00-20_wp-optimization-test','','','2017-04-06 00:00:20','2017-04-06 00:00:20','',0,'https://wordpress.org/plugins/files/2017/04/06_00-00-20_wp-optimization-test.zip',0,'attachment','application/zip',0), (65949,15383832,'2017-04-06 02:04:36','2017-04-06 02:04:36','','06_02-04-36_qru-business-reviews','','inherit','closed','closed','','06_02-04-36_qru-business-reviews','','','2017-04-06 02:04:36','2017-04-06 02:04:36','',0,'https://wordpress.org/plugins/files/2017/04/06_02-04-36_qru-business-reviews.zip',0,'attachment','application/zip',0), (65951,13991763,'2017-04-06 02:43:00','2017-04-06 02:43:00','','06_02-43-00_customsearch','','inherit','closed','closed','','06_02-43-00_customsearch','','','2017-04-06 02:43:00','2017-04-06 02:43:00','',0,'https://wordpress.org/plugins/files/2017/04/06_02-43-00_customsearch.zip',0,'attachment','application/zip',0), (65953,10460284,'2017-04-06 02:54:01','2017-04-06 02:54:01','','06_02-54-01_Lamegaweb','','inherit','closed','closed','','06_02-54-01_lamegaweb','','','2017-04-06 02:54:01','2017-04-06 02:54:01','',0,'https://es.wordpress.org/plugins/files/2017/04/06_02-54-01_Lamegaweb.zip',0,'attachment','application/zip',0), (65955,15005257,'2017-04-06 03:14:29','2017-04-06 03:14:29','','06_03-14-29_sakura-rs-ssl','','inherit','closed','closed','','06_03-14-29_sakura-rs-ssl','','','2017-04-06 03:14:29','2017-04-06 03:14:29','',0,'https://wordpress.org/plugins/files/2017/04/06_03-14-29_sakura-rs-ssl.zip',0,'attachment','application/zip',0), (65957,15376633,'2017-04-06 03:43:19','2017-04-06 03:43:19','','06_03-43-19_bverse-convert','','inherit','closed','closed','','06_03-43-19_bverse-convert','','','2017-04-06 03:43:19','2017-04-06 03:43:19','',0,'https://wordpress.org/plugins/files/2017/04/06_03-43-19_bverse-convert.zip',0,'attachment','application/zip',0), (65963,5945549,'2017-04-06 04:01:55','2017-04-06 04:01:55','','06_04-01-55_custom-post-type-with-advance-fields','','inherit','closed','closed','','06_04-01-55_custom-post-type-with-advance-fields','','','2017-04-06 04:01:55','2017-04-06 04:01:55','',0,'https://wordpress.org/plugins/files/2017/04/06_04-01-55_custom-post-type-with-advance-fields.zip',0,'attachment','application/zip',0), (65975,15382044,'2017-04-06 04:41:41','2017-04-06 04:41:41','','06_04-41-41_page-health-o-meter','','inherit','closed','closed','','06_04-41-41_page-health-o-meter','','','2017-04-06 04:41:41','2017-04-06 04:41:41','',0,'https://wordpress.org/plugins/files/2017/04/06_04-41-41_page-health-o-meter.zip',0,'attachment','application/zip',0), (65981,9541102,'2017-04-06 05:18:14','2017-04-06 05:18:14','','06_05-18-13_cyber-fundraiser-lite','','inherit','closed','closed','','06_05-18-13_cyber-fundraiser-lite','','','2017-04-06 05:18:14','2017-04-06 05:18:14','',0,'https://wordpress.org/plugins/files/2017/04/06_05-18-13_cyber-fundraiser-lite.zip',0,'attachment','application/zip',0), (65985,15366419,'2017-04-06 05:23:11','2017-04-06 05:23:11','','06_05-23-11_weldpress','','inherit','closed','closed','','06_05-23-11_weldpress','','','2017-04-06 05:23:11','2017-04-06 05:23:11','',0,'https://wordpress.org/plugins/files/2017/04/06_05-23-11_weldpress.zip',0,'attachment','application/zip',0), (65987,15292423,'2017-04-06 05:25:29','2017-04-06 05:25:29','','06_05-25-29_easy -clickable-comment','','inherit','closed','closed','','06_05-25-29_easy-clickable-comment','','','2017-04-06 05:25:29','2017-04-06 05:25:29','',0,'https://wordpress.org/plugins/files/2017/04/06_05-25-29_easy-clickable-comment.zip',0,'attachment','application/zip',0), (65989,14193075,'2017-04-06 05:34:58','2017-04-06 05:34:58','','06_05-34-58_play-pause-1.0','','inherit','closed','closed','','06_05-34-58_play-pause-1-0','','','2017-04-06 05:34:58','2017-04-06 05:34:58','',0,'https://wordpress.org/plugins/files/2017/04/06_05-34-58_play-pause-1.0.zip',0,'attachment','application/zip',0), (65991,12276333,'2017-04-06 05:45:35','2017-04-06 05:45:35','','06_05-45-35_powerup-cf7','','inherit','closed','closed','','06_05-45-35_powerup-cf7','','','2017-04-06 05:45:35','2017-04-06 05:45:35','',0,'https://wordpress.org/plugins/files/2017/04/06_05-45-35_powerup-cf7.zip',0,'attachment','application/zip',0), (65993,15365866,'2017-04-06 05:46:32','2017-04-06 05:46:32','','06_05-46-32_wp-monetizer','','inherit','closed','closed','','06_05-46-32_wp-monetizer','','','2017-04-06 05:46:32','2017-04-06 05:46:32','',0,'https://wordpress.org/plugins/files/2017/04/06_05-46-32_wp-monetizer.zip',0,'attachment','application/zip',0), (65995,15384830,'2017-04-06 05:46:50','2017-04-06 05:46:50','','06_05-46-50_tofugear-omnitech-plugin-wp','','inherit','closed','closed','','06_05-46-50_tofugear-omnitech-plugin-wp','','','2017-04-06 05:46:50','2017-04-06 05:46:50','',0,'https://wordpress.org/plugins/files/2017/04/06_05-46-50_tofugear-omnitech-plugin-wp.zip',0,'attachment','application/zip',0), (65999,14945812,'2017-04-06 06:00:29','2017-04-06 06:00:29','','06_06-00-29_small-package-quotes-fedex-edition','','inherit','closed','closed','','06_06-00-29_small-package-quotes-fedex-edition','','','2017-04-06 06:00:29','2017-04-06 06:00:29','',0,'https://wordpress.org/plugins/files/2017/04/06_06-00-29_small-package-quotes-fedex-edition.zip',0,'attachment','application/zip',0), (66001,10791880,'2017-04-06 06:03:38','2017-04-06 06:03:38','','06_06-03-38_export-post-info-without-assets','','inherit','closed','closed','','06_06-03-38_export-post-info-without-assets','','','2017-04-06 06:03:38','2017-04-06 06:03:38','',0,'https://wordpress.org/plugins/files/2017/04/06_06-03-38_export-post-info-without-assets.zip',0,'attachment','application/zip',0), (66003,15246076,'2017-04-06 06:11:13','2017-04-06 06:11:13','','06_06-11-13_genesis-hero','','inherit','closed','closed','','06_06-11-13_genesis-hero','','','2017-04-06 06:11:13','2017-04-06 06:11:13','',0,'https://wordpress.org/plugins/files/2017/04/06_06-11-13_genesis-hero.zip',0,'attachment','application/zip',0), (66005,554319,'2017-04-06 06:27:12','2017-04-06 06:27:12','','06_06-27-12_jm-buddy-translate','','inherit','closed','closed','','06_06-27-12_jm-buddy-translate','','','2017-04-06 06:27:12','2017-04-06 06:27:12','',0,'https://wordpress.org/plugins/files/2017/04/06_06-27-12_jm-buddy-translate.zip',0,'attachment','application/zip',0), (66009,15333385,'2017-04-06 06:36:14','2017-04-06 06:36:14','','06_06-36-14_right-click-disable','','inherit','closed','closed','','06_06-36-14_right-click-disable','','','2017-04-06 06:36:14','2017-04-06 06:36:14','',0,'https://wordpress.org/plugins/files/2017/04/06_06-36-14_right-click-disable.zip',0,'attachment','application/zip',0), (66011,10779376,'2017-04-06 06:37:28','2017-04-06 06:37:28','','06_06-37-28_cache_for_wordpress','','inherit','closed','closed','','06_06-37-28_cache_for_wordpress','','','2017-04-06 06:37:28','2017-04-06 06:37:28','',0,'https://wordpress.org/plugins/files/2017/04/06_06-37-28_cache_for_wordpress.zip',0,'attachment','application/zip',0), (66015,12952889,'2017-04-06 06:41:55','2017-04-06 06:41:55','','06_06-41-55_WordPressCBPopper','','inherit','closed','closed','','06_06-41-55_wordpresscbpopper','','','2017-04-06 06:41:55','2017-04-06 06:41:55','',0,'https://wordpress.org/plugins/files/2017/04/06_06-41-55_WordPressCBPopper.zip',0,'attachment','application/zip',0), (66029,11578226,'2017-04-06 07:07:44','2017-04-06 07:07:44','','06_07-07-44_custom-css','','inherit','closed','closed','','06_07-07-44_custom-css','','','2017-04-06 07:07:44','2017-04-06 07:07:44','',0,'https://wordpress.org/plugins/files/2017/04/06_07-07-44_custom-css.zip',0,'attachment','application/zip',0), (66031,15364528,'2017-04-06 07:08:25','2017-04-06 07:08:25','','06_07-08-25_wp-security-optimizer','','inherit','closed','closed','','06_07-08-25_wp-security-optimizer','','','2017-04-06 07:08:25','2017-04-06 07:08:25','',0,'https://wordpress.org/plugins/files/2017/04/06_07-08-25_wp-security-optimizer.zip',0,'attachment','application/zip',0), (66035,9907951,'2017-04-06 07:29:22','2017-04-06 07:29:22','','06_07-29-22_event-plugun-lite','','inherit','closed','closed','','06_07-29-22_event-plugun-lite','','','2017-04-06 07:29:22','2017-04-06 07:29:22','',0,'https://wordpress.org/plugins/files/2017/04/06_07-29-22_event-plugun-lite.zip',0,'attachment','application/zip',0), (66037,15384184,'2017-04-06 07:38:28','2017-04-06 07:38:28','','06_07-38-28_D3GB.1.1','','inherit','closed','closed','','06_07-38-28_d3gb-1-1','','','2017-04-06 07:38:28','2017-04-06 07:38:28','',0,'https://wordpress.org/plugins/files/2017/04/06_07-38-28_D3GB.1.1.zip',0,'attachment','application/zip',0), (66039,15385087,'2017-04-06 07:38:59','2017-04-06 07:38:59','','06_07-38-59_logitrail','','inherit','closed','closed','','06_07-38-59_logitrail','','','2017-04-06 07:38:59','2017-04-06 07:38:59','',0,'https://wordpress.org/plugins/files/2017/04/06_07-38-59_logitrail.zip',0,'attachment','application/zip',0), (66043,15380490,'2017-04-06 07:49:28','2017-04-06 07:49:28','','06_07-49-27_remitradar-remittance-calculator','','inherit','closed','closed','','06_07-49-27_remitradar-remittance-calculator','','','2017-04-06 07:49:28','2017-04-06 07:49:28','',0,'https://wordpress.org/plugins/files/2017/04/06_07-49-27_remitradar-remittance-calculator.zip',0,'attachment','application/zip',0), (66045,14536178,'2017-04-06 07:51:18','2017-04-06 07:51:18','','06_07-51-18_meta-tags','','inherit','closed','closed','','06_07-51-18_meta-tags','','','2017-04-06 07:51:18','2017-04-06 07:51:18','',0,'https://wordpress.org/plugins/files/2017/04/06_07-51-18_meta-tags.zip',0,'attachment','application/zip',0), (66049,15026587,'2017-04-06 08:02:13','2017-04-06 08:02:13','','06_08-02-13_pixelrockstar','','inherit','closed','closed','','06_08-02-13_pixelrockstar','','','2017-04-06 08:02:13','2017-04-06 08:02:13','',0,'https://wordpress.org/plugins/files/2017/04/06_08-02-13_pixelrockstar.zip',0,'attachment','application/zip',0), (66051,8670515,'2017-04-06 08:10:18','2017-04-06 08:10:18','','06_08-10-18_express-shop','','inherit','closed','closed','','06_08-10-18_express-shop','','','2017-04-06 08:10:18','2017-04-06 08:10:18','',0,'https://wordpress.org/plugins/files/2017/04/06_08-10-18_express-shop.zip',0,'attachment','application/zip',0), (66053,15361476,'2017-04-06 08:14:31','2017-04-06 08:14:31','','06_08-14-31_dev-con-form','','inherit','closed','closed','','06_08-14-31_dev-con-form','','','2017-04-06 08:14:31','2017-04-06 08:14:31','',0,'https://wordpress.org/plugins/files/2017/04/06_08-14-31_dev-con-form.zip',0,'attachment','application/zip',0), (66055,14863937,'2017-04-06 08:42:19','2017-04-06 08:42:19','','06_08-42-19_SUBMISSION_allpost-contactform','','inherit','closed','closed','','06_08-42-19_submission_allpost-contactform','','','2017-04-06 08:42:19','2017-04-06 08:42:19','',0,'https://wordpress.org/plugins/files/2017/04/06_08-42-19_SUBMISSION_allpost-contactform.zip',0,'attachment','application/zip',0), (66063,15376309,'2017-04-06 11:10:01','2017-04-06 09:10:01','','06_09-10-01_crane-app-jira-integration','','inherit','closed','closed','','06_09-10-01_crane-app-jira-integration','','','2017-04-06 11:10:01','2017-04-06 09:10:01','',0,'https://de.wordpress.org/plugins/files/2017/04/06_09-10-01_crane-app-jira-integration.zip',0,'attachment','application/zip',0), (66069,15342084,'2017-04-06 09:31:31','2017-04-06 09:31:31','','06_09-31-31_acf_ffc','','inherit','closed','closed','','06_09-31-31_acf_ffc','','','2017-04-06 09:31:31','2017-04-06 09:31:31','',0,'https://wordpress.org/plugins/files/2017/04/06_09-31-31_acf_ffc.zip',0,'attachment','application/zip',0), (66075,13642574,'2017-04-06 09:53:16','2017-04-06 09:53:16','','06_09-53-16_browsersync-triggers','','inherit','closed','closed','','06_09-53-16_browsersync-triggers','','','2017-04-06 09:53:16','2017-04-06 09:53:16','',0,'https://wordpress.org/plugins/files/2017/04/06_09-53-16_browsersync-triggers.zip',0,'attachment','application/zip',0), (66077,12439,'2017-04-06 10:14:08','2017-04-06 10:14:08','','06_10-14-08_superdesk-wordpress-plugin-master','','inherit','closed','closed','','06_10-14-08_superdesk-wordpress-plugin-master','','','2017-04-06 10:14:08','2017-04-06 10:14:08','',0,'https://wordpress.org/plugins/files/2017/04/06_10-14-08_superdesk-wordpress-plugin-master.zip',0,'attachment','application/zip',0), (66081,15243414,'2017-04-06 10:22:23','2017-04-06 10:22:23','','06_10-22-23_phanes-3dp-basic','','inherit','closed','closed','','06_10-22-23_phanes-3dp-basic','','','2017-04-06 10:22:23','2017-04-06 10:22:23','',0,'https://wordpress.org/plugins/files/2017/04/06_10-22-23_phanes-3dp-basic.zip',0,'attachment','application/zip',0), (66083,15359619,'2017-04-06 10:36:31','2017-04-06 10:36:31','','06_10-36-30_noozefeed','','inherit','closed','closed','','06_10-36-30_noozefeed','','','2017-04-06 10:36:31','2017-04-06 10:36:31','',0,'https://wordpress.org/plugins/files/2017/04/06_10-36-30_noozefeed.zip',0,'attachment','application/zip',0), (66085,13705479,'2017-04-06 10:39:16','2017-04-06 10:39:16','','06_10-39-16_pushforge-web-push','','inherit','closed','closed','','06_10-39-16_pushforge-web-push','','','2017-04-06 10:39:16','2017-04-06 10:39:16','',0,'https://wordpress.org/plugins/files/2017/04/06_10-39-16_pushforge-web-push.zip',0,'attachment','application/zip',0), (66087,15056703,'2017-04-06 10:41:22','2017-04-06 10:41:22','','06_10-41-22_ultimate-nofollow-seo','','inherit','closed','closed','','06_10-41-22_ultimate-nofollow-seo','','','2017-04-06 10:41:22','2017-04-06 10:41:22','',0,'https://wordpress.org/plugins/files/2017/04/06_10-41-22_ultimate-nofollow-seo.zip',0,'attachment','application/zip',0), (66091,15238606,'2017-04-06 10:56:06','2017-04-06 10:56:06','','06_10-56-06_way2sms','','inherit','closed','closed','','06_10-56-06_way2sms','','','2017-04-06 10:56:06','2017-04-06 10:56:06','',0,'https://wordpress.org/plugins/files/2017/04/06_10-56-06_way2sms.zip',0,'attachment','application/zip',0), (66093,14227619,'2017-04-06 11:04:29','2017-04-06 11:04:29','','06_11-04-29_edd-ideal-payment-gateway','','inherit','closed','closed','','06_11-04-29_edd-ideal-payment-gateway','','','2017-04-06 11:04:29','2017-04-06 11:04:29','',0,'https://wordpress.org/plugins/files/2017/04/06_11-04-29_edd-ideal-payment-gateway.zip',0,'attachment','application/zip',0), (66095,15372381,'2017-04-06 11:05:44','2017-04-06 11:05:44','','06_11-05-44_kunze-law-1-9','','inherit','closed','closed','','06_11-05-44_kunze-law-1-9','','','2017-04-06 11:05:44','2017-04-06 11:05:44','',0,'https://wordpress.org/plugins/files/2017/04/06_11-05-44_kunze-law-1-9.zip',0,'attachment','application/zip',0), (66097,15225336,'2017-04-06 11:07:33','2017-04-06 11:07:33','','06_11-07-33_recordbrowser','','inherit','closed','closed','','06_11-07-33_recordbrowser','','','2017-04-06 11:07:33','2017-04-06 11:07:33','',0,'https://wordpress.org/plugins/files/2017/04/06_11-07-33_recordbrowser.zip',0,'attachment','application/zip',0), (66103,15382031,'2017-04-06 14:45:35','2017-04-06 11:45:35','','06_11-45-35_smartmoderation','','inherit','closed','closed','','06_11-45-35_smartmoderation','','','2017-04-06 14:45:35','2017-04-06 11:45:35','',0,'https://tr.wordpress.org/plugins/files/2017/04/06_11-45-35_smartmoderation.zip',0,'attachment','application/zip',0), (66109,15359762,'2017-04-06 12:05:21','2017-04-06 12:05:21','','06_12-05-21_Chare','','inherit','closed','closed','','06_12-05-21_chare','','','2017-04-06 12:05:21','2017-04-06 12:05:21','',0,'https://wordpress.org/plugins/files/2017/04/06_12-05-21_Chare.zip',0,'attachment','application/zip',0), (66111,8670515,'2017-04-06 12:21:14','2017-04-06 12:21:14','','06_12-21-14_slider-hero','','inherit','closed','closed','','06_12-21-14_slider-hero','','','2017-04-06 12:21:14','2017-04-06 12:21:14','',0,'https://wordpress.org/plugins/files/2017/04/06_12-21-14_slider-hero.zip',0,'attachment','application/zip',0), (66123,15221195,'2017-04-06 14:28:55','2017-04-06 14:28:55','','06_14-28-55_fny-database-backup','','inherit','closed','closed','','06_14-28-55_fny-database-backup','','','2017-04-06 14:28:55','2017-04-06 14:28:55','',0,'https://wordpress.org/plugins/files/2017/04/06_14-28-55_fny-database-backup.zip',0,'attachment','application/zip',0), (66129,8670515,'2017-04-06 14:38:02','2017-04-06 14:38:02','','06_14-38-02_knowledgebase-helpdesk','','inherit','closed','closed','','06_14-38-02_knowledgebase-helpdesk','','','2017-04-06 14:38:02','2017-04-06 14:38:02','',0,'https://wordpress.org/plugins/files/2017/04/06_14-38-02_knowledgebase-helpdesk.zip',0,'attachment','application/zip',0), (66141,15352146,'2017-04-06 15:37:53','2017-04-06 15:37:53','','06_15-37-53_bancomail-email-lists-integration','','inherit','closed','closed','','06_15-37-53_bancomail-email-lists-integration','','','2017-04-06 15:37:53','2017-04-06 15:37:53','',0,'https://wordpress.org/plugins/files/2017/04/06_15-37-53_bancomail-email-lists-integration.zip',0,'attachment','application/zip',0), (66152,15378116,'2017-04-06 16:30:48','2017-04-06 16:30:48','','06_16-30-48_abaan-gallery','','inherit','closed','closed','','06_16-30-48_abaan-gallery','','','2017-04-06 16:30:48','2017-04-06 16:30:48','',0,'https://wordpress.org/plugins/files/2017/04/06_16-30-48_abaan-gallery.zip',0,'attachment','application/zip',0), (66156,15370874,'2017-04-06 16:46:44','2017-04-06 16:46:44','','06_16-46-44_paperlit','','inherit','closed','closed','','06_16-46-44_paperlit','','','2017-04-06 16:46:44','2017-04-06 16:46:44','',0,'https://wordpress.org/plugins/files/2017/04/06_16-46-44_paperlit.zip',0,'attachment','application/zip',0), (66168,8082924,'2017-04-06 18:52:02','2017-04-06 18:52:02','','06_18-52-02_powered-cache','','inherit','closed','closed','','06_18-52-02_powered-cache','','','2017-04-06 18:52:02','2017-04-06 18:52:02','',0,'https://wordpress.org/plugins/files/2017/04/06_18-52-02_powered-cache.zip',0,'attachment','application/zip',0), (66176,14594339,'2017-04-06 22:52:51','2017-04-06 20:52:51','','06_20-52-51_QuickWP','','inherit','closed','closed','','06_20-52-51_quickwp','','','2017-04-06 22:52:51','2017-04-06 20:52:51','',0,'https://de.wordpress.org/plugins/files/2017/04/06_20-52-51_QuickWP.zip',0,'attachment','application/zip',0), (66178,12421822,'2017-04-06 20:55:18','2017-04-06 20:55:18','','06_20-55-17_sold-alerts1.0','','inherit','closed','closed','','06_20-55-17_sold-alerts1-0','','','2017-04-06 20:55:18','2017-04-06 20:55:18','',0,'https://wordpress.org/plugins/files/2017/04/06_20-55-17_sold-alerts1.0.zip',0,'attachment','application/zip',0), (66188,15354925,'2017-04-06 22:43:54','2017-04-06 22:43:54','','06_22-43-54_postscape','','inherit','closed','closed','','06_22-43-54_postscape','','','2017-04-06 22:43:54','2017-04-06 22:43:54','',0,'https://wordpress.org/plugins/files/2017/04/06_22-43-54_postscape.zip',0,'attachment','application/zip',0), (66204,14765566,'2017-04-07 01:28:37','2017-04-07 01:28:37','','07_01-28-37_feed-utm','','inherit','closed','closed','','07_01-28-37_feed-utm','','','2017-04-07 01:28:37','2017-04-07 01:28:37','',0,'https://wordpress.org/plugins/files/2017/04/07_01-28-37_feed-utm.zip',0,'attachment','application/zip',0), (66206,15320450,'2017-04-07 01:48:14','2017-04-07 01:48:14','','07_01-48-14_sticky-video','','inherit','closed','closed','','07_01-48-14_sticky-video','','','2017-04-07 01:48:14','2017-04-07 01:48:14','',0,'https://wordpress.org/plugins/files/2017/04/07_01-48-14_sticky-video.zip',0,'attachment','application/zip',0), (66208,8686572,'2017-04-07 01:53:36','2017-04-07 01:53:36','','07_01-53-36_post-share-buttons.1.0','','inherit','closed','closed','','07_01-53-36_post-share-buttons-1-0','','','2017-04-07 01:53:36','2017-04-07 01:53:36','',0,'https://wordpress.org/plugins/files/2017/04/07_01-53-36_post-share-buttons.1.0.zip',0,'attachment','application/zip',0), (66210,15363778,'2017-04-07 02:17:03','2017-04-07 02:17:03','','07_02-17-02_wpsid-shortcode','','inherit','closed','closed','','07_02-17-02_wpsid-shortcode','','','2017-04-07 02:17:03','2017-04-07 02:17:03','',0,'https://wordpress.org/plugins/files/2017/04/07_02-17-02_wpsid-shortcode.zip',0,'attachment','application/zip',0), (66212,15356217,'2017-04-07 02:46:50','2017-04-07 02:46:50','','07_02-46-50_publica-ad-block-recovery','','inherit','closed','closed','','07_02-46-50_publica-ad-block-recovery','','','2017-04-07 02:46:50','2017-04-07 02:46:50','',0,'https://wordpress.org/plugins/files/2017/04/07_02-46-50_publica-ad-block-recovery.zip',0,'attachment','application/zip',0), (66214,15372600,'2017-04-07 02:49:02','2017-04-07 02:49:02','','07_02-49-02_dynamically-register-sidebars','','inherit','closed','closed','','07_02-49-02_dynamically-register-sidebars','','','2017-04-07 02:49:02','2017-04-07 02:49:02','',0,'https://wordpress.org/plugins/files/2017/04/07_02-49-02_dynamically-register-sidebars.zip',0,'attachment','application/zip',0), (66216,14952082,'2017-04-07 03:46:58','2017-04-07 03:46:58','','07_03-46-58_contact-form-7-freebie','','inherit','closed','closed','','07_03-46-58_contact-form-7-freebie','','','2017-04-07 03:46:58','2017-04-07 03:46:58','',0,'https://wordpress.org/plugins/files/2017/04/07_03-46-58_contact-form-7-freebie.zip',0,'attachment','application/zip',0), (66218,14952082,'2017-04-07 03:53:59','2017-04-07 03:53:59','','07_03-53-59_contact-form-7-freebie','','inherit','closed','closed','','07_03-53-59_contact-form-7-freebie','','','2017-04-07 03:53:59','2017-04-07 03:53:59','',0,'https://wordpress.org/plugins/files/2017/04/07_03-53-59_contact-form-7-freebie.zip',0,'attachment','application/zip',0), (66220,15238606,'2017-04-07 05:44:02','2017-04-07 05:44:02','','07_05-44-02_maestros-infotech-free-sms','','inherit','closed','closed','','07_05-44-02_maestros-infotech-free-sms','','','2017-04-07 05:44:02','2017-04-07 05:44:02','',0,'https://wordpress.org/plugins/files/2017/04/07_05-44-02_maestros-infotech-free-sms.zip',0,'attachment','application/zip',0), (66222,15125476,'2017-04-07 07:04:18','2017-04-07 07:04:18','','07_07-04-18_ct_sponsors','','inherit','closed','closed','','07_07-04-18_ct_sponsors','','','2017-04-07 07:04:18','2017-04-07 07:04:18','',0,'https://wordpress.org/plugins/files/2017/04/07_07-04-18_ct_sponsors.zip',0,'attachment','application/zip',0), (66224,15386867,'2017-04-07 08:12:14','2017-04-07 07:12:14','','07_07-12-14_block-wp-login','','inherit','closed','closed','','07_07-12-14_block-wp-login','','','2017-04-07 08:12:14','2017-04-07 07:12:14','',0,'https://en-gb.wordpress.org/plugins/files/2017/04/07_07-12-14_block-wp-login.zip',0,'attachment','application/zip',0), (66226,15380924,'2017-04-07 07:31:07','2017-04-07 07:31:07','','07_07-31-07_remove-category-word-from-title','','inherit','closed','closed','','07_07-31-07_remove-category-word-from-title','','','2017-04-07 07:31:07','2017-04-07 07:31:07','',0,'https://wordpress.org/plugins/files/2017/04/07_07-31-07_remove-category-word-from-title.zip',0,'attachment','application/zip',0), (66228,15161476,'2017-04-07 07:35:48','2017-04-07 07:35:48','','07_07-35-48_teams','','inherit','closed','closed','','07_07-35-48_teams','','','2017-04-07 07:35:48','2017-04-07 07:35:48','',0,'https://wordpress.org/plugins/files/2017/04/07_07-35-48_teams.zip',0,'attachment','application/zip',0), (66230,15380285,'2017-04-07 07:54:34','2017-04-07 07:54:34','','07_07-54-34_odds-comparison','','inherit','closed','closed','','07_07-54-34_odds-comparison','','','2017-04-07 07:54:34','2017-04-07 07:54:34','',0,'https://da.wordpress.org/plugins/files/2017/04/07_07-54-34_odds-comparison.zip',0,'attachment','application/zip',0), (66232,9333619,'2017-04-07 08:00:38','2017-04-07 08:00:38','','07_08-00-38_ro-bx-slider','','inherit','closed','closed','','07_08-00-38_ro-bx-slider','','','2017-04-07 08:00:38','2017-04-07 08:00:38','',0,'https://wordpress.org/plugins/files/2017/04/07_08-00-38_ro-bx-slider.zip',0,'attachment','application/zip',0), (66234,8577162,'2017-04-07 08:01:55','2017-04-07 08:01:55','','07_08-01-55_rating-manager-lite-master','','inherit','closed','closed','','07_08-01-55_rating-manager-lite-master','','','2017-04-07 08:01:55','2017-04-07 08:01:55','',0,'https://wordpress.org/plugins/files/2017/04/07_08-01-55_rating-manager-lite-master.zip',0,'attachment','application/zip',0), (66236,15386919,'2017-04-07 08:04:38','2017-04-07 08:04:38','','07_08-04-38_validator-pizza','','inherit','closed','closed','','07_08-04-38_validator-pizza','','','2017-04-07 08:04:38','2017-04-07 08:04:38','',0,'https://wordpress.org/plugins/files/2017/04/07_08-04-38_validator-pizza.zip',0,'attachment','application/zip',0), (66238,15383774,'2017-04-07 08:23:58','2017-04-07 08:23:58','','07_08-23-58_link_amazon_italia','','inherit','closed','closed','','07_08-23-58_link_amazon_italia','','','2017-04-07 08:23:58','2017-04-07 08:23:58','',0,'https://wordpress.org/plugins/files/2017/04/07_08-23-58_link_amazon_italia.zip',0,'attachment','application/zip',0), (66240,13604382,'2017-04-07 08:35:50','2017-04-07 08:35:50','','07_08-35-50_woo-auction','','inherit','closed','closed','','07_08-35-50_woo-auction','','','2017-04-07 08:35:50','2017-04-07 08:35:50','',0,'https://wordpress.org/plugins/files/2017/04/07_08-35-50_woo-auction.zip',0,'attachment','application/zip',0), (66242,15376444,'2017-04-07 08:41:45','2017-04-07 08:41:45','','07_08-41-45_video-synq-review-submit','','inherit','closed','closed','','07_08-41-45_video-synq-review-submit','','','2017-04-07 08:41:45','2017-04-07 08:41:45','',0,'https://wordpress.org/plugins/files/2017/04/07_08-41-45_video-synq-review-submit.zip',0,'attachment','application/zip',0), (66244,15222926,'2017-04-07 08:49:06','2017-04-07 08:49:06','','07_08-49-06_create-and-assign-categories-for-pages','','inherit','closed','closed','','07_08-49-06_create-and-assign-categories-for-pages','','','2017-04-07 08:49:06','2017-04-07 08:49:06','',0,'https://wordpress.org/plugins/files/2017/04/07_08-49-06_create-and-assign-categories-for-pages.zip',0,'attachment','application/zip',0), (66246,14668513,'2017-04-07 08:53:27','2017-04-07 08:53:27','','07_08-53-26_float-menu','','inherit','closed','closed','','07_08-53-26_float-menu','','','2017-04-07 08:53:27','2017-04-07 08:53:27','',0,'https://wordpress.org/plugins/files/2017/04/07_08-53-26_float-menu.zip',0,'attachment','application/zip',0), (66248,15069607,'2017-04-07 09:12:44','2017-04-07 09:12:44','','07_09-12-44_wxshare-1.3.1','','inherit','closed','closed','','07_09-12-44_wxshare-1-3-1','','','2017-04-07 09:12:44','2017-04-07 09:12:44','',0,'https://wordpress.org/plugins/files/2017/04/07_09-12-44_wxshare-1.3.1.zip',0,'attachment','application/zip',0), (66250,7829939,'2017-04-07 09:13:13','2017-04-07 09:13:13','','07_09-13-13_ek-notes','','inherit','closed','closed','','07_09-13-13_ek-notes','','','2017-04-07 09:13:13','2017-04-07 09:13:13','',0,'https://wordpress.org/plugins/files/2017/04/07_09-13-13_ek-notes.zip',0,'attachment','application/zip',0), (66252,7829939,'2017-04-07 09:18:41','2017-04-07 09:18:41','','07_09-18-41_ek-assessed-posts','','inherit','closed','closed','','07_09-18-41_ek-assessed-posts','','','2017-04-07 09:18:41','2017-04-07 09:18:41','',0,'https://wordpress.org/plugins/files/2017/04/07_09-18-41_ek-assessed-posts.zip',0,'attachment','application/zip',0), (66254,15369719,'2017-04-07 09:36:03','2017-04-07 09:36:03','','07_09-36-03_transactium-gravity-forms-addon','','inherit','closed','closed','','07_09-36-03_transactium-gravity-forms-addon','','','2017-04-07 09:36:03','2017-04-07 09:36:03','',0,'https://wordpress.org/plugins/files/2017/04/07_09-36-03_transactium-gravity-forms-addon.zip',0,'attachment','application/zip',0), (66256,15369719,'2017-04-07 09:36:22','2017-04-07 09:36:22','','07_09-36-22_agechecked-woocommerce-addon','','inherit','closed','closed','','07_09-36-22_agechecked-woocommerce-addon','','','2017-04-07 09:36:22','2017-04-07 09:36:22','',0,'https://wordpress.org/plugins/files/2017/04/07_09-36-22_agechecked-woocommerce-addon.zip',0,'attachment','application/zip',0), (66258,15369719,'2017-04-07 09:36:40','2017-04-07 09:36:40','','07_09-36-40_transactium-wallet-woocommerce','','inherit','closed','closed','','07_09-36-40_transactium-wallet-woocommerce','','','2017-04-07 09:36:40','2017-04-07 09:36:40','',0,'https://wordpress.org/plugins/files/2017/04/07_09-36-40_transactium-wallet-woocommerce.zip',0,'attachment','application/zip',0), (66260,15369719,'2017-04-07 09:36:55','2017-04-07 09:36:55','','07_09-36-55_transactium-woocommerce-addon','','inherit','closed','closed','','07_09-36-55_transactium-woocommerce-addon','','','2017-04-07 09:36:55','2017-04-07 09:36:55','',0,'https://wordpress.org/plugins/files/2017/04/07_09-36-55_transactium-woocommerce-addon.zip',0,'attachment','application/zip',0), (66262,15369719,'2017-04-07 09:37:44','2017-04-07 09:37:44','','07_09-37-44_transactium-wallet-woocommerce','','inherit','closed','closed','','07_09-37-44_transactium-wallet-woocommerce','','','2017-04-07 09:37:44','2017-04-07 09:37:44','',0,'https://wordpress.org/plugins/files/2017/04/07_09-37-44_transactium-wallet-woocommerce.zip',0,'attachment','application/zip',0), (66264,15379407,'2017-04-07 09:47:04','2017-04-07 09:47:04','','07_09-47-04_ilys-flow-wp-plugin-basic','','inherit','closed','closed','','07_09-47-04_ilys-flow-wp-plugin-basic','','','2017-04-07 09:47:04','2017-04-07 09:47:04','',0,'https://wordpress.org/plugins/files/2017/04/07_09-47-04_ilys-flow-wp-plugin-basic.zip',0,'attachment','application/zip',0), (66266,15372600,'2017-04-07 09:56:35','2017-04-07 09:56:35','','07_09-56-35_hide-wp-front-admin-bar','','inherit','closed','closed','','07_09-56-35_hide-wp-front-admin-bar','','','2017-04-07 09:56:35','2017-04-07 09:56:35','',0,'https://wordpress.org/plugins/files/2017/04/07_09-56-35_hide-wp-front-admin-bar.zip',0,'attachment','application/zip',0), (66269,12849205,'2017-04-07 10:52:05','2017-04-07 10:52:05','','07_10-52-05_onecom-themes-plugins','','inherit','closed','closed','','07_10-52-05_onecom-themes-plugins','','','2017-04-07 10:52:05','2017-04-07 10:52:05','',0,'https://wordpress.org/plugins/files/2017/04/07_10-52-05_onecom-themes-plugins.zip',0,'attachment','application/zip',0), (66271,5773628,'2017-04-07 11:20:44','2017-04-07 11:20:44','','07_11-20-44_Wpp_cookie_expire','','inherit','closed','closed','','07_11-20-44_wpp_cookie_expire','','','2017-04-07 11:20:44','2017-04-07 11:20:44','',0,'https://wordpress.org/plugins/files/2017/04/07_11-20-44_Wpp_cookie_expire.zip',0,'attachment','application/zip',0), (66273,15042361,'2017-04-07 11:44:46','2017-04-07 11:44:46','','07_11-44-46_eh-ajax-search','','inherit','closed','closed','','07_11-44-46_eh-ajax-search','','','2017-04-07 11:44:46','2017-04-07 11:44:46','',0,'https://wordpress.org/plugins/files/2017/04/07_11-44-46_eh-ajax-search.zip',0,'attachment','application/zip',0), (66275,7589873,'2017-04-07 11:54:18','2017-04-07 11:54:18','','07_11-54-18_gpano','','inherit','closed','closed','','07_11-54-18_gpano','','','2017-04-07 11:54:18','2017-04-07 11:54:18','',0,'https://wordpress.org/plugins/files/2017/04/07_11-54-18_gpano.zip',0,'attachment','application/zip',0); /*!40000 ALTER TABLE `wporg_367_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_367_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_367_term_relationships`; CREATE TABLE `wporg_367_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_367_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_367_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_367_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (40,1,0), (40,51,0), (40,60,0), (40,83,0), (40,441,0), (40,1141,0), (40,2550,0), (40,55952,0), (40,77526,8), (40,77548,6), (40,77560,3), (40,77566,1), (40,78470,7), (40,79826,2), (40,80418,9), (40,83740,4), (40,83741,5), (40,98340,0), (40,98341,0), (41,1,0), (42,1,0), (43,1,0), (43,43,0), (43,60,0), (43,357,0), (43,77514,3), (43,77788,15), (43,77791,2), (43,78161,10), (43,78441,16), (43,79460,8), (43,79635,1), (43,79636,4), (43,79637,5), (43,79638,6), (43,79639,7), (43,79640,9), (43,79641,11), (43,79642,12), (43,79643,13), (43,92394,18), (43,98344,0), (43,98553,0), (43,104152,0), (43,126347,14), (43,126348,17), (44,1,0), (44,60,0), (44,11520,0), (44,31174,0), (44,77594,2), (44,77971,1), (44,81477,3), (44,98348,0), (44,98349,0), (45,1,0), (46,1,0), (47,1,0), (47,43,0), (47,60,0), (47,2757,0), (47,2768,0), (47,77594,3), (47,78639,1), (47,88305,2), (47,98352,0), (48,1,0), (48,43,0), (48,60,0), (48,2768,0), (48,3245,0), (48,8628,0), (48,10652,0), (48,77594,2), (48,78639,1), (48,98352,0), (49,1,0), (49,38,0), (49,41,0), (49,60,0), (49,602,0), (49,710,0), (49,9217,0), (49,9225,0), (49,39820,0), (49,77528,1), (49,77742,9), (49,78127,2), (49,78232,7), (49,78239,10), (49,78311,6), (49,81424,8), (49,81434,3), (49,81564,4), (49,86513,5), (49,98353,0), (49,98354,0), (50,1,0), (50,59,0), (50,6606,0), (50,77594,1), (50,98347,0), (50,98355,0), (50,98356,0), (50,98357,0), (50,98358,0), (50,98359,0), (50,98360,0), (50,98361,0), (51,1,0), (85,42,0), (85,44,0), (85,50,0), (85,61,0), (85,151,0), (85,600,0), (85,1075,0), (85,1089,0), (85,1644,0), (85,77494,1), (85,77495,2), (85,77496,3), (85,77497,4), (85,77498,5), (85,77499,6), (85,77500,7), (85,77501,8), (85,77502,9), (85,77503,10), (85,77504,11), (85,77505,12), (85,77506,13), (85,77507,14), (85,77508,15), (85,77509,16), (85,77510,17), (85,77511,18), (85,77512,19), (85,77513,20), (85,77514,21), (85,77515,22), (85,77516,23), (85,77517,24), (85,77518,25), (85,77519,26), (85,77520,27), (85,77521,28), (85,77522,29), (85,77523,30), (85,77524,31), (85,77525,32), (85,77526,34), (85,77527,35), (85,77528,36), (85,77529,37), (85,77530,38), (85,77531,39), (85,77532,40), (85,77533,41), (85,77534,42), (85,77535,43), (85,77536,44), (85,77537,45), (85,77538,46), (85,77539,47), (85,77540,48), (85,77541,49), (85,77542,50), (85,77543,51), (85,77544,52), (85,77545,53), (85,77546,54), (85,77547,55), (85,77548,56), (85,77549,57), (85,77550,58), (85,77551,59), (85,77552,60), (85,77553,61), (85,77554,62), (85,77555,63), (85,77556,64), (85,77557,65), (85,77558,66), (85,77559,67), (85,77560,68), (85,77561,69), (85,77562,70), (85,77563,71), (85,77564,72), (85,77565,73), (85,77566,74), (85,77567,75), (85,77568,76), (85,77569,77), (85,77570,78), (85,77571,79), (85,77572,80), (85,77573,81), (85,77574,82), (85,77575,83), (85,77576,84), (85,77577,85), (85,77578,86), (85,77579,87), (85,77580,89), (85,77581,90), (85,77582,91), (85,77583,92), (85,78147,33), (85,81580,88), (85,98367,0), (85,98368,0), (85,98369,0), (85,98370,0), (85,98371,0), (85,98372,0), (85,98373,0), (85,106488,0), (113,44,0), (113,54,0), (113,61,0), (113,107,0), (113,109,0), (113,599,0), (113,2656,0), (113,2793,0), (113,77494,10), (113,77500,3), (113,77510,9), (113,77525,8), (113,77541,11), (113,77554,1), (113,77559,4), (113,77587,2), (113,77588,5), (113,77589,6), (113,77590,7), (113,98378,0), (113,98379,0), (113,98380,0), (158,41,0), (158,42,0), (158,59,0), (158,108,0), (158,267,0), (158,358,0), (158,360,0), (158,361,0), (158,77593,1), (158,98382,0), (159,55,0), (159,56,0), (159,57,0), (159,186,0), (159,6358,0), (159,12158,0), (159,46987,0), (159,77595,2), (159,81746,5), (159,81747,4), (159,81748,6), (159,98383,0), (159,98384,0), (159,98385,0), (159,98386,0), (159,98387,0), (159,98388,0), (159,98389,0), (159,98390,0), (159,127656,0), (159,127657,1), (159,127658,3), (159,131186,0), (160,51,0), (160,55,0), (160,56,0), (160,150,0), (160,159,0), (160,170,0), (160,186,0), (160,5944,0), (160,77596,1), (160,77597,2), (160,77598,3), (160,77599,4), (160,77600,5), (160,98391,0), (160,98392,0), (161,55,0), (161,56,0), (161,150,0), (161,186,0), (161,2664,0), (161,6360,0), (161,12253,0), (161,77601,1), (161,98393,0), (161,98394,0), (162,38,0), (162,54,0), (162,600,0), (162,602,0), (162,710,0), (162,77607,0), (162,98395,0), (163,45,0), (163,282,0), (163,332,0), (163,888,0), (163,2653,0), (163,5747,0), (163,77494,1), (163,77546,5), (163,77602,2), (163,77603,3), (163,77604,4), (163,77605,6), (163,77606,8), (163,77608,9), (163,98396,0), (163,98397,0), (163,98398,0), (163,98399,0), (163,102361,0), (163,138786,7), (164,52,0), (164,54,0), (164,61,0), (164,144,0), (164,146,0), (164,247,0), (164,2636,0), (164,2637,0), (164,77494,2), (164,77548,3), (164,77609,1), (164,98400,0), (164,98401,0), (164,131320,0), (165,46,0), (165,1332,0), (165,1719,0), (165,1975,0), (165,2303,0), (165,3970,0), (165,77503,0), (165,98362,0), (166,38,0), (166,52,0), (166,54,0), (166,125,0), (166,600,0), (166,1173,0), (166,1176,0), (166,1229,0), (166,77613,1), (166,98402,0), (166,98403,0), (166,98404,0), (166,98405,0), (166,98406,0), (166,98407,0), (166,98408,0), (166,98409,0), (166,98410,0), (166,131530,0), (166,138669,0), (166,138670,0), (167,36,0), (167,45,0), (167,51,0), (167,232,0), (167,1005,0), (167,7184,0), (167,10329,0), (167,10331,0), (167,77611,1), (167,77612,2), (167,98411,0), (167,98412,0), (168,44,0), (168,362,0), (168,77593,0), (168,98382,0), (169,50,0), (169,210,0), (169,228,0), (169,649,0), (169,4619,0), (169,7766,0), (169,77615,1), (169,77617,2), (169,98413,0), (169,132466,0), (170,50,0), (170,527,0), (170,1391,0), (170,2009,0), (170,2240,0), (170,2245,0), (170,77614,0), (170,98414,0), (171,50,0), (171,1326,0), (171,2956,0), (171,77580,0), (171,98366,0), (172,2738,0), (172,2814,0), (172,23177,0), (172,77610,1), (172,98415,0), (173,52,0), (173,54,0), (173,59,0), (173,186,0), (173,21091,0), (173,64049,0), (173,64050,0), (173,64051,0), (173,77616,1), (173,98393,0), (174,43,0), (174,243,0), (174,900,0), (174,1753,0), (174,5826,0), (174,77620,1), (174,77621,2), (174,98416,0), (174,98417,0), (175,43,0), (175,50,0), (175,59,0), (175,162,0), (175,241,0), (175,606,0), (175,1084,0), (175,6410,0), (175,77618,1), (175,77619,2), (175,98418,0), (176,44,0), (176,107,0), (176,2981,0), (176,3711,0), (176,77634,0), (176,98419,0), (177,48,0), (177,104,0), (177,5622,0), (177,5778,0), (177,69856,0), (177,77636,0), (177,98420,0), (178,43,0), (178,46,0), (178,50,0), (178,133,0), (178,162,0), (178,1332,0), (178,1719,0), (178,2303,0), (178,77639,1), (178,77640,2), (178,77641,3), (178,98421,0), (178,98422,0), (179,36,0), (179,51,0), (179,55,0), (179,232,0), (179,522,0), (179,1005,0), (179,10329,0), (179,10330,0), (179,77635,1), (179,98423,0), (180,38,0), (180,52,0), (180,54,0), (180,125,0), (180,600,0), (180,1176,0), (180,1180,0), (180,1184,0), (180,77643,1), (180,77644,2), (180,77645,3), (180,77646,4), (180,98424,0), (180,98425,0), (180,98426,0), (180,98427,0), (182,51,0), (182,59,0), (182,151,0), (182,152,0), (182,10698,0), (182,10710,0), (182,10718,0), (182,77629,1), (182,77630,2), (182,77631,3), (182,77632,4), (182,98432,0), (182,126479,5), (183,59,0), (183,151,0), (183,152,0), (183,4151,0), (183,6060,0), (183,23369,0), (183,77637,1), (183,77638,2), (183,98433,0), (183,98434,0), (184,50,0), (184,162,0), (184,186,0), (184,208,0), (184,611,0), (184,4943,0), (184,77642,1), (184,98435,0), (185,36,0), (185,59,0), (185,150,0), (185,232,0), (185,434,0), (185,1005,0), (185,10330,0), (185,77958,1), (185,98646,0), (186,43,0), (186,50,0), (186,56,0), (186,80,0), (186,222,0), (186,357,0), (186,606,0), (186,6438,0), (186,77659,1), (186,77660,2), (186,98437,0), (186,98438,0), (187,55,0), (187,83,0), (187,86,0), (187,186,0), (187,243,0), (187,2386,0), (187,77658,0), (187,98439,0), (188,43,0), (188,46,0), (188,50,0), (188,133,0), (188,162,0), (188,485,0), (188,611,0), (188,14503,0), (188,77618,1), (188,77619,2), (188,98418,0), (189,43,0), (189,1753,0), (189,1865,0), (189,2752,0), (189,11353,0), (189,13952,0), (189,77665,1), (189,77666,2), (189,98440,0), (189,98441,0), (190,44,0), (190,52,0), (190,54,0), (190,107,0), (190,153,0), (190,599,0), (190,1452,0), (190,6243,0), (190,77630,1), (190,77631,3), (190,77632,4), (190,77670,2), (190,98432,0), (190,126479,5), (192,41,0), (192,42,0), (192,55,0), (192,267,0), (192,455,0), (192,456,0), (192,1029,0), (192,13933,0), (192,77661,1), (192,77662,2), (192,77663,3), (192,77664,4), (192,98444,0), (192,98445,0), (192,98446,0), (193,41,0), (193,450,0), (193,6695,0), (193,6696,0), (193,6932,0), (193,9965,0), (193,77667,1), (193,98447,0), (194,35,0), (194,43,0), (194,50,0), (194,133,0), (194,162,0), (194,784,0), (194,1378,0), (194,2557,0), (194,77671,1), (194,77672,2), (194,77673,3), (194,77674,4), (194,98448,0), (194,98449,0), (194,98450,0), (194,98451,0), (194,98452,0), (194,98453,0), (195,40,0), (195,51,0), (195,59,0), (195,151,0), (195,209,0), (195,4316,0), (195,6918,0), (195,10692,0), (195,77675,1), (195,77676,2), (195,77677,3), (195,77678,4), (195,98454,0), (195,98455,0), (195,98456,0), (195,98457,0), (195,98458,0), (195,98459,0), (195,98460,0), (195,98461,0), (195,98462,0), (195,117946,0), (195,138830,0), (195,138854,0), (196,44,0), (196,52,0), (196,175,0), (196,732,0), (196,2010,0), (196,2657,0), (196,14073,0), (196,77679,0), (196,98463,0), (196,98464,0), (197,41,0), (197,42,0), (197,59,0), (197,358,0), (197,361,0), (197,601,0), (197,2253,0), (197,5981,0), (197,77647,1), (197,77648,2), (197,77649,3), (197,77650,4), (197,77651,5), (197,77652,6), (197,77653,7), (197,77654,8), (197,77655,9), (197,77656,10), (197,77657,11), (197,98465,0), (197,98466,0), (197,98467,0), (200,46,0), (200,59,0), (200,246,0), (200,567,0), (200,2289,0), (200,3524,0), (200,6590,0), (200,77681,1), (200,98472,0), (202,50,0), (202,133,0), (202,247,0), (202,1452,0), (202,2703,0), (202,3868,0), (202,77668,1), (202,77669,2), (202,98474,0), (202,98475,0), (202,98476,0), (202,98477,0), (202,98478,0), (203,40,0), (203,43,0), (203,416,0), (203,1486,0), (203,2431,0), (203,6683,0), (203,27101,0), (203,77671,1), (203,77672,21), (203,77673,2), (203,77674,3), (203,77684,4), (203,77685,5), (203,77686,6), (203,77687,7), (203,77688,8), (203,77689,9), (203,77690,10), (203,77691,11), (203,77692,12), (203,77694,13), (203,77695,14), (203,77696,15), (203,77697,16), (203,77698,17), (203,77699,18), (203,77700,19), (203,77701,20), (203,77702,22), (203,77703,23), (203,77704,24), (203,77705,26), (203,77707,27), (203,77708,28), (203,77709,29), (203,98448,0), (203,98450,0), (203,98451,0), (203,98452,0), (203,98453,0), (203,98479,0), (203,98480,0), (203,98481,0), (203,98482,0), (203,98483,0), (203,98484,0), (203,98485,0), (203,98486,0), (203,98487,0), (203,98488,0), (203,98489,0), (203,98490,0), (203,98491,0), (203,98492,0), (203,98493,0), (203,98494,0), (203,98495,0), (203,107217,0), (203,125082,25), (203,131215,0), (203,133284,30), (205,40,0), (205,41,0), (205,51,0), (205,83,0), (205,563,0), (205,802,0), (205,1281,0), (205,2322,0), (205,77716,1), (205,77717,2), (205,98497,0), (205,98498,0), (208,38,0), (208,54,0), (208,59,0), (208,125,0), (208,600,0), (208,1175,0), (208,1183,0), (208,2155,0), (208,77710,1), (208,77711,2), (208,77712,3), (208,77713,4), (208,77714,5), (208,77715,6), (208,98501,0), (208,98503,0), (213,44,0), (213,51,0), (213,54,0), (213,61,0), (213,1104,0), (213,1141,0), (213,2793,0), (213,5708,0), (213,8647,0), (213,77543,3), (213,77545,2), (213,77554,1), (213,77742,4), (213,98513,0), (213,98514,0), (213,98515,0), (216,50,0), (216,52,0), (216,55,0), (216,133,0), (216,187,0), (216,1452,0), (216,3868,0), (216,27951,0), (216,77721,1), (216,98518,0), (218,50,0), (218,1326,0), (218,2956,0), (218,8586,0), (218,30630,0), (218,77719,0), (218,98520,0), (265,41,0), (265,44,0), (265,58,0), (265,61,0), (265,2053,0), (265,2505,0), (265,2512,0), (265,5651,0), (265,13943,0), (265,77545,1), (265,77727,7), (265,77844,2), (265,77845,3), (265,77846,4), (265,77847,5), (265,77848,6), (265,77849,8), (265,77850,9), (265,98355,0), (265,98514,0), (265,98515,0), (265,98521,0), (265,98597,0), (265,98598,0), (265,98599,0), (265,98600,0), (265,98601,0), (265,102861,0), (265,103092,0), (265,105464,0), (363,43,0), (363,50,0), (363,59,0), (363,61,0), (363,975,0), (363,1141,0), (363,1786,0), (363,3971,0), (363,10674,0), (363,77864,1), (363,77998,2), (363,98324,0), (363,98729,0), (365,38,0), (365,54,0), (365,83,0), (365,602,0), (365,1911,0), (365,1955,0), (365,41198,0), (365,77771,1), (365,98731,0), (30184,43,0), (30184,50,0), (30184,60,0), (30184,166,0), (30184,1332,0), (30184,2757,0), (30184,2768,0), (30184,4672,0), (30184,78127,3), (30184,78325,1), (30184,78438,2), (30184,98350,0), (30184,98354,0), (30184,113730,0), (41744,38,0), (41744,54,0), (41744,60,0), (41744,600,0), (41744,710,0), (41744,6558,0), (41744,8097,0), (41744,23853,0), (41744,77528,1), (41744,77548,3), (41744,78127,2), (41744,98353,0), (42409,44,0), (42409,60,0), (42409,107,0), (42409,11780,0), (42409,12379,0), (42409,77567,0), (42409,98342,0), (49158,77554,1), (49158,98359,0), (49158,98364,0), (49158,98370,0), (49158,99700,0), (54849,43,0), (54849,50,0), (54849,60,0), (54849,162,0), (54849,163,0), (54849,168,0), (54849,222,0), (54849,452,0), (54849,77594,1); /*!40000 ALTER TABLE `wporg_367_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_367_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_367_term_taxonomy`; CREATE TABLE `wporg_367_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_367_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_367_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_367_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,0), (34,34,'plugin_category','',0,0), (35,35,'plugin_category','',0,1), (36,36,'plugin_category','',0,3), (37,37,'plugin_category','',0,0), (38,38,'plugin_category','',0,7), (39,39,'plugin_category','',0,0), (40,40,'plugin_category','',0,3), (41,41,'plugin_category','',0,7), (42,42,'plugin_category','',0,4), (43,43,'plugin_category','',0,14), (44,44,'plugin_category','',0,9), (45,45,'plugin_category','',0,2), (46,46,'plugin_category','',0,4), (47,47,'plugin_category','',0,0), (48,48,'plugin_category','',0,1), (49,49,'plugin_category','',0,0), (50,50,'plugin_category','',0,16), (51,51,'plugin_category','',0,8), (52,52,'plugin_category','',0,7), (53,53,'plugin_category','',0,0), (54,54,'plugin_category','',0,11), (55,55,'plugin_category','',0,7), (56,56,'plugin_category','',0,4), (57,57,'plugin_category','',0,1), (58,58,'plugin_category','',0,1), (59,59,'plugin_category','',0,12), (60,60,'plugin_section','Beta plugins are in development for possible inclusion in a future version of WordPress.',0,10), (61,61,'plugin_section','Plugins contained within this category get displayed on the Featured tab.',0,6), (68,68,'plugin_business_model','',0,0), (69,69,'plugin_business_model','',0,0), (70,70,'plugin_business_model','',0,0), (71,71,'plugin_business_model','',0,0), (72,72,'plugin_section','',0,0), (74,74,'plugin_section','Plugins that have been offered for adoption by others.',0,0), (75,75,'plugin_section','The below plugins have been marked as favorites.',0,0), (76,76,'plugin_section','',0,0), (80,80,'plugin_tags','',0,1), (83,83,'plugin_tags','',0,4), (86,86,'plugin_tags','',0,1), (104,104,'plugin_tags','',0,1), (107,107,'plugin_tags','',0,4), (108,108,'plugin_tags','',0,1), (109,109,'plugin_tags','',0,1), (125,125,'plugin_tags','',0,3), (133,133,'plugin_tags','',0,5), (144,144,'plugin_tags','',0,1), (146,146,'plugin_tags','',0,1), (150,150,'plugin_tags','',0,3), (151,151,'plugin_tags','',0,4), (152,152,'plugin_tags','',0,2), (153,153,'plugin_tags','',0,1), (159,159,'plugin_tags','',0,1), (162,162,'plugin_tags','',0,6), (163,163,'plugin_tags','',0,1), (166,166,'plugin_tags','',0,1), (168,168,'plugin_tags','',0,1), (170,170,'plugin_tags','',0,1), (175,175,'plugin_tags','',0,1), (186,186,'plugin_tags','',0,6), (187,187,'plugin_tags','',0,1), (208,208,'plugin_tags','',0,1), (209,209,'plugin_tags','',0,1), (210,210,'plugin_tags','',0,1), (222,222,'plugin_tags','',0,2), (228,228,'plugin_tags','',0,1), (232,232,'plugin_tags','',0,3), (241,241,'plugin_tags','',0,1), (243,243,'plugin_tags','',0,2), (246,246,'plugin_tags','',0,1), (247,247,'plugin_tags','',0,2), (267,267,'plugin_tags','',0,2), (282,282,'plugin_tags','',0,1), (332,332,'plugin_tags','',0,1), (357,357,'plugin_tags','',0,2), (358,358,'plugin_tags','',0,2), (360,360,'plugin_tags','',0,1), (361,361,'plugin_tags','',0,2), (362,362,'plugin_tags','',0,1), (416,416,'plugin_tags','',0,1), (434,434,'plugin_tags','',0,1), (441,441,'plugin_tags','',0,1), (450,450,'plugin_tags','',0,1), (452,452,'plugin_tags','',0,1), (455,455,'plugin_tags','',0,1), (456,456,'plugin_tags','',0,1), (485,485,'plugin_tags','',0,1), (522,522,'plugin_tags','',0,1), (527,527,'plugin_tags','',0,1), (563,563,'plugin_tags','',0,1), (567,567,'plugin_tags','',0,1), (599,599,'plugin_tags','',0,2), (600,600,'plugin_tags','',0,6), (601,601,'plugin_tags','',0,1), (602,602,'plugin_tags','',0,3), (606,606,'plugin_tags','',0,2), (611,611,'plugin_tags','',0,2), (649,649,'plugin_tags','',0,1), (710,710,'plugin_tags','',0,3), (732,732,'plugin_tags','',0,1), (784,784,'plugin_tags','',0,1), (802,802,'plugin_tags','',0,1), (888,888,'plugin_tags','',0,1), (900,900,'plugin_tags','',0,1), (975,975,'plugin_tags','',0,1), (1005,1005,'plugin_tags','',0,3), (1029,1029,'plugin_tags','',0,1), (1032,1032,'plugin_tags','',0,1), (1075,1075,'plugin_tags','',0,1), (1084,1084,'plugin_tags','',0,1), (1089,1089,'plugin_tags','',0,1), (1104,1104,'plugin_tags','',0,1), (1141,1141,'plugin_tags','',0,3), (1173,1173,'plugin_tags','',0,1), (1175,1175,'plugin_tags','',0,1), (1176,1176,'plugin_tags','',0,2), (1180,1180,'plugin_tags','',0,1), (1183,1183,'plugin_tags','',0,1), (1184,1184,'plugin_tags','',0,1), (1229,1229,'plugin_tags','',0,1), (1281,1281,'plugin_tags','',0,1), (1326,1326,'plugin_tags','',0,2), (1332,1332,'plugin_tags','',0,3), (1378,1378,'plugin_tags','',0,1), (1391,1391,'plugin_tags','',0,1), (1452,1452,'plugin_tags','',0,3), (1486,1486,'plugin_tags','',0,1), (1644,1644,'plugin_tags','',0,1), (1719,1719,'plugin_tags','',0,2), (1753,1753,'plugin_tags','',0,2), (1786,1786,'plugin_tags','',0,1), (1865,1865,'plugin_tags','',0,1), (1911,1911,'plugin_tags','',0,1), (1955,1955,'plugin_tags','',0,1), (1975,1975,'plugin_tags','',0,1), (2009,2009,'plugin_tags','',0,1), (2010,2010,'plugin_tags','',0,1), (2053,2053,'plugin_tags','',0,1), (2155,2155,'plugin_tags','',0,1), (2240,2240,'plugin_tags','',0,1), (2245,2245,'plugin_tags','',0,1), (2253,2253,'plugin_tags','',0,1), (2289,2289,'plugin_tags','',0,1), (2303,2303,'plugin_tags','',0,2), (2322,2322,'plugin_tags','',0,1), (2386,2386,'plugin_tags','',0,1), (2431,2431,'plugin_tags','',0,1), (2494,2494,'plugin_tags','',0,1), (2505,2505,'plugin_tags','',0,1), (2512,2512,'plugin_tags','',0,1), (2550,2550,'plugin_tags','',0,1), (2557,2557,'plugin_tags','',0,1), (2636,2636,'plugin_tags','',0,1), (2637,2637,'plugin_tags','',0,1), (2653,2653,'plugin_tags','',0,1), (2656,2656,'plugin_tags','',0,1), (2657,2657,'plugin_tags','',0,1), (2664,2664,'plugin_tags','',0,1), (2703,2703,'plugin_tags','',0,1), (2738,2738,'plugin_tags','',0,1), (2752,2752,'plugin_tags','',0,1), (2757,2757,'plugin_tags','',0,2), (2768,2768,'plugin_tags','',0,3), (2793,2793,'plugin_tags','',0,2), (2814,2814,'plugin_tags','',0,1), (2956,2956,'plugin_tags','',0,2), (2981,2981,'plugin_tags','',0,1), (3245,3245,'plugin_tags','',0,1), (3524,3524,'plugin_tags','',0,1), (3711,3711,'plugin_tags','',0,1), (3868,3868,'plugin_tags','',0,2), (3970,3970,'plugin_tags','',0,1), (3971,3971,'plugin_tags','',0,1), (4151,4151,'plugin_tags','',0,1), (4316,4316,'plugin_tags','',0,1), (4619,4619,'plugin_tags','',0,1), (4672,4672,'plugin_tags','',0,1), (4943,4943,'plugin_tags','',0,1), (5622,5622,'plugin_tags','',0,1), (5651,5651,'plugin_tags','',0,1), (5708,5708,'plugin_tags','',0,1), (5747,5747,'plugin_tags','',0,1), (5778,5778,'plugin_tags','',0,1), (5826,5826,'plugin_tags','',0,1), (5944,5944,'plugin_tags','',0,1), (5981,5981,'plugin_tags','',0,1), (6060,6060,'plugin_tags','',0,1), (6243,6243,'plugin_tags','',0,1), (6358,6358,'plugin_tags','',0,1), (6360,6360,'plugin_tags','',0,1), (6410,6410,'plugin_tags','',0,1), (6438,6438,'plugin_tags','',0,1), (6558,6558,'plugin_tags','',0,1), (6590,6590,'plugin_tags','',0,1), (6606,6606,'plugin_tags','',0,1), (6683,6683,'plugin_tags','',0,1), (6695,6695,'plugin_tags','',0,1), (6696,6696,'plugin_tags','',0,1), (6918,6918,'plugin_tags','',0,1), (6932,6932,'plugin_tags','',0,1), (7184,7184,'plugin_tags','',0,1), (7599,7599,'plugin_tags','',0,1), (7766,7766,'plugin_tags','',0,1), (8097,8097,'plugin_tags','',0,1), (8586,8586,'plugin_tags','',0,1), (8628,8628,'plugin_tags','',0,1), (8647,8647,'plugin_tags','',0,1), (9217,9217,'plugin_tags','',0,1), (9225,9225,'plugin_tags','',0,1), (9965,9965,'plugin_tags','',0,1), (10329,10329,'plugin_tags','',0,2), (10330,10330,'plugin_tags','',0,2), (10331,10331,'plugin_tags','',0,1), (10652,10652,'plugin_tags','',0,1), (10674,10674,'plugin_tags','',0,1), (10692,10692,'plugin_tags','',0,1), (10698,10698,'plugin_tags','',0,1), (10710,10710,'plugin_tags','',0,1), (10718,10718,'plugin_tags','',0,1), (11353,11353,'plugin_tags','',0,1), (11520,11520,'plugin_tags','',0,1), (11780,11780,'plugin_tags','',0,1), (12158,12158,'plugin_tags','',0,1), (12253,12253,'plugin_tags','',0,1), (12379,12379,'plugin_tags','',0,1), (13351,13351,'plugin_tags','',0,1), (13933,13933,'plugin_tags','',0,1), (13943,13943,'plugin_tags','',0,1), (13952,13952,'plugin_tags','',0,1), (14073,14073,'plugin_tags','',0,1), (14503,14503,'plugin_tags','',0,1), (17142,17142,'plugin_tags','',0,1), (19755,19755,'plugin_tags','',0,4), (21091,21091,'plugin_tags','',0,1), (23177,23177,'plugin_tags','',0,1), (23369,23369,'plugin_tags','',0,1), (23853,23853,'plugin_tags','',0,1), (24299,24299,'plugin_tags','',0,1), (27101,27101,'plugin_tags','',0,1), (27264,27264,'plugin_tags','',0,1), (27951,27951,'plugin_tags','',0,1), (30624,30624,'plugin_tags','',0,1), (30630,30630,'plugin_tags','',0,1), (31174,31174,'plugin_tags','',0,1), (31253,31253,'plugin_tags','',0,1), (32310,32310,'plugin_tags','',0,1), (32311,32311,'plugin_tags','',0,1), (32312,32312,'plugin_tags','',0,1), (32313,32313,'plugin_tags','',0,1), (32314,32314,'plugin_tags','',0,1), (32315,32315,'plugin_tags','',0,1), (32316,32316,'plugin_tags','',0,1), (32580,32580,'plugin_tags','',0,1), (32941,32941,'plugin_tags','',0,1), (36258,36258,'plugin_tags','',0,1), (39820,39820,'plugin_tags','',0,1), (41198,41198,'plugin_tags','',0,1), (41342,41342,'plugin_tags','',0,1), (41347,41347,'plugin_tags','',0,1), (44259,44259,'plugin_tags','',0,1), (46773,46773,'plugin_tags','',0,3), (46987,46987,'plugin_tags','',0,1), (48244,48244,'plugin_tags','',0,1), (50930,50930,'plugin_tags','',0,1), (55952,55952,'plugin_tags','',0,1), (56070,56070,'plugin_tags','',0,1), (56071,56071,'plugin_tags','',0,1), (59690,59690,'plugin_tags','',0,1), (59691,59691,'plugin_tags','',0,1), (59692,59692,'plugin_tags','',0,1), (61720,61720,'plugin_tags','',0,1), (63060,63060,'plugin_tags','',0,1), (64049,64049,'plugin_tags','',0,1), (64050,64050,'plugin_tags','',0,1), (64051,64051,'plugin_tags','',0,1), (64069,64069,'plugin_tags','',0,1), (64070,64070,'plugin_tags','',0,1), (64224,64224,'plugin_tags','',0,2), (64225,64225,'plugin_tags','',0,2), (64233,64233,'plugin_tags','',0,1), (64542,64542,'plugin_tags','',0,1), (65677,65677,'plugin_tags','',0,1), (65679,65679,'plugin_tags','',0,1), (65755,65755,'plugin_tags','',0,1), (65756,65756,'plugin_tags','',0,1), (65767,65767,'plugin_tags','',0,1), (67840,67840,'plugin_tags','',0,2), (68329,68329,'plugin_tags','',0,1), (69856,69856,'plugin_tags','',0,1), (70062,70062,'plugin_tags','',0,1), (70064,70064,'plugin_tags','',0,1), (70065,70065,'plugin_tags','',0,1), (71291,71291,'plugin_tags','',0,1), (71493,71493,'plugin_tags','',0,1), (71730,71730,'plugin_tags','',0,1), (71889,71889,'plugin_tags','',0,1), (72371,72371,'plugin_tags','',0,1), (72792,72792,'plugin_tags','',0,1), (72793,72793,'plugin_tags','',0,1), (73341,73341,'plugin_tags','',0,1), (73463,73463,'plugin_tags','',0,1), (73464,73464,'plugin_tags','',0,1), (74130,74130,'plugin_tags','',0,1), (74627,74627,'plugin_tags','',0,1), (75449,75449,'plugin_tags','',0,1), (75450,75450,'plugin_tags','',0,1), (77494,77494,'plugin_contributors','',0,4), (77495,77495,'plugin_contributors','',0,1), (77496,77496,'plugin_contributors','',0,1), (77497,77497,'plugin_contributors','',0,1), (77498,77498,'plugin_contributors','',0,1), (77499,77499,'plugin_contributors','',0,1), (77500,77500,'plugin_contributors','',0,2), (77501,77501,'plugin_contributors','',0,1), (77502,77502,'plugin_contributors','',0,1), (77503,77503,'plugin_contributors','',0,2), (77504,77504,'plugin_contributors','',0,1), (77505,77505,'plugin_contributors','',0,1), (77506,77506,'plugin_contributors','',0,1), (77507,77507,'plugin_contributors','',0,1), (77508,77508,'plugin_contributors','',0,1), (77509,77509,'plugin_contributors','',0,1), (77510,77510,'plugin_contributors','',0,2), (77511,77511,'plugin_contributors','',0,1), (77512,77512,'plugin_contributors','',0,1), (77513,77513,'plugin_contributors','',0,1), (77514,77514,'plugin_contributors','',0,2), (77515,77515,'plugin_contributors','',0,1), (77516,77516,'plugin_contributors','',0,1), (77517,77517,'plugin_contributors','',0,1), (77518,77518,'plugin_contributors','',0,1), (77519,77519,'plugin_contributors','',0,1), (77520,77520,'plugin_contributors','',0,1), (77521,77521,'plugin_contributors','',0,1), (77522,77522,'plugin_contributors','',0,1), (77523,77523,'plugin_contributors','',0,1), (77524,77524,'plugin_contributors','',0,1), (77525,77525,'plugin_contributors','',0,2), (77526,77526,'plugin_contributors','',0,2), (77527,77527,'plugin_contributors','',0,1), (77528,77528,'plugin_contributors','',0,3), (77529,77529,'plugin_contributors','',0,1), (77530,77530,'plugin_contributors','',0,1), (77531,77531,'plugin_contributors','',0,1), (77532,77532,'plugin_contributors','',0,1), (77533,77533,'plugin_contributors','',0,1), (77534,77534,'plugin_contributors','',0,1), (77535,77535,'plugin_contributors','',0,1), (77536,77536,'plugin_contributors','',0,1), (77537,77537,'plugin_contributors','',0,1), (77538,77538,'plugin_contributors','',0,1), (77539,77539,'plugin_contributors','',0,1), (77540,77540,'plugin_contributors','',0,1), (77541,77541,'plugin_contributors','',0,2), (77542,77542,'plugin_contributors','',0,1), (77543,77543,'plugin_contributors','',0,2), (77544,77544,'plugin_contributors','',0,1), (77545,77545,'plugin_contributors','',0,3), (77546,77546,'plugin_contributors','',0,2), (77547,77547,'plugin_contributors','',0,1), (77548,77548,'plugin_contributors','',0,4), (77549,77549,'plugin_contributors','',0,1), (77550,77550,'plugin_contributors','',0,1), (77551,77551,'plugin_contributors','',0,1), (77552,77552,'plugin_contributors','',0,1), (77553,77553,'plugin_contributors','',0,1), (77554,77554,'plugin_contributors','',0,4), (77555,77555,'plugin_contributors','',0,1), (77556,77556,'plugin_contributors','',0,1), (77557,77557,'plugin_contributors','',0,1), (77558,77558,'plugin_contributors','',0,1), (77559,77559,'plugin_contributors','',0,2), (77560,77560,'plugin_contributors','',0,2), (77561,77561,'plugin_contributors','',0,1), (77562,77562,'plugin_contributors','',0,1), (77563,77563,'plugin_contributors','',0,1), (77564,77564,'plugin_contributors','',0,1), (77565,77565,'plugin_contributors','',0,1), (77566,77566,'plugin_contributors','',0,2), (77567,77567,'plugin_contributors','',0,2), (77568,77568,'plugin_contributors','',0,1), (77569,77569,'plugin_contributors','',0,1), (77570,77570,'plugin_contributors','',0,1), (77571,77571,'plugin_contributors','',0,1), (77572,77572,'plugin_contributors','',0,1), (77573,77573,'plugin_contributors','',0,1), (77574,77574,'plugin_contributors','',0,1), (77575,77575,'plugin_contributors','',0,1), (77576,77576,'plugin_contributors','',0,1), (77577,77577,'plugin_contributors','',0,1), (77578,77578,'plugin_contributors','',0,1), (77579,77579,'plugin_contributors','',0,1), (77580,77580,'plugin_contributors','',0,2), (77581,77581,'plugin_contributors','',0,1), (77582,77582,'plugin_contributors','',0,1), (77583,77583,'plugin_contributors','',0,1), (77587,77587,'plugin_contributors','',0,1), (77588,77588,'plugin_contributors','',0,1), (77589,77589,'plugin_contributors','',0,1), (77590,77590,'plugin_contributors','',0,1), (77593,77593,'plugin_contributors','',0,2), (77594,77594,'plugin_contributors','',0,5), (77595,77595,'plugin_contributors','',0,1), (77596,77596,'plugin_contributors','',0,1), (77597,77597,'plugin_contributors','',0,1), (77598,77598,'plugin_contributors','',0,1), (77599,77599,'plugin_contributors','',0,1), (77600,77600,'plugin_contributors','',0,1), (77601,77601,'plugin_contributors','',0,1), (77602,77602,'plugin_contributors','',0,1), (77603,77603,'plugin_contributors','',0,1), (77604,77604,'plugin_contributors','',0,1), (77605,77605,'plugin_contributors','',0,1), (77606,77606,'plugin_contributors','',0,1), (77607,77607,'plugin_contributors','',0,1), (77608,77608,'plugin_contributors','',0,1), (77609,77609,'plugin_contributors','',0,1), (77610,77610,'plugin_contributors','',0,1), (77611,77611,'plugin_contributors','',0,1), (77612,77612,'plugin_contributors','',0,1), (77613,77613,'plugin_contributors','',0,1), (77614,77614,'plugin_contributors','',0,1), (77615,77615,'plugin_contributors','',0,1), (77616,77616,'plugin_contributors','',0,1), (77617,77617,'plugin_contributors','',0,1), (77618,77618,'plugin_contributors','',0,2), (77619,77619,'plugin_contributors','',0,2), (77620,77620,'plugin_contributors','',0,1), (77621,77621,'plugin_contributors','',0,1), (77629,77629,'plugin_contributors','',0,1), (77630,77630,'plugin_contributors','',0,2), (77631,77631,'plugin_contributors','',0,2), (77632,77632,'plugin_contributors','',0,2), (77634,77634,'plugin_contributors','',0,1), (77635,77635,'plugin_contributors','',0,1), (77636,77636,'plugin_contributors','',0,1), (77637,77637,'plugin_contributors','',0,1), (77638,77638,'plugin_contributors','',0,1), (77639,77639,'plugin_contributors','',0,1), (77640,77640,'plugin_contributors','',0,1), (77641,77641,'plugin_contributors','',0,1), (77642,77642,'plugin_contributors','',0,1), (77643,77643,'plugin_contributors','',0,1), (77644,77644,'plugin_contributors','',0,1), (77645,77645,'plugin_contributors','',0,1), (77646,77646,'plugin_contributors','',0,1), (77647,77647,'plugin_contributors','',0,1), (77648,77648,'plugin_contributors','',0,1), (77649,77649,'plugin_contributors','',0,1), (77650,77650,'plugin_contributors','',0,1), (77651,77651,'plugin_contributors','',0,1), (77652,77652,'plugin_contributors','',0,1), (77653,77653,'plugin_contributors','',0,1), (77654,77654,'plugin_contributors','',0,1), (77655,77655,'plugin_contributors','',0,1), (77656,77656,'plugin_contributors','',0,1), (77657,77657,'plugin_contributors','',0,1), (77658,77658,'plugin_contributors','',0,1), (77659,77659,'plugin_contributors','',0,1), (77660,77660,'plugin_contributors','',0,1), (77661,77661,'plugin_contributors','',0,1), (77662,77662,'plugin_contributors','',0,1), (77663,77663,'plugin_contributors','',0,1), (77664,77664,'plugin_contributors','',0,1), (77665,77665,'plugin_contributors','',0,1), (77666,77666,'plugin_contributors','',0,1), (77667,77667,'plugin_contributors','',0,1), (77668,77668,'plugin_contributors','',0,1), (77669,77669,'plugin_contributors','',0,1), (77670,77670,'plugin_contributors','',0,1), (77671,77671,'plugin_contributors','',0,2), (77672,77672,'plugin_contributors','',0,2), (77673,77673,'plugin_contributors','',0,2), (77674,77674,'plugin_contributors','',0,2), (77675,77675,'plugin_contributors','',0,1), (77676,77676,'plugin_contributors','',0,1), (77677,77677,'plugin_contributors','',0,1), (77678,77678,'plugin_contributors','',0,1), (77679,77679,'plugin_contributors','',0,1), (77681,77681,'plugin_contributors','',0,1), (77684,77684,'plugin_contributors','',0,1), (77685,77685,'plugin_contributors','',0,1), (77686,77686,'plugin_contributors','',0,1), (77687,77687,'plugin_contributors','',0,1), (77688,77688,'plugin_contributors','',0,1), (77689,77689,'plugin_contributors','',0,1), (77690,77690,'plugin_contributors','',0,1), (77691,77691,'plugin_contributors','',0,1), (77692,77692,'plugin_contributors','',0,1), (77694,77694,'plugin_contributors','',0,1), (77695,77695,'plugin_contributors','',0,1), (77696,77696,'plugin_contributors','',0,1), (77697,77697,'plugin_contributors','',0,1), (77698,77698,'plugin_contributors','',0,1), (77699,77699,'plugin_contributors','',0,1), (77700,77700,'plugin_contributors','',0,1), (77701,77701,'plugin_contributors','',0,1), (77702,77702,'plugin_contributors','',0,1), (77703,77703,'plugin_contributors','',0,1), (77704,77704,'plugin_contributors','',0,1), (77705,77705,'plugin_contributors','',0,1), (77707,77707,'plugin_contributors','',0,1), (77708,77708,'plugin_contributors','',0,1), (77709,77709,'plugin_contributors','',0,1), (77710,77710,'plugin_contributors','',0,1), (77711,77711,'plugin_contributors','',0,1), (77712,77712,'plugin_contributors','',0,1), (77713,77713,'plugin_contributors','',0,1), (77714,77714,'plugin_contributors','',0,1), (77715,77715,'plugin_contributors','',0,1), (77716,77716,'plugin_contributors','',0,1), (77717,77717,'plugin_contributors','',0,1), (77719,77719,'plugin_contributors','',0,1), (77721,77721,'plugin_contributors','',0,1), (77727,77727,'plugin_contributors','',0,1), (77742,77742,'plugin_contributors','',0,2), (77771,77771,'plugin_contributors','',0,1), (77788,77788,'plugin_contributors','',0,1), (77791,77791,'plugin_contributors','',0,1), (77844,77844,'plugin_contributors','',0,1), (77845,77845,'plugin_contributors','',0,1), (77846,77846,'plugin_contributors','',0,1), (77847,77847,'plugin_contributors','',0,1), (77848,77848,'plugin_contributors','',0,1), (77849,77849,'plugin_contributors','',0,1), (77850,77850,'plugin_contributors','',0,1), (77864,77864,'plugin_contributors','',0,1), (77958,77958,'plugin_contributors','',0,1), (77971,77971,'plugin_contributors','',0,1), (77998,77998,'plugin_contributors','',0,1), (78127,78127,'plugin_contributors','',0,3), (78147,78147,'plugin_contributors','',0,1), (78161,78161,'plugin_contributors','',0,1), (78232,78232,'plugin_contributors','',0,1), (78239,78239,'plugin_contributors','',0,1), (78311,78311,'plugin_contributors','',0,1), (78325,78325,'plugin_contributors','',0,1), (78438,78438,'plugin_contributors','',0,1), (78441,78441,'plugin_contributors','',0,1), (78470,78470,'plugin_contributors','',0,1), (78639,78639,'plugin_contributors','',0,2), (79460,79460,'plugin_contributors','',0,1), (79635,79635,'plugin_contributors','',0,1), (79636,79636,'plugin_contributors','',0,1), (79637,79637,'plugin_contributors','',0,1), (79638,79638,'plugin_contributors','',0,1), (79639,79639,'plugin_contributors','',0,1), (79640,79640,'plugin_contributors','',0,1), (79641,79641,'plugin_contributors','',0,1), (79642,79642,'plugin_contributors','',0,1), (79643,79643,'plugin_contributors','',0,1), (79826,79826,'plugin_contributors','',0,1), (80418,80418,'plugin_contributors','',0,1), (81424,81424,'plugin_contributors','',0,1), (81434,81434,'plugin_contributors','',0,1), (81477,81477,'plugin_contributors','',0,1), (81564,81564,'plugin_contributors','',0,1), (81580,81580,'plugin_contributors','',0,1), (81746,81746,'plugin_contributors','',0,1), (81747,81747,'plugin_contributors','',0,1), (81748,81748,'plugin_contributors','',0,1), (83740,83740,'plugin_contributors','',0,1), (83741,83741,'plugin_contributors','',0,1), (85288,85288,'plugin_tags','',0,1), (85884,85884,'plugin_tags','',0,1), (85968,85968,'plugin_tags','',0,1), (85971,85971,'plugin_tags','',0,1), (86061,86061,'plugin_tags','',0,1), (86062,86062,'plugin_tags','',0,1), (86117,86117,'plugin_tags','',0,1), (86476,86476,'plugin_tags','',0,1), (86513,86513,'plugin_contributors','',0,1), (86753,86753,'plugin_tags','',0,1), (86754,86754,'plugin_tags','',0,1), (86759,86759,'plugin_tags','',0,1), (86803,86803,'plugin_tags','',0,1), (86983,86983,'plugin_tags','',0,1), (87150,87150,'plugin_tags','',0,1), (87222,87222,'plugin_tags','',0,1), (87405,87405,'plugin_tags','',0,1), (87406,87406,'plugin_tags','',0,1), (87508,87508,'plugin_tags','',0,1), (87509,87509,'plugin_tags','',0,1), (87637,87637,'plugin_tags','',0,1), (87853,87853,'plugin_tags','',0,1), (88175,88175,'plugin_tags','',0,1), (88305,88305,'plugin_contributors','',0,1), (88417,88417,'plugin_tags','',0,1), (88418,88418,'plugin_tags','',0,1), (88660,88660,'plugin_tags','',0,2), (88661,88661,'plugin_tags','',0,1), (88836,88836,'plugin_tags','',0,1), (89102,89102,'plugin_tags','',0,1), (89103,89103,'plugin_tags','',0,1), (89333,89333,'plugin_tags','',0,1), (89339,89339,'plugin_tags','',0,1), (89340,89340,'plugin_tags','',0,1), (89341,89341,'plugin_tags','',0,1), (89342,89342,'plugin_tags','',0,1), (89787,89787,'plugin_tags','',0,1), (90032,90032,'plugin_tags','',0,1), (90443,90443,'plugin_tags','',0,1), (90757,90757,'plugin_tags','',0,1), (91069,91069,'plugin_tags','',0,1), (91118,91118,'plugin_tags','',0,1), (91119,91119,'plugin_tags','',0,1), (91121,91121,'plugin_tags','',0,1), (91147,91147,'plugin_tags','',0,1), (91188,91188,'plugin_tags','',0,1), (91258,91258,'plugin_tags','',0,1), (91287,91287,'plugin_tags','',0,1), (91335,91335,'plugin_tags','',0,1), (91547,91547,'plugin_tags','',0,1), (91644,91644,'plugin_tags','',0,1), (91760,91760,'plugin_tags','',0,1), (91793,91793,'plugin_tags','',0,1), (91878,91878,'plugin_tags','',0,1), (92309,92309,'plugin_tags','',0,1), (92389,92389,'plugin_tags','',0,1), (92391,92391,'plugin_tags','',0,1), (92392,92392,'plugin_tags','',0,1), (92394,92394,'plugin_contributors','',0,1), (92407,92407,'plugin_tags','',0,1), (92467,92467,'plugin_tags','',0,1), (92511,92511,'plugin_tags','',0,1), (92996,92996,'plugin_tags','',0,1), (92998,92998,'plugin_tags','',0,1), (92999,92999,'plugin_tags','',0,1), (93230,93230,'plugin_tags','',0,1), (93265,93265,'plugin_tags','',0,1), (93347,93347,'plugin_tags','',0,1), (93460,93460,'plugin_tags','',0,1), (93461,93461,'plugin_tags','',0,1), (93605,93605,'plugin_tags','',0,1), (93645,93645,'plugin_tags','',0,1), (93811,93811,'plugin_tags','',0,1), (93841,93841,'plugin_tags','',0,1), (94155,94155,'plugin_tags','',0,1), (94156,94156,'plugin_tags','',0,1), (94353,94353,'plugin_tags','',0,1), (94956,94956,'plugin_tags','',0,1), (95025,95025,'plugin_tags','',0,1), (95026,95026,'plugin_tags','',0,1), (95618,95618,'plugin_tags','',0,1), (95665,95665,'plugin_tags','',0,1), (95666,95666,'plugin_tags','',0,1), (95667,95667,'plugin_tags','',0,1), (95858,95858,'plugin_tags','',0,1), (95859,95859,'plugin_tags','',0,1), (95860,95860,'plugin_tags','',0,1), (95861,95861,'plugin_tags','',0,1), (95868,95868,'plugin_tags','',0,1), (96109,96109,'plugin_tags','',0,1), (96219,96219,'plugin_tags','',0,1), (96400,96400,'plugin_tags','',0,1), (96547,96547,'plugin_tags','',0,1), (96592,96592,'plugin_tags','',0,1), (96794,96794,'plugin_tags','',0,1), (96842,96842,'plugin_tags','',0,1), (96844,96844,'plugin_tags','',0,1), (97297,97297,'plugin_tags','',0,1), (97378,97378,'plugin_tags','',0,1), (97522,97522,'plugin_tags','',0,1), (97576,97576,'plugin_tags','',0,1), (98067,98067,'plugin_tags','',0,1), (98068,98068,'plugin_tags','',0,1), (98069,98069,'plugin_tags','',0,1), (98200,98200,'plugin_tags','',0,1), (98324,98324,'plugin_committers','',0,1), (98340,98340,'plugin_committers','',0,1), (98341,98341,'plugin_committers','',0,1), (98342,98342,'plugin_committers','',0,1), (98344,98344,'plugin_committers','',0,1), (98347,98347,'plugin_committers','',0,1), (98348,98348,'plugin_committers','',0,1), (98349,98349,'plugin_committers','',0,1), (98350,98350,'plugin_committers','',0,1), (98352,98352,'plugin_committers','',0,2), (98353,98353,'plugin_committers','',0,2), (98354,98354,'plugin_committers','',0,2), (98355,98355,'plugin_committers','',0,2), (98356,98356,'plugin_committers','',0,1), (98357,98357,'plugin_committers','',0,1), (98358,98358,'plugin_committers','',0,1), (98359,98359,'plugin_committers','',0,2), (98360,98360,'plugin_committers','',0,1), (98361,98361,'plugin_committers','',0,1), (98362,98362,'plugin_committers','',0,1), (98364,98364,'plugin_committers','',0,1), (98366,98366,'plugin_committers','',0,1), (98367,98367,'plugin_committers','',0,1), (98368,98368,'plugin_committers','',0,1), (98369,98369,'plugin_committers','',0,1), (98370,98370,'plugin_committers','',0,2), (98371,98371,'plugin_committers','',0,1), (98372,98372,'plugin_committers','',0,1), (98373,98373,'plugin_committers','',0,1), (98378,98378,'plugin_committers','',0,1), (98379,98379,'plugin_committers','',0,1), (98380,98380,'plugin_committers','',0,1), (98382,98382,'plugin_committers','',0,2), (98383,98383,'plugin_committers','',0,1), (98384,98384,'plugin_committers','',0,1), (98385,98385,'plugin_committers','',0,1), (98386,98386,'plugin_committers','',0,1), (98387,98387,'plugin_committers','',0,1), (98388,98388,'plugin_committers','',0,1), (98389,98389,'plugin_committers','',0,1), (98390,98390,'plugin_committers','',0,1), (98391,98391,'plugin_committers','',0,1), (98392,98392,'plugin_committers','',0,1), (98393,98393,'plugin_committers','',0,2), (98394,98394,'plugin_committers','',0,1), (98395,98395,'plugin_committers','',0,1), (98396,98396,'plugin_committers','',0,1), (98397,98397,'plugin_committers','',0,1), (98398,98398,'plugin_committers','',0,1), (98399,98399,'plugin_committers','',0,1), (98400,98400,'plugin_committers','',0,1), (98401,98401,'plugin_committers','',0,1), (98402,98402,'plugin_committers','',0,1), (98403,98403,'plugin_committers','',0,1), (98404,98404,'plugin_committers','',0,1), (98405,98405,'plugin_committers','',0,1), (98406,98406,'plugin_committers','',0,1), (98407,98407,'plugin_committers','',0,1), (98408,98408,'plugin_committers','',0,1), (98409,98409,'plugin_committers','',0,1), (98410,98410,'plugin_committers','',0,1), (98411,98411,'plugin_committers','',0,1), (98412,98412,'plugin_committers','',0,1), (98413,98413,'plugin_committers','',0,1), (98414,98414,'plugin_committers','',0,1), (98415,98415,'plugin_committers','',0,1), (98416,98416,'plugin_committers','',0,1), (98417,98417,'plugin_committers','',0,1), (98418,98418,'plugin_committers','',0,2), (98419,98419,'plugin_committers','',0,1), (98420,98420,'plugin_committers','',0,1), (98421,98421,'plugin_committers','',0,1), (98422,98422,'plugin_committers','',0,1), (98423,98423,'plugin_committers','',0,1), (98424,98424,'plugin_committers','',0,1), (98425,98425,'plugin_committers','',0,1), (98426,98426,'plugin_committers','',0,1), (98427,98427,'plugin_committers','',0,1), (98432,98432,'plugin_committers','',0,2), (98433,98433,'plugin_committers','',0,1), (98434,98434,'plugin_committers','',0,1), (98435,98435,'plugin_committers','',0,1), (98437,98437,'plugin_committers','',0,1), (98438,98438,'plugin_committers','',0,1), (98439,98439,'plugin_committers','',0,1), (98440,98440,'plugin_committers','',0,1), (98441,98441,'plugin_committers','',0,1), (98444,98444,'plugin_committers','',0,1), (98445,98445,'plugin_committers','',0,1), (98446,98446,'plugin_committers','',0,1), (98447,98447,'plugin_committers','',0,1), (98448,98448,'plugin_committers','',0,2), (98449,98449,'plugin_committers','',0,1), (98450,98450,'plugin_committers','',0,2), (98451,98451,'plugin_committers','',0,2), (98452,98452,'plugin_committers','',0,2), (98453,98453,'plugin_committers','',0,2), (98454,98454,'plugin_committers','',0,1), (98455,98455,'plugin_committers','',0,1), (98456,98456,'plugin_committers','',0,1), (98457,98457,'plugin_committers','',0,1), (98458,98458,'plugin_committers','',0,1), (98459,98459,'plugin_committers','',0,1), (98460,98460,'plugin_committers','',0,1), (98461,98461,'plugin_committers','',0,1), (98462,98462,'plugin_committers','',0,1), (98463,98463,'plugin_committers','',0,1), (98464,98464,'plugin_committers','',0,1), (98465,98465,'plugin_committers','',0,1), (98466,98466,'plugin_committers','',0,1), (98467,98467,'plugin_committers','',0,1), (98472,98472,'plugin_committers','',0,1), (98474,98474,'plugin_committers','',0,1), (98475,98475,'plugin_committers','',0,1), (98476,98476,'plugin_committers','',0,1), (98477,98477,'plugin_committers','',0,1), (98478,98478,'plugin_committers','',0,1), (98479,98479,'plugin_committers','',0,1), (98480,98480,'plugin_committers','',0,1), (98481,98481,'plugin_committers','',0,1), (98482,98482,'plugin_committers','',0,1), (98483,98483,'plugin_committers','',0,1), (98484,98484,'plugin_committers','',0,1), (98485,98485,'plugin_committers','',0,1), (98486,98486,'plugin_committers','',0,1), (98487,98487,'plugin_committers','',0,1), (98488,98488,'plugin_committers','',0,1), (98489,98489,'plugin_committers','',0,1), (98490,98490,'plugin_committers','',0,1), (98491,98491,'plugin_committers','',0,1), (98492,98492,'plugin_committers','',0,1), (98493,98493,'plugin_committers','',0,1), (98494,98494,'plugin_committers','',0,1), (98495,98495,'plugin_committers','',0,1), (98497,98497,'plugin_committers','',0,1), (98498,98498,'plugin_committers','',0,1), (98501,98501,'plugin_committers','',0,1), (98503,98503,'plugin_committers','',0,1), (98513,98513,'plugin_committers','',0,1), (98514,98514,'plugin_committers','',0,2), (98515,98515,'plugin_committers','',0,2), (98518,98518,'plugin_committers','',0,1), (98520,98520,'plugin_committers','',0,1), (98521,98521,'plugin_committers','',0,1), (98553,98553,'plugin_committers','',0,1), (98597,98597,'plugin_committers','',0,1), (98598,98598,'plugin_committers','',0,1), (98599,98599,'plugin_committers','',0,1), (98600,98600,'plugin_committers','',0,1), (98601,98601,'plugin_committers','',0,1), (98646,98646,'plugin_committers','',0,1), (98729,98729,'plugin_committers','',0,1), (98731,98731,'plugin_committers','',0,1), (99700,99700,'plugin_committers','',0,1), (102361,102361,'plugin_committers','',0,1), (102861,102861,'plugin_committers','',0,1), (103092,103092,'plugin_committers','',0,1), (104152,104152,'plugin_committers','',0,1), (105464,105465,'plugin_committers','',0,1), (106488,106489,'plugin_committers','',0,1), (107217,107218,'plugin_committers','',0,1), (113730,113731,'plugin_committers','',0,1), (117946,117947,'plugin_committers','',0,1), (125082,125083,'plugin_contributors','',0,1), (125457,125458,'plugin_tags','',0,1), (125646,125647,'plugin_tags','',0,1), (125919,125920,'plugin_tags','',0,1), (125921,125922,'plugin_tags','',0,1), (125998,125999,'plugin_tags','',0,1), (125999,126000,'plugin_tags','',0,1), (126000,126001,'plugin_tags','',0,1), (126001,126002,'plugin_tags','',0,1), (126078,126079,'plugin_tags','',0,1), (126347,126348,'plugin_contributors','',0,1), (126348,126349,'plugin_contributors','',0,1), (126388,126389,'plugin_tags','',0,1), (126389,126390,'plugin_tags','',0,1), (126390,126391,'plugin_tags','',0,1), (126395,126396,'plugin_tags','',0,1), (126397,126398,'plugin_tags','',0,1), (126419,126420,'plugin_tags','',0,1), (126479,126480,'plugin_contributors','',0,2), (126563,126564,'plugin_tags','',0,1), (126585,126586,'plugin_tags','',0,1), (126586,126587,'plugin_tags','',0,1), (126593,126594,'plugin_tags','',0,1), (126596,126597,'plugin_tags','',0,1), (126637,126638,'plugin_tags','',0,1), (126660,126661,'plugin_tags','',0,1), (126673,126674,'plugin_tags','',0,1), (126700,126701,'plugin_tags','',0,1), (126701,126702,'plugin_tags','',0,1), (126730,126731,'plugin_tags','',0,1), (126734,126735,'plugin_tags','',0,1), (126736,126737,'plugin_tags','',0,1), (126753,126754,'plugin_tags','',0,1), (126756,126757,'plugin_tags','',0,1), (126892,126893,'plugin_tags','',0,1), (126893,126894,'plugin_tags','',0,1), (126997,126998,'plugin_tags','',0,1), (127512,127513,'plugin_tags','',0,1), (127513,127514,'plugin_tags','',0,1), (127648,127649,'plugin_tags','',0,1), (127656,127657,'plugin_tags','',0,1), (127657,127658,'plugin_contributors','',0,1), (127658,127659,'plugin_contributors','',0,1), (128277,128278,'plugin_tags','',0,1), (128953,128954,'plugin_tags','',0,1), (128954,128955,'plugin_tags','',0,1), (128960,128961,'plugin_tags','',0,1), (128973,128974,'plugin_tags','',0,1), (130180,130181,'plugin_tags','',0,1), (131186,131187,'plugin_committers','',0,1), (131215,131216,'plugin_committers','',0,1), (131320,131321,'plugin_committers','',0,1), (131530,131531,'plugin_committers','',0,1), (132044,132045,'plugin_tags','',0,1), (132466,132467,'plugin_committers','',0,1), (133284,133285,'plugin_contributors','',0,1), (138669,138670,'plugin_committers','',0,1), (138670,138671,'plugin_committers','',0,1), (138786,138787,'plugin_contributors','',0,1), (138809,138810,'plugin_tags','',0,1), (138830,138831,'plugin_committers','',0,1), (138854,138855,'plugin_committers','',0,1); /*!40000 ALTER TABLE `wporg_367_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_367_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_367_termmeta`; CREATE TABLE `wporg_367_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_367_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_367_terms`; CREATE TABLE `wporg_367_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_367_terms` WRITE; /*!40000 ALTER TABLE `wporg_367_terms` DISABLE KEYS */; INSERT INTO `wporg_367_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0), (34,'Accessibility','accessibility',0), (35,'Advertising','advertising',0), (36,'Analytics','analytics',0), (37,'Arts & Entertainment','arts-and-entertainment',0), (38,'Authentication','authentication',0), (39,'Business','business',0), (40,'Calendar & Events','calendar-and-events',0), (41,'Communication','communication',0), (42,'Contact Forms','contact-forms',0), (43,'Customization','customization',0), (44,'Discussion & Community','discussion-and-community',0), (45,'eCommerce','ecommerce',0), (46,'Editor & Writing','editor-and-writing',0), (47,'Education & Support','education-and-support',0), (48,'Language Tools','language-tools',0), (49,'Maps & Location','maps-and-location',0), (50,'Media','media',0), (51,'Multisite','multisite',0), (52,'Performance','performance',0), (53,'Ratings & Reviews','ratings-and-reviews',0), (54,'Security & Spam Protection','security-and-spam-protection',0), (55,'SEO & Marketing','seo-and-marketing',0), (56,'Social & Sharing','social-and-sharing',0), (57,'Taxonomy','taxonomy',0), (58,'User Management','user-management',0), (59,'Utilities & Tools','utilities-and-tools',0), (60,'Beta','beta',0), (61,'Featured','featured',0), (68,'100% Free','100-percent-free',0), (69,'Service Required','service-required',0), (70,'Upsell Available','upsell-available',0), (71,'Lite','lite',0), (72,'Popular','popular',0), (74,'Adopt Me','adopt-me',0), (75,'My Favorites','favorites',0), (76,'New','new',0), (80,'shortcode','shortcode',0), (83,'admin','admin',0), (86,'post','post',0), (104,'i18n','i18n',0), (107,'comments','comments',0), (108,'feedback','feedback',0), (109,'antispam','antispam',0), (125,'secure','secure',0), (133,'image','image',0), (144,'caching','caching',0), (146,'cache','cache',0), (150,'google','google',0), (151,'backup','backup',0), (152,'restore','restore',0), (153,'database','database',0), (159,'twitter','twitter',0), (162,'widget','widget',0), (163,'images','images',0), (166,'posts','posts',0), (168,'sidebar','sidebar',0), (170,'page','page',0), (175,'links','links',0), (186,'seo','seo',0), (187,'optimization','optimization',0), (208,'slideshow','slideshow',0), (209,'amazon','amazon',0), (210,'gallery','gallery',0), (222,'video','video',0), (228,'nextgen','nextgen',0), (232,'analytics','analytics',0), (241,'widgets','widgets',0), (243,'pages','pages',0), (246,'html','html',0), (247,'performance','performance',0), (267,'email','email',0), (282,'ecommerce','ecommerce',0), (332,'sales','sales',0), (357,'shortcodes','shortcodes',0), (358,'contact form','contact-form',0), (360,'contact','contact',0), (361,'form','form',0), (362,'captcha','captcha',0), (416,'calendar','calendar',0), (434,'dashboard','dashboard',0), (441,'multisite','multisite',0), (450,'mail','mail',0), (452,'audio','audio',0), (455,'newsletter','newsletter',0), (456,'marketing','marketing',0), (485,'button','button',0), (522,'stats','stats',0), (527,'custom','custom',0), (563,'administration','administration',0), (567,'csv','csv',0), (599,'spam','spam',0), (600,'security','security',0), (601,'forms','forms',0), (602,'login','login',0), (606,'responsive','responsive',0), (611,'slider','slider',0), (649,'photo gallery','photo-gallery',0), (710,'authentication','authentication',0), (732,'maintenance','maintenance',0), (784,'banner','banner',0), (802,'coming soon','coming-soon',0), (888,'e-commerce','e-commerce',0), (900,'pagination','pagination',0), (975,'template','template',0), (1005,'google analytics','google-analytics',0), (1029,'mailchimp','mailchimp',0), (1032,'wp email capture','wp-email-capture',0), (1075,'jetpack','jetpack',0), (1084,'page builder','page-builder',0), (1089,'related posts','related-posts',0), (1104,'support','support',0), (1141,'theme','theme',0), (1173,'wordpress security','wordpress-security',0), (1175,'antivirus','antivirus',0), (1176,'security plugin','security-plugin',0), (1180,'hack','hack',0), (1183,'anti-virus','anti-virus',0), (1184,'malware','malware',0), (1229,'login security','login-security',0), (1281,'maintenance mode','maintenance-mode',0), (1326,'thumbnail','thumbnail',0), (1332,'editor','editor',0), (1378,'simple','simple',0), (1391,'advanced','advanced',0), (1452,'Optimize','optimize',0), (1486,'events','events',0), (1644,'WordPress.com','wordpress-com',0), (1719,'tinyMCE','tinymce',0), (1753,'navigation','navigation',0), (1786,'check','check',0), (1865,'menu','menu',0), (1911,'access','access',0), (1955,'logs','logs',0), (1975,'formatting','formatting',0), (2009,'custom field','custom-field',0), (2010,'custom fields','custom-fields',0), (2053,'social networking','social-networking',0), (2155,'ban','ban',0), (2240,'field','field',0), (2245,'simple fields','simple-fields',0), (2253,'form builder','form-builder',0), (2289,'table','table',0), (2303,'wysiwyg','wysiwyg',0), (2322,'unavailable','unavailable',0), (2386,'manage','manage',0), (2431,'Event','event',0), (2494,'wordpress livechat','wordpress-livechat',0), (2505,'activity','activity',0), (2512,'messaging','messaging',0), (2550,'updates','updates',0), (2557,'ad','ad',0), (2636,'WP Super Cache','wp-super-cache',0), (2637,'WP Cache','wp-cache',0), (2653,'store','store',0), (2656,'anti-spam','anti-spam',0), (2657,'blogroll','blogroll',0), (2664,'yahoo','yahoo',0), (2703,'resize','resize',0), (2738,'copy','copy',0), (2752,'breadcrumbs','breadcrumbs',0), (2757,'customize','customize',0), (2768,'customizer','customizer',0), (2793,'akismet','akismet',0), (2814,'clone','clone',0), (2956,'thumbnails','thumbnails',0), (2981,'global','global',0), (3245,'background image','background-image',0), (3524,'data','data',0), (3711,'disable','disable',0), (3868,'compress','compress',0), (3970,'Write','write',0), (3971,'tool','tool',0), (4151,'migrate','migrate',0), (4316,'chinese','chinese',0), (4619,'NextGEN Gallery','nextgen-gallery',0), (4672,'postmeta','postmeta',0), (4943,'wordpress slideshow','wordpress-slideshow',0), (5622,'Japanese','japanese',0), (5651,'profiles','profiles',0), (5708,'discussion','discussion',0), (5747,'sell','sell',0), (5778,'multibyte','multibyte',0), (5826,'paging','paging',0), (5944,'all in one seo','all-in-one-seo',0), (5981,'custom form','custom-form',0), (6060,'move','move',0), (6243,'revisions','revisions',0), (6358,'xml sitemap','xml-sitemap',0), (6360,'sitemaps','sitemaps',0), (6410,'builder','builder',0), (6438,'short code','short-code',0), (6558,'xml-rpc','xml-rpc',0), (6590,'excel','excel',0), (6606,'importer','importer',0), (6683,'organizer','organizer',0), (6695,'wp_mail','wp_mail',0), (6696,'smtp','smtp',0), (6918,'amazon s3','amazon-s3',0), (6932,'phpmailer','phpmailer',0), (7184,'Analytics dashboard','analytics-dashboard',0), (7599,'wp classifieds','wp-classifieds',0), (7766,'wordpress gallery plugin','wordpress-gallery-plugin',0), (8097,'application-passwords','application-passwords',0), (8586,'force','force',0), (8628,'custom background','custom-background',0), (8647,'forums','forums',0), (9217,'two factor','two-factor',0), (9225,'totp','totp',0), (9965,'mailer','mailer',0), (10329,'google analytics dashboard','google-analytics-dashboard',0), (10330,'google analytics plugin','google-analytics-plugin',0), (10331,'google analytics widget','google-analytics-widget',0), (10652,'cropping','cropping',0), (10674,'checker','checker',0), (10692,'back up','back-up',0), (10698,'cloud backup','cloud-backup',0), (10710,'wordpress backup','wordpress-backup',0), (10718,'database backup','database-backup',0), (11353,'breadcrumb','breadcrumb',0), (11520,'front-end editor','front-end-editor',0), (11780,'reactions','reactions',0), (12158,'Readability','readability',0), (12253,'google sitemaps','google-sitemaps',0), (12379,'emoji','emoji',0), (13351,'WooCommerce product category','woocommerce-product-category',0), (13933,'mc4wp','mc4wp',0), (13943,'friends','friends',0), (13952,'trail','trail',0), (14073,'broken','broken',0), (14503,'bundle','bundle',0), (17142,'Website Chat','website-chat',0), (19755,'web to email','web-to-email',0), (21091,'wpo','wpo',0), (23177,'duplicate post','duplicate-post',0), (23369,'localhost','localhost',0), (23853,'rest-api','rest-api',0), (24299,'warez','warez',0), (27101,'venue','venue',0), (27264,'zemanta','zemanta',0), (27951,'lossless','lossless',0), (30624,'wordpress ssl','wordpress-ssl',0), (30630,'regenerate thumbnails','regenerate-thumbnails',0), (31174,'inline editing','inline-editing',0), (31253,'Youtube background video','youtube-background-video',0), (32310,'wp ecommerce cart abandonment','wp-ecommerce-cart-abandonment',0), (32311,'wp ecommerce cart abandonment emails','wp-ecommerce-cart-abandonment-emails',0), (32312,'wp ecommerce cart abandonment solution','wp-ecommerce-cart-abandonment-solution',0), (32313,'wp ecommerce cart recovery','wp-ecommerce-cart-recovery',0), (32314,'wordpress wp ecommerce cart abandonment','wordpress-wp-ecommerce-cart-abandonment',0), (32315,'wordpress wp ecommerce cart recovery','wordpress-wp-ecommerce-cart-recovery',0), (32316,'wordpress wp ecommerce cart recovery emailsecommerce','wordpress-wp-ecommerce-cart-recovery-emailsecommerce',0), (32580,'wpgn contact us','wpgn-contact-us',0), (32941,'wordpress google images','wordpress-google-images',0), (36258,'youtube api 3.0','youtube-api-3-0',0), (39820,'two step','two-step',0), (41198,'Loginizer','loginizer',0), (41342,'zym booking','zym-booking',0), (41347,'wordpress free email','wordpress-free-email',0), (44259,'Wp Multiple Meta Box','wp-multiple-meta-box',0), (46773,'wp eshop','wp-eshop',0), (46987,'google search console','google-search-console',0), (48244,'worldpay us','worldpay-us',0), (50930,'webbooks','webbooks',0), (55952,'feature-plugin','feature-plugin',0), (56070,'wordpress reviews','wordpress-reviews',0), (56071,'wordpress ratings','wordpress-ratings',0), (59690,'webscraper','webscraper',0), (59691,'web parser','web-parser',0), (59692,'web spider','web-spider',0), (61720,'woocoommerce','woocoommerce',0), (63060,'wordpress user','wordpress-user',0), (64049,'w3totalcache','w3totalcache',0), (64050,'w3 totalcache','w3-totalcache',0), (64051,'w3total cache','w3total-cache',0), (64069,'Waiting list software','waiting-list-software',0), (64070,'Waiting Time','waiting-time',0), (64224,'weblegend','weblegend',0), (64225,'wblg-series','wblg-series',0), (64233,'woocommerce ajax filter','woocommerce-ajax-filter',0), (64542,'website builder plugin','website-builder-plugin',0), (65677,'woocommerce price notification','woocommerce-price-notification',0), (65679,'woocommerce price alert.','woocommerce-price-alert',0), (65755,'woocommerce share','woocommerce-share',0), (65756,'woocommerce social share.','woocommerce-social-share',0), (65767,'woocommerce Stock Alert','woocommerce-stock-alert',0), (67840,'wpbooster','wpbooster',0), (68329,'Wp Custom Meta Box','wp-custom-meta-box',0), (69856,'wp-multibyte-patch','wp-multibyte-patch',0), (70062,'wordpress password policy','wordpress-password-policy',0), (70064,'wordpress password','wordpress-password',0), (70065,'wordpress user password','wordpress-user-password',0), (71291,'web content','web-content',0), (71493,'WP Twitter Topic Trends','wp-twitter-topic-trends',0), (71730,'Whois Domain','whois-domain',0), (71889,'wp2pcs','wp2pcs',0), (72371,'wp-photo-album-plus','wp-photo-album-plus',0), (72792,'worldwidemarkets','worldwidemarkets',0), (72793,'wwm','wwm',0), (73341,'yoCAPTCHA','yocaptcha',0), (73463,'YouTube API V3','youtube-api-v3',0), (73464,'YouTube Auto Import','youtube-auto-import',0), (74130,'wp text styler','wp-text-styler',0), (74627,'wordpress editor add-on','wordpress-editor-add-on',0), (75449,'yelp business reviews','yelp-business-reviews',0), (75450,'yelp business review','yelp-business-review',0), (77494,'automattic','automattic',0), (77495,'adamkheckler','adamkheckler',0), (77496,'aduth','aduth',0), (77497,'akirk','akirk',0), (77498,'allendav','allendav',0), (77499,'alternatekev','alternatekev',0), (77500,'andy','andy',0), (77501,'annezazu','annezazu',0), (77502,'apeatling','apeatling',0), (77503,'azaozz','azaozz',0), (77504,'batmoo','batmoo',0), (77505,'barry','barry',0), (77506,'beaulebens','beaulebens',0), (77507,'blobaugh','blobaugh',0), (77508,'cainm','cainm',0), (77509,'cena','cena',0), (77510,'cfinke','cfinke',0), (77511,'chaselivingston','chaselivingston',0), (77512,'chellycat','chellycat',0), (77513,'csonnek','csonnek',0), (77514,'danielbachhuber','danielbachhuber',0), (77515,'davoraltman','davoraltman',0), (77516,'daniloercoli','daniloercoli',0), (77517,'designsimply','designsimply',0), (77518,'dllh','dllh',0), (77519,'drawmyface','drawmyface',0), (77520,'dsmart','dsmart',0), (77521,'dzver','dzver',0), (77522,'ebinnion','ebinnion',0), (77523,'eliorivero','eliorivero',0), (77524,'enej','enej',0), (77525,'eoigal','eoigal',0), (77526,'ethitter','ethitter',0), (77527,'gcorne','gcorne',0), (77528,'georgestephanis','georgestephanis',0), (77529,'gibrown','gibrown',0), (77530,'goldsounds','goldsounds',0), (77531,'hew','hew',0), (77532,'hugobaeta','hugobaeta',0), (77533,'hypertextranch','hypertextranch',0), (77534,'iammattthomas','iammattthomas',0), (77535,'iandunn','iandunn',0), (77536,'jacobshere','jacobshere',0), (77537,'jblz','jblz',0), (77538,'jeherve','jeherve',0), (77539,'jenhooks','jenhooks',0), (77540,'jenia','jenia',0), (77541,'jgs','jgs',0), (77542,'jkudish','jkudish',0), (77543,'jmdodd','jmdodd',0), (77544,'joen','joen',0), (77545,'johnjamesjacoby','johnjamesjacoby',0), (77546,'jshreve','jshreve',0), (77547,'koke','koke',0), (77548,'kraftbj','kraftbj',0), (77549,'lamdayap','lamdayap',0), (77550,'lancewillett','lancewillett',0), (77551,'lschuyler','lschuyler',0), (77552,'macmanx','macmanx',0), (77553,'martinremy','martinremy',0), (77554,'matt','matt',0), (77555,'matveb','matveb',0), (77556,'mattwiebe','mattwiebe',0), (77557,'maverick3x6','maverick3x6',0), (77558,'mcsf','mcsf',0), (77559,'mdawaffe','mdawaffe',0), (77560,'michael-arestad','michael-arestad',0), (77561,'migueluy','migueluy',0), (77562,'mikeyarce','mikeyarce',0), (77563,'mkaz','mkaz',0), (77564,'nancythanki','nancythanki',0), (77565,'nickmomrik','nickmomrik',0), (77566,'obenland','obenland',0), (77567,'pento','pento',0), (77568,'professor44','professor44',0), (77569,'rachelsquirrel','rachelsquirrel',0), (77570,'rdcoll','rdcoll',0), (77571,'ryancowles','ryancowles',0), (77572,'richardmuscat','richardmuscat',0), (77573,'richardmtl','richardmtl',0), (77574,'roccotripaldi','roccotripaldi',0), (77575,'samhotchkiss','samhotchkiss',0), (77576,'scarstocea','scarstocea',0), (77577,'sdquirk','sdquirk',0), (77578,'stephdau','stephdau',0), (77579,'tmoorewp','tmoorewp',0), (77580,'viper007bond','viper007bond',0), (77581,'westi','westi',0), (77582,'yoavf','yoavf',0), (77583,'zinigor','zinigor',0), (77587,'ryan','ryan',0), (77588,'tellyworth','tellyworth',0), (77589,'josephscott','josephscott',0), (77590,'lessbloat','lessbloat',0), (77593,'takayukister','takayukister',0), (77594,'wordpressdotorg','wordpressdotorg',0), (77595,'joostdevalk','joostdevalk',0), (77596,'hallsofmontezuma','hallsofmontezuma',0), (77597,'wpsmort','wpsmort',0), (77598,'dougal','dougal',0), (77599,'pbaylies','pbaylies',0), (77600,'arnaudbroes','arnaudbroes',0), (77601,'arnee','arnee',0), (77602,'mikejolley','mikejolley',0), (77603,'jameskoster','jameskoster',0), (77604,'claudiosanches','claudiosanches',0), (77605,'coderkevin','coderkevin',0), (77606,'woothemes','woothemes',0), (77607,'johanee','johanee',0), (77608,'icaleb','icaleb',0), (77609,'donncha','donncha',0), (77610,'lopo','lopo',0), (77611,'chriscct7','chriscct7',0), (77612,'smub','smub',0), (77613,'mmaunder','mmaunder',0), (77614,'elliotcondon','elliotcondon',0), (77615,'photocrati','photocrati',0), (77616,'fredericktownes','fredericktownes',0), (77617,'imagely','imagely',0), (77618,'gpriday','gpriday',0), (77619,'braam-genis','braam-genis',0), (77620,'gamerz','gamerz',0), (77621,'scribu','scribu',0), (77629,'backup-with-updraftplus','backup-with-updraftplus',0), (77630,'davidanderson','davidanderson',0), (77631,'dnutbourne','dnutbourne',0), (77632,'aporter','aporter',0), (77634,'solarissmoke','solarissmoke',0), (77635,'deconf','deconf',0), (77636,'tenpura','tenpura',0), (77637,'corylamleorg','corylamleorg',0), (77638,'bobriley','bobriley',0), (77639,'black-studio','black-studio',0), (77640,'marcochiesi','marcochiesi',0), (77641,'thedarkmist','thedarkmist',0), (77642,'matchalabs','matchalabs',0), (77643,'ithemes','ithemes',0), (77644,'chrisjean','chrisjean',0), (77645,'gerroald','gerroald',0), (77646,'mattdanner','mattdanner',0), (77647,'wpninjasllc','wpninjasllc',0), (77648,'kstover','kstover',0), (77649,'jameslaws','jameslaws',0), (77650,'kbjohnson90','kbjohnson90',0), (77651,'klhall1987','klhall1987',0), (77652,'wpnzach','wpnzach',0), (77653,'aman086','aman086',0), (77654,'daveshine','daveshine',0), (77655,'mordauk','mordauk',0), (77656,'bftrick','bftrick',0), (77657,'helgatheviking','helgatheviking',0), (77658,'johnny5','johnny5',0), (77659,'madfork','madfork',0), (77660,'gn_themes','gn_themes',0), (77661,'ibericode','ibericode',0), (77662,'dvankooten','dvankooten',0), (77663,'hchouhan','hchouhan',0), (77664,'lapzor','lapzor',0), (77665,'mtekk','mtekk',0), (77666,'hakre','hakre',0), (77667,'chmac','chmac',0), (77668,'wpmudev','wpmudev',0), (77669,'alexdunae','alexdunae',0), (77670,'ruhanirabin','ruhanirabin',0), (77671,'moderntribe','moderntribe',0), (77672,'peterchester','peterchester',0), (77673,'borkweb','borkweb',0), (77674,'zbtirrell','zbtirrell',0), (77675,'inpsyde','inpsyde',0), (77676,'danielhuesken','danielhuesken',0), (77677,'bueltge','bueltge',0), (77678,'nullbyte','nullbyte',0), (77679,'freediver','freediver',0), (77681,'tobiasbg','tobiasbg',0), (77684,'barryhughes-1','barryhughes-1',0), (77685,'bordoni','bordoni',0), (77686,'brianjessee','brianjessee',0), (77687,'brook-tribe','brook-tribe',0), (77688,'faction23','faction23',0), (77689,'geoffgraham','geoffgraham',0), (77690,'ggwicz','ggwicz',0), (77691,'jazbek','jazbek',0), (77692,'jbrinley','jbrinley',0), (77694,'leahkoerper','leahkoerper',0), (77695,'lucatume','lucatume',0), (77696,'mastromktg','mastromktg',0), (77697,'mat-lipe','mat-lipe',0), (77698,'mdbitz','mdbitz',0), (77699,'mzaweb','mzaweb',0), (77700,'neillmcshea','neillmcshea',0), (77701,'nicosantos','nicosantos',0), (77702,'reidpeifer-1','reidpeifer-1',0), (77703,'roblagatta','roblagatta',0), (77704,'ryancurban','ryancurban',0), (77705,'shanepearlman','shanepearlman',0), (77707,'aguseo','aguseo',0), (77708,'tribecari','tribecari',0), (77709,'trishasalas','trishasalas',0), (77710,'tips-and-tricks-hq','tips-and-tricks-hq',0), (77711,'wpsolutions','wpsolutions',0), (77712,'peter-petreski','peter-petreski',0), (77713,'ruhul-amin','ruhul-amin',0), (77714,'mbrsolution','mbrsolution',0), (77715,'chesio','chesio',0), (77716,'designmodo','designmodo',0), (77717,'georgejipa','georgejipa',0), (77719,'pedro-elsner','pedro-elsner',0), (77721,'nosilver4u','nosilver4u',0), (77727,'tw2113','tw2113',0), (77742,'netweb','netweb',0), (77771,'loginizer','loginizer',0), (77788,'dashaluna','dashaluna',0), (77791,'mattheu','mattheu',0), (77844,'djpaul','djpaul',0), (77845,'boonebgorges','boonebgorges',0), (77846,'r-a-y','r-a-y',0), (77847,'imath','imath',0), (77848,'mercime','mercime',0), (77849,'dcavins','dcavins',0), (77850,'hnla','hnla',0), (77864,'otto42','otto42',0), (77958,'sharethis','sharethis',0), (77971,'iseulde','iseulde',0), (77998,'pross','pross',0), (78127,'valendesigns','valendesigns',0), (78147,'erania-pinnera','erania-pinnera',0), (78161,'garyj','garyj',0), (78232,'johnbillion','johnbillion',0), (78239,'kasparsd','kasparsd',0), (78311,'aaroncampbell','aaroncampbell',0), (78325,'xwp','xwp',0), (78438,'westonruter','westonruter',0), (78441,'sc0ttkclark','sc0ttkclark',0), (78470,'ipstenu','ipstenu',0), (78639,'celloexpressions','celloexpressions',0), (79460,'bfintal','bfintal',0), (79635,'fusionengineering','fusionengineering',0), (79636,'zebulonj','zebulonj',0), (79637,'goldenapples','goldenapples',0), (79638,'jitendraharpalani','jitendraharpalani',0), (79639,'sanchothefat','sanchothefat',0), (79640,'davisshaver','davisshaver',0), (79641,'mte90','mte90',0), (79642,'fredserva','fredserva',0), (79643,'khromov','khromov',0), (79826,'adamsilverstein','adamsilverstein',0), (80418,'swissspidy','swissspidy',0), (81424,'stevegrunwell','stevegrunwell',0), (81434,'stevenkword','stevenkword',0), (81477,'siteground','siteground',0), (81564,'extendwings','extendwings',0), (81580,'tyxla','tyxla',0), (81746,'atimmer','atimmer',0), (81747,'omarreiss','omarreiss',0), (81748,'jipmoors','jipmoors',0), (83740,'mapk','mapk',0), (83741,'j-falk','j-falk',0), (85288,'webviewer','webviewer',0), (85884,'walkscore','walkscore',0), (85968,'wp twitter autopost','wp-twitter-autopost',0), (85971,'wp twitter autofeeder','wp-twitter-autofeeder',0), (86061,'Wordpress Custom HTML Widget','wordpress-custom-html-widget',0), (86062,'Wordpress Custom HTML Plugins.','wordpress-custom-html-plugins',0), (86117,'WordPress Front-End Analytics For Posts','wordpress-front-end-analytics-for-posts',0), (86476,'woocommmerce integrated','woocommmerce-integrated',0), (86513,'sgrant','sgrant',0), (86753,'woocommerce sequential order number','woocommerce-sequential-order-number',0), (86754,'wc sequential order number','wc-sequential-order-number',0), (86759,'Wordpress Instagram Gallery','wordpress-instagram-gallery',0), (86803,'wp business directory plugin','wp-business-directory-plugin',0), (86983,'wp-alert','wp-alert',0), (87150,'wp-job-manager-job-alerts','wp-job-manager-job-alerts',0), (87222,'wp 3d banner rotator','wp-3d-banner-rotator',0), (87405,'woocommerce account verification','woocommerce-account-verification',0), (87406,'woocommerce email verification','woocommerce-email-verification',0), (87508,'youtube carousel gallery','youtube-carousel-gallery',0), (87509,'you tube fetch images','you-tube-fetch-images',0), (87637,'WP Maintenance Mode','wp-maintenance-mode',0), (87853,'WP Responsive Jquery Slider','wp-responsive-jquery-slider',0), (88175,'WP Xml Sitemap','wp-xml-sitemap',0), (88305,'voldemortensen','voldemortensen',0), (88417,'wp database','wp-database',0), (88418,'wp db','wp-db',0), (88660,'Wordpress Accordion Widget','wordpress-accordion-widget',0), (88661,'Wordpress Question and Answer function','wordpress-question-and-answer-function',0), (88836,'wp inquiry Form','wp-inquiry-form',0), (89102,'Wordpress Scroller Widget','wordpress-scroller-widget',0), (89103,'Wordpress Scroller Plugins.','wordpress-scroller-plugins',0), (89333,'wordpress firewall','wordpress-firewall',0), (89339,'Widget on Page','widget-on-page',0), (89340,'Widget in post','widget-in-post',0), (89341,'widget in page','widget-in-page',0), (89342,'widget in content','widget-in-content',0), (89787,'wordpress plugin payment gateway','wordpress-plugin-payment-gateway',0), (90032,'wp slide show','wp-slide-show',0), (90443,'Wordpress Content Slider Widget','wordpress-content-slider-widget',0), (90757,'wp pings','wp-pings',0), (91069,'WP Hitz','wp-hitz',0), (91118,'Wordpress Timeline Widget','wordpress-timeline-widget',0), (91119,'Wordpress Timeline Plugins.','wordpress-timeline-plugins',0), (91121,'WhatsApp Sharing','whatsapp-sharing',0), (91147,'Wordpress Parallax Content Slider Widget','wordpress-parallax-content-slider-widget',0), (91188,'weever','weever',0), (91258,'wp_dropdown_pages','wp_dropdown_pages',0), (91287,'wpcb','wpcb',0), (91335,'web car','web-car',0), (91547,'WC Product Custom Tab','wc-product-custom-tab',0), (91644,'wordpress facebook login','wordpress-facebook-login',0), (91760,'widgetitle','widgetitle',0), (91793,'Wordpress Treeview Plugin.','wordpress-treeview-plugin',0), (91878,'wordpress?????','wordpress%e6%94%af%e4%bb%98%e5%ae%9d%e6%8f%92%e4%bb%b6',0), (92309,'wp-to-buffer','wp-to-buffer',0), (92389,'Wordpress Coin Slider','wordpress-coin-slider',0), (92391,'Wordpress Coin Slider Widget','wordpress-coin-slider-widget',0), (92392,'Wordpress Coin Slider Plugin','wordpress-coin-slider-plugin',0), (92394,'pravdomil','pravdomil',0), (92407,'WebBooker','webbooker',0), (92467,'wooCommerce stock images','woocommerce-stock-images',0), (92511,'wp free gallery','wp-free-gallery',0), (92996,'Wordpress Panorama','wordpress-panorama',0), (92998,'Wordpress panorama widget','wordpress-panorama-widget',0), (92999,'Wordpress panorama plugin','wordpress-panorama-plugin',0), (93230,'wp-job-manager-resume-manager','wp-job-manager-resume-manager',0), (93265,'wpcustomizer','wpcustomizer',0), (93347,'wp shortcodes','wp-shortcodes',0), (93460,'wp conversation','wp-conversation',0), (93461,'wp internal messages system','wp-internal-messages-system',0), (93605,'wordpress heartbeat','wordpress-heartbeat',0), (93645,'voipnow','voipnow',0), (93811,'wordpress message','wordpress-message',0), (93841,'wordpress 3.0 menus','wordpress-3-0-menus',0), (94155,'woocommerce radio','woocommerce-radio',0), (94156,'woocommerce radio button','woocommerce-radio-button',0), (94353,'webink','webink',0), (94956,'wpchandra','wpchandra',0), (95025,'xtreme one','xtreme-one',0), (95026,'xtreme one framework','xtreme-one-framework',0), (95618,'website defender','website-defender',0), (95665,'Website Stats widget','website-stats-widget',0), (95666,'Website Stats profile widget plugin','website-stats-profile-widget-plugin',0), (95667,'wordpress Website Stats widget','wordpress-website-stats-widget',0), (95858,'yoututbe','yoututbe',0), (95859,'youtube user','youtube-user',0), (95860,'youtube videos widget','youtube-videos-widget',0), (95861,'youtube videos from a user in modal','youtube-videos-from-a-user-in-modal',0), (95868,'web of trust','web-of-trust',0), (96109,'web 3d.','web-3d',0), (96219,'virtual gifts','virtual-gifts',0), (96400,'yousaytoo','yousaytoo',0), (96547,'woocommerce support','woocommerce-support',0), (96592,'wbcomdesigns','wbcomdesigns',0), (96794,'Wordpress Admin Menus','wordpress-admin-menus',0), (96842,'WordPress Post Plugin','wordpress-post-plugin',0), (96844,'WordPress Article Plugin','wordpress-article-plugin',0), (97297,'youtube rss','youtube-rss',0), (97378,'Wptutsbd','wptutsbd',0), (97522,'xo so','xo-so',0), (97576,'webputty','webputty',0), (98067,'youtube video embed','youtube-video-embed',0), (98068,'wordpress youtube playlist maker','wordpress-youtube-playlist-maker',0), (98069,'wordpress youtube playlists','wordpress-youtube-playlists',0), (98200,'wp mobile app','wp-mobile-app',0), (98324,'otto42','otto42',0), (98340,'mapk','mapk',0), (98341,'obenland','obenland',0), (98342,'pento','pento',0), (98344,'danielbachhuber','danielbachhuber',0), (98347,'rmccue','rmccue',0), (98348,'avryl','avryl',0), (98349,'iseulde','iseulde',0), (98350,'westonruter','westonruter',0), (98352,'celloexpressions','celloexpressions',0), (98353,'georgestephanis','georgestephanis',0), (98354,'valendesigns','valendesigns',0), (98355,'boonebgorges','boonebgorges',0), (98356,'briancolinger','briancolinger',0), (98357,'duck_','duck_',0), (98358,'markjaquith','markjaquith',0), (98359,'nacin','nacin',0), (98360,'nbachiyski','nbachiyski',0), (98361,'westi','westi',0), (98362,'azaozz','azaozz',0), (98364,'koopersmith','koopersmith',0), (98366,'viper007bond','viper007bond',0), (98367,'beaulebens','beaulebens',0), (98368,'dsmart','dsmart',0), (98369,'eliorivero','eliorivero',0), (98370,'mdawaffe','mdawaffe',0), (98371,'ryancowles','ryancowles',0), (98372,'samhotchkiss','samhotchkiss',0), (98373,'zinigor','zinigor',0), (98378,'cfinke','cfinke',0), (98379,'eoigal','eoigal',0), (98380,'jgs','jgs',0), (98382,'takayukister','takayukister',0), (98383,'amboutwe','amboutwe',0), (98384,'atimmer','atimmer',0), (98385,'jipmoors','jipmoors',0), (98386,'joostdevalk','joostdevalk',0), (98387,'michielatyoast','michielatyoast',0), (98388,'omarreiss','omarreiss',0), (98389,'tacoverdo','tacoverdo',0), (98390,'yoast','yoast',0), (98391,'hallsofmontezuma','hallsofmontezuma',0), (98392,'wpsmort','wpsmort',0), (98393,'fredericktownes','fredericktownes',0), (98394,'googlesitemapgenerator','googlesitemapgenerator',0), (98395,'johanee','johanee',0), (98396,'claudiosanches','claudiosanches',0), (98397,'jameskoster','jameskoster',0), (98398,'mikejolley','mikejolley',0), (98399,'royho','royho',0), (98400,'donncha','donncha',0), (98401,'kraftbj','kraftbj',0), (98402,'garywf','garywf',0), (98403,'kboyte','kboyte',0), (98404,'mmaunder','mmaunder',0), (98405,'wfalaa','wfalaa',0), (98406,'wfasa','wfasa',0), (98407,'wfbrian','wfbrian',0), (98408,'wfmatt','wfmatt',0), (98409,'wfmattr','wfmattr',0), (98410,'wfsupport','wfsupport',0), (98411,'chriscct7','chriscct7',0), (98412,'smub','smub',0), (98413,'photocrati','photocrati',0), (98414,'elliotcondon','elliotcondon',0), (98415,'lopo','lopo',0), (98416,'gamerz','gamerz',0), (98417,'scribu','scribu',0), (98418,'gpriday','gpriday',0), (98419,'solarissmoke','solarissmoke',0), (98420,'tenpura','tenpura',0), (98421,'marcochiesi','marcochiesi',0), (98422,'thedarkmist','thedarkmist',0), (98423,'deconf','deconf',0), (98424,'chrisjean','chrisjean',0), (98425,'gerroald','gerroald',0), (98426,'ithemes','ithemes',0), (98427,'mattdanner','mattdanner',0), (98432,'davidanderson','davidanderson',0), (98433,'bobriley','bobriley',0), (98434,'corylamleorg','corylamleorg',0), (98435,'matchalabs','matchalabs',0), (98437,'gn_themes','gn_themes',0), (98438,'madfork','madfork',0), (98439,'johnny5','johnny5',0), (98440,'hakre','hakre',0), (98441,'mtekk','mtekk',0), (98444,'dvankooten','dvankooten',0), (98445,'hchouhan','hchouhan',0), (98446,'ibericode','ibericode',0), (98447,'chmac','chmac',0), (98448,'borkweb','borkweb',0), (98449,'jbrinley','jbrinley',0), (98450,'moderntribe','moderntribe',0), (98451,'peterchester','peterchester',0), (98452,'shanepearlman','shanepearlman',0), (98453,'zbtirrell','zbtirrell',0), (98454,'biont','biont',0), (98455,'bueltge','bueltge',0), (98456,'danielhuesken','danielhuesken',0), (98457,'inpsyde','inpsyde',0), (98458,'luminuu','luminuu',0), (98459,'nullbyte','nullbyte',0), (98460,'seville76','seville76',0), (98461,'tfrommen','tfrommen',0), (98462,'vanvox','vanvox',0), (98463,'freediver','freediver',0), (98464,'managewp','managewp',0), (98465,'jameslaws','jameslaws',0), (98466,'kbjohnson90','kbjohnson90',0), (98467,'kstover','kstover',0), (98472,'tobiasbg','tobiasbg',0), (98474,'gmax21','gmax21',0), (98475,'jdailey','jdailey',0), (98476,'uglyrobot','uglyrobot',0), (98477,'umeshsingla','umeshsingla',0), (98478,'wpmudev','wpmudev',0), (98479,'aguseo','aguseo',0), (98480,'barryhughes-1','barryhughes-1',0), (98481,'bordoni','bordoni',0), (98482,'brianjessee','brianjessee',0), (98483,'brook-tribe','brook-tribe',0), (98484,'cliffpaulick','cliffpaulick',0), (98485,'faction23','faction23',0), (98486,'geoffbel','geoffbel',0), (98487,'geoffgraham','geoffgraham',0), (98488,'ggwicz','ggwicz',0), (98489,'joinfof','joinfof',0), (98490,'joshlimecuda','joshlimecuda',0), (98491,'leahkoerper','leahkoerper',0), (98492,'nicosantos','nicosantos',0), (98493,'reidpeifer-1','reidpeifer-1',0), (98494,'roblagatta','roblagatta',0), (98495,'websitebakery','websitebakery',0), (98497,'designmodo','designmodo',0), (98498,'georgejipa','georgejipa',0), (98501,'mra13','mra13',0), (98503,'wpsolutions','wpsolutions',0), (98513,'jmdodd','jmdodd',0), (98514,'johnjamesjacoby','johnjamesjacoby',0), (98515,'netweb','netweb',0), (98518,'nosilver4u','nosilver4u',0), (98520,'pedro-elsner','pedro-elsner',0), (98521,'tw2113','tw2113',0), (98553,'mattheu','mattheu',0), (98597,'apeatling','apeatling',0), (98598,'dcavins','dcavins',0), (98599,'djpaul','djpaul',0), (98600,'imath','imath',0), (98601,'mercime','mercime',0), (98646,'sharethis','sharethis',0), (98729,'pross','pross',0), (98731,'loginizer','loginizer',0), (99700,'matt','matt',0), (102361,'jshreve','jshreve',0), (102861,'slaffik','slaffik',0), (103092,'r-a-y','r-a-y',0), (104152,'goldenapples','goldenapples',0), (104379,'daniel_jao','daniel_jao',0), (105465,'hnla','hnla',0), (106489,'jeherve','jeherve',0), (107218,'lucatume','lucatume',0), (113731,'lukecarbis','lukecarbis',0), (117947,'rnaby','rnaby',0), (125083,'shelbelliott','shelbelliott',0), (125458,'website contact form','website-contact-form',0), (125647,'word document importer','word-document-importer',0), (125920,'wordpress tabs','wordpress-tabs',0), (125922,'Wordpress accordion add-on','wordpress-accordion-add-on',0), (125999,'Wordpress Toggle','wordpress-toggle',0), (126000,'Wordpress Toggle plugin','wordpress-toggle-plugin',0), (126001,'Wordpress Toggle widget','wordpress-toggle-widget',0), (126002,'Wordpress Toggle add-on','wordpress-toggle-add-on',0), (126079,'woocommerce tag search','woocommerce-tag-search',0), (126348,'bronsonquick','bronsonquick',0), (126349,'kraftner','kraftner',0), (126389,'WPRobot','wprobot',0), (126390,'WPRobot2','wprobot2',0), (126391,'WPRobot3','wprobot3',0), (126396,'woocommerce checkout add field','woocommerce-checkout-add-field',0), (126398,'WooCommerce cart manager','woocommerce-cart-manager',0), (126420,'wp map embed','wp-map-embed',0), (126480,'snightingale','snightingale',0), (126564,'WP Google Analytics','wp-google-analytics',0), (126586,'wordpress photo slideshow','wordpress-photo-slideshow',0), (126587,'wp photo slideshow','wp-photo-slideshow',0), (126594,'Wordrop','wordrop',0), (126597,'wordpress subscription plugin','wordpress-subscription-plugin',0), (126638,'woocommerce excelsheet','woocommerce-excelsheet',0), (126661,'wordpress portfolio gallery','wordpress-portfolio-gallery',0), (126674,'visitor stat','visitor-stat',0), (126701,'WP Tree','wp-tree',0), (126702,'wp organizational tree','wp-organizational-tree',0), (126731,'widget content','widget-content',0), (126735,'visitor counter widget','visitor-counter-widget',0), (126737,'wordpress logout','wordpress-logout',0), (126754,'yoast quick edit','yoast-quick-edit',0), (126757,'wordpress seo quick edit','wordpress-seo-quick-edit',0), (126893,'wp block','wp-block',0), (126894,'wordpress block','wordpress-block',0), (126998,'wordpress forum','wordpress-forum',0), (127513,'xyz bot','xyz-bot',0), (127514,'xxx video','xxx-video',0), (127649,'Woocommerce pricing table','woocommerce-pricing-table',0), (127657,'Content analysis','content-analysis',0), (127658,'yoast','yoast',0), (127659,'tacoverdo','tacoverdo',0), (128278,'xweb','xweb',0), (128954,'Wordpress Camera Slideshow Widget','wordpress-camera-slideshow-widget',0), (128955,'Wordpress Camera Slideshow Plugins.','wordpress-camera-slideshow-plugins',0), (128961,'word of mouth promotion','word-of-mouth-promotion',0), (128974,'Yii Framework','yii-framework',0), (130181,'wordpress tabs widget','wordpress-tabs-widget',0), (131187,'benvaassen','benvaassen',0), (131216,'shelbelliott','shelbelliott',0), (131321,'dbtlr','dbtlr',0), (131531,'wfryan','wfryan',0), (132045,'wp-idea-stream','wp-idea-stream',0), (132467,'imagely','imagely',0), (133285,'courane01','courane01',0), (138670,'wfphil','wfphil',0), (138671,'wfyann','wfyann',0), (138787,'claudiulodro','claudiulodro',0), (138810,'Wordpress Mac photo gallery','wordpress-mac-photo-gallery',0), (138831,'giuseppemazzapica-1','giuseppemazzapica-1',0), (138855,'opirata','opirata',0); /*!40000 ALTER TABLE `wporg_367_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_39_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_39_commentmeta`; CREATE TABLE `wporg_39_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_39_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_39_comments`; CREATE TABLE `wporg_39_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_39_comments` WRITE; /*!40000 ALTER TABLE `wporg_39_comments` DISABLE KEYS */; INSERT INTO `wporg_39_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,'Mr WordPress','','http://global.wordpressorg.dev/','','2014-07-08 01:26:07','2014-07-08 01:26:07','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_39_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_39_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_39_links`; CREATE TABLE `wporg_39_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_39_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_39_options`; CREATE TABLE `wporg_39_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_39_options` WRITE; /*!40000 ALTER TABLE `wporg_39_options` DISABLE KEYS */; INSERT INTO `wporg_39_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://en.wordpressorg.dev/','yes'), (2,'home','http://en.wordpressorg.dev/','yes'), (3,'blogname','en.wordpressorg.dev','yes'), (4,'blogdescription','Just another global.wordpressorg.dev Sites site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:1:{i:1;s:19:\"bbpress/bbpress.php\";}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','rosetta','yes'), (42,'stylesheet','rosetta','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','America/Chicago','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wp_2_user_roles','a:6:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_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:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"edit_theme_options\";b:1;s:10:\"list_users\";b:1;s:13:\"promote_users\";b:1;s:12:\"remove_users\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:9:\"validator\";a:2:{s:4:\"name\";s:9:\"Validator\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"orphaned_widgets_1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (102,'cron','a:4:{i:1461902480;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1461954534;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:1461980566;a:1:{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:7:\"version\";i:2;}','yes'), (110,'theme_mods_twentyfourteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1404783848;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'), (111,'template_root','/themes','yes'), (112,'stylesheet_root','/themes','yes'), (113,'current_theme','Rosetta','yes'), (114,'theme_mods_rosetta','a:1:{i:0;b:0;}','yes'), (115,'theme_switched','','yes'), (117,'new_admin_email','foo@example.org','yes'), (120,'jetpack_options','a:4:{s:7:\"version\";s:16:\"3.0.2:1404838880\";s:11:\"old_version\";s:16:\"3.0.2:1404838880\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;}','yes'), (122,'jetpack_activated','2','yes'), (133,'recently_activated','a:0:{}','yes'), (135,'post_count','1','yes'), (138,'jetpack_log','a:1:{i:0;a:5:{s:4:\"time\";i:1404846180;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"activate\";s:4:\"data\";s:12:\"contact-form\";}}','no'), (139,'jetpack_active_modules','a:2:{i:0;s:10:\"vaultpress\";i:1;s:12:\"contact-form\";}','yes'), (147,'db_upgraded','1','yes'), (149,'_transient_random_seed','5fa53dd366e948c8e26f62581b763249','yes'), (152,'jetpack_file_data','a:1:{s:5:\"3.2.1\";a:46:{s:32:\"d0798d372fc3c8e4171aab5b31382a80\";a:10:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:89:\"Check your spelling, style, and grammar with the After the Deadline proofreading service.\";s:4:\"sort\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";}s:32:\"083be84941bd49add5a90ea672d83c2d\";a:10:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:63:\"Transform standard image galleries into full-screen slideshows.\";s:4:\"sort\";s:2:\"22\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";}s:32:\"8981d6f2f6e707b89ae01c2aaeaba5bc\";a:10:{s:4:\"name\";s:16:\"Jetpack Comments\";s:11:\"description\";s:79:\"Let readers comment with WordPress.com, Twitter, Facebook, or Google+ accounts.\";s:4:\"sort\";s:2:\"20\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";}s:32:\"b8a3803d3b2d1c5daede2aa789e22309\";a:10:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:44:\"Insert a contact form anywhere on your site.\";s:4:\"sort\";s:2:\"15\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";}s:32:\"5506fd330f26122ef1079257478e0a14\";a:10:{s:4:\"name\";s:20:\"Custom Content Types\";s:11:\"description\";s:92:\"Organize and display different types of content on your site, separate from posts and pages.\";s:4:\"sort\";s:2:\"34\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";}s:32:\"7dcf889af365c84c9b8bdb1e16f3a30c\";a:10:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:57:\"Customize your site’s CSS without modifying your theme.\";s:4:\"sort\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";}s:32:\"553527a13a0125be5f3cdc455802b744\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"53f95b80c9d9cd0d9fa761569dcdb88d\";a:10:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:74:\"Share your public posts and comments to search engines and other services.\";s:4:\"sort\";s:1:\"5\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";}s:32:\"ce5e8e4dddc2f10f847ecd68016994bb\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"deb8188e411cbf873674545526368c85\";a:10:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:4:\"sort\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";}s:32:\"736e7591cbf7be6f656c36e00de0adc4\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";}s:32:\"0a93b5f2b0917ac4a8fc6dd6b45c4534\";a:10:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:46:\"Add support for infinite scroll to your theme.\";s:4:\"sort\";s:2:\"26\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";}s:32:\"b8026c075c183b49ec910acd5fdf19d7\";a:10:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:69:\"Allow applications to securely access your content through the cloud.\";s:4:\"sort\";s:2:\"19\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";}s:32:\"ca1a1444ac7597327051fe2c1a17a962\";a:10:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:85:\"Use LaTeX markup language in posts and pages for complex equations and other geekery.\";s:4:\"sort\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";}s:32:\"a4240e17d5f53e7212fdf83f55a4ef89\";a:10:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:70:\"Give visitors an easy way to show their appreciation for your content.\";s:4:\"sort\";s:2:\"23\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";}s:32:\"2bc0739281681783fb5182ae83b4f703\";a:10:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:51:\"Write posts or pages in plain-text Markdown syntax.\";s:4:\"sort\";s:2:\"31\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";}s:32:\"ce796f5d1d6ec591292a4cafdca740e7\";a:10:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:71:\"Optimize your site with a mobile-friendly theme for tablets and phones.\";s:4:\"sort\";s:2:\"21\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Appearance, Mobile\";}s:32:\"07d9fd7e3378a32faa6778f86842653b\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"e2c606e6b22da60ce9126d44de4a812b\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"5eb53be957bc8f7332ff02e0f992a9cf\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"4183c1dfef30f9f9a265a3684c68cee7\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"7e49a9c1be416e3498553f9a058395fd\";a:10:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:88:\"Receive notifications from Jetpack if your site goes offline — and when it it returns.\";s:4:\"sort\";s:2:\"28\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";}s:32:\"95148bbdb1fe9cc9bd730d03afc20d7d\";a:10:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:84:\"Receive notification of site activity via the admin toolbar and your Mobile devices.\";s:4:\"sort\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";}s:32:\"b152ec03bddfdf3559447d10e46fbb34\";a:10:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your Dashboard.\";s:4:\"sort\";s:2:\"16\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";}s:32:\"b2c9ca763c58eb59a6d2edcd60d8b6f4\";a:10:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:66:\"Accelerate your site by loading images from the WordPress.com CDN.\";s:4:\"sort\";s:2:\"25\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:29:\"Photos and Videos, Appearance\";}s:32:\"01075ee625b853194703cdd7a9d9e434\";a:10:{s:4:\"name\";s:13:\"Post by Email\";s:11:\"description\";s:58:\"Publish posts by email, using any device and email client.\";s:4:\"sort\";s:2:\"14\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";}s:32:\"41e6840c3f65df6507a2a6b26d044aa4\";a:10:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:55:\"Share new posts on social media networks automatically.\";s:4:\"sort\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";}s:32:\"bacb2ba4365db61a328142e3d10994f9\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"f08dd7b07e1254fbfce90d1fbb6512b9\";a:10:{s:4:\"name\";s:13:\"Related Posts\";s:11:\"description\";s:60:\"Display links to your related content under posts and pages.\";s:4:\"sort\";s:2:\"29\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";}s:32:\"91bd10b5393dcbe6e88e1e6ee668a563\";a:10:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:81:\"Allow visitors to share your content on Facebook, Twitter, and more with a click.\";s:4:\"sort\";s:1:\"7\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";}s:32:\"0f003a3332476054c297d235c115cb05\";a:10:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:77:\"Embed content from YouTube, Vimeo, SlideShare, and more, no coding necessary.\";s:4:\"sort\";s:1:\"3\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";}s:32:\"727d6d055853f69b5f418d6e0c7fcf44\";a:10:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:56:\"Enable WP.me-powered shortlinks for all posts and pages.\";s:4:\"sort\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";}s:32:\"af3551fdeba96eccda7ab4808a3544b0\";a:10:{s:4:\"name\";s:9:\"Site Icon\";s:11:\"description\";s:30:\"Add an site icon to your site.\";s:4:\"sort\";s:2:\"22\";s:10:\"introduced\";s:3:\"3.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:5:\"Other\";}s:32:\"b7b52c05d32fba9edae6e24f14958d01\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"72b543fdd33161174b38e8ef82071ff2\";a:10:{s:4:\"name\";s:22:\"Jetpack Single Sign On\";s:11:\"description\";s:62:\"Allow your users to log in using their WordPress.com accounts.\";s:4:\"sort\";s:2:\"30\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";}s:32:\"6a97545df23bc2845dbdeb9aec40536b\";a:10:{s:4:\"name\";s:19:\"WordPress.com Stats\";s:11:\"description\";s:85:\"Monitor your stats with clear, concise reports and no additional load on your server.\";s:4:\"sort\";s:1:\"1\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"WordPress.com Stats\";}s:32:\"1ba2501c8d8c3f32d95af6db45959a8f\";a:10:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:88:\"Allow users to subscribe to your posts and comments and receive notifications via email.\";s:4:\"sort\";s:1:\"9\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";}s:32:\"0b7893c1654939bd9a1914a3ff21e1a4\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"ed870647eb8ee103a9dbf0cb1b299c70\";a:10:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:73:\"Display your image galleries in a variety of sleek, graphic arrangements.\";s:4:\"sort\";s:2:\"24\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";}s:32:\"b55204da540fc1b91805a23cd6fd3be1\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"e06665bc80b910ce0e5a11760009a66e\";a:10:{s:4:\"name\";s:10:\"VaultPress\";s:11:\"description\";s:85:\"Protect your site with automatic backups and security scans. (Subscription required.)\";s:4:\"sort\";s:2:\"32\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";}s:32:\"9f9f341f27cea21314e632cfbb028def\";a:10:{s:4:\"name\";s:17:\"Site Verification\";s:11:\"description\";s:78:\"Verify your site or domain with Google Webmaster Tools, Pinterest, and others.\";s:4:\"sort\";s:2:\"33\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";}s:32:\"6bd387a03394fee53901b0cc3b58efa2\";a:10:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:66:\"Upload and host video right on your site. (Subscription required.)\";s:4:\"sort\";s:2:\"27\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";}s:32:\"308eb7268a5c8c4b5bc6a67878f37972\";a:10:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:57:\"Specify which widgets appear on which pages of your site.\";s:4:\"sort\";s:2:\"17\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";}s:32:\"885b5b252b6982474dc887b361282824\";a:10:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:79:\"Add images, Twitter streams, your site’s RSS links, and more to your sidebar.\";s:4:\"sort\";s:1:\"4\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";}s:32:\"9a6024557d5dbc7b9501dc31076066e9\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}}}','yes'), (153,'jetpack_available_modules','a:1:{s:5:\"3.2.1\";a:34:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"omnisearch\";s:3:\"2.3\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:9:\"site-icon\";s:3:\"3.2\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";}}','yes'), (171,'_bbp_private_forums','a:0:{}','yes'), (172,'_bbp_hidden_forums','a:0:{}','yes'), (173,'_bbp_db_version','250','yes'), (175,'category_children','a:0:{}','yes'), (190,'wporg_39_user_roles','a:1:{s:18:\"translation_editor\";a:2:{s:4:\"name\";s:18:\"Translation Editor\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'), (203,'rewrite_rules','a:145:{s:9:\"forums/?$\";s:25:\"index.php?post_type=forum\";s:39:\"forums/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=forum&feed=$matches[1]\";s:34:\"forums/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=forum&feed=$matches[1]\";s:26:\"forums/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=forum&paged=$matches[1]\";s:9:\"topics/?$\";s:25:\"index.php?post_type=topic\";s:39:\"topics/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=topic&feed=$matches[1]\";s:34:\"topics/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=topic&feed=$matches[1]\";s:26:\"topics/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=topic&paged=$matches[1]\";s:28:\"forums/forum/([^/]+)/edit/?$\";s:34:\"index.php?forum=$matches[1]&edit=1\";s:28:\"forums/topic/([^/]+)/edit/?$\";s:34:\"index.php?topic=$matches[1]&edit=1\";s:28:\"forums/reply/([^/]+)/edit/?$\";s:34:\"index.php?reply=$matches[1]&edit=1\";s:32:\"forums/topic-tag/([^/]+)/edit/?$\";s:38:\"index.php?topic-tag=$matches[1]&edit=1\";s:47:\"forums/user/([^/]+)/topics/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_tops=1&paged=$matches[2]\";s:48:\"forums/user/([^/]+)/replies/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_reps=1&paged=$matches[2]\";s:50:\"forums/user/([^/]+)/favorites/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_favs=1&paged=$matches[2]\";s:54:\"forums/user/([^/]+)/subscriptions/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_subs=1&paged=$matches[2]\";s:29:\"forums/user/([^/]+)/topics/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_tops=1\";s:30:\"forums/user/([^/]+)/replies/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_reps=1\";s:32:\"forums/user/([^/]+)/favorites/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_favs=1\";s:36:\"forums/user/([^/]+)/subscriptions/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_subs=1\";s:27:\"forums/user/([^/]+)/edit/?$\";s:37:\"index.php?bbp_user=$matches[1]&edit=1\";s:22:\"forums/user/([^/]+)/?$\";s:30:\"index.php?bbp_user=$matches[1]\";s:40:\"forums/view/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?bbp_view=$matches[1]&paged=$matches[2]\";s:27:\"forums/view/([^/]+)/feed/?$\";s:47:\"index.php?bbp_view=$matches[1]&feed=$matches[2]\";s:22:\"forums/view/([^/]+)/?$\";s:30:\"index.php?bbp_view=$matches[1]\";s:34:\"forums/search/page/?([0-9]{1,})/?$\";s:27:\"index.php?paged=$matches[1]\";s:16:\"forums/search/?$\";s:20:\"index.php?bbp_search\";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: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: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: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:38:\"forums/forum/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"forums/forum/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"forums/forum/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"forums/forum/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"forums/forum/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"forums/forum/(.+?)/trackback/?$\";s:32:\"index.php?forum=$matches[1]&tb=1\";s:51:\"forums/forum/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?forum=$matches[1]&feed=$matches[2]\";s:46:\"forums/forum/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?forum=$matches[1]&feed=$matches[2]\";s:39:\"forums/forum/(.+?)/page/?([0-9]{1,})/?$\";s:45:\"index.php?forum=$matches[1]&paged=$matches[2]\";s:46:\"forums/forum/(.+?)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?forum=$matches[1]&cpage=$matches[2]\";s:31:\"forums/forum/(.+?)(/[0-9]+)?/?$\";s:44:\"index.php?forum=$matches[1]&page=$matches[2]\";s:40:\"forums/topic/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"forums/topic/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"forums/topic/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/topic/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/topic/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"forums/topic/([^/]+)/trackback/?$\";s:32:\"index.php?topic=$matches[1]&tb=1\";s:53:\"forums/topic/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?topic=$matches[1]&feed=$matches[2]\";s:48:\"forums/topic/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?topic=$matches[1]&feed=$matches[2]\";s:41:\"forums/topic/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?topic=$matches[1]&paged=$matches[2]\";s:48:\"forums/topic/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?topic=$matches[1]&cpage=$matches[2]\";s:33:\"forums/topic/([^/]+)(/[0-9]+)?/?$\";s:44:\"index.php?topic=$matches[1]&page=$matches[2]\";s:29:\"forums/topic/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"forums/topic/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"forums/topic/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/topic/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/topic/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"forums/reply/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"forums/reply/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"forums/reply/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/reply/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/reply/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"forums/reply/([^/]+)/trackback/?$\";s:32:\"index.php?reply=$matches[1]&tb=1\";s:41:\"forums/reply/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?reply=$matches[1]&paged=$matches[2]\";s:48:\"forums/reply/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?reply=$matches[1]&cpage=$matches[2]\";s:33:\"forums/reply/([^/]+)(/[0-9]+)?/?$\";s:44:\"index.php?reply=$matches[1]&page=$matches[2]\";s:29:\"forums/reply/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"forums/reply/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"forums/reply/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/reply/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/reply/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"forums/topic-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?topic-tag=$matches[1]&feed=$matches[2]\";s:52:\"forums/topic-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?topic-tag=$matches[1]&feed=$matches[2]\";s:45:\"forums/topic-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?topic-tag=$matches[1]&paged=$matches[2]\";s:27:\"forums/topic-tag/([^/]+)/?$\";s:31:\"index.php?topic-tag=$matches[1]\";s:42:\"forums/search/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?bbp_search=$matches[1]&paged=$matches[2]\";s:24:\"forums/search/([^/]+)/?$\";s:32:\"index.php?bbp_search=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=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: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: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: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:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (206,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (207,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (208,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (209,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (211,'widget_bbp_login_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (212,'widget_bbp_views_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (213,'widget_bbp_search_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (214,'widget_bbp_forums_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (215,'widget_bbp_topics_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (216,'widget_bbp_replies_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (217,'widget_bbp_stats_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (218,'finished_splitting_shared_terms','1','yes'), (219,'site_icon','0','yes'), (220,'medium_large_size_w','768','yes'), (221,'medium_large_size_h','0','yes'); /*!40000 ALTER TABLE `wporg_39_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_39_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_39_postmeta`; CREATE TABLE `wporg_39_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_39_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_39_postmeta` DISABLE KEYS */; INSERT INTO `wporg_39_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (4,5,'_edit_lock','1404845997:1'), (5,5,'_edit_last','1'), (6,6,'_edit_lock','1404845999:1'), (7,8,'_edit_lock','1404846002:1'), (8,7,'_edit_lock','1404846000:1'), (9,9,'_edit_lock','1404846003:1'), (10,10,'_edit_lock','1404846005:1'), (11,6,'_edit_last','1'), (12,7,'_edit_last','1'), (13,8,'_edit_last','1'), (14,9,'_edit_last','1'), (15,5,'_wp_page_template','default'), (16,6,'_wp_page_template','contact.php'), (17,7,'_wp_page_template','default'), (18,8,'_wp_page_template','default'), (19,9,'_wp_page_template','download.php'), (20,10,'_edit_last','1'), (21,10,'_wp_page_template','default'), (22,17,'_menu_item_type','custom'), (23,17,'_menu_item_menu_item_parent','0'), (24,17,'_menu_item_object_id','17'), (25,17,'_menu_item_object','custom'), (26,17,'_menu_item_target',''), (27,17,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (28,17,'_menu_item_xfn',''), (29,17,'_menu_item_url','http://en.wordpressorg.dev/'), (30,17,'_menu_item_orphaned','1404844384'), (31,18,'_menu_item_type','post_type'), (32,18,'_menu_item_menu_item_parent','0'), (33,18,'_menu_item_object_id','5'), (34,18,'_menu_item_object','page'), (35,18,'_menu_item_target',''), (36,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (37,18,'_menu_item_xfn',''), (38,18,'_menu_item_url',''), (39,18,'_menu_item_orphaned','1404844384'), (40,19,'_menu_item_type','post_type'), (41,19,'_menu_item_menu_item_parent','0'), (42,19,'_menu_item_object_id','6'), (43,19,'_menu_item_object','page'), (44,19,'_menu_item_target',''), (45,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (46,19,'_menu_item_xfn',''), (47,19,'_menu_item_url',''), (48,19,'_menu_item_orphaned','1404844384'), (49,20,'_menu_item_type','post_type'), (50,20,'_menu_item_menu_item_parent','0'), (51,20,'_menu_item_object_id','7'), (52,20,'_menu_item_object','page'), (53,20,'_menu_item_target',''), (54,20,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (55,20,'_menu_item_xfn',''), (56,20,'_menu_item_url',''), (57,20,'_menu_item_orphaned','1404844384'), (58,21,'_menu_item_type','post_type'), (59,21,'_menu_item_menu_item_parent','0'), (60,21,'_menu_item_object_id','8'), (61,21,'_menu_item_object','page'), (62,21,'_menu_item_target',''), (63,21,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (64,21,'_menu_item_xfn',''), (65,21,'_menu_item_url',''), (66,21,'_menu_item_orphaned','1404844384'), (67,22,'_menu_item_type','post_type'), (68,22,'_menu_item_menu_item_parent','0'), (69,22,'_menu_item_object_id','9'), (70,22,'_menu_item_object','page'), (71,22,'_menu_item_target',''), (72,22,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (73,22,'_menu_item_xfn',''), (74,22,'_menu_item_url',''), (75,22,'_menu_item_orphaned','1404844384'), (76,23,'_menu_item_type','post_type'), (77,23,'_menu_item_menu_item_parent','0'), (78,23,'_menu_item_object_id','10'), (79,23,'_menu_item_object','page'), (80,23,'_menu_item_target',''), (81,23,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (82,23,'_menu_item_xfn',''), (83,23,'_menu_item_url',''), (84,23,'_menu_item_orphaned','1404844384'), (85,26,'_edit_lock','1415346979:1'), (86,26,'_edit_last','1'), (87,26,'_bbp_last_active_time','2014-11-07 03:20:50'), (88,26,'_bbp_forum_subforum_count','1'), (89,26,'_bbp_reply_count','0'), (90,26,'_bbp_total_reply_count','0'), (91,26,'_bbp_topic_count','0'), (92,26,'_bbp_total_topic_count','1'), (93,26,'_bbp_topic_count_hidden','0'), (94,26,'_bbp_forum_type','category'), (95,28,'_edit_lock','1415347035:1'), (96,28,'_edit_last','1'), (97,28,'_bbp_last_active_time','2014-11-07 03:20:50'), (98,28,'_bbp_forum_subforum_count','0'), (99,28,'_bbp_reply_count','0'), (100,28,'_bbp_total_reply_count','0'), (101,28,'_bbp_topic_count','1'), (102,28,'_bbp_total_topic_count','1'), (103,28,'_bbp_topic_count_hidden','0'), (104,30,'_edit_lock','1415351231:1'), (105,30,'_edit_last','1'), (106,30,'_wp_page_template','default'), (107,32,'_edit_lock','1415352888:1'), (108,32,'_edit_last','1'), (109,32,'_wp_page_template','page-homepage.php'), (110,35,'_bbp_akismet_error','1415352050'), (111,35,'_bbp_akismet_history','a:4:{s:4:\"time\";d:1415352050.3594151;s:7:\"message\";s:100:\"Akismet was unable to check this post (response: No response), will automatically retry again later.\";s:5:\"event\";s:11:\"check-error\";s:4:\"user\";s:5:\"admin\";}'), (112,35,'_bbp_akismet_as_submitted','a:63:{s:14:\"comment_author\";s:5:\"admin\";s:20:\"comment_author_email\";s:15:\"foo@example.org\";s:18:\"comment_author_url\";s:0:\"\";s:15:\"comment_content\";s:36:\"My first English International Topic\";s:15:\"comment_post_ID\";i:28;s:12:\"comment_type\";s:5:\"topic\";s:9:\"permalink\";s:117:\"http://en.wordpressorg.dev/forums/forum/my-first-english-international-category/my-first-english-international-forum/\";s:8:\"referrer\";s:117:\"http://en.wordpressorg.dev/forums/forum/my-first-english-international-category/my-first-english-international-forum/\";s:10:\"user_agent\";s:107:\"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2209.0 Safari/537.36\";s:7:\"user_ID\";i:1;s:7:\"user_ip\";s:12:\"192.168.50.1\";s:9:\"user_role\";s:39:\"administrator,bbp_keymaster,super_admin\";s:4:\"blog\";s:26:\"http://en.wordpressorg.dev\";s:12:\"blog_charset\";s:5:\"UTF-8\";s:9:\"blog_lang\";s:5:\"en_US\";s:20:\"POST_bbp_topic_title\";s:36:\"My first English International Topic\";s:22:\"POST_bbp_topic_content\";s:36:\"My first English International Topic\";s:19:\"POST_bbp_topic_tags\";s:9:\"topic, en\";s:20:\"POST_bbp_stick_topic\";s:7:\"unstick\";s:27:\"POST_bbp_topic_subscription\";s:13:\"bbp_subscribe\";s:21:\"POST_bbp_topic_submit\";s:0:\"\";s:17:\"POST_bbp_forum_id\";s:2:\"28\";s:11:\"POST_action\";s:13:\"bbp-new-topic\";s:31:\"POST__bbp_unfiltered_html_topic\";s:10:\"9e397e8e09\";s:13:\"POST__wpnonce\";s:10:\"2e2eec6a8c\";s:21:\"POST__wp_http_referer\";s:91:\"/forums/forum/my-first-english-international-category/my-first-english-international-forum/\";s:15:\"SERVER_SOFTWARE\";s:11:\"nginx/1.6.2\";s:11:\"REQUEST_URI\";s:91:\"/forums/forum/my-first-english-international-category/my-first-english-international-forum/\";s:4:\"USER\";s:8:\"www-data\";s:4:\"HOME\";s:8:\"/var/www\";s:9:\"FCGI_ROLE\";s:9:\"RESPONDER\";s:12:\"QUERY_STRING\";s:0:\"\";s:14:\"REQUEST_METHOD\";s:4:\"POST\";s:12:\"CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:14:\"CONTENT_LENGTH\";s:3:\"427\";s:11:\"SCRIPT_NAME\";s:10:\"/index.php\";s:12:\"DOCUMENT_URI\";s:10:\"/index.php\";s:13:\"DOCUMENT_ROOT\";s:42:\"/srv/www/global.wordpressorg.dev/wordpress\";s:15:\"SERVER_PROTOCOL\";s:8:\"HTTP/1.1\";s:17:\"GATEWAY_INTERFACE\";s:7:\"CGI/1.1\";s:11:\"REMOTE_ADDR\";s:12:\"192.168.50.1\";s:11:\"REMOTE_PORT\";s:5:\"63107\";s:11:\"SERVER_ADDR\";s:13:\"192.168.50.15\";s:11:\"SERVER_PORT\";s:2:\"80\";s:11:\"SERVER_NAME\";s:37:\"~^(global|en|es|ja).wordpressorg.dev$\";s:15:\"REDIRECT_STATUS\";s:3:\"200\";s:15:\"SCRIPT_FILENAME\";s:52:\"/srv/www/global.wordpressorg.dev/wordpress/index.php\";s:9:\"HTTP_HOST\";s:19:\"en.wordpressorg.dev\";s:15:\"HTTP_CONNECTION\";s:10:\"keep-alive\";s:19:\"HTTP_CONTENT_LENGTH\";s:3:\"427\";s:18:\"HTTP_CACHE_CONTROL\";s:9:\"max-age=0\";s:11:\"HTTP_ACCEPT\";s:74:\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\";s:11:\"HTTP_ORIGIN\";s:26:\"http://en.wordpressorg.dev\";s:15:\"HTTP_USER_AGENT\";s:107:\"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2209.0 Safari/537.36\";s:17:\"HTTP_CONTENT_TYPE\";s:33:\"application/x-www-form-urlencoded\";s:8:\"HTTP_DNT\";s:1:\"1\";s:12:\"HTTP_REFERER\";s:117:\"http://en.wordpressorg.dev/forums/forum/my-first-english-international-category/my-first-english-international-forum/\";s:20:\"HTTP_ACCEPT_ENCODING\";s:13:\"gzip, deflate\";s:20:\"HTTP_ACCEPT_LANGUAGE\";s:26:\"en-GB,en-US;q=0.8,en;q=0.6\";s:11:\"HTTP_COOKIE\";s:0:\"\";s:8:\"PHP_SELF\";s:10:\"/index.php\";s:18:\"REQUEST_TIME_FLOAT\";s:15:\"1415352049.1543\";s:12:\"REQUEST_TIME\";s:10:\"1415352049\";}'), (113,35,'_bbp_forum_id','28'), (114,35,'_bbp_topic_id','35'), (115,35,'_bbp_author_ip','192.168.50.1'), (116,35,'_bbp_last_reply_id','0'), (117,35,'_bbp_last_active_id','35'), (118,35,'_bbp_last_active_time','2014-11-07 03:20:50'), (119,35,'_bbp_reply_count','0'), (120,35,'_bbp_reply_count_hidden','0'), (121,35,'_bbp_voice_count','1'), (122,28,'_bbp_last_topic_id','35'), (123,28,'_bbp_last_reply_id','35'), (124,28,'_bbp_last_active_id','35'), (125,26,'_bbp_last_topic_id','35'), (126,26,'_bbp_last_reply_id','35'), (127,26,'_bbp_last_active_id','35'); /*!40000 ALTER TABLE `wporg_39_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_39_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_39_posts`; CREATE TABLE `wporg_39_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_39_posts` WRITE; /*!40000 ALTER TABLE `wporg_39_posts` DISABLE KEYS */; INSERT INTO `wporg_39_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,'2014-07-08 01:26:07','2014-07-08 01:26:07','Welcome to global.wordpressorg.dev Sites. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-07-08 01:26:07','2014-07-08 01:26:07','',0,'http://en.global.wordpressorg.dev/?p=1',0,'post','',1), (5,1,'2014-07-08 13:31:46','2014-07-08 18:31:46','This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.','About','','publish','open','open','','about','','','2014-07-08 13:31:46','2014-07-08 18:31:46','',0,'http://en.wordpressorg.dev/?page_id=5',0,'page','',0), (6,1,'2014-07-08 13:31:55','2014-07-08 18:31:55','The contents of this page are filled automatically, you don\'t need to spend time here. Just change the title.','Contact','','publish','open','open','','contact','','','2014-07-08 13:31:55','2014-07-08 18:31:55','',0,'http://en.wordpressorg.dev/?page_id=6',0,'page','',0), (7,1,'2014-07-08 13:32:02','2014-07-08 18:32:02','Please, neither delete this page, nor change its slug!\r\n\r\nHere you can say a few words about the current version and explain all the download choices on the right.','Download','','publish','open','open','','download','','','2014-07-08 13:32:02','2014-07-08 18:32:02','',0,'http://en.wordpressorg.dev/?page_id=7',0,'page','',0), (8,1,'2014-07-08 13:32:08','2014-07-08 18:32:08','Please, neither delete this page, nor change its slug!\r\n\r\nThe place for installation instructions. Except from telling them how to install the ready WordPress package it is usually worth to explain how to inject the mo file in already existent installation.','Install','','publish','open','open','','install','','','2014-07-08 13:32:08','2014-07-08 18:32:08','',0,'http://en.wordpressorg.dev/?page_id=8',0,'page','',0), (9,1,'2014-07-08 13:32:15','2014-07-08 18:32:15','Please, neither delete this page, nor change its slug!\r\n\r\nThe contents of this page are filled automatically, you don\'t need to spend time here. Just change the title.','Releases','','publish','open','open','','releases','','','2014-07-08 13:32:15','2014-07-08 18:32:15','',0,'http://en.wordpressorg.dev/?page_id=9',0,'page','',0), (10,1,'2014-07-08 13:32:32','2014-07-08 18:32:32','Please, neither delete this page, nor change its slug!\r\n\r\nYour welcome message, some words about WordPress. Here is a sample:\r\n\r\nWordPress is a state-of-the-art semantic personal publishing platform with a focus on aesthetics, web standards, and usability. WordPress is both free and priceless at the same time.\r\n\r\nMore simply, WordPress is what you use when you want to work with your blogging software, not fight it.','Welcome','','publish','open','open','','welcome','','','2014-07-08 13:32:32','2014-07-08 18:32:32','',0,'http://en.wordpressorg.dev/?page_id=10',0,'page','',0), (11,1,'2014-07-08 13:31:46','2014-07-08 18:31:46','This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.','About','','inherit','open','open','','5-revision-v1','','','2014-07-08 13:31:46','2014-07-08 18:31:46','',5,'http://en.wordpressorg.dev/2014/07/08/5-revision-v1/',0,'revision','',0), (12,1,'2014-07-08 13:31:55','2014-07-08 18:31:55','The contents of this page are filled automatically, you don\'t need to spend time here. Just change the title.','Contact','','inherit','open','open','','6-revision-v1','','','2014-07-08 13:31:55','2014-07-08 18:31:55','',6,'http://en.wordpressorg.dev/2014/07/08/6-revision-v1/',0,'revision','',0), (13,1,'2014-07-08 13:32:02','2014-07-08 18:32:02','Please, neither delete this page, nor change its slug!\r\n\r\nHere you can say a few words about the current version and explain all the download choices on the right.','Download','','inherit','open','open','','7-revision-v1','','','2014-07-08 13:32:02','2014-07-08 18:32:02','',7,'http://en.wordpressorg.dev/2014/07/08/7-revision-v1/',0,'revision','',0), (14,1,'2014-07-08 13:32:08','2014-07-08 18:32:08','Please, neither delete this page, nor change its slug!\r\n\r\nThe place for installation instructions. Except from telling them how to install the ready WordPress package it is usually worth to explain how to inject the mo file in already existent installation.','Install','','inherit','open','open','','8-revision-v1','','','2014-07-08 13:32:08','2014-07-08 18:32:08','',8,'http://en.wordpressorg.dev/2014/07/08/8-revision-v1/',0,'revision','',0), (15,1,'2014-07-08 13:32:15','2014-07-08 18:32:15','Please, neither delete this page, nor change its slug!\r\n\r\nThe contents of this page are filled automatically, you don\'t need to spend time here. Just change the title.','Releases','','inherit','open','open','','9-revision-v1','','','2014-07-08 13:32:15','2014-07-08 18:32:15','',9,'http://en.wordpressorg.dev/2014/07/08/9-revision-v1/',0,'revision','',0), (16,1,'2014-07-08 13:32:32','2014-07-08 18:32:32','Please, neither delete this page, nor change its slug!\r\n\r\nYour welcome message, some words about WordPress. Here is a sample:\r\n\r\nWordPress is a state-of-the-art semantic personal publishing platform with a focus on aesthetics, web standards, and usability. WordPress is both free and priceless at the same time.\r\n\r\nMore simply, WordPress is what you use when you want to work with your blogging software, not fight it.','Welcome','','inherit','open','open','','10-revision-v1','','','2014-07-08 13:32:32','2014-07-08 18:32:32','',10,'http://en.wordpressorg.dev/2014/07/08/10-revision-v1/',0,'revision','',0), (17,1,'2014-07-08 13:33:04','0000-00-00 00:00:00','','Home','','draft','open','open','','','','','2014-07-08 13:33:04','0000-00-00 00:00:00','',0,'http://en.wordpressorg.dev/?p=17',1,'nav_menu_item','',0), (18,1,'2014-07-08 13:33:04','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2014-07-08 13:33:04','0000-00-00 00:00:00','',0,'http://en.wordpressorg.dev/?p=18',1,'nav_menu_item','',0), (19,1,'2014-07-08 13:33:04','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2014-07-08 13:33:04','0000-00-00 00:00:00','',0,'http://en.wordpressorg.dev/?p=19',1,'nav_menu_item','',0), (20,1,'2014-07-08 13:33:04','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2014-07-08 13:33:04','0000-00-00 00:00:00','',0,'http://en.wordpressorg.dev/?p=20',1,'nav_menu_item','',0), (21,1,'2014-07-08 13:33:04','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2014-07-08 13:33:04','0000-00-00 00:00:00','',0,'http://en.wordpressorg.dev/?p=21',1,'nav_menu_item','',0), (22,1,'2014-07-08 13:33:04','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2014-07-08 13:33:04','0000-00-00 00:00:00','',0,'http://en.wordpressorg.dev/?p=22',1,'nav_menu_item','',0), (23,1,'2014-07-08 13:33:04','0000-00-00 00:00:00',' ','','','draft','open','open','','','','','2014-07-08 13:33:04','0000-00-00 00:00:00','',0,'http://en.wordpressorg.dev/?p=23',1,'nav_menu_item','',0), (26,1,'2014-11-07 01:58:39','2014-11-07 07:58:39','My first English International Category','My first English International Category','','publish','closed','open','','my-first-english-international-category','','','2014-11-07 01:58:39','2014-11-07 07:58:39','',0,'http://en.wordpressorg.dev/?post_type=forum&p=26',0,'forum','',0), (27,1,'2014-11-07 01:58:39','2014-11-07 07:58:39','My first English International Category','My first English International Category','','inherit','open','open','','26-revision-v1','','','2014-11-07 01:58:39','2014-11-07 07:58:39','',26,'http://en.wordpressorg.dev/2014/11/07/26-revision-v1/',0,'revision','',0), (28,1,'2014-11-07 01:58:56','2014-11-07 07:58:56','My first English International Forum','My first English International Forum','','publish','closed','open','','my-first-english-international-forum','','','2014-11-07 01:58:56','2014-11-07 07:58:56','',26,'http://en.wordpressorg.dev/?post_type=forum&p=28',0,'forum','',0), (29,1,'2014-11-07 01:58:56','2014-11-07 07:58:56','My first English International Forum','My first English International Forum','','inherit','open','open','','28-revision-v1','','','2014-11-07 01:58:56','2014-11-07 07:58:56','',28,'http://en.wordpressorg.dev/2014/11/07/28-revision-v1/',0,'revision','',0), (30,1,'2014-11-07 03:09:22','2014-11-07 09:09:22','[bbp-topic-form]','Create New Topic','','publish','closed','closed','','new-topic','','','2014-11-07 03:09:22','2014-11-07 09:09:22','',0,'http://en.wordpressorg.dev/?page_id=30',0,'page','',0), (31,1,'2014-11-07 03:09:22','2014-11-07 09:09:22','[bbp-topic-form]','Create New Topic','','inherit','open','open','','30-revision-v1','','','2014-11-07 03:09:22','2014-11-07 09:09:22','',30,'http://en.wordpressorg.dev/2014/11/07/30-revision-v1/',0,'revision','',0), (32,1,'2014-11-07 03:11:11','2014-11-07 09:11:11','','Forums','','publish','open','open','','forums','','','2014-11-07 03:11:21','2014-11-07 09:11:21','',0,'http://en.wordpressorg.dev/?page_id=32',0,'page','',0), (33,1,'2014-11-07 03:11:07','2014-11-07 09:11:07','','Forums','','inherit','open','open','','32-revision-v1','','','2014-11-07 03:11:07','2014-11-07 09:11:07','',32,'http://en.wordpressorg.dev/2014/11/07/32-revision-v1/',0,'revision','',0), (34,1,'2014-11-07 03:11:26','2014-11-07 09:11:26','','Forums','','inherit','open','open','','32-autosave-v1','','','2014-11-07 03:11:26','2014-11-07 09:11:26','',32,'http://en.wordpressorg.dev/2014/11/07/32-autosave-v1/',0,'revision','',0), (35,1,'2014-11-07 03:20:50','2014-11-07 09:20:50','My first English International Topic','My first English International Topic','','publish','closed','open','','my-first-english-international-topic','','','2014-11-07 03:20:50','2014-11-07 09:20:50','',28,'http://en.wordpressorg.dev/forums/topic/my-first-english-international-topic/',0,'topic','',0); /*!40000 ALTER TABLE `wporg_39_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_39_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_39_term_relationships`; CREATE TABLE `wporg_39_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_39_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_39_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_39_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0), (35,2,0), (35,3,0); /*!40000 ALTER TABLE `wporg_39_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_39_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_39_term_taxonomy`; CREATE TABLE `wporg_39_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_39_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_39_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_39_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1), (2,2,'topic-tag','',0,1), (3,3,'topic-tag','',0,1); /*!40000 ALTER TABLE `wporg_39_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_39_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_39_termmeta`; CREATE TABLE `wporg_39_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_39_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_39_terms`; CREATE TABLE `wporg_39_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_39_terms` WRITE; /*!40000 ALTER TABLE `wporg_39_terms` DISABLE KEYS */; INSERT INTO `wporg_39_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0), (2,'topic','topic',0), (3,'en','en',0); /*!40000 ALTER TABLE `wporg_39_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_4_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_4_commentmeta`; CREATE TABLE `wporg_4_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_4_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_4_comments`; CREATE TABLE `wporg_4_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_4_comments` WRITE; /*!40000 ALTER TABLE `wporg_4_comments` DISABLE KEYS */; INSERT INTO `wporg_4_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,'Mr WordPress','','http://wordpressorg.dev/','','2014-12-08 21:47:04','2014-12-08 21:47:04','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_4_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_4_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_4_links`; CREATE TABLE `wporg_4_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_4_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_4_options`; CREATE TABLE `wporg_4_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_4_options` WRITE; /*!40000 ALTER TABLE `wporg_4_options` DISABLE KEYS */; INSERT INTO `wporg_4_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/','yes'), (2,'home','http://make.wordpressorg.dev/','yes'), (3,'blogname','Make','yes'), (4,'blogdescription','Just another WordPressorg.dev Sites site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','pub/wporg-makehome','yes'), (42,'stylesheet','pub/wporg-makehome','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_4_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"orphaned_widgets_1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (95,'rewrite_rules','a:90:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=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:16:\".*wp-signup.php$\";s:21:\"index.php?signup=true\";s:18:\".*wp-activate.php$\";s:23:\"index.php?activate=true\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:6:{i:1461900729;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461916320;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1461923438;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1461923444;a:1:{s:21:\"update_network_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1461966429;a:1:{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:7:\"version\";i:2;}','yes'), (110,'_transient_random_seed','bf5d7f6327020aca1e7e950a995abc4f','yes'), (116,'_transient_is_multi_author','0','yes'), (117,'_transient_twentyfifteen_categories','1','yes'), (118,'allowedthemes','a:1:{s:18:\"pub/wporg-makehome\";b:1;}','yes'), (119,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080033;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (120,'template_root','/themes','yes'), (121,'stylesheet_root','/themes','yes'), (122,'current_theme','Make','yes'), (123,'theme_mods_pub/wporg-makehome','a:1:{i:0;b:0;}','yes'), (124,'theme_switched','','yes'), (125,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (126,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (127,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (128,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (130,'finished_splitting_shared_terms','0','yes'), (131,'site_icon','0','yes'), (132,'medium_large_size_w','768','yes'), (133,'medium_large_size_h','0','yes'), (134,'db_upgraded','','yes'); /*!40000 ALTER TABLE `wporg_4_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_4_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_4_postmeta`; CREATE TABLE `wporg_4_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_4_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_4_postmeta` DISABLE KEYS */; INSERT INTO `wporg_4_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_4_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_4_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_4_posts`; CREATE TABLE `wporg_4_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_4_posts` WRITE; /*!40000 ALTER TABLE `wporg_4_posts` DISABLE KEYS */; INSERT INTO `wporg_4_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,'2014-12-08 21:47:04','2014-12-08 21:47:04','Welcome to WordPressorg.dev Sites. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 21:47:04','2014-12-08 21:47:04','',0,'http://wordpressorg.dev/make/?p=1',0,'post','',1), (2,1,'2014-12-08 21:47:04','2014-12-08 21:47:04','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:\n\n
    Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
    \n\n...or something like this:\n\n
    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.
    \n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 21:47:04','2014-12-08 21:47:04','',0,'http://wordpressorg.dev/make/?page_id=2',0,'page','',0), (3,1,'2014-12-08 21:47:09','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 21:47:09','0000-00-00 00:00:00','',0,'http://wordpressorg.dev/make/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_4_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_4_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_4_term_relationships`; CREATE TABLE `wporg_4_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_4_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_4_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_4_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_4_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_4_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_4_term_taxonomy`; CREATE TABLE `wporg_4_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_4_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_4_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_4_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_4_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_4_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_4_termmeta`; CREATE TABLE `wporg_4_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_4_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_4_terms`; CREATE TABLE `wporg_4_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_4_terms` WRITE; /*!40000 ALTER TABLE `wporg_4_terms` DISABLE KEYS */; INSERT INTO `wporg_4_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_4_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_419_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_419_posts`; CREATE TABLE `wporg_419_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_419_posts` WRITE; /*!40000 ALTER TABLE `wporg_419_posts` DISABLE KEYS */; INSERT INTO `wporg_419_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,3,'2017-03-25 00:00:00','2017-03-25 00:00:00','This is a test post','Test post','','publish','open','open','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'',0,'post','',0), (2,2,'2017-03-27 00:00:00','2017-03-27 00:00:00','Another test','Another test','','publish','open','open','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'',0,'post','',0), (3,3,'2017-04-10 08:15:00','2017-04-10 08:15:00','Super negative review yo','last one','','publish','open','open','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00','',0,'',0,'post','',0); /*!40000 ALTER TABLE `wporg_419_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_42_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_42_commentmeta`; CREATE TABLE `wporg_42_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_42_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_42_comments`; CREATE TABLE `wporg_42_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_42_comments` WRITE; /*!40000 ALTER TABLE `wporg_42_comments` DISABLE KEYS */; INSERT INTO `wporg_42_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,'Mr WordPress','','http://global.wordpressorg.dev/','','2014-11-07 04:40:50','2014-11-07 04:40:50','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_42_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_42_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_42_links`; CREATE TABLE `wporg_42_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_42_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_42_options`; CREATE TABLE `wporg_42_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_42_options` WRITE; /*!40000 ALTER TABLE `wporg_42_options` DISABLE KEYS */; INSERT INTO `wporg_42_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://ja.wordpressorg.dev/','yes'), (2,'home','http://ja.wordpressorg.dev/','yes'), (3,'blogname','日本語','yes'), (4,'blogdescription','Just another global.wordpressorg.dev Sites site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','rosetta','yes'), (42,'stylesheet','rosetta','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wp_4_user_roles','a:6:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_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:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"edit_theme_options\";b:1;s:10:\"list_users\";b:1;s:13:\"promote_users\";b:1;s:12:\"remove_users\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:9:\"validator\";a:2:{s:4:\"name\";s:9:\"Validator\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"orphaned_widgets_1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'jetpack_options','a:4:{s:7:\"version\";s:14:\"3.2:1415335463\";s:11:\"old_version\";s:14:\"3.2:1415335463\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:2;}','yes'), (98,'cron','a:5:{i:1461900722;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461901463;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1461905274;a:1:{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;}}}i:1461923109;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;}}}s:7:\"version\";i:2;}','yes'), (99,'rewrite_rules','a:71:{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: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: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:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s: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: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: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: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:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (103,'_transient_random_seed','5ebb9ab448b54f507a1bda9528b58a0d','yes'), (104,'jetpack_activated','2','yes'), (132,'post_count','3','yes'), (134,'_transient_twentyfifteen_categories','1','yes'), (136,'blog_upload_space','','yes'), (137,'theme_mods_rosetta','a:1:{s:18:\"nav_menu_locations\";a:1:{s:12:\"rosetta_main\";i:2;}}','yes'), (138,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'), (139,'category_children','a:0:{}','yes'), (143,'recently_activated','a:0:{}','yes'), (161,'_transient_is_multi_author','0','yes'), (162,'_transient_twentyfourteen_category_count','1','yes'), (163,'template_root','/themes','yes'), (164,'stylesheet_root','/themes','yes'), (165,'current_theme','Rosetta','yes'), (166,'theme_mods_twentyfifteen','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418171390;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (167,'theme_switched','','yes'), (168,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (169,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (170,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (171,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (173,'finished_splitting_shared_terms','0','yes'), (174,'site_icon','0','yes'), (175,'medium_large_size_w','768','yes'), (176,'medium_large_size_h','0','yes'), (177,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_42_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_42_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_42_postmeta`; CREATE TABLE `wporg_42_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_42_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_42_postmeta` DISABLE KEYS */; INSERT INTO `wporg_42_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'), (2,4,'_edit_lock','1416650158:1'), (3,4,'_edit_last','1'), (4,4,'_rosetta_showcase_url','https://dev.mozilla.jp/'), (5,5,'_edit_lock','1416650070:1'), (6,5,'_edit_last','1'), (7,5,'_rosetta_showcase_url','http://jp.techcrunch.com/'), (8,6,'_edit_lock','1416650113:1'), (9,6,'_edit_last','1'), (10,6,'_rosetta_showcase_url','http://www.kurashi-no-techo.co.jp/'), (11,7,'_edit_last','1'), (12,7,'_rosetta_showcase_url','http://info.cookpad.com/'), (13,7,'_edit_lock','1416650129:1'), (14,8,'_edit_lock','1416650354:1'), (15,8,'_edit_last','1'), (16,8,'_wp_page_template','contact.php'), (17,10,'_menu_item_type','post_type'), (18,10,'_menu_item_menu_item_parent','0'), (19,10,'_menu_item_object_id','8'), (20,10,'_menu_item_object','page'), (21,10,'_menu_item_target',''), (22,10,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (23,10,'_menu_item_xfn',''), (24,10,'_menu_item_url',''), (26,11,'_edit_lock','1416650738:1'), (27,11,'_edit_last','1'), (28,11,'_wp_page_template','default'), (29,15,'_edit_lock','1416650983:1'), (30,15,'_edit_last','1'), (31,15,'_wp_page_template','default'), (32,17,'_edit_lock','1416651221:1'), (33,17,'_edit_last','1'), (36,19,'_edit_lock','1416651305:1'), (37,19,'_edit_last','1'), (39,19,'_encloseme','1'), (40,17,'enclosure','https://s.w.org/images/core/4.0/embed.mp4?_=1\n3521313\nvideo/mp4\n'), (41,17,'enclosure','https://s.w.org/images/core/4.0/focus.mp4?_=2\n5181557\nvideo/mp4\n'); /*!40000 ALTER TABLE `wporg_42_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_42_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_42_posts`; CREATE TABLE `wporg_42_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_42_posts` WRITE; /*!40000 ALTER TABLE `wporg_42_posts` DISABLE KEYS */; INSERT INTO `wporg_42_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,'2014-11-07 04:40:50','2014-11-07 04:40:50','Welcome to global.wordpressorg.dev Sites. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-11-07 04:40:50','2014-11-07 04:40:50','',0,'http://lol.global.wordpressorg.dev/?p=1',0,'post','',1), (2,1,'2014-11-07 04:40:50','2014-11-07 04:40:50','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:\n\n
    Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
    \n\n...or something like this:\n\n
    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.
    \n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-11-07 04:40:50','2014-11-07 04:40:50','',0,'http://lol.global.wordpressorg.dev/?page_id=2',0,'page','',0), (4,1,'2014-11-22 09:47:22','2014-11-22 09:47:22','','Mozilla 関連の開発者&利用者のための知識・アイディア共有サイト','','publish','closed','closed','','mozilla-%e9%96%a2%e9%80%a3%e3%81%ae%e9%96%8b%e7%99%ba%e8%80%85%ef%bc%86%e5%88%a9%e7%94%a8%e8%80%85%e3%81%ae%e3%81%9f%e3%82%81%e3%81%ae%e7%9f%a5%e8%ad%98%e3%83%bb%e3%82%a2%e3%82%a4%e3%83%87%e3%82%a3','','','2014-11-22 09:58:20','2014-11-22 09:58:20','',0,'http://ja.wordpressorg.dev/?post_type=showcase&p=4',0,'showcase','',0), (5,1,'2014-11-22 09:55:35','2014-11-22 09:55:35','','IT ベンチャー企業や新サービスを毎日紹介する人気ブログ、TechCrunch の日本語版','','publish','closed','closed','','it-%e3%83%99%e3%83%b3%e3%83%81%e3%83%a3%e3%83%bc%e4%bc%81%e6%a5%ad%e3%82%84%e6%96%b0%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9%e3%82%92%e6%af%8e%e6%97%a5%e7%b4%b9%e4%bb%8b%e3%81%99%e3%82%8b%e4%ba%ba','','','2014-11-22 09:55:35','2014-11-22 09:55:35','',0,'http://ja.wordpressorg.dev/?post_type=showcase&p=5',0,'showcase','',0), (6,1,'2014-11-22 09:57:29','2014-11-22 09:57:29','','雑誌「暮しの手帖」を出版している暮しの手帖社の公式サイト','','publish','closed','closed','','%e9%9b%91%e8%aa%8c%e3%80%8c%e6%9a%ae%e3%81%97%e3%81%ae%e6%89%8b%e5%b8%96%e3%80%8d%e3%82%92%e5%87%ba%e7%89%88%e3%81%97%e3%81%a6%e3%81%84%e3%82%8b%e6%9a%ae%e3%81%97%e3%81%ae%e6%89%8b%e5%b8%96%e7%a4%be','','','2014-11-22 09:57:29','2014-11-22 09:57:29','',0,'http://ja.wordpressorg.dev/?post_type=showcase&p=6',0,'showcase','',0), (7,1,'2014-11-22 09:57:51','2014-11-22 09:57:51','','レシピサイト「クックパッド」などを運営するクックパッド株式会社の企業サイト','','publish','closed','closed','','%e3%83%ac%e3%82%b7%e3%83%94%e3%82%b5%e3%82%a4%e3%83%88%e3%80%8c%e3%82%af%e3%83%83%e3%82%af%e3%83%91%e3%83%83%e3%83%89%e3%80%8d%e3%81%aa%e3%81%a9%e3%82%92%e9%81%8b%e5%96%b6%e3%81%99%e3%82%8b%e3%82%af','','','2014-11-22 09:57:51','2014-11-22 09:57:51','',0,'http://ja.wordpressorg.dev/?post_type=showcase&p=7',0,'showcase','',0), (8,1,'2014-11-22 10:01:29','2014-11-22 10:01:29','The contents of this page are filled automatically, you don\'t need to spend time here. Just change the title.','お問い合わせ','','publish','open','open','','contact','','','2014-11-22 10:01:29','2014-11-22 10:01:29','',0,'http://ja.wordpressorg.dev/?page_id=8',0,'page','',0), (9,1,'2014-11-22 10:01:29','2014-11-22 10:01:29','The contents of this page are filled automatically, you don\'t need to spend time here. Just change the title.','お問い合わせ','','inherit','open','open','','8-revision-v1','','','2014-11-22 10:01:29','2014-11-22 10:01:29','',8,'http://ja.wordpressorg.dev/2014/11/22/8-revision-v1/',0,'revision','',0), (10,1,'2014-11-22 10:02:47','2014-11-22 10:02:47',' ','','','publish','open','open','','10','','','2014-11-22 10:02:47','2014-11-22 10:02:47','',0,'http://ja.wordpressorg.dev/?p=10',1,'nav_menu_item','',0), (11,1,'2014-11-22 10:06:05','2014-11-22 10:06:05','[Q] ja.wordpress.org とは何ですか?\r\n[A] WordPress の公式サイトである WordPress.org は、これまで英語を中心とした情報提供を行ってきましたが、新たに英語以外の各言語に対応する公式ローカルサイトの立ち上げが提案され、一部で試験的な取り組みが始められました。 ja.wordpress.org はそのうちのひとつで、日本語による情報の提供を行っています。\r\n\r\n[Q] 誰がこのサイトを管理しているのですか?\r\n[A] WordPress.org の公式ローカルサイト立ち上げの取り組みに賛同して集まった有志※が管理・運営にあたっています。\r\n※日本語ローカルサイト運営チーム\r\n\r\n[Q] ja.wordpress.org は日本の WordPress ユーザ会ですか? また、運営チームはその事務局ですか?\r\n[A] ja.wordpress.org は日本の WordPress ユーザ会ではありません。運営チームは公式ローカルサイトのひとつである、ja.wordpress.org の管理事務にたずさわるものであり、組織・団体として日本のユーザを代表する機関ではありません。\r\n\r\n[Q] このサイトは、WordPress Japan (2008年3月にて閉鎖) に置き換わるものですか? または派生・分裂したものですか?\r\n[A] どちらでもありません。このサイトは WordPress.org の公式ローカルサイト立ち上げの取り組みにあわせて新たに作られたものです。\r\n\r\n[Q] 私にも何か手伝えることはありますか?\r\n[A] ありがとうございます!WordPress への協力についてまとめたページを読んで、ぜひ WordPress コミュニティに参加してください。\r\n\r\n[Q] サイト内の記述に誤りを見つけました。どこへ知らせれば良いですか?\r\n[A] フォーラムの バグ報告と提案トピックまでお願いします。または、お問い合わせフォームをご利用ください。\r\n\r\n[Q] 自分のサイトで WordPress という名前をドメインに使っても良いのでしょうか?\r\n[A] トップレベルドメインの一部に WordPress を含めることはできませんが、サブドメインとしてならかまいません。詳しくはドメインポリシーをご覧ください。\r\n\r\n[Q] WordPress のロゴをサイトや印刷物に使いたいのですが。\r\n[A] 公式ロゴページからダウンロードしてお使いください。ただし、グッズの作成などはできません。\r\n\r\n[Q] WordPress のライセンスはどうなっていますか?\r\n[A] WordPress が採用しているライセンスは GPL です。当サイトで配布している WordPress 日本語版や、その中に同梱されているテーマ/プラグインも GPL に準拠しています。\r\n\r\n[Q] WordPress.org のテーマディレクトリプラグインディレクトリにテーマ/プラグインを掲載するには?\r\n[A] テーマ、プラグインともに GPL 互換ライセンス(原文日本語訳)を採用している必要があります。そのほかにも条件がありますので、以下のページをよく確認の上掲載申し込みをしてください(※リンク先は英語となります)。\r\n» テーマディレクトリへの掲載\r\n» プラグインディレクトリへの掲載','このサイトについて','','publish','open','open','','faq','','','2014-11-22 10:08:00','2014-11-22 10:08:00','',0,'http://ja.wordpressorg.dev/?page_id=11',0,'page','',0), (12,1,'2014-11-22 10:06:05','2014-11-22 10:06:05','

    このサイトについて

    \r\n[Q] ja.wordpress.org とは何ですか?\r\n[A] WordPress の公式サイトである WordPress.org は、これまで英語を中心とした情報提供を行ってきましたが、新たに英語以外の各言語に対応する公式ローカルサイトの立ち上げが提案され、一部で試験的な取り組みが始められました。 ja.wordpress.org はそのうちのひとつで、日本語による情報の提供を行っています。\r\n\r\n[Q] 誰がこのサイトを管理しているのですか?\r\n[A] WordPress.org の公式ローカルサイト立ち上げの取り組みに賛同して集まった有志※が管理・運営にあたっています。\r\n※日本語ローカルサイト運営チーム\r\n\r\n[Q] ja.wordpress.org は日本の WordPress ユーザ会ですか? また、運営チームはその事務局ですか?\r\n[A] ja.wordpress.org は日本の WordPress ユーザ会ではありません。運営チームは公式ローカルサイトのひとつである、ja.wordpress.org の管理事務にたずさわるものであり、組織・団体として日本のユーザを代表する機関ではありません。\r\n\r\n[Q] このサイトは、WordPress Japan (2008年3月にて閉鎖) に置き換わるものですか? または派生・分裂したものですか?\r\n[A] どちらでもありません。このサイトは WordPress.org の公式ローカルサイト立ち上げの取り組みにあわせて新たに作られたものです。\r\n\r\n[Q] 私にも何か手伝えることはありますか?\r\n[A] ありがとうございます!WordPress への協力についてまとめたページを読んで、ぜひ WordPress コミュニティに参加してください。\r\n\r\n[Q] サイト内の記述に誤りを見つけました。どこへ知らせれば良いですか?\r\n[A] フォーラムの バグ報告と提案トピックまでお願いします。または、お問い合わせフォームをご利用ください。\r\n\r\n[Q] 自分のサイトで WordPress という名前をドメインに使っても良いのでしょうか?\r\n[A] トップレベルドメインの一部に WordPress を含めることはできませんが、サブドメインとしてならかまいません。詳しくはドメインポリシーをご覧ください。\r\n\r\n[Q] WordPress のロゴをサイトや印刷物に使いたいのですが。\r\n[A] 公式ロゴページからダウンロードしてお使いください。ただし、グッズの作成などはできません。\r\n\r\n[Q] WordPress のライセンスはどうなっていますか?\r\n[A] WordPress が採用しているライセンスは GPL です。当サイトで配布している WordPress 日本語版や、その中に同梱されているテーマ/プラグインも GPL に準拠しています。\r\n\r\n[Q] WordPress.org のテーマディレクトリプラグインディレクトリにテーマ/プラグインを掲載するには?\r\n[A] テーマ、プラグインともに GPL 互換ライセンス(原文日本語訳)を採用している必要があります。そのほかにも条件がありますので、以下のページをよく確認の上掲載申し込みをしてください(※リンク先は英語となります)。\r\n» テーマディレクトリへの掲載\r\n» プラグインディレクトリへの掲載','このサイトについて','','inherit','open','open','','11-revision-v1','','','2014-11-22 10:06:05','2014-11-22 10:06:05','',11,'http://ja.wordpressorg.dev/2014/11/22/11-revision-v1/',0,'revision','',0), (13,1,'2014-11-22 10:07:15','2014-11-22 10:07:15','

    [Q] ja.wordpress.org とは何ですか?

    \r\n[A] WordPress の公式サイトである WordPress.org は、これまで英語を中心とした情報提供を行ってきましたが、新たに英語以外の各言語に対応する公式ローカルサイトの立ち上げが提案され、一部で試験的な取り組みが始められました。 ja.wordpress.org はそのうちのひとつで、日本語による情報の提供を行っています。\r\n\r\n[Q] 誰がこのサイトを管理しているのですか?\r\n[A] WordPress.org の公式ローカルサイト立ち上げの取り組みに賛同して集まった有志※が管理・運営にあたっています。\r\n※日本語ローカルサイト運営チーム\r\n\r\n[Q] ja.wordpress.org は日本の WordPress ユーザ会ですか? また、運営チームはその事務局ですか?\r\n[A] ja.wordpress.org は日本の WordPress ユーザ会ではありません。運営チームは公式ローカルサイトのひとつである、ja.wordpress.org の管理事務にたずさわるものであり、組織・団体として日本のユーザを代表する機関ではありません。\r\n\r\n[Q] このサイトは、WordPress Japan (2008年3月にて閉鎖) に置き換わるものですか? または派生・分裂したものですか?\r\n[A] どちらでもありません。このサイトは WordPress.org の公式ローカルサイト立ち上げの取り組みにあわせて新たに作られたものです。\r\n\r\n[Q] 私にも何か手伝えることはありますか?\r\n[A] ありがとうございます!WordPress への協力についてまとめたページを読んで、ぜひ WordPress コミュニティに参加してください。\r\n\r\n[Q] サイト内の記述に誤りを見つけました。どこへ知らせれば良いですか?\r\n[A] フォーラムの バグ報告と提案トピックまでお願いします。または、お問い合わせフォームをご利用ください。\r\n\r\n[Q] 自分のサイトで WordPress という名前をドメインに使っても良いのでしょうか?\r\n[A] トップレベルドメインの一部に WordPress を含めることはできませんが、サブドメインとしてならかまいません。詳しくはドメインポリシーをご覧ください。\r\n\r\n[Q] WordPress のロゴをサイトや印刷物に使いたいのですが。\r\n[A] 公式ロゴページからダウンロードしてお使いください。ただし、グッズの作成などはできません。\r\n\r\n[Q] WordPress のライセンスはどうなっていますか?\r\n[A] WordPress が採用しているライセンスは GPL です。当サイトで配布している WordPress 日本語版や、その中に同梱されているテーマ/プラグインも GPL に準拠しています。\r\n\r\n[Q] WordPress.org のテーマディレクトリプラグインディレクトリにテーマ/プラグインを掲載するには?\r\n[A] テーマ、プラグインともに GPL 互換ライセンス(原文日本語訳)を採用している必要があります。そのほかにも条件がありますので、以下のページをよく確認の上掲載申し込みをしてください(※リンク先は英語となります)。\r\n» テーマディレクトリへの掲載\r\n» プラグインディレクトリへの掲載','このサイトについて','','inherit','open','open','','11-revision-v1','','','2014-11-22 10:07:15','2014-11-22 10:07:15','',11,'http://ja.wordpressorg.dev/2014/11/22/11-revision-v1/',0,'revision','',0), (14,1,'2014-11-22 10:08:00','2014-11-22 10:08:00','[Q] ja.wordpress.org とは何ですか?\r\n[A] WordPress の公式サイトである WordPress.org は、これまで英語を中心とした情報提供を行ってきましたが、新たに英語以外の各言語に対応する公式ローカルサイトの立ち上げが提案され、一部で試験的な取り組みが始められました。 ja.wordpress.org はそのうちのひとつで、日本語による情報の提供を行っています。\r\n\r\n[Q] 誰がこのサイトを管理しているのですか?\r\n[A] WordPress.org の公式ローカルサイト立ち上げの取り組みに賛同して集まった有志※が管理・運営にあたっています。\r\n※日本語ローカルサイト運営チーム\r\n\r\n[Q] ja.wordpress.org は日本の WordPress ユーザ会ですか? また、運営チームはその事務局ですか?\r\n[A] ja.wordpress.org は日本の WordPress ユーザ会ではありません。運営チームは公式ローカルサイトのひとつである、ja.wordpress.org の管理事務にたずさわるものであり、組織・団体として日本のユーザを代表する機関ではありません。\r\n\r\n[Q] このサイトは、WordPress Japan (2008年3月にて閉鎖) に置き換わるものですか? または派生・分裂したものですか?\r\n[A] どちらでもありません。このサイトは WordPress.org の公式ローカルサイト立ち上げの取り組みにあわせて新たに作られたものです。\r\n\r\n[Q] 私にも何か手伝えることはありますか?\r\n[A] ありがとうございます!WordPress への協力についてまとめたページを読んで、ぜひ WordPress コミュニティに参加してください。\r\n\r\n[Q] サイト内の記述に誤りを見つけました。どこへ知らせれば良いですか?\r\n[A] フォーラムの バグ報告と提案トピックまでお願いします。または、お問い合わせフォームをご利用ください。\r\n\r\n[Q] 自分のサイトで WordPress という名前をドメインに使っても良いのでしょうか?\r\n[A] トップレベルドメインの一部に WordPress を含めることはできませんが、サブドメインとしてならかまいません。詳しくはドメインポリシーをご覧ください。\r\n\r\n[Q] WordPress のロゴをサイトや印刷物に使いたいのですが。\r\n[A] 公式ロゴページからダウンロードしてお使いください。ただし、グッズの作成などはできません。\r\n\r\n[Q] WordPress のライセンスはどうなっていますか?\r\n[A] WordPress が採用しているライセンスは GPL です。当サイトで配布している WordPress 日本語版や、その中に同梱されているテーマ/プラグインも GPL に準拠しています。\r\n\r\n[Q] WordPress.org のテーマディレクトリプラグインディレクトリにテーマ/プラグインを掲載するには?\r\n[A] テーマ、プラグインともに GPL 互換ライセンス(原文日本語訳)を採用している必要があります。そのほかにも条件がありますので、以下のページをよく確認の上掲載申し込みをしてください(※リンク先は英語となります)。\r\n» テーマディレクトリへの掲載\r\n» プラグインディレクトリへの掲載','このサイトについて','','inherit','open','open','','11-revision-v1','','','2014-11-22 10:08:00','2014-11-22 10:08:00','',11,'http://ja.wordpressorg.dev/2014/11/22/11-revision-v1/',0,'revision','',0), (15,1,'2014-11-22 10:10:43','2014-11-22 10:10:43','WordPress 日本語ローカルサイトへようこそ。\r\n\r\nWordPress (ワードプレス) は、オープンソースのブログ/CMS プラットフォームです。セマンティック Web、コードやデザインの美しさ、Web 標準、ユーザビリティなどを意識して開発されており、無料でダウンロードして使うことができます。\r\n\r\nWordPress を使って、思い通りにカスタマイズしたブログサイトを作り上げてみませんか。\r\n
    \"WordPress \"@jawordpressorg
    \r\n\r\n
    \r\n\r\n\"WordCamp\r\n2014年10月11日(土)に大田区産業プラザで WordCamp Tokyo 2014 が開催されます。\r\n公式サイト | Twitter# wctokyo)| Facebook','ようこそ','','publish','open','open','','txt-welcome','','','2014-11-22 10:10:43','2014-11-22 10:10:43','',0,'http://ja.wordpressorg.dev/?page_id=15',0,'page','',0), (16,1,'2014-11-22 10:10:43','2014-11-22 10:10:43','WordPress 日本語ローカルサイトへようこそ。\r\n\r\nWordPress (ワードプレス) は、オープンソースのブログ/CMS プラットフォームです。セマンティック Web、コードやデザインの美しさ、Web 標準、ユーザビリティなどを意識して開発されており、無料でダウンロードして使うことができます。\r\n\r\nWordPress を使って、思い通りにカスタマイズしたブログサイトを作り上げてみませんか。\r\n
    \"WordPress \"@jawordpressorg
    \r\n\r\n
    \r\n\r\n\"WordCamp\r\n2014年10月11日(土)に大田区産業プラザで WordCamp Tokyo 2014 が開催されます。\r\n公式サイト | Twitter# wctokyo)| Facebook','ようこそ','','inherit','open','open','','15-revision-v1','','','2014-11-22 10:10:43','2014-11-22 10:10:43','',15,'http://ja.wordpressorg.dev/2014/11/22/15-revision-v1/',0,'revision','',0), (17,1,'2014-09-05 10:13:44','2014-09-05 10:13:44','以下は、Matt Mullenweg が書いた WordPress.org 公式ブログの記事、「WordPress 4.0 “Benny”」を訳したものです。\r\n\r\n誤字脱字誤訳等ありましたらフォーラムまでお知らせください。\r\n\r\nWordPress 4.0 の日本語版はこちらからダウンロードできます。\r\n\r\n* 言語切り替えについて\r\n\r\n4.0から管理画面の設定 > 一般で、日本語・英語の切り替えができるようになりました。\r\nただし、こちらで English (United States) にすると機能的にも完全に英語版になりますので、その点をご留意ください。\r\n(文字数ベースの抜粋や、WP Multibyte Patch の機能も失われます)\r\n\r\nまた、その他開発者向けの重要な変更点は日本語版作成チームの倉石さんの以下のブログにまとめてありますので、興味のある方はご覧ください。\r\n\r\n\r\n
    \r\n\r\nジャズクラリネット奏者でバンドリーダーでもあるベニー·グッドマンに敬意を表して「ベニー」と名づけた WordPress のバージョン4.0 をリリースしました。ダウンロードするか、 WordPress のダッシュボードから更新してください。4.0という数字は私たちにとっては単に3.9の後、4.1の前の数字にすぎませんが、少し余分な磨きを入れたよ うな感じもしています。このリリースでは、みなさんに楽しんでもらえる滑らかな執筆体験と管理体験をお届けします。\r\n
    \r\n
    \r\n
    Introducing WordPress 4.0 \"Benny\"
    \r\n\"Introducing\r\n
    \r\n
    \"\"
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n\r\n

    スタイリッシュにメディアを管理する

    \r\n\"メディアライブラリー\"\r\n\r\n美しくエンドレスなグリッドで、ご自分のアップロードしたメディアを探索してみてください。新しい詳細プレビューで、どんな数のメディアでも閲覧と編集が順番に、そして簡単にできるようのなっています。\r\n\r\n
    \r\n\r\n

    埋め込みの作業がかつてないほど容易になりました

    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n新 しい行に YouTube の URL を貼り付け、それが魔法のように埋め込まれたビデオになって表示されるのをご覧ください。ぜひツイートとともに試してください。そうです、埋め込みがビ ジュアルな体験になりました。エディターは埋め込まれたコンテンツの本物のプレビューを表示させることができるようになり、あなたの時間を節約し、自信を 与えてくれます。 デフォルトで対応するサービスも増やしました。 CollegeHumor 、 YouTube のプレイリスト、 TED のトークを埋め込むことができます。 WordPress の対応する埋め込みの一覧を確認してみてください。\r\n\r\n
    \r\n\r\n

    コンテンツに焦点を当てる

    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    00:00
    \r\n
    \r\n
    00:10
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\nコンテンツの書く量に応じて広がったり、フォーマットツールが常に利用できるようになったりしたエディターにより、コンテンツの作成と編集がよりスムーズに、より没入できるようになりました。\r\n\r\n
    \r\n\r\n

    適切なプラグインを見つける

    \r\n\"プラグインを追加\"WordPress プラグインディレクトリには 30,000 以上の無料でオープンソースなプラグインがあります。WordPress 4.0 は新たなメトリクス、改善された検索、そしてより視覚的なブラウジング体験で、ニーズに合ったものをより容易に見つけられるようになりました。\r\n\r\n
    \r\n\r\n

    アンサンブル

    \r\nこのリリースはヘレン·ホウ·サンディに よってリードされ、たくさんの素晴らしい方々の助けを得ました。このリリースでは275名からの貢献があり、一番多い人数となりました。お好みの音楽サー ビスから、バンドリーダーとして、あるいは古典的なクラリネット奏者としての彼の音楽を聞いてみてください。そして、貢献してくれた方々のプロフィールも チェックしてみてください:\r\n\r\n_Redd, Aaron D. Campbell, Aaron Jorbin, Adam Silverstein, Alex Mills (Viper007Bond), Alex Shiels, Alexander Rohmann,Alison Barrett, Allan Collins, Amit Gupta, Amy Hendrix (sabreuse), Andrea Fercia, Andres Villarreal, Andrew Mowe, Andrew Nacin, Andrew Ozz, Andy Skelton, Ankit K Gupta, Anton Timmermans, arnee, Aubrey Portwood, Austin Matzko, Ben Dunkle,Bernhard Kau, Boone Gorges, Brady Vercher, bramd, Brandon Kraft, Brian Krogsgard, Brian Layman, Brian Richards,Camden Segal, Carbis, Caroline Moore, Charles Fulton, Chouby, ChriCo, Chris Olbekson, chrisl27, Christian Axelsson,Christopher Finke, Christopher Spires, Clifton Griffin, Corey McKrill, Corphi, Daisuke Takahashi, Dan Griffiths, Daniel Bachhuber, Daniel Husken, Daniel Jalkut (Red Sweater), Danny de Haan, Darin Kotter, Daryl Koopersmith, Daryl L. L. Houston (dllh), David A. Kennedy, David Herrera, David Naber, DavidTheMachine, DeBAAT, Dion Hulse, Dominik Schilling, Donncha O Caoimh, Drew Jaynes, Dustyn Doyle, Eddie Moya, Eduardo Reveles, Edwin Siebel, ehg, Enrique Chavez, erayalakese, Eric Andrew Lewis, Eric Binnion, Eric Mann, Evan Anderson, Evan Herman, Fabien Quatravaux, Fahmi Adib, feedmeastraycat,Frank Klein, garhdez, Gary Cao, Gary Jones, Gary Pendergast, garza, gauravmittal1995, Gavrisimo, George Stephanis,Graham Armfield, Grant Mangham, Gregory Cornelius, Gustavo Bordoni, harrym, hebbet, Hinnerk Altenburg, Hugh Lashbrooke, iljoja, imath, Ipstenu (Mika Epstein), issuu, J.D. Grimes, Jack Lenox, Jack Reichert, Jacob Dubail, JanHenkG,Janneke Van Dorpe, Jared Wenerd, Jaza613, Jeff Stieler, Jeremy Felt, Jeremy Pry, Jeroen Schmit, Jerry Bates (jerrysarcastic),Jesin A, Jesper Johansen (jayjdk), Jesper van Engelen, Jesper van Engelen, Jesse Pollak, jgadbois, Joan Artes, Joe Dolson,Joe Hoyle, Joey Kudish, John Blackbourn, John James Jacoby, John Zanussi, Jon Cave, jonnyauk, Joost de Valk, Jordi Cabot, Josh Eaton, JOTAKI Taisuke, Julio Potier, Justin Sainton, Justin Sternberg, Justin Tadlock, K.Adam White, Kailey (trepmal), Kaito, kapeels, Kelly Dwan, Kevin Langley, Kevin Worthington, Kim Parsell, Kirk Wight, kitchin, Knut Sparhell,Konstantin Kovshenin, Konstantin Obenland, Kurt Payne, Lance Willett, Lee Willis, lessbloat, Lew Ayotte, lritter, Luke Gedeon, m_i_n, Manny Fleurmond, Manuel Schmalstieg, Marius Jensen (Clorith), Mark Jaquith, Marko Heijnen, Matt Banks,Matt Martz, Matt Mullenweg, Matt Wiebe, Matthew Boynes, Matthew Denton, Matthew Eppelsheimer, Matthew Haines-Young,mattyrob, meekyhwang, Mel Choyce, mi_cat, Michael Adams (mdawaffe), michalzuber, Mike Auteri, Mike Hansen, Mike Jolley,Mike Little, Mike Manger, Mike Schroder, Mikey Arce, Milan Dinic, mnelson4, Morgan Estes, Mr Papa, mrmist, Mustafa Uysal,MuViMoTV, nabil_kadimi, Namibia, Nashwan Doaqan, nd987, Neil Pie, Niall Kennedy, Nick Halsey, Nikolay Bachiyski, Nils Schonwald, Ninos, Nowell VanHoesen, Patrick Hesselberg, Paul Bearne, Paul Clark, Paul Wilde, paulschreiber, pavelevap,Peter Westwood, Philip Arthur Moore, Philip John, Piet, Piotr Soluch, Pippin Williamson, purzlbaum, Rachel Baker, RC Lations, Richard Tape, Ricky Lee Whittemore, rob1n, Robert Chapin, Robert Dall, RobertHarm, Rohan Rawat, Rouven Hurling,Ruud Laan, Ryan Boren, Ryan McCue, Sam Brodie, Samuel Wood (Otto), sathishn, Scott Reilly, Scott Taylor, ScreenfeedFr,scribu, Sean Hayes, Sean Nessworthy, Sergej Muller, Sergey Biryukov, shanebp, Shaun Andrews, Simon Wheatley,simonp303, Slobodan Manic, solarissmoke, sphoid, Stephane Daury, Stephen Edgar, Steven Jones, strangerstudios, Sumit Singh, sumobi, t4k1s, Takashi Irie, Taylor Dewey, Thomas van der Beek, Till Kruss, Tim ‘Eli’ Dalbey, TobiasBg, Tom J Nowell,Tom Willmot, Topher, torresga, Tracy Levesque, Travis Smith, treyhunner, Umesh Kumar, Vinod Dalvi, vlajos,voldemortensen, Weston Ruter, winterDev, Wojtek Szkutnik, Yoav Farhi, Zack Katz, Zack Tollman, Zoe Rooney。また、リリースビデオのプロデュースをしてくれたMichael Pick 、音楽に関してはHelenと Adrián Sandí に感謝します。\r\n\r\n開発の動向を追いたい場合、または手助けしてくれる場合は、Make WordPressコア開発ブログをチェックしてみてください。WordPress を選んでくれてありがとうございます。またすぐ、バージョン4.1でお会いしましょう​​!','WordPress 4.0 “ベニー”','','publish','closed','closed','','benny','','','2014-11-22 10:15:52','2014-11-22 10:15:52','',0,'http://ja.wordpressorg.dev/?p=17',0,'post','',0), (18,1,'2014-11-22 10:13:44','2014-11-22 10:13:44','以下は、Matt Mullenweg が書いた WordPress.org 公式ブログの記事、「WordPress 4.0 “Benny”」を訳したものです。\r\n\r\n誤字脱字誤訳等ありましたらフォーラムまでお知らせください。\r\n\r\nWordPress 4.0 の日本語版はこちらからダウンロードできます。\r\n\r\n* 言語切り替えについて\r\n\r\n4.0から管理画面の設定 > 一般で、日本語・英語の切り替えができるようになりました。\r\nただし、こちらで English (United States) にすると機能的にも完全に英語版になりますので、その点をご留意ください。\r\n(文字数ベースの抜粋や、WP Multibyte Patch の機能も失われます)\r\n\r\nまた、その他開発者向けの重要な変更点は日本語版作成チームの倉石さんの以下のブログにまとめてありますので、興味のある方はご覧ください。\r\n\r\n\r\n
    \r\n\r\nジャズクラリネット奏者でバンドリーダーでもあるベニー·グッドマンに敬意を表して「ベニー」と名づけた WordPress のバージョン4.0 をリリースしました。ダウンロードするか、 WordPress のダッシュボードから更新してください。4.0という数字は私たちにとっては単に3.9の後、4.1の前の数字にすぎませんが、少し余分な磨きを入れたよ うな感じもしています。このリリースでは、みなさんに楽しんでもらえる滑らかな執筆体験と管理体験をお届けします。\r\n
    \r\n
    \r\n
    Introducing WordPress 4.0 \"Benny\"
    \r\n\"Introducing\r\n
    \r\n
    \"\"
    \r\n
    \r\n
    \r\n
    \r\n\r\n
    \r\n\r\n

    スタイリッシュにメディアを管理する

    \r\n\"メディアライブラリー\"\r\n\r\n美しくエンドレスなグリッドで、ご自分のアップロードしたメディアを探索してみてください。新しい詳細プレビューで、どんな数のメディアでも閲覧と編集が順番に、そして簡単にできるようのなっています。\r\n\r\n
    \r\n\r\n

    埋め込みの作業がかつてないほど容易になりました

    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n新 しい行に YouTube の URL を貼り付け、それが魔法のように埋め込まれたビデオになって表示されるのをご覧ください。ぜひツイートとともに試してください。そうです、埋め込みがビ ジュアルな体験になりました。エディターは埋め込まれたコンテンツの本物のプレビューを表示させることができるようになり、あなたの時間を節約し、自信を 与えてくれます。 デフォルトで対応するサービスも増やしました。 CollegeHumor 、 YouTube のプレイリスト、 TED のトークを埋め込むことができます。 WordPress の対応する埋め込みの一覧を確認してみてください。\r\n\r\n
    \r\n\r\n

    コンテンツに焦点を当てる

    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    00:00
    \r\n
    \r\n
    00:10
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\nコンテンツの書く量に応じて広がったり、フォーマットツールが常に利用できるようになったりしたエディターにより、コンテンツの作成と編集がよりスムーズに、より没入できるようになりました。\r\n\r\n
    \r\n\r\n

    適切なプラグインを見つける

    \r\n\"プラグインを追加\"WordPress プラグインディレクトリには 30,000 以上の無料でオープンソースなプラグインがあります。WordPress 4.0 は新たなメトリクス、改善された検索、そしてより視覚的なブラウジング体験で、ニーズに合ったものをより容易に見つけられるようになりました。\r\n\r\n
    \r\n\r\n

    アンサンブル

    \r\nこのリリースはヘレン·ホウ·サンディに よってリードされ、たくさんの素晴らしい方々の助けを得ました。このリリースでは275名からの貢献があり、一番多い人数となりました。お好みの音楽サー ビスから、バンドリーダーとして、あるいは古典的なクラリネット奏者としての彼の音楽を聞いてみてください。そして、貢献してくれた方々のプロフィールも チェックしてみてください:\r\n\r\n_Redd, Aaron D. Campbell, Aaron Jorbin, Adam Silverstein, Alex Mills (Viper007Bond), Alex Shiels, Alexander Rohmann,Alison Barrett, Allan Collins, Amit Gupta, Amy Hendrix (sabreuse), Andrea Fercia, Andres Villarreal, Andrew Mowe, Andrew Nacin, Andrew Ozz, Andy Skelton, Ankit K Gupta, Anton Timmermans, arnee, Aubrey Portwood, Austin Matzko, Ben Dunkle,Bernhard Kau, Boone Gorges, Brady Vercher, bramd, Brandon Kraft, Brian Krogsgard, Brian Layman, Brian Richards,Camden Segal, Carbis, Caroline Moore, Charles Fulton, Chouby, ChriCo, Chris Olbekson, chrisl27, Christian Axelsson,Christopher Finke, Christopher Spires, Clifton Griffin, Corey McKrill, Corphi, Daisuke Takahashi, Dan Griffiths, Daniel Bachhuber, Daniel Husken, Daniel Jalkut (Red Sweater), Danny de Haan, Darin Kotter, Daryl Koopersmith, Daryl L. L. Houston (dllh), David A. Kennedy, David Herrera, David Naber, DavidTheMachine, DeBAAT, Dion Hulse, Dominik Schilling, Donncha O Caoimh, Drew Jaynes, Dustyn Doyle, Eddie Moya, Eduardo Reveles, Edwin Siebel, ehg, Enrique Chavez, erayalakese, Eric Andrew Lewis, Eric Binnion, Eric Mann, Evan Anderson, Evan Herman, Fabien Quatravaux, Fahmi Adib, feedmeastraycat,Frank Klein, garhdez, Gary Cao, Gary Jones, Gary Pendergast, garza, gauravmittal1995, Gavrisimo, George Stephanis,Graham Armfield, Grant Mangham, Gregory Cornelius, Gustavo Bordoni, harrym, hebbet, Hinnerk Altenburg, Hugh Lashbrooke, iljoja, imath, Ipstenu (Mika Epstein), issuu, J.D. Grimes, Jack Lenox, Jack Reichert, Jacob Dubail, JanHenkG,Janneke Van Dorpe, Jared Wenerd, Jaza613, Jeff Stieler, Jeremy Felt, Jeremy Pry, Jeroen Schmit, Jerry Bates (jerrysarcastic),Jesin A, Jesper Johansen (jayjdk), Jesper van Engelen, Jesper van Engelen, Jesse Pollak, jgadbois, Joan Artes, Joe Dolson,Joe Hoyle, Joey Kudish, John Blackbourn, John James Jacoby, John Zanussi, Jon Cave, jonnyauk, Joost de Valk, Jordi Cabot, Josh Eaton, JOTAKI Taisuke, Julio Potier, Justin Sainton, Justin Sternberg, Justin Tadlock, K.Adam White, Kailey (trepmal), Kaito, kapeels, Kelly Dwan, Kevin Langley, Kevin Worthington, Kim Parsell, Kirk Wight, kitchin, Knut Sparhell,Konstantin Kovshenin, Konstantin Obenland, Kurt Payne, Lance Willett, Lee Willis, lessbloat, Lew Ayotte, lritter, Luke Gedeon, m_i_n, Manny Fleurmond, Manuel Schmalstieg, Marius Jensen (Clorith), Mark Jaquith, Marko Heijnen, Matt Banks,Matt Martz, Matt Mullenweg, Matt Wiebe, Matthew Boynes, Matthew Denton, Matthew Eppelsheimer, Matthew Haines-Young,mattyrob, meekyhwang, Mel Choyce, mi_cat, Michael Adams (mdawaffe), michalzuber, Mike Auteri, Mike Hansen, Mike Jolley,Mike Little, Mike Manger, Mike Schroder, Mikey Arce, Milan Dinic, mnelson4, Morgan Estes, Mr Papa, mrmist, Mustafa Uysal,MuViMoTV, nabil_kadimi, Namibia, Nashwan Doaqan, nd987, Neil Pie, Niall Kennedy, Nick Halsey, Nikolay Bachiyski, Nils Schonwald, Ninos, Nowell VanHoesen, Patrick Hesselberg, Paul Bearne, Paul Clark, Paul Wilde, paulschreiber, pavelevap,Peter Westwood, Philip Arthur Moore, Philip John, Piet, Piotr Soluch, Pippin Williamson, purzlbaum, Rachel Baker, RC Lations, Richard Tape, Ricky Lee Whittemore, rob1n, Robert Chapin, Robert Dall, RobertHarm, Rohan Rawat, Rouven Hurling,Ruud Laan, Ryan Boren, Ryan McCue, Sam Brodie, Samuel Wood (Otto), sathishn, Scott Reilly, Scott Taylor, ScreenfeedFr,scribu, Sean Hayes, Sean Nessworthy, Sergej Muller, Sergey Biryukov, shanebp, Shaun Andrews, Simon Wheatley,simonp303, Slobodan Manic, solarissmoke, sphoid, Stephane Daury, Stephen Edgar, Steven Jones, strangerstudios, Sumit Singh, sumobi, t4k1s, Takashi Irie, Taylor Dewey, Thomas van der Beek, Till Kruss, Tim ‘Eli’ Dalbey, TobiasBg, Tom J Nowell,Tom Willmot, Topher, torresga, Tracy Levesque, Travis Smith, treyhunner, Umesh Kumar, Vinod Dalvi, vlajos,voldemortensen, Weston Ruter, winterDev, Wojtek Szkutnik, Yoav Farhi, Zack Katz, Zack Tollman, Zoe Rooney。また、リリースビデオのプロデュースをしてくれたMichael Pick 、音楽に関してはHelenと Adrián Sandí に感謝します。\r\n\r\n開発の動向を追いたい場合、または手助けしてくれる場合は、Make WordPressコア開発ブログをチェックしてみてください。WordPress を選んでくれてありがとうございます。またすぐ、バージョン4.1でお会いしましょう​​!','WordPress 4.0 “ベニー”','','inherit','open','open','','17-revision-v1','','','2014-11-22 10:13:44','2014-11-22 10:13:44','',17,'http://ja.wordpressorg.dev/2014/11/22/17-revision-v1/',0,'revision','',0), (19,1,'2014-11-21 10:16:06','2014-11-21 10:16:06','WordPress 4.0.1が利用可能になりました。このリリースは、これまでのすべてのバージョンのための重要なセキュリティリリースであり、すぐにサイトを更新することを強くお勧めします。\r\n\r\n自動バックグラウンド更新をサポートしているサイトは、今後数時間以内のうちに WordPress 4.0.1に更新されます。WordPress 3.9.2、3.8.4、または3.7.4にとどまっている場合は、安全性を維持するために3.9.3、3.8.5、または3.7.5に更新されます。(古いバージョンはサポートされません。最新の 4.0.1にアップデートするようにしてください)\r\n\r\nWordPress のバージョン3.9.2およびそれ以前のバージョンのサイトは、匿名ユーザーによるサイトへの不正侵入を招くかもしれない重大なクロスサイトスクリプティング脆弱性の影響を受けています。これは Jouko Pynnonen によって報告されました。この問題はバージョン4.0には影響しませんが、バージョン4.0.1は以下の8つのセキュリティ問題に対処しています。\r\n
      \r\n
    • 寄稿者または投稿者によってサイトを侵害するために使用できるかもしれない3件のクロスサイトスクリプティングの問題。これは WordPress のセキュリティチームの Jon CaveRobert Chapin、そして Robert Chapin によって発見されました。
    • \r\n
    • 自分のパスワードを変更するようにユーザーをだますのに使用されるかもしれないクロスサイトリクエストフォージェリ。
    • \r\n
    • パスワードのチェック時にサービス妨害を招きかねない問題。Javier Nieto ArevaloAndres Rojas Guerrero によって報告されました。
    • \r\n
    • WordPress が HTTP 要求を行うときのサーバー側リクエストフォージェリ攻撃のための追加的な保護。Ben Bidner (vortfu) によって報告されました。
    • \r\n
    • 極めてまれなハッシュ衝突と2008年以降ログインしていない場合 (冗談ならいいんですが) にユーザーのアカウントが危険にさらされる可能性。David Anderson によって報告されました。。
    • \r\n
    • (パスワードのリセット作業手続き開始後に)ユーザーが自分のパスワードを覚えていてログインし、自分のメールアドレスを変更した場合、WordPress はパスワードリセットメール内のリンクを無効にするようにしました。この件は Momen BasselTanoy Bose、およびManageWP の Bojan Slavković によって別々に報告されました。
    • \r\n
    \r\nバージョン4.0.1はまた、4.0の23個のバグを修正し、アップロードされた写真から抽出する EXIF データのより良いバリデーションを含む2件のセキュリティ強化のための変更を行いました。Chris Andrè Dale によって報告されました。\r\n\r\nこれらの情報が直接わたしたちのセキュリティチームに責任をもって開示されたことに感謝します。このリリースの詳細については、リリースノートまたは変更リストを参照してください 。\r\n\r\nでは、WordPress 4.0.1をダウンロードするかダッシュボード→アップデートを開き「いますぐ更新」をクリックしてください。\r\n\r\nすでに WordPress 4.1をテスト中ですか?であれば、これらのセキュリティ修正が含まれた2つ目のベータ版が利用可能になっています (zip)。4.1の詳細については ベータ1のアナウンスご覧ください 。','WordPress 4.0.1 セキュリティリリース','','publish','closed','closed','','wordpress-4-0-1-security-release','','','2014-11-22 10:17:22','2014-11-22 10:17:22','',0,'http://ja.wordpressorg.dev/?p=19',0,'post','',0), (20,1,'2014-11-22 10:17:22','2014-11-22 10:17:22','WordPress 4.0.1が利用可能になりました。このリリースは、これまでのすべてのバージョンのための重要なセキュリティリリースであり、すぐにサイトを更新することを強くお勧めします。\r\n\r\n自動バックグラウンド更新をサポートしているサイトは、今後数時間以内のうちに WordPress 4.0.1に更新されます。WordPress 3.9.2、3.8.4、または3.7.4にとどまっている場合は、安全性を維持するために3.9.3、3.8.5、または3.7.5に更新されます。(古いバージョンはサポートされません。最新の 4.0.1にアップデートするようにしてください)\r\n\r\nWordPress のバージョン3.9.2およびそれ以前のバージョンのサイトは、匿名ユーザーによるサイトへの不正侵入を招くかもしれない重大なクロスサイトスクリプティング脆弱性の影響を受けています。これは Jouko Pynnonen によって報告されました。この問題はバージョン4.0には影響しませんが、バージョン4.0.1は以下の8つのセキュリティ問題に対処しています。\r\n
      \r\n
    • 寄稿者または投稿者によってサイトを侵害するために使用できるかもしれない3件のクロスサイトスクリプティングの問題。これは WordPress のセキュリティチームの Jon CaveRobert Chapin、そして Robert Chapin によって発見されました。
    • \r\n
    • 自分のパスワードを変更するようにユーザーをだますのに使用されるかもしれないクロスサイトリクエストフォージェリ。
    • \r\n
    • パスワードのチェック時にサービス妨害を招きかねない問題。Javier Nieto ArevaloAndres Rojas Guerrero によって報告されました。
    • \r\n
    • WordPress が HTTP 要求を行うときのサーバー側リクエストフォージェリ攻撃のための追加的な保護。Ben Bidner (vortfu) によって報告されました。
    • \r\n
    • 極めてまれなハッシュ衝突と2008年以降ログインしていない場合 (冗談ならいいんですが) にユーザーのアカウントが危険にさらされる可能性。David Anderson によって報告されました。。
    • \r\n
    • (パスワードのリセット作業手続き開始後に)ユーザーが自分のパスワードを覚えていてログインし、自分のメールアドレスを変更した場合、WordPress はパスワードリセットメール内のリンクを無効にするようにしました。この件は Momen BasselTanoy Bose、およびManageWP の Bojan Slavković によって別々に報告されました。
    • \r\n
    \r\nバージョン4.0.1はまた、4.0の23個のバグを修正し、アップロードされた写真から抽出する EXIF データのより良いバリデーションを含む2件のセキュリティ強化のための変更を行いました。Chris Andrè Dale によって報告されました。\r\n\r\nこれらの情報が直接わたしたちのセキュリティチームに責任をもって開示されたことに感謝します。このリリースの詳細については、リリースノートまたは変更リストを参照してください 。\r\n\r\nでは、WordPress 4.0.1をダウンロードするかダッシュボード→アップデートを開き「いますぐ更新」をクリックしてください。\r\n\r\nすでに WordPress 4.1をテスト中ですか?であれば、これらのセキュリティ修正が含まれた2つ目のベータ版が利用可能になっています (zip)。4.1の詳細については ベータ1のアナウンスご覧ください 。','WordPress 4.0.1 セキュリティリリース','','inherit','open','open','','19-revision-v1','','','2014-11-22 10:17:22','2014-11-22 10:17:22','',19,'http://ja.wordpressorg.dev/2014/11/22/19-revision-v1/',0,'revision','',0); /*!40000 ALTER TABLE `wporg_42_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_42_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_42_term_relationships`; CREATE TABLE `wporg_42_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_42_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_42_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_42_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0), (10,2,0), (17,1,0), (19,1,0); /*!40000 ALTER TABLE `wporg_42_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_42_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_42_term_taxonomy`; CREATE TABLE `wporg_42_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_42_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_42_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_42_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,3), (2,2,'nav_menu','',0,1); /*!40000 ALTER TABLE `wporg_42_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_42_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_42_termmeta`; CREATE TABLE `wporg_42_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_42_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_42_terms`; CREATE TABLE `wporg_42_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_42_terms` WRITE; /*!40000 ALTER TABLE `wporg_42_terms` DISABLE KEYS */; INSERT INTO `wporg_42_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0), (2,'Rosetta Menu','rosetta-menu',0); /*!40000 ALTER TABLE `wporg_42_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_5_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_5_commentmeta`; CREATE TABLE `wporg_5_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_5_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_5_comments`; CREATE TABLE `wporg_5_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_5_comments` WRITE; /*!40000 ALTER TABLE `wporg_5_comments` DISABLE KEYS */; INSERT INTO `wporg_5_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 21:52:08','2014-12-08 21:52:08','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_5_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_5_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_5_links`; CREATE TABLE `wporg_5_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_5_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_5_options`; CREATE TABLE `wporg_5_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_5_options` WRITE; /*!40000 ALTER TABLE `wporg_5_options` DISABLE KEYS */; INSERT INTO `wporg_5_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/design','yes'), (2,'home','http://make.wordpressorg.dev/design','yes'), (3,'blogname','Make Design','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/5/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_5_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900742;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461967107;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418079418;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (122,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (124,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (127,'finished_splitting_shared_terms','0','yes'), (128,'site_icon','0','yes'), (129,'medium_large_size_w','768','yes'), (130,'medium_large_size_h','0','yes'), (131,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_5_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_5_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_5_postmeta`; CREATE TABLE `wporg_5_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_5_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_5_postmeta` DISABLE KEYS */; INSERT INTO `wporg_5_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_5_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_5_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_5_posts`; CREATE TABLE `wporg_5_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_5_posts` WRITE; /*!40000 ALTER TABLE `wporg_5_posts` DISABLE KEYS */; INSERT INTO `wporg_5_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,'2014-12-08 21:52:08','2014-12-08 21:52:08','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 21:52:08','2014-12-08 21:52:08','',0,'http://make.wordpressorg.dev/design/?p=1',0,'post','',1), (2,1,'2014-12-08 21:52:08','2014-12-08 21:52:08','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:\n\n
    Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
    \n\n...or something like this:\n\n
    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.
    \n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 21:52:08','2014-12-08 21:52:08','',0,'http://make.wordpressorg.dev/design/?page_id=2',0,'page','',0), (3,1,'2014-12-08 21:58:28','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 21:58:28','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/design/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_5_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_5_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_5_term_relationships`; CREATE TABLE `wporg_5_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_5_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_5_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_5_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_5_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_5_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_5_term_taxonomy`; CREATE TABLE `wporg_5_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_5_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_5_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_5_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_5_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_5_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_5_termmeta`; CREATE TABLE `wporg_5_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_5_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_5_terms`; CREATE TABLE `wporg_5_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_5_terms` WRITE; /*!40000 ALTER TABLE `wporg_5_terms` DISABLE KEYS */; INSERT INTO `wporg_5_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_5_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_6_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_6_commentmeta`; CREATE TABLE `wporg_6_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_6_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_6_comments`; CREATE TABLE `wporg_6_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_6_comments` WRITE; /*!40000 ALTER TABLE `wporg_6_comments` DISABLE KEYS */; INSERT INTO `wporg_6_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 21:52:17','2014-12-08 21:52:17','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_6_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_6_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_6_links`; CREATE TABLE `wporg_6_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_6_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_6_options`; CREATE TABLE `wporg_6_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_6_options` WRITE; /*!40000 ALTER TABLE `wporg_6_options` DISABLE KEYS */; INSERT INTO `wporg_6_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/core','yes'), (2,'home','http://make.wordpressorg.dev/core','yes'), (3,'blogname','Make Core','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/6/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_6_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:3:{i:1461900735;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1461971247;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080205;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (118,'rewrite_rules','a:74:{s:55:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:50:\"category/(.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";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:52:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:47:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";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:53:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:48:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";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:57:\"mentions/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:52:\"mentions/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?mentions=$matches[1]&feed=$matches[2]\";s:37:\"mentions/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?mentions=$matches[1]&paged=$matches[2]\";s:19:\"mentions/([^/]+)/?$\";s:30:\"index.php?mentions=$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:40:\"feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:35:\"(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:49:\"comments/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:44:\"comments/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:52:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:47:\"search/(.+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";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:55:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:50:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";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:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:64:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:59:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:51:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:46:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:96:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:91:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:85:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:80:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"(.?.+?)/(feed|rdf|rss|rss2|atom|p2.ajax)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (125,'finished_splitting_shared_terms','0','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'), (129,'db_upgraded','1','yes'); /*!40000 ALTER TABLE `wporg_6_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_6_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_6_postmeta`; CREATE TABLE `wporg_6_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_6_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_6_postmeta` DISABLE KEYS */; INSERT INTO `wporg_6_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_6_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_6_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_6_posts`; CREATE TABLE `wporg_6_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_6_posts` WRITE; /*!40000 ALTER TABLE `wporg_6_posts` DISABLE KEYS */; INSERT INTO `wporg_6_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,'2014-12-08 21:52:17','2014-12-08 21:52:17','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 21:52:17','2014-12-08 21:52:17','',0,'http://make.wordpressorg.dev/core/?p=1',0,'post','',1), (2,1,'2014-12-08 21:52:17','2014-12-08 21:52:17','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:\n\n
    Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
    \n\n...or something like this:\n\n
    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.
    \n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 21:52:17','2014-12-08 21:52:17','',0,'http://make.wordpressorg.dev/core/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:28','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:28','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/core/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_6_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_6_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_6_term_relationships`; CREATE TABLE `wporg_6_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_6_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_6_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_6_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_6_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_6_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_6_term_taxonomy`; CREATE TABLE `wporg_6_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_6_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_6_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_6_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_6_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_6_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_6_termmeta`; CREATE TABLE `wporg_6_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_6_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_6_terms`; CREATE TABLE `wporg_6_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_6_terms` WRITE; /*!40000 ALTER TABLE `wporg_6_terms` DISABLE KEYS */; INSERT INTO `wporg_6_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_6_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_64_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_64_commentmeta`; CREATE TABLE `wporg_64_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_64_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_64_comments`; CREATE TABLE `wporg_64_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_64_comments` WRITE; /*!40000 ALTER TABLE `wporg_64_comments` DISABLE KEYS */; INSERT INTO `wporg_64_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,'Mr WordPress','','http://global.wordpressorg.dev/','','2014-07-27 18:40:45','2014-07-27 18:40:45','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_64_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_64_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_64_links`; CREATE TABLE `wporg_64_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_64_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_64_options`; CREATE TABLE `wporg_64_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_64_options` WRITE; /*!40000 ALTER TABLE `wporg_64_options` DISABLE KEYS */; INSERT INTO `wporg_64_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://es.wordpressorg.dev/','yes'), (2,'home','http://es.wordpressorg.dev/','yes'), (3,'blogname','Español','yes'), (4,'blogdescription','Just another global.wordpressorg.dev Sites site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','rosetta','yes'), (42,'stylesheet','rosetta','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wp_3_user_roles','a:6:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_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:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"edit_theme_options\";b:1;s:10:\"list_users\";b:1;s:13:\"promote_users\";b:1;s:12:\"remove_users\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:9:\"validator\";a:2:{s:4:\"name\";s:9:\"Validator\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (99,'jetpack_options','a:4:{s:7:\"version\";s:16:\"3.0.2:1406486499\";s:11:\"old_version\";s:16:\"3.0.2:1406486499\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;}','yes'), (100,'cron','a:4:{i:1461901299;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1461955314;a:1:{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;}}}i:1461955725;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;}}}s:7:\"version\";i:2;}','yes'), (105,'jetpack_activated','2','yes'), (118,'post_count','4','yes'), (121,'_transient_random_seed','92cb2c0f605a05f7deb3a35d3ed99e6a','yes'), (122,'db_upgraded','1','yes'), (126,'category_children','a:0:{}','yes'), (130,'allowedthemes','a:1:{s:7:\"rosetta\";b:1;}','yes'), (131,'current_theme','Rosetta','yes'), (133,'theme_mods_rosetta','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:12:\"rosetta_main\";i:13;}}','yes'), (135,'stylesheet_root','/themes','yes'), (137,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'), (141,'jetpack_file_data','a:1:{s:3:\"3.2\";a:46:{s:32:\"d0798d372fc3c8e4171aab5b31382a80\";a:10:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:89:\"Check your spelling, style, and grammar with the After the Deadline proofreading service.\";s:4:\"sort\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";}s:32:\"083be84941bd49add5a90ea672d83c2d\";a:10:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:63:\"Transform standard image galleries into full-screen slideshows.\";s:4:\"sort\";s:2:\"22\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";}s:32:\"8981d6f2f6e707b89ae01c2aaeaba5bc\";a:10:{s:4:\"name\";s:16:\"Jetpack Comments\";s:11:\"description\";s:79:\"Let readers comment with WordPress.com, Twitter, Facebook, or Google+ accounts.\";s:4:\"sort\";s:2:\"20\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";}s:32:\"b8a3803d3b2d1c5daede2aa789e22309\";a:10:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:44:\"Insert a contact form anywhere on your site.\";s:4:\"sort\";s:2:\"15\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";}s:32:\"5506fd330f26122ef1079257478e0a14\";a:10:{s:4:\"name\";s:20:\"Custom Content Types\";s:11:\"description\";s:92:\"Organize and display different types of content on your site, separate from posts and pages.\";s:4:\"sort\";s:2:\"34\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";}s:32:\"7dcf889af365c84c9b8bdb1e16f3a30c\";a:10:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:57:\"Customize your site’s CSS without modifying your theme.\";s:4:\"sort\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";}s:32:\"553527a13a0125be5f3cdc455802b744\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"53f95b80c9d9cd0d9fa761569dcdb88d\";a:10:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:74:\"Share your public posts and comments to search engines and other services.\";s:4:\"sort\";s:1:\"5\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";}s:32:\"ce5e8e4dddc2f10f847ecd68016994bb\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"deb8188e411cbf873674545526368c85\";a:10:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:4:\"sort\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";}s:32:\"736e7591cbf7be6f656c36e00de0adc4\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";}s:32:\"0a93b5f2b0917ac4a8fc6dd6b45c4534\";a:10:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:46:\"Add support for infinite scroll to your theme.\";s:4:\"sort\";s:2:\"26\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";}s:32:\"b8026c075c183b49ec910acd5fdf19d7\";a:10:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:69:\"Allow applications to securely access your content through the cloud.\";s:4:\"sort\";s:2:\"19\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";}s:32:\"ca1a1444ac7597327051fe2c1a17a962\";a:10:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:85:\"Use LaTeX markup language in posts and pages for complex equations and other geekery.\";s:4:\"sort\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";}s:32:\"a4240e17d5f53e7212fdf83f55a4ef89\";a:10:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:70:\"Give visitors an easy way to show their appreciation for your content.\";s:4:\"sort\";s:2:\"23\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";}s:32:\"2bc0739281681783fb5182ae83b4f703\";a:10:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:51:\"Write posts or pages in plain-text Markdown syntax.\";s:4:\"sort\";s:2:\"31\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";}s:32:\"ce796f5d1d6ec591292a4cafdca740e7\";a:10:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:71:\"Optimize your site with a mobile-friendly theme for tablets and phones.\";s:4:\"sort\";s:2:\"21\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Appearance, Mobile\";}s:32:\"07d9fd7e3378a32faa6778f86842653b\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"e2c606e6b22da60ce9126d44de4a812b\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"5eb53be957bc8f7332ff02e0f992a9cf\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"4183c1dfef30f9f9a265a3684c68cee7\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"7e49a9c1be416e3498553f9a058395fd\";a:10:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:88:\"Receive notifications from Jetpack if your site goes offline — and when it it returns.\";s:4:\"sort\";s:2:\"28\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";}s:32:\"95148bbdb1fe9cc9bd730d03afc20d7d\";a:10:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:84:\"Receive notification of site activity via the admin toolbar and your Mobile devices.\";s:4:\"sort\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";}s:32:\"b152ec03bddfdf3559447d10e46fbb34\";a:10:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your Dashboard.\";s:4:\"sort\";s:2:\"16\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";}s:32:\"b2c9ca763c58eb59a6d2edcd60d8b6f4\";a:10:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:66:\"Accelerate your site by loading images from the WordPress.com CDN.\";s:4:\"sort\";s:2:\"25\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:29:\"Photos and Videos, Appearance\";}s:32:\"01075ee625b853194703cdd7a9d9e434\";a:10:{s:4:\"name\";s:13:\"Post by Email\";s:11:\"description\";s:58:\"Publish posts by email, using any device and email client.\";s:4:\"sort\";s:2:\"14\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";}s:32:\"41e6840c3f65df6507a2a6b26d044aa4\";a:10:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:55:\"Share new posts on social media networks automatically.\";s:4:\"sort\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";}s:32:\"bacb2ba4365db61a328142e3d10994f9\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"f08dd7b07e1254fbfce90d1fbb6512b9\";a:10:{s:4:\"name\";s:13:\"Related Posts\";s:11:\"description\";s:60:\"Display links to your related content under posts and pages.\";s:4:\"sort\";s:2:\"29\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";}s:32:\"91bd10b5393dcbe6e88e1e6ee668a563\";a:10:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:81:\"Allow visitors to share your content on Facebook, Twitter, and more with a click.\";s:4:\"sort\";s:1:\"7\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";}s:32:\"0f003a3332476054c297d235c115cb05\";a:10:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:77:\"Embed content from YouTube, Vimeo, SlideShare, and more, no coding necessary.\";s:4:\"sort\";s:1:\"3\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";}s:32:\"727d6d055853f69b5f418d6e0c7fcf44\";a:10:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:56:\"Enable WP.me-powered shortlinks for all posts and pages.\";s:4:\"sort\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";}s:32:\"af3551fdeba96eccda7ab4808a3544b0\";a:10:{s:4:\"name\";s:9:\"Site Icon\";s:11:\"description\";s:30:\"Add an site icon to your site.\";s:4:\"sort\";s:2:\"22\";s:10:\"introduced\";s:3:\"3.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:5:\"Other\";}s:32:\"b7b52c05d32fba9edae6e24f14958d01\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"72b543fdd33161174b38e8ef82071ff2\";a:10:{s:4:\"name\";s:22:\"Jetpack Single Sign On\";s:11:\"description\";s:62:\"Allow your users to log in using their WordPress.com accounts.\";s:4:\"sort\";s:2:\"30\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";}s:32:\"6a97545df23bc2845dbdeb9aec40536b\";a:10:{s:4:\"name\";s:19:\"WordPress.com Stats\";s:11:\"description\";s:85:\"Monitor your stats with clear, concise reports and no additional load on your server.\";s:4:\"sort\";s:1:\"1\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"WordPress.com Stats\";}s:32:\"1ba2501c8d8c3f32d95af6db45959a8f\";a:10:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:88:\"Allow users to subscribe to your posts and comments and receive notifications via email.\";s:4:\"sort\";s:1:\"9\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";}s:32:\"0b7893c1654939bd9a1914a3ff21e1a4\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"ed870647eb8ee103a9dbf0cb1b299c70\";a:10:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:73:\"Display your image galleries in a variety of sleek, graphic arrangements.\";s:4:\"sort\";s:2:\"24\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";}s:32:\"b55204da540fc1b91805a23cd6fd3be1\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}s:32:\"e06665bc80b910ce0e5a11760009a66e\";a:10:{s:4:\"name\";s:10:\"VaultPress\";s:11:\"description\";s:85:\"Protect your site with automatic backups and security scans. (Subscription required.)\";s:4:\"sort\";s:2:\"32\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";}s:32:\"9f9f341f27cea21314e632cfbb028def\";a:10:{s:4:\"name\";s:17:\"Site Verification\";s:11:\"description\";s:78:\"Verify your site or domain with Google Webmaster Tools, Pinterest, and others.\";s:4:\"sort\";s:2:\"33\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";}s:32:\"6bd387a03394fee53901b0cc3b58efa2\";a:10:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:66:\"Upload and host video right on your site. (Subscription required.)\";s:4:\"sort\";s:2:\"27\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";}s:32:\"308eb7268a5c8c4b5bc6a67878f37972\";a:10:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:57:\"Specify which widgets appear on which pages of your site.\";s:4:\"sort\";s:2:\"17\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";}s:32:\"885b5b252b6982474dc887b361282824\";a:10:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:79:\"Add images, Twitter streams, your site’s RSS links, and more to your sidebar.\";s:4:\"sort\";s:1:\"4\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";}s:32:\"9a6024557d5dbc7b9501dc31076066e9\";a:10:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";}}}','yes'), (142,'jetpack_available_modules','a:1:{s:3:\"3.2\";a:34:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"omnisearch\";s:3:\"2.3\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:9:\"site-icon\";s:3:\"3.2\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";}}','yes'), (167,'rewrite_rules','a:71:{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: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: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:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s: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: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: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: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:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (168,'wporg_64_user_roles','a:1:{s:18:\"translation_editor\";a:2:{s:4:\"name\";s:18:\"Translation Editor\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'), (183,'recently_activated','a:0:{}','yes'), (191,'_transient_featured_content_ids','a:0:{}','yes'), (198,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (199,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (200,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (201,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (203,'finished_splitting_shared_terms','1','yes'), (204,'site_icon','0','yes'), (205,'medium_large_size_w','768','yes'), (206,'medium_large_size_h','0','yes'); /*!40000 ALTER TABLE `wporg_64_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_64_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_64_postmeta`; CREATE TABLE `wporg_64_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_64_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_64_postmeta` DISABLE KEYS */; INSERT INTO `wporg_64_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'), (2,4,'_edit_lock','1406486802:1'), (3,4,'_edit_last','1'), (4,5,'_edit_lock','1406486905:1'), (5,4,'_rosetta_showcase_url','http://semanticae.es'), (6,6,'_edit_lock','1406486936:1'), (7,5,'_edit_last','1'), (8,5,'_rosetta_showcase_url','http://blogestudio.com/'), (9,6,'_edit_last','1'), (10,6,'_rosetta_showcase_url','http://www.elclubexpress.com/'), (11,9,'_edit_lock','1406487107:1'), (14,9,'_edit_last','1'), (19,12,'_edit_last','1'), (22,12,'_edit_lock','1406487354:1'), (28,17,'_edit_lock','1406487850:1'), (29,17,'_edit_last','1'), (34,25,'_edit_lock','1406489835:1'), (35,20,'_edit_lock','1406489795:1'), (36,21,'_edit_lock','1406489815:1'), (37,22,'_edit_lock','1416650367:1'), (39,23,'_edit_lock','1416650940:1'), (40,25,'_edit_last','1'), (41,25,'_wp_page_template','download.php'), (42,20,'_edit_last','1'), (43,20,'_wp_page_template','default'), (44,21,'_edit_last','1'), (45,21,'_wp_page_template','default'), (46,22,'_edit_last','1'), (47,22,'_wp_page_template','contact.php'), (48,23,'_edit_last','1'), (49,23,'_wp_page_template','default'), (50,32,'_menu_item_type','custom'), (51,32,'_menu_item_menu_item_parent','0'), (52,32,'_menu_item_object_id','32'), (53,32,'_menu_item_object','custom'), (54,32,'_menu_item_target',''), (55,32,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (56,32,'_menu_item_xfn',''), (57,32,'_menu_item_url','/'), (59,33,'_menu_item_type','custom'), (60,33,'_menu_item_menu_item_parent','0'), (61,33,'_menu_item_object_id','33'), (62,33,'_menu_item_object','custom'), (63,33,'_menu_item_target',''), (64,33,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (65,33,'_menu_item_xfn',''), (66,33,'_menu_item_url','http://es.forums.wordpress.org/'), (68,34,'_menu_item_type','custom'), (69,34,'_menu_item_menu_item_parent','0'), (70,34,'_menu_item_object_id','34'), (71,34,'_menu_item_object','custom'), (72,34,'_menu_item_target',''), (73,34,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (74,34,'_menu_item_xfn',''), (75,34,'_menu_item_url','https://docs.google.com/open?id=0B0g1vG5wYcEIYUJxSl9NTzBCWm8'), (77,35,'_menu_item_type','custom'), (78,35,'_menu_item_menu_item_parent','0'), (79,35,'_menu_item_object_id','35'), (80,35,'_menu_item_object','custom'), (81,35,'_menu_item_target',''), (82,35,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (83,35,'_menu_item_xfn',''), (84,35,'_menu_item_url','http://es.forums.wordpress.org/forum/traducciones-es_es'), (94,37,'_menu_item_type','custom'), (95,37,'_menu_item_menu_item_parent','0'), (96,37,'_menu_item_object_id','37'), (97,37,'_menu_item_object','custom'), (98,37,'_menu_item_target',''), (99,37,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'), (100,37,'_menu_item_xfn',''), (101,37,'_menu_item_url','/contact/'); /*!40000 ALTER TABLE `wporg_64_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_64_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_64_posts`; CREATE TABLE `wporg_64_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_64_posts` WRITE; /*!40000 ALTER TABLE `wporg_64_posts` DISABLE KEYS */; INSERT INTO `wporg_64_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,'2014-07-27 18:40:45','2014-07-27 18:40:45','Welcome to global.wordpressorg.dev Sites. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-07-27 18:40:45','2014-07-27 18:40:45','',0,'http://es.global.wordpressorg.dev/?p=1',0,'post','',1), (2,1,'2014-07-27 18:40:45','2014-07-27 18:40:45','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:\n\n
    Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
    \n\n...or something like this:\n\n
    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.
    \n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-07-27 18:40:45','2014-07-27 18:40:45','',0,'http://es.global.wordpressorg.dev/?page_id=2',0,'page','',0), (4,1,'2014-07-27 18:49:03','2014-07-27 18:49:03','','Semanticae - Web y blog integrados con un diseño minimalista enfocado en la información estática','Web y blog integrados con un diseño minimalista enfocado en la información estática','publish','closed','closed','','semanticae-web-y-blog-integrados-con-un-diseno-minimalista-enfocado-en-la-informacion-estatica','','','2014-07-27 18:49:03','2014-07-27 18:49:03','',0,'http://es.wordpressorg.dev/?post_type=showcase&p=4',0,'showcase','',0), (5,1,'2014-07-27 18:50:47','2014-07-27 18:50:47','','Blogestudio','Empresa de desarrollo web en WordPress.','publish','closed','closed','','blogestudio','','','2014-07-27 18:50:47','2014-07-27 18:50:47','',0,'http://es.wordpressorg.dev/?post_type=showcase&p=5',0,'showcase','',0), (6,1,'2014-07-27 18:51:12','2014-07-27 18:51:12','','El Club Express','Web de información sobre eventos culturales.','publish','closed','closed','','el-club-express','','','2014-07-27 18:51:12','2014-07-27 18:51:12','',0,'http://es.wordpressorg.dev/?post_type=showcase&p=6',0,'showcase','',0), (9,1,'2014-07-27 18:52:35','2014-07-27 18:52:35','Ya está disponible para descarga o instalación desde el Escritorio la versión 3.7 de WordPress, cuyas principales novedades son las siguientes:\r\n
      \r\n
    • Actualizaciones automáticas en segundo plano: nunca más tendrás que actualizar versiones de seguridad o mantenimiento pues WordPress se actualizará en segundo plano y sin necesidad de intervención del usuario. Esto solo afecta a versiones menores (p.ej: de la versión 3.7 a la 3.7.1).
    • \r\n
    • Actualización automática de traducciones de WordPress: las traducciones a tu idioma, si varían, también se actualizarán automáticamente.
    • \r\n
    • Nuevo sistema de comprobación de contraseñas, que detecta fallos comunes en la generación de claves por parte del usuario.
    • \r\n
    • Mejoras en el buscador interno, que ahora mostrará los resultados por relevancia y jerarquía.
    • \r\n
    • Mejora en las queries por fecha de WP_Query
    • \r\n
    ','WordPress 3.7 final ya disponible','','publish','open','open','','wordpress-3-7-final-ya-disponible','','','2014-07-27 18:53:58','2014-07-27 18:53:58','',0,'http://es.wordpressorg.dev/?p=9',0,'post','',0), (10,1,'2014-07-27 18:52:35','2014-07-27 18:52:35','Ya está disponible para descarga o instalación desde el Escritorio la versión 3.7 de WordPress, cuyas principales novedades son las siguientes:\r\n
      \r\n
    • Actualizaciones automáticas en segundo plano: nunca más tendrás que actualizar versiones de seguridad o mantenimiento pues WordPress se actualizará en segundo plano y sin necesidad de intervención del usuario. Esto solo afecta a versiones menores (p.ej: de la versión 3.7 a la 3.7.1).
    • \r\n
    • Actualización automática de traducciones de WordPress: las traducciones a tu idioma, si varían, también se actualizarán automáticamente.
    • \r\n
    • Nuevo sistema de comprobación de contraseñas, que detecta fallos comunes en la generación de claves por parte del usuario.
    • \r\n
    • Mejoras en el buscador interno, que ahora mostrará los resultados por relevancia y jerarquía.
    • \r\n
    • Mejora en las queries por fecha de WP_Query
    • \r\n
    ','WordPress 3.7 final ya disponible','','inherit','open','open','','9-revision-v1','','','2014-07-27 18:52:35','2014-07-27 18:52:35','',9,'http://es.wordpressorg.dev/2014/07/27/9-revision-v1/',0,'revision','',0), (12,1,'2014-07-27 18:56:42','2014-07-27 18:56:42','La versión 3.8 de WordPress,  “Parker” (en honor de Charlie Parker) ya está disponible para descarga o para actualizar desde tu escritorio de WordPress. Esperamos que te guste esta actualización, una de las más bonitas hasta ahora.\r\n

    Presentando un nuevo y moderno diseño

    \r\n\"overview\"\r\n\r\nWordPress ha tenido un lavado de cara. 3.8 trae un nuevo aspecto de toda la administración. Han desaparecido los gradientes y los grises y han dejado paso a un diseño mucho más colorido.\r\n
    \"about-modern-wordpress\"
    \r\n

    Estética moderna

    \r\nEl diseño del nuevo escritorio de WordPress tiene un diseño fresco y moderno que abraza la claridad y la simplicidad.\r\n

    Tipografía más limpia

    \r\nOpen Sans es la nueva tipografía utilizada. Proporciona un texto simple y fácil de leer optimizado para escritorio y móviles. Y es Open Source, como WordPress.\r\n

    Contraste refinado

    \r\nPensamos que un diseño bonito nunca debe sacrificar a la legibilidad. Con un contraste superior y una tipografía más grande, el nuevo diseño es fácil de leer y un placer para navegar.\r\n\r\n
    \r\n\r\n

    WordPress en todos los dispositivos

    \r\n\"responsive\"\r\n\r\nTodos accedemos a internet de distintas formas. Teléfono, tablet, portátil, escritorio... No importa qué uses, WordPress se adaptará a tu dispositivo y te sentirás como en casa.\r\n

    Gran definición a alta velocidad

    \r\nWordPress tiene más definición que nunca con sus nuevos iconos vectoriales, que se escalan con tu pantalla. Gracias a su diseño, las páginas cargan significativamente más rápido también.\r\n\r\n
    \r\n\r\n

    Colores de administración a juego con tu personalidad

    \r\n\"colors\"\r\n\r\nWordPress también ha actualizado sus colores. Hemos incluido ocho colores nuevos para la administración, para que puedas escoger el que mejor vaya contigo.\r\n\r\nPuedes ver los colores y modificarlos en tu página de perfil.\r\n\r\n
    \r\n\r\n

    Administración de temas redefinida

    \r\n\"themes\"\r\n\r\nLa nueva pantalla de temas te permite ver todos tus temas de un vistazo. ¿Quieres más información? Haz click para más información. Después, siéntate y utiliza el teclado para navegar entre tus temas.\r\n

    widgets mejorados

    \r\nArrastra-arrastra-arrastra. Desliza-desliza-desliza. Administrar los widgets puede ser complicado. Con el nuevo diseño, hemos trabajado en mejorar la pantalla de widgets.\r\n\r\n¿Tienes un monitor grande? Las zonas de widgets se apilarán para utilizar todo el espacio disponible. ¿Usando una tablet? Simplemente toca sobre un widget para añadirlo.\r\n\r\n
    \r\n\r\n

    Twenty Fourteen, un nuevo tema magazine

    \r\n

    \"The

    \r\n

    Transforma tu blog en un magazine

    \r\nCrea un sitio magazine con WordPress y Twenty Fourteen. Elige una plantilla o un slider para mostrar el contenido en tu página principal. Configura tu sitio con tres áreas de widgets, o cambia la estructura con otras plantillas.\r\n\r\nCon un diseño estupendo que no compromete nuestra simplicidad, Twenty Fourteen es nuestro tema más intrépido hasta el momento.\r\n\r\n
    \r\n\r\n

    El inicio de una nueva era

    \r\nEsta versión la ha liderado Matt Mullenweg. Esta es nuestra segunda versión utilizando el proceso de desarrollo \"primero los plugins\", con un tiempo de desarrollo mucho menor que en el pasado. Creemos que va a ser genial. Puedes ver qué funcionalidades están en producción ahora mismo en  make/core blog.\r\n\r\nEstos son los traductores que hacen posible esta nueva versión 3.8 en español:\r\n\r\nalbertochoaArthur Freitasbegonyabrasofiloc.vanzetti@libero.itclosemarketingdanicasatidcarreroDesikDiegoEjner GalazfedelosaFitoschido,guillelo11ideawebigmingoivarsmasJavier CabellosJavier SantosjesuscortesJoel21Jorge BernalJuanfra AldasoroJuan Ramon DiazJulietalanda,leandroprzlonchboxMarco ZinkMariano Perezmartinprojectmerkuriomira360PaulMyattpedrocarrillophpdev3PirerRadina Maticredywebs,ReysonRookiewiisamustvthoronVictor J. QuesadavlatexvparrillawjmYllelder, and Ze Fontainhas.\r\n\r\n ','WordPress 3.8 \"Parker\"','','publish','open','open','','wordpress-3-8-parker','','','2014-07-27 18:58:10','2014-07-27 18:58:10','',0,'http://es.wordpressorg.dev/?p=12',0,'post','',0), (13,1,'2014-07-27 18:56:42','2014-07-27 18:56:42','','WordPress 3.8 \"Parker\"','','inherit','open','open','','12-revision-v1','','','2014-07-27 18:56:42','2014-07-27 18:56:42','',12,'http://es.wordpressorg.dev/2014/07/27/12-revision-v1/',0,'revision','',0), (14,1,'2014-07-27 18:57:44','2014-07-27 18:57:44','La versión 3.8 de WordPress,  “Parker” (en honor de Charlie Parker) ya está disponible para descarga o para actualizar desde tu escritorio de WordPress. Esperamos que te guste esta actualización, una de las más bonitas hasta ahora.\n

    Presentando un nuevo y moderno diseño

    \n\"overview\"\n\nWordPress ha tenido un lavado de cara. 3.8 trae un nuevo aspecto de toda la administración. Han desaparecido los gradientes y los grises y han dejado paso a un diseño mucho más colorido.\n
    \"about-modern-wordpress\"
    \n

    Estética moderna

    \nEl diseño del nuevo escritorio de WordPress tiene un diseño fresco y moderno que abraza la claridad y la simplicidad.\n

    Tipografía más limpia

    \nOpen Sans es la nueva tipografía utilizada. Proporciona un texto simple y fácil de leer optimizado para escritorio y móviles. Y es Open Source, como WordPress.\n

    Contraste refinado

    \nPensamos que un diseño bonito nunca debe sacrificar a la legibilidad. Con un contraste superior y una tipografía más grande, el nuevo diseño es fácil de leer y un placer para navegar.\n\n
    \n\n

    WordPress en todos los dispositivos

    \n\"responsive\"\n\nTodos accedemos a internet de distintas formas. Teléfono, tablet, portátil, escritorio... No importa qué uses, WordPress se adaptará a tu dispositivo y te sentirás como en casa.\n

    Gran definición a alta velocidad

    \nWordPress tiene más definición que nunca con sus nuevos iconos vectoriales, que se escalan con tu pantalla. Gracias a su diseño, las páginas cargan significativamente más rápido también.\n\n
    \n\n

    Colores de administración a juego con tu personalidad

    \n\"colors\"\n\nWordPress también ha actualizado sus colores. Hemos incluido ocho colores nuevos para la administración, para que puedas escoger el que mejor vaya contigo.\n\nPuedes ver los colores y modificarlos en tu página de perfil.\n\n
    \n\n

    Administración de temas redefinida

    \n\"themes\"\n\nLa nueva pantalla de temas te permite ver todos tus temas de un vistazo. ¿Quieres más información? Haz click para más información. Después, siéntate y utiliza el teclado para navegar entre tus temas.\n

    widgets mejorados

    \nArrastra-arrastra-arrastra. Desliza-desliza-desliza. Administrar los widgets puede ser complicado. Con el nuevo diseño, hemos trabajado en mejorar la pantalla de widgets.\n\n¿Tienes un monitor grande? Las zonas de widgets se apilarán para utilizar todo el espacio disponible. ¿Usando una tablet? Simplemente toca sobre un widget para añadirlo.\n\n
    \n\n

    Twenty Fourteen, un nuevo tema magazine

    \n

    \"The

    \n

    Transforma tu blog en un magazine

    \nCrea un sitio magazine con WordPress y Twenty Fourteen. Elige una plantilla o un slider para mostrar el contenido en tu página principal. Configura tu sitio con tres áreas de widgets, o cambia la estructura con otras plantillas.\n\nCon un diseño estupendo que no compromete nuestra simplicidad, Twenty Fourteen es nuestro tema más intrépido hasta el momento.\n\n
    \n\n

    El inicio de una nueva era

    \nEsta versión la ha liderado Matt Mullenweg. Esta es nuestra segunda versión utilizando el proceso de desarrollo \"primero los plugins\", con un tiempo de desarrollo mucho menor que en el pasado. Creemos que va a ser genial. Puedes ver qué funcionalidades están en producción ahora mismo en  make/core blog.\n\nEstos son los traductores que hacen posible esta nueva versión 3.8 en español:\n\nalbertochoaArthur Freitasbegonyabrasofiloc.vanzetti@libero.itclosemarketingdanicasatidcarreroDesikDiegoEjner GalazfedelosaFitoschido,guillelo11ideawebigmingoivarsmasJavier CabellosJavier SantosjesuscortesJoel21Jorge BernalJuanfra AldasoroJuan Ramon DiazJulietalanda,leandroprzlonchboxMarco ZinkMariano Perezmartinprojectmerkuriomira360PaulMyattpedrocarrillophpdev3PirerRadina Maticredywebs,ReysonRookiewiisamustvthoronVictor J. QuesadavlatexvparrillawjmYllelder, and Ze Fontainhas.\n\n ','WordPress 3.8 \"Parker\"','','inherit','open','open','','12-autosave-v1','','','2014-07-27 18:57:44','2014-07-27 18:57:44','',12,'http://es.wordpressorg.dev/2014/07/27/12-autosave-v1/',0,'revision','',0), (15,1,'2014-07-27 18:57:50','2014-07-27 18:57:50','La versión 3.8 de WordPress,  “Parker” (en honor de Charlie Parker) ya está disponible para descarga o para actualizar desde tu escritorio de WordPress. Esperamos que te guste esta actualización, una de las más bonitas hasta ahora.\r\n

    Presentando un nuevo y moderno diseño

    \r\n\"overview\"\r\n\r\nWordPress ha tenido un lavado de cara. 3.8 trae un nuevo aspecto de toda la administración. Han desaparecido los gradientes y los grises y han dejado paso a un diseño mucho más colorido.\r\n
    \"about-modern-wordpress\"
    \r\n

    Estética moderna

    \r\nEl diseño del nuevo escritorio de WordPress tiene un diseño fresco y moderno que abraza la claridad y la simplicidad.\r\n

    Tipografía más limpia

    \r\nOpen Sans es la nueva tipografía utilizada. Proporciona un texto simple y fácil de leer optimizado para escritorio y móviles. Y es Open Source, como WordPress.\r\n

    Contraste refinado

    \r\nPensamos que un diseño bonito nunca debe sacrificar a la legibilidad. Con un contraste superior y una tipografía más grande, el nuevo diseño es fácil de leer y un placer para navegar.\r\n\r\n
    \r\n\r\n

    WordPress en todos los dispositivos

    \r\n\"responsive\"\r\n\r\nTodos accedemos a internet de distintas formas. Teléfono, tablet, portátil, escritorio... No importa qué uses, WordPress se adaptará a tu dispositivo y te sentirás como en casa.\r\n

    Gran definición a alta velocidad

    \r\nWordPress tiene más definición que nunca con sus nuevos iconos vectoriales, que se escalan con tu pantalla. Gracias a su diseño, las páginas cargan significativamente más rápido también.\r\n\r\n
    \r\n\r\n

    Colores de administración a juego con tu personalidad

    \r\n\"colors\"\r\n\r\nWordPress también ha actualizado sus colores. Hemos incluido ocho colores nuevos para la administración, para que puedas escoger el que mejor vaya contigo.\r\n\r\nPuedes ver los colores y modificarlos en tu página de perfil.\r\n\r\n
    \r\n\r\n

    Administración de temas redefinida

    \r\n\"themes\"\r\n\r\nLa nueva pantalla de temas te permite ver todos tus temas de un vistazo. ¿Quieres más información? Haz click para más información. Después, siéntate y utiliza el teclado para navegar entre tus temas.\r\n

    widgets mejorados

    \r\nArrastra-arrastra-arrastra. Desliza-desliza-desliza. Administrar los widgets puede ser complicado. Con el nuevo diseño, hemos trabajado en mejorar la pantalla de widgets.\r\n\r\n¿Tienes un monitor grande? Las zonas de widgets se apilarán para utilizar todo el espacio disponible. ¿Usando una tablet? Simplemente toca sobre un widget para añadirlo.\r\n\r\n
    \r\n\r\n

    Twenty Fourteen, un nuevo tema magazine

    \r\n

    \"The

    \r\n

    Transforma tu blog en un magazine

    \r\nCrea un sitio magazine con WordPress y Twenty Fourteen. Elige una plantilla o un slider para mostrar el contenido en tu página principal. Configura tu sitio con tres áreas de widgets, o cambia la estructura con otras plantillas.\r\n\r\nCon un diseño estupendo que no compromete nuestra simplicidad, Twenty Fourteen es nuestro tema más intrépido hasta el momento.\r\n\r\n
    \r\n\r\n

    El inicio de una nueva era

    \r\nEsta versión la ha liderado Matt Mullenweg. Esta es nuestra segunda versión utilizando el proceso de desarrollo \"primero los plugins\", con un tiempo de desarrollo mucho menor que en el pasado. Creemos que va a ser genial. Puedes ver qué funcionalidades están en producción ahora mismo en  make/core blog.\r\n\r\nEstos son los traductores que hacen posible esta nueva versión 3.8 en español:\r\n\r\nalbertochoaArthur Freitasbegonyabrasofiloc.vanzetti@libero.itclosemarketingdanicasatidcarreroDesikDiegoEjner GalazfedelosaFitoschido,guillelo11ideawebigmingoivarsmasJavier CabellosJavier SantosjesuscortesJoel21Jorge BernalJuanfra AldasoroJuan Ramon DiazJulietalanda,leandroprzlonchboxMarco ZinkMariano Perezmartinprojectmerkuriomira360PaulMyattpedrocarrillophpdev3PirerRadina Maticredywebs,ReysonRookiewiisamustvthoronVictor J. QuesadavlatexvparrillawjmYllelder, and Ze Fontainhas.\r\n\r\n ','WordPress 3.8 \"Parker\"','','inherit','open','open','','12-revision-v1','','','2014-07-27 18:57:50','2014-07-27 18:57:50','',12,'http://es.wordpressorg.dev/2014/07/27/12-revision-v1/',0,'revision','',0), (17,1,'2014-07-27 19:03:09','2014-07-27 19:03:09','

    La versión 3.9 de WordPress, llamada \"Smith\" en honor al organista de Jazz Jimmy Smith, está disponible para descarga o actualización en tu escritorio de WordPress. Esta distribución trae una serie de mejoras que esperamos te encanten.

    \r\n \r\n
    [wpvideo sAiXhCfV]
    \r\n
    \r\n\r\n\"editor\"\r\n

    Edición visual mejorada

    \r\nEl actualizado editor visual ha mejorado en velocidad, accesibilidad, y soporte móvil. Ahora puedes pegar en el editor visual desde tu procesador de texto sin necesidad de perder tiempo en limpiar el estilo (sí, estamos hablando de Microsoft Word).\r\n\r\n
    \r\n
    \r\n
    \r\n\r\n\"image\"\r\n

    Edita imágenes fácilmente

    \r\nCon un acceso más rápido a las herramientas de recorte y rotación, ahora es mucho más fácil editar tus imágenes mientras editas tus artículos. También puedes escalar las imágenes directamente en el editor para encontrar el tamaño adecuado.\r\n\r\n
    \r\n
    \r\n
    \r\n\r\n\"dragdrop\"\r\n

    Arrastra y suelta tus imágenes

    \r\nSubir tus imágenes es más fácil que nunca. Sólo arrástralas desde tu escritorio y suéltalas en el editor.\r\n\r\n
    \r\n\r\n
    \r\n\r\n

    Vista previa de galerías

    \r\n

    \"gallery\"

    \r\n

    Las galerías se muestran en el editor como se mostrarán en tu artículo publicado. Nunca fue tan fácil.

    \r\n\r\n\r\n
    \r\n\r\n

    Haz más con audio y vídeo

    \r\n\"playlist\"\r\n\r\nLas imágenes tienen galerías. Ahora hemos añadido listas de reproducción de audio y vídeo, para que puedas mostrar tambíen tu música y videoclips.\r\n\r\n
    \r\n\r\n

    Widgets y previsualizaciones de cabeceras en vivo

    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n

    Añade, edita y reordena los widgets directamente en el personalizador de temas. No más \"salvar y sorpresa\". Ahora podrás ver tus cambios en vivo y salvarlos sólo cuando estén listos.

    \r\n

    La herramienta de cabeceras mejorada también te permite subir, recortar y modificar tus cabeceras en el propio personalizador.

    \r\n\r\n\r\n
    \r\n\r\n

    Un mejorado buscador de temas

    \r\n

    \"theme\"\r\nBuscar un nuevo tema debería ser divertido y sencillo. Con este nuevo buscador te encantará perderte entre los temas gratuitos de WordPress.org.

    \r\n\r\n\r\n
    \r\n\r\n

    El equipo

    \r\n

    Esta versión ha estado comandada por Andrew Nacin y Mike Schroder, con la ayuda de todas estas personas. Hay 267 contribuidores a los que queremos agradecer su ayuda en esta versión:

    \r\n

    Aaron D. CampbellAaron JorbinAdam HarleyAdam SilversteinadelvalAjayAkeda BagusAlex ConchaAlison BarrettAllan CollinsAmy Hendrix (sabreuse)Andrea FerciaAndrew NacinAndrew NorcrossAndrew OzzAndrey \"Rarst\" Savchenko,Andy KeithAndy SkeltonAnton TimmermansAubrey PortwoodBarryBartosz RomanowskibassgangbcworkzBen DunkleBernhard RiedlbigdawggiBob GregorbobbingwideBrad TouesnardbradparbsbramdBrandon Kraftbrasofilo,bravokeylBryan PettycgaffgaChirag SwadiaChoubyChris BlowerChris OlbeksonChris ScottchriseversonchrisguitarguyChristopher Finkeciantic,cmmarslenderComparativa de BancosConnor JenningsCor van NoorloosCorphi,cramdesignDaniel BachhuberDaniel Jalkut (Red Sweater)Danny de HaanDaryl KoopersmithDave Kellam (eightface)DaveEDavid A. KennedyDavid Anderson,David MarichalDenis de BernardyDion HulseDominik SchillingDoug Wollison,Drew JaynesDrProtocolsDustin FilippinieatingrulesedikElio RiveroenejEric Andrew LewisEric MannErick HitterEvan AndersonevarleseFahmifboender,Frank KleinGary CaoGary JonesGary PendergastgenkisanGennady Kovshenin,George StephanisGraham ArmfieldGrant ManghamGregory CorneliusGregory KarpinskyhakrehanniHelen Hou-SandíippetkovIpstenu (Mika Epstein)J.D. GrimesJack ReichertjamesleeJanneke Van DorpejanrennJayCCJeff SebringJen MyloJeremy FeltJesin AJesper Johansen (jayjdk)jnielsendotnetJoan ArtesJoe DolsonJoe HoyleJohn BlackbournJohn James JacobyJohn P. BlochJohn ReganJon CaveJonas Bolinder (jond3r)Joost de ValkJosh PollockJoshua Abenazerjstraitiff,Julio PotierJustin KopepasahJustin SaintonK.Adam WhiteKailey (trepmal),KasparsKelly DwankerikaeKevin WorthingtonKim ParsellKirk Wightkitchin,klihelpKnut SparhellKonstantin KovsheninKonstantin ObenlandKrzysiek Drozdz,Lance WillettLee WillislkwdwrdlpointetLuc De BrouwerLucas KarpiukMark BarnesMark JaquithMarko HeijnenMarventusMatt (Thomas) MiklicMatt Banks,Matt MullenwegMatthew BoynesMatthew DentonMatthew Haines-Young,mattonomicsmattyrobMatías VenturaMax CutlermcadwellMel Choycemeloniq,Michael ArestadMichel - xiligroup devMiguel FonsecaMike BurnsMike Hansen,Mike MangerMike SchinkelMike Schrodermikecorkummitcho (Michael Yoshitaka Erlewine)Mohammad JangdaMorgan EstesMorten Rand-HendriksenNaoko TakanoNashwan Doaqannendeb55Nick HalseyNicole ArnoldNikhil Vimal (NikV),nivijahnofearincNuno MorgadinhoolivMOmer KornerOriginalEXEoso96_2000,patricknamiPaul GibbsPaul WildepavelevapPbearnePeter WestwoodPhilip Arthur MoorePippin WilliamsonPrasath NadarajahprettyboympRaam Dev,rachelbakerRam Ratan MauryaramonchiaraRescuework SupportRhys Wynne,Ricardo CorreiaRichard SweeneyRichard Taperichard2222Ricky Lee Whittemore,Robert ChapinrobmillerRodrigo Primoromaimperatorroothorickruud@joyo,Ryan BorenRyan McCuesalcodeSamuel Wood (Otto)SandeepsbrunerScott Lee,Scott ReillyScott TaylorScreenfeedFrscribusdasseSean ButzeSean HayesSean NessworthySergey BiryukovshahpranafShaun AndrewsShinichiNSimon Prosser,Simon WheatleySiobhanSiobhan Bamber (siobhyb)sirzoorosolarissmoke,sonjanycSpencer FinnellSpencer Piontkowskistephcook22Stephen Edgar,Stephen HarrisSteven WordTakayuki MiyauchiTanner MousheyTaylor Lovett,tbramstellyworthTobiasBgTom AugerTom WillmotTophertopquarkyTorsten LandsiedelToruTravis SmithUmesh KumarundergroundnetworkVarunAgw,wawcoWeston RuterwokamotoxsonicYoav FarhiYuri VictorZach Tirrell, y Ze Fontainhas. Gracias también a Michael Pick por producir y distribuir el vídeo.

    \r\n

    Si quieres seguirnos, ¡o ayudarnos!, mira Make WordPress y nuestro core development blog. Gracias por elegir WordPress. ¡Nos vemos en la versión 4.0!

    \r\n\r\n\r\n
    \r\n\r\nEn nuestra página de About (about.php) podrás encontrar a todas estas personas. Gracias a ellos estás disfrutando de la versión 3.9 de WordPress en español:\r\n\r\n\"traductores\"','WordPress 3.9 \"Smith\"','','publish','open','open','','wordpress-3-9-smith','','','2014-07-27 19:03:46','2014-07-27 19:03:46','',0,'http://es.wordpressorg.dev/?p=17',0,'post','',0), (18,1,'2014-07-27 19:03:09','2014-07-27 19:03:09','

    La versión 3.9 de WordPress, llamada \"Smith\" en honor al organista de Jazz Jimmy Smith, está disponible para descarga o actualización en tu escritorio de WordPress. Esta distribución trae una serie de mejoras que esperamos te encanten.

    \r\n \r\n
    [wpvideo sAiXhCfV]
    \r\n
    \r\n\r\n\"editor\"\r\n

    Edición visual mejorada

    \r\nEl actualizado editor visual ha mejorado en velocidad, accesibilidad, y soporte móvil. Ahora puedes pegar en el editor visual desde tu procesador de texto sin necesidad de perder tiempo en limpiar el estilo (sí, estamos hablando de Microsoft Word).\r\n\r\n
    \r\n
    \r\n
    \r\n\r\n\"image\"\r\n

    Edita imágenes fácilmente

    \r\nCon un acceso más rápido a las herramientas de recorte y rotación, ahora es mucho más fácil editar tus imágenes mientras editas tus artículos. También puedes escalar las imágenes directamente en el editor para encontrar el tamaño adecuado.\r\n\r\n
    \r\n
    \r\n
    \r\n\r\n\"dragdrop\"\r\n

    Arrastra y suelta tus imágenes

    \r\nSubir tus imágenes es más fácil que nunca. Sólo arrástralas desde tu escritorio y suéltalas en el editor.\r\n\r\n
    \r\n\r\n
    \r\n\r\n

    Vista previa de galerías

    \r\n

    \"gallery\"

    \r\n

    Las galerías se muestran en el editor como se mostrarán en tu artículo publicado. Nunca fue tan fácil.

    \r\n\r\n\r\n
    \r\n\r\n

    Haz más con audio y vídeo

    \r\n\"playlist\"\r\n\r\nLas imágenes tienen galerías. Ahora hemos añadido listas de reproducción de audio y vídeo, para que puedas mostrar tambíen tu música y videoclips.\r\n\r\n
    \r\n\r\n

    Widgets y previsualizaciones de cabeceras en vivo

    \r\n
    \r\n

    \r\n\r\n
    \r\n
    \r\n
    \r\n
    \r\n

    \r\n\r\n
    \r\n

    Añade, edita y reordena los widgets directamente en el personalizador de temas. No más \"salvar y sorpresa\". Ahora podrás ver tus cambios en vivo y salvarlos sólo cuando estén listos.

    \r\n

    La herramienta de cabeceras mejorada también te permite subir, recortar y modificar tus cabeceras en el propio personalizador.

    \r\n\r\n\r\n
    \r\n\r\n

    Un mejorado buscador de temas

    \r\n

    \"theme\"\r\nBuscar un nuevo tema debería ser divertido y sencillo. Con este nuevo buscador te encantará perderte entre los temas gratuitos de WordPress.org.

    \r\n\r\n\r\n
    \r\n\r\n

    El equipo

    \r\n

    Esta versión ha estado comandada por Andrew Nacin y Mike Schroder, con la ayuda de todas estas personas. Hay 267 contribuidores a los que queremos agradecer su ayuda en esta versión:

    \r\n

    Aaron D. CampbellAaron JorbinAdam HarleyAdam SilversteinadelvalAjayAkeda BagusAlex ConchaAlison BarrettAllan CollinsAmy Hendrix (sabreuse)Andrea FerciaAndrew NacinAndrew NorcrossAndrew OzzAndrey \"Rarst\" Savchenko,Andy KeithAndy SkeltonAnton TimmermansAubrey PortwoodBarryBartosz RomanowskibassgangbcworkzBen DunkleBernhard RiedlbigdawggiBob GregorbobbingwideBrad TouesnardbradparbsbramdBrandon Kraftbrasofilo,bravokeylBryan PettycgaffgaChirag SwadiaChoubyChris BlowerChris OlbeksonChris ScottchriseversonchrisguitarguyChristopher Finkeciantic,cmmarslenderComparativa de BancosConnor JenningsCor van NoorloosCorphi,cramdesignDaniel BachhuberDaniel Jalkut (Red Sweater)Danny de HaanDaryl KoopersmithDave Kellam (eightface)DaveEDavid A. KennedyDavid Anderson,David MarichalDenis de BernardyDion HulseDominik SchillingDoug Wollison,Drew JaynesDrProtocolsDustin FilippinieatingrulesedikElio RiveroenejEric Andrew LewisEric MannErick HitterEvan AndersonevarleseFahmifboender,Frank KleinGary CaoGary JonesGary PendergastgenkisanGennady Kovshenin,George StephanisGraham ArmfieldGrant ManghamGregory CorneliusGregory KarpinskyhakrehanniHelen Hou-SandíippetkovIpstenu (Mika Epstein)J.D. GrimesJack ReichertjamesleeJanneke Van DorpejanrennJayCCJeff SebringJen MyloJeremy FeltJesin AJesper Johansen (jayjdk)jnielsendotnetJoan ArtesJoe DolsonJoe HoyleJohn BlackbournJohn James JacobyJohn P. BlochJohn ReganJon CaveJonas Bolinder (jond3r)Joost de ValkJosh PollockJoshua Abenazerjstraitiff,Julio PotierJustin KopepasahJustin SaintonK.Adam WhiteKailey (trepmal),KasparsKelly DwankerikaeKevin WorthingtonKim ParsellKirk Wightkitchin,klihelpKnut SparhellKonstantin KovsheninKonstantin ObenlandKrzysiek Drozdz,Lance WillettLee WillislkwdwrdlpointetLuc De BrouwerLucas KarpiukMark BarnesMark JaquithMarko HeijnenMarventusMatt (Thomas) MiklicMatt Banks,Matt MullenwegMatthew BoynesMatthew DentonMatthew Haines-Young,mattonomicsmattyrobMatías VenturaMax CutlermcadwellMel Choycemeloniq,Michael ArestadMichel - xiligroup devMiguel FonsecaMike BurnsMike Hansen,Mike MangerMike SchinkelMike Schrodermikecorkummitcho (Michael Yoshitaka Erlewine)Mohammad JangdaMorgan EstesMorten Rand-HendriksenNaoko TakanoNashwan Doaqannendeb55Nick HalseyNicole ArnoldNikhil Vimal (NikV),nivijahnofearincNuno MorgadinhoolivMOmer KornerOriginalEXEoso96_2000,patricknamiPaul GibbsPaul WildepavelevapPbearnePeter WestwoodPhilip Arthur MoorePippin WilliamsonPrasath NadarajahprettyboympRaam Dev,rachelbakerRam Ratan MauryaramonchiaraRescuework SupportRhys Wynne,Ricardo CorreiaRichard SweeneyRichard Taperichard2222Ricky Lee Whittemore,Robert ChapinrobmillerRodrigo Primoromaimperatorroothorickruud@joyo,Ryan BorenRyan McCuesalcodeSamuel Wood (Otto)SandeepsbrunerScott Lee,Scott ReillyScott TaylorScreenfeedFrscribusdasseSean ButzeSean HayesSean NessworthySergey BiryukovshahpranafShaun AndrewsShinichiNSimon Prosser,Simon WheatleySiobhanSiobhan Bamber (siobhyb)sirzoorosolarissmoke,sonjanycSpencer FinnellSpencer Piontkowskistephcook22Stephen Edgar,Stephen HarrisSteven WordTakayuki MiyauchiTanner MousheyTaylor Lovett,tbramstellyworthTobiasBgTom AugerTom WillmotTophertopquarkyTorsten LandsiedelToruTravis SmithUmesh KumarundergroundnetworkVarunAgw,wawcoWeston RuterwokamotoxsonicYoav FarhiYuri VictorZach Tirrell, y Ze Fontainhas. Gracias también a Michael Pick por producir y distribuir el vídeo.

    \r\n

    Si quieres seguirnos, ¡o ayudarnos!, mira Make WordPress y nuestro core development blog. Gracias por elegir WordPress. ¡Nos vemos en la versión 4.0!

    \r\n\r\n\r\n
    \r\n\r\nEn nuestra página de About (about.php) podrás encontrar a todas estas personas. Gracias a ellos estás disfrutando de la versión 3.9 de WordPress en español:\r\n\r\n\"traductores\"','WordPress 3.9 \"Smith\"','','inherit','open','open','','17-revision-v1','','','2014-07-27 19:03:09','2014-07-27 19:03:09','',17,'http://es.wordpressorg.dev/2014/07/27/17-revision-v1/',0,'revision','',0), (19,1,'2014-07-27 19:03:46','2014-07-27 19:03:46','

    La versión 3.9 de WordPress, llamada \"Smith\" en honor al organista de Jazz Jimmy Smith, está disponible para descarga o actualización en tu escritorio de WordPress. Esta distribución trae una serie de mejoras que esperamos te encanten.

    \r\n \r\n
    [wpvideo sAiXhCfV]
    \r\n
    \r\n\r\n\"editor\"\r\n

    Edición visual mejorada

    \r\nEl actualizado editor visual ha mejorado en velocidad, accesibilidad, y soporte móvil. Ahora puedes pegar en el editor visual desde tu procesador de texto sin necesidad de perder tiempo en limpiar el estilo (sí, estamos hablando de Microsoft Word).\r\n\r\n
    \r\n
    \r\n
    \r\n\r\n\"image\"\r\n

    Edita imágenes fácilmente

    \r\nCon un acceso más rápido a las herramientas de recorte y rotación, ahora es mucho más fácil editar tus imágenes mientras editas tus artículos. También puedes escalar las imágenes directamente en el editor para encontrar el tamaño adecuado.\r\n\r\n
    \r\n
    \r\n
    \r\n\r\n\"dragdrop\"\r\n

    Arrastra y suelta tus imágenes

    \r\nSubir tus imágenes es más fácil que nunca. Sólo arrástralas desde tu escritorio y suéltalas en el editor.\r\n\r\n
    \r\n\r\n
    \r\n\r\n

    Vista previa de galerías

    \r\n

    \"gallery\"

    \r\n

    Las galerías se muestran en el editor como se mostrarán en tu artículo publicado. Nunca fue tan fácil.

    \r\n\r\n\r\n
    \r\n\r\n

    Haz más con audio y vídeo

    \r\n\"playlist\"\r\n\r\nLas imágenes tienen galerías. Ahora hemos añadido listas de reproducción de audio y vídeo, para que puedas mostrar tambíen tu música y videoclips.\r\n\r\n
    \r\n\r\n

    Widgets y previsualizaciones de cabeceras en vivo

    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n
    \r\n

    Añade, edita y reordena los widgets directamente en el personalizador de temas. No más \"salvar y sorpresa\". Ahora podrás ver tus cambios en vivo y salvarlos sólo cuando estén listos.

    \r\n

    La herramienta de cabeceras mejorada también te permite subir, recortar y modificar tus cabeceras en el propio personalizador.

    \r\n\r\n\r\n
    \r\n\r\n

    Un mejorado buscador de temas

    \r\n

    \"theme\"\r\nBuscar un nuevo tema debería ser divertido y sencillo. Con este nuevo buscador te encantará perderte entre los temas gratuitos de WordPress.org.

    \r\n\r\n\r\n
    \r\n\r\n

    El equipo

    \r\n

    Esta versión ha estado comandada por Andrew Nacin y Mike Schroder, con la ayuda de todas estas personas. Hay 267 contribuidores a los que queremos agradecer su ayuda en esta versión:

    \r\n

    Aaron D. CampbellAaron JorbinAdam HarleyAdam SilversteinadelvalAjayAkeda BagusAlex ConchaAlison BarrettAllan CollinsAmy Hendrix (sabreuse)Andrea FerciaAndrew NacinAndrew NorcrossAndrew OzzAndrey \"Rarst\" Savchenko,Andy KeithAndy SkeltonAnton TimmermansAubrey PortwoodBarryBartosz RomanowskibassgangbcworkzBen DunkleBernhard RiedlbigdawggiBob GregorbobbingwideBrad TouesnardbradparbsbramdBrandon Kraftbrasofilo,bravokeylBryan PettycgaffgaChirag SwadiaChoubyChris BlowerChris OlbeksonChris ScottchriseversonchrisguitarguyChristopher Finkeciantic,cmmarslenderComparativa de BancosConnor JenningsCor van NoorloosCorphi,cramdesignDaniel BachhuberDaniel Jalkut (Red Sweater)Danny de HaanDaryl KoopersmithDave Kellam (eightface)DaveEDavid A. KennedyDavid Anderson,David MarichalDenis de BernardyDion HulseDominik SchillingDoug Wollison,Drew JaynesDrProtocolsDustin FilippinieatingrulesedikElio RiveroenejEric Andrew LewisEric MannErick HitterEvan AndersonevarleseFahmifboender,Frank KleinGary CaoGary JonesGary PendergastgenkisanGennady Kovshenin,George StephanisGraham ArmfieldGrant ManghamGregory CorneliusGregory KarpinskyhakrehanniHelen Hou-SandíippetkovIpstenu (Mika Epstein)J.D. GrimesJack ReichertjamesleeJanneke Van DorpejanrennJayCCJeff SebringJen MyloJeremy FeltJesin AJesper Johansen (jayjdk)jnielsendotnetJoan ArtesJoe DolsonJoe HoyleJohn BlackbournJohn James JacobyJohn P. BlochJohn ReganJon CaveJonas Bolinder (jond3r)Joost de ValkJosh PollockJoshua Abenazerjstraitiff,Julio PotierJustin KopepasahJustin SaintonK.Adam WhiteKailey (trepmal),KasparsKelly DwankerikaeKevin WorthingtonKim ParsellKirk Wightkitchin,klihelpKnut SparhellKonstantin KovsheninKonstantin ObenlandKrzysiek Drozdz,Lance WillettLee WillislkwdwrdlpointetLuc De BrouwerLucas KarpiukMark BarnesMark JaquithMarko HeijnenMarventusMatt (Thomas) MiklicMatt Banks,Matt MullenwegMatthew BoynesMatthew DentonMatthew Haines-Young,mattonomicsmattyrobMatías VenturaMax CutlermcadwellMel Choycemeloniq,Michael ArestadMichel - xiligroup devMiguel FonsecaMike BurnsMike Hansen,Mike MangerMike SchinkelMike Schrodermikecorkummitcho (Michael Yoshitaka Erlewine)Mohammad JangdaMorgan EstesMorten Rand-HendriksenNaoko TakanoNashwan Doaqannendeb55Nick HalseyNicole ArnoldNikhil Vimal (NikV),nivijahnofearincNuno MorgadinhoolivMOmer KornerOriginalEXEoso96_2000,patricknamiPaul GibbsPaul WildepavelevapPbearnePeter WestwoodPhilip Arthur MoorePippin WilliamsonPrasath NadarajahprettyboympRaam Dev,rachelbakerRam Ratan MauryaramonchiaraRescuework SupportRhys Wynne,Ricardo CorreiaRichard SweeneyRichard Taperichard2222Ricky Lee Whittemore,Robert ChapinrobmillerRodrigo Primoromaimperatorroothorickruud@joyo,Ryan BorenRyan McCuesalcodeSamuel Wood (Otto)SandeepsbrunerScott Lee,Scott ReillyScott TaylorScreenfeedFrscribusdasseSean ButzeSean HayesSean NessworthySergey BiryukovshahpranafShaun AndrewsShinichiNSimon Prosser,Simon WheatleySiobhanSiobhan Bamber (siobhyb)sirzoorosolarissmoke,sonjanycSpencer FinnellSpencer Piontkowskistephcook22Stephen Edgar,Stephen HarrisSteven WordTakayuki MiyauchiTanner MousheyTaylor Lovett,tbramstellyworthTobiasBgTom AugerTom WillmotTophertopquarkyTorsten LandsiedelToruTravis SmithUmesh KumarundergroundnetworkVarunAgw,wawcoWeston RuterwokamotoxsonicYoav FarhiYuri VictorZach Tirrell, y Ze Fontainhas. Gracias también a Michael Pick por producir y distribuir el vídeo.

    \r\n

    Si quieres seguirnos, ¡o ayudarnos!, mira Make WordPress y nuestro core development blog. Gracias por elegir WordPress. ¡Nos vemos en la versión 4.0!

    \r\n\r\n\r\n
    \r\n\r\nEn nuestra página de About (about.php) podrás encontrar a todas estas personas. Gracias a ellos estás disfrutando de la versión 3.9 de WordPress en español:\r\n\r\n\"traductores\"','WordPress 3.9 \"Smith\"','','inherit','open','open','','17-revision-v1','','','2014-07-27 19:03:46','2014-07-27 19:03:46','',17,'http://es.wordpressorg.dev/2014/07/27/17-revision-v1/',0,'revision','',0), (20,1,'2014-07-27 19:38:45','2014-07-27 19:38:45','La famosa Instalación en 5 minutos\r\n
      \r\n
    1. Descarga el paquete de la última versión WordPress y descomprímelo en una carpeta vacía de tu ordenador.
    2. \r\n
    3. Abre el archivo wp-config-sample.php con un editor de texto plano y rellena los datos de la conexión a tu base de datos.
    4. \r\n
    5. Guarda el archivo como wp-config.php.
    6. \r\n
    7. Sube todo a tu servidor.
    8. \r\n
    9. Abre http://tudominio.com/wp-admin/install.php en tu navegador. Con esto deberán crearse las tablas necesarias para tu sitio. Si hay algún error, haz el favor de revisar tu archivo wp-config.php y probar de nuevo. Si vuelve a fallar visita los foros de soporte (en inglés) con todos los datos que puedas aportar.
    10. \r\n
    11. Anota la contraseña que se te proporcionará o elígela tu mismo (desde WordPress 3.0 y en versiones anteriores se genera automáticamente).
    12. \r\n
    13. El programa de instalación te enviará entonces a la página de acceso. Accede con el nombre de usuario elegido (o  admin en versiones anteriores a WordPress 3.0) y la contraseña creada durante la instalación. Ahora podrás hacer clic en \'Perfil\' y cambiar la contraseña.
    14. \r\n
    \r\nInstalar solo el idioma\r\n\r\nSi ya tienes una instalación funcionando en inglés o cualquier otro idioma, y deseas instalar solamente el archivo para el idioma español, sigue estos sencillos pasos:\r\n
      \r\n
    1. Descarga el paquete de WordPress que se corresponda con tu versión instalada.
    2. \r\n
    3. Descomprime el paquete en una carpeta de tu ordenador.
    4. \r\n
    5. Copia el archivo es_ES.mo que encontrarás en la carpeta /wp-content/languages a esa misma carpeta de tu instalación (si no existe la creas).
    6. \r\n
    7. Edita el archivo wp-config.php de tu WordPress. Busca la linea donde se define WPLANG y asegúrate que es exactamente igual a define(\'WPLANG\', \'es_ES\');
    8. \r\n
    9. ¡Disfruta de tu WordPress en español de España!
    10. \r\n
    \r\nActualizar\r\nAntes de actualizar nada, asegúrate de tener copias de seguridad de cualquier archivo que hayas modificado, como wp-config.php o .htaccess .\r\n\r\nActualizar a 2.5 desde cualquier versión anterior de WordPress:\r\n
      \r\n
    1. Elimina tus archivos de WP anteriores, guardando aquellos que hayas modificado.
    2. \r\n
    3. Sube los nuevos archivos a tu servidor mediante FTP.
    4. \r\n
    5. Dirige tu navegador a /wp-admin/upgrade.php.
    6. \r\n
    7. ¿Esperabas algo más? ¡Pues esto es todo!
    8. \r\n
    \r\nActualizaciones desde la versión 2.7:\r\n\r\nDesde la versión 2.7, WordPress incluye un sistema de actualizaciones automáticas que encontrarás en \'Herramientas -> Actualizar\' o en el Escritorio cuando haya una nueva versión disponible.\r\n\r\nDesde cualquiera de estos enlaces podrás actualizar WordPress a la última versión oficial disponible, y a su traducción. Con este sistema se evita tener que sustituir todos los archivos de WordPress, actualizándose solamente los que hayan sufrido cambios. Por supuesto, también puedes seguir usando el método manual descrito anteriormente.\r\n\r\nActualizaciones desde la versión 3.0:\r\n\r\nDesde la versión 3.0, el sistema de  actualizaciones automáticas lo encontrarás en \'Escritorio -> Actualizaciones\' o en el mismo Escritorio. De nuevo, puedes usar el método de actualización manual como se explica más arriba.\r\n\r\nActualizaciones desde la versión 3.7:\r\n\r\nDesde la versión 3.7, si no lo desactivas, las versiones menores (p.ej. de 3.7 a 3.7.1) se actualizan sin intervención del usuario, de modo totalmente automático. Las versiones mayores (p.ej. de 3.7.x a 3.8) se actualizan igual que en la versión 3.0.\r\n\r\nCambios en los temas\r\n\r\nSi has modificado tus temas, es posible que debas hacerles algunos cambios. Si vas a actualizar tus temas de la versión 1.2 o anterior, hemos creado una guía especial para ti.','Instalación','','publish','open','open','','instalacion','','','2014-07-27 19:38:45','2014-07-27 19:38:45','',0,'http://es.wordpressorg.dev/?page_id=20',0,'page','',0), (21,1,'2014-07-27 19:39:17','2014-07-27 19:39:17','Aquí puedes descargar la versión completa de WordPress en español de España. Para instalarlo, sigue las instrucciones que encontrarás un poco más abajo.\r\n\r\nTambién, si lo deseas, puedes descargar el paquete completo y usar solo el archivo de la traducción sobre una instalación en inglés. Para ello encontrarás el fichero \'es_ES.mo\' que deberás subir a la carpeta \'/wp-content/languages/\' y, posteriormente, comprobar que en el fichero \'wp-config.php\' de la carpeta raíz de tu instalación el siguiente valor está definido de este modo:\r\n
    define (\'WPLANG\', \'es_ES\');
    \r\nSi encuentras algún error en esta traducción, te rogamos nos lo indiques en el subforo de la traducción. Si estás dispuesto a colaborar en la traducción de futuras versiones, ¡escríbenos también!','Descargar','','publish','open','open','','descargar','','','2014-07-27 19:39:17','2014-07-27 19:39:17','',0,'http://es.wordpressorg.dev/?page_id=21',0,'page','',0), (22,1,'2014-07-27 19:39:31','2014-07-27 19:39:31','The contents of this page are filled automatically, you don\'t need to spend time here. Just change the title.','Contacto','','publish','open','open','','contacto','','','2014-07-27 19:39:35','2014-07-27 19:39:35','',0,'http://es.wordpressorg.dev/?page_id=22',0,'page','',0), (23,1,'2014-07-27 19:39:51','2014-07-27 19:39:51','
    ¡Bienvenid@ a WordPress España!
    \r\n \r\n\r\nWordPress es una avanzada plataforma semántica de publicación personal orientada a la estética, los estándares web y la usabilidad. WordPress es libre y, al mismo tiempo, gratuito.\r\n\r\nDicho de forma más sencilla, WordPress es el sistema que utilizas cuando deseas trabajar con tu herramienta de publicación en lugar de pelearte con ella.','¡Bienvenida! ¡Bienvenido!','','publish','open','open','','txt-welcome','','','2014-07-27 21:39:13','2014-07-27 21:39:13','',0,'http://es.wordpressorg.dev/?page_id=23',0,'page','',0), (25,1,'2014-07-27 19:19:47','2014-07-27 19:19:47','Please, neither delete this page, nor change its slug!\r\n\r\nThe contents of this page are filled automatically, you don\'t need to spend time here. Just change the title.','Versiones','','publish','open','open','','versiones','','','2014-07-27 19:36:59','2014-07-27 19:36:59','',0,'http://es.wordpressorg.dev/?page_id=25',0,'page','',0), (27,1,'2014-07-27 19:19:47','2014-07-27 19:19:47','Please, neither delete this page, nor change its slug!\r\n\r\nThe contents of this page are filled automatically, you don\'t need to spend time here. Just change the title.','Versiones','','inherit','open','open','','25-revision-v1','','','2014-07-27 19:19:47','2014-07-27 19:19:47','',25,'http://es.wordpressorg.dev/2014/07/27/25-revision-v1/',0,'revision','',0), (28,1,'2014-07-27 19:38:45','2014-07-27 19:38:45','La famosa Instalación en 5 minutos\r\n
      \r\n
    1. Descarga el paquete de la última versión WordPress y descomprímelo en una carpeta vacía de tu ordenador.
    2. \r\n
    3. Abre el archivo wp-config-sample.php con un editor de texto plano y rellena los datos de la conexión a tu base de datos.
    4. \r\n
    5. Guarda el archivo como wp-config.php.
    6. \r\n
    7. Sube todo a tu servidor.
    8. \r\n
    9. Abre http://tudominio.com/wp-admin/install.php en tu navegador. Con esto deberán crearse las tablas necesarias para tu sitio. Si hay algún error, haz el favor de revisar tu archivo wp-config.php y probar de nuevo. Si vuelve a fallar visita los foros de soporte (en inglés) con todos los datos que puedas aportar.
    10. \r\n
    11. Anota la contraseña que se te proporcionará o elígela tu mismo (desde WordPress 3.0 y en versiones anteriores se genera automáticamente).
    12. \r\n
    13. El programa de instalación te enviará entonces a la página de acceso. Accede con el nombre de usuario elegido (o  admin en versiones anteriores a WordPress 3.0) y la contraseña creada durante la instalación. Ahora podrás hacer clic en \'Perfil\' y cambiar la contraseña.
    14. \r\n
    \r\nInstalar solo el idioma\r\n\r\nSi ya tienes una instalación funcionando en inglés o cualquier otro idioma, y deseas instalar solamente el archivo para el idioma español, sigue estos sencillos pasos:\r\n
      \r\n
    1. Descarga el paquete de WordPress que se corresponda con tu versión instalada.
    2. \r\n
    3. Descomprime el paquete en una carpeta de tu ordenador.
    4. \r\n
    5. Copia el archivo es_ES.mo que encontrarás en la carpeta /wp-content/languages a esa misma carpeta de tu instalación (si no existe la creas).
    6. \r\n
    7. Edita el archivo wp-config.php de tu WordPress. Busca la linea donde se define WPLANG y asegúrate que es exactamente igual a define(\'WPLANG\', \'es_ES\');
    8. \r\n
    9. ¡Disfruta de tu WordPress en español de España!
    10. \r\n
    \r\nActualizar\r\nAntes de actualizar nada, asegúrate de tener copias de seguridad de cualquier archivo que hayas modificado, como wp-config.php o .htaccess .\r\n\r\nActualizar a 2.5 desde cualquier versión anterior de WordPress:\r\n
      \r\n
    1. Elimina tus archivos de WP anteriores, guardando aquellos que hayas modificado.
    2. \r\n
    3. Sube los nuevos archivos a tu servidor mediante FTP.
    4. \r\n
    5. Dirige tu navegador a /wp-admin/upgrade.php.
    6. \r\n
    7. ¿Esperabas algo más? ¡Pues esto es todo!
    8. \r\n
    \r\nActualizaciones desde la versión 2.7:\r\n\r\nDesde la versión 2.7, WordPress incluye un sistema de actualizaciones automáticas que encontrarás en \'Herramientas -> Actualizar\' o en el Escritorio cuando haya una nueva versión disponible.\r\n\r\nDesde cualquiera de estos enlaces podrás actualizar WordPress a la última versión oficial disponible, y a su traducción. Con este sistema se evita tener que sustituir todos los archivos de WordPress, actualizándose solamente los que hayan sufrido cambios. Por supuesto, también puedes seguir usando el método manual descrito anteriormente.\r\n\r\nActualizaciones desde la versión 3.0:\r\n\r\nDesde la versión 3.0, el sistema de  actualizaciones automáticas lo encontrarás en \'Escritorio -> Actualizaciones\' o en el mismo Escritorio. De nuevo, puedes usar el método de actualización manual como se explica más arriba.\r\n\r\nActualizaciones desde la versión 3.7:\r\n\r\nDesde la versión 3.7, si no lo desactivas, las versiones menores (p.ej. de 3.7 a 3.7.1) se actualizan sin intervención del usuario, de modo totalmente automático. Las versiones mayores (p.ej. de 3.7.x a 3.8) se actualizan igual que en la versión 3.0.\r\n\r\nCambios en los temas\r\n\r\nSi has modificado tus temas, es posible que debas hacerles algunos cambios. Si vas a actualizar tus temas de la versión 1.2 o anterior, hemos creado una guía especial para ti.','Instalación','','inherit','open','open','','20-revision-v1','','','2014-07-27 19:38:45','2014-07-27 19:38:45','',20,'http://es.wordpressorg.dev/2014/07/27/20-revision-v1/',0,'revision','',0), (29,1,'2014-07-27 19:39:17','2014-07-27 19:39:17','Aquí puedes descargar la versión completa de WordPress en español de España. Para instalarlo, sigue las instrucciones que encontrarás un poco más abajo.\r\n\r\nTambién, si lo deseas, puedes descargar el paquete completo y usar solo el archivo de la traducción sobre una instalación en inglés. Para ello encontrarás el fichero \'es_ES.mo\' que deberás subir a la carpeta \'/wp-content/languages/\' y, posteriormente, comprobar que en el fichero \'wp-config.php\' de la carpeta raíz de tu instalación el siguiente valor está definido de este modo:\r\n
    define (\'WPLANG\', \'es_ES\');
    \r\nSi encuentras algún error en esta traducción, te rogamos nos lo indiques en el subforo de la traducción. Si estás dispuesto a colaborar en la traducción de futuras versiones, ¡escríbenos también!','Descargar','','inherit','open','open','','21-revision-v1','','','2014-07-27 19:39:17','2014-07-27 19:39:17','',21,'http://es.wordpressorg.dev/2014/07/27/21-revision-v1/',0,'revision','',0), (30,1,'2014-07-27 19:39:31','2014-07-27 19:39:31','The contents of this page are filled automatically, you don\'t need to spend time here. Just change the title.','Contacto','','inherit','open','open','','22-revision-v1','','','2014-07-27 19:39:31','2014-07-27 19:39:31','',22,'http://es.wordpressorg.dev/2014/07/27/22-revision-v1/',0,'revision','',0), (31,1,'2014-07-27 19:39:51','2014-07-27 19:39:51','
    ¡Bienvenid@ a WordPress España!
    \r\n \r\n\r\nWordPress es una avanzada plataforma semántica de publicación personal orientada a la estética, los estándares web y la usabilidad. WordPress es libre y, al mismo tiempo, gratuito.\r\n\r\nDicho de forma más sencilla, WordPress es el sistema que utilizas cuando deseas trabajar con tu herramienta de publicación en lugar de pelearte con ella.','¡Bienvenida! ¡Bienvenido!','','inherit','open','open','','23-revision-v1','','','2014-07-27 19:39:51','2014-07-27 19:39:51','',23,'http://es.wordpressorg.dev/2014/07/27/23-revision-v1/',0,'revision','',0), (32,1,'2014-07-27 20:35:17','2014-07-27 20:35:17','','Inicio','','publish','open','open','','inicio','','','2014-07-27 21:40:29','2014-07-27 21:40:29','',0,'http://es.wordpressorg.dev/?p=32',1,'nav_menu_item','',0), (33,1,'2014-07-27 20:35:17','2014-07-27 20:35:17','','Foros de soporte','','publish','open','open','','foros-de-soporte','','','2014-07-27 21:40:29','2014-07-27 21:40:29','',0,'http://es.wordpressorg.dev/?p=33',2,'nav_menu_item','',0), (34,1,'2014-07-27 20:35:17','2014-07-27 20:35:17','','Guía de traductores','','publish','open','open','','guia-de-traductores','','','2014-07-27 21:40:29','2014-07-27 21:40:29','',0,'http://es.wordpressorg.dev/?p=34',3,'nav_menu_item','',0), (35,1,'2014-07-27 20:35:17','2014-07-27 20:35:17','','Colabora','','publish','open','open','','colabora','','','2014-07-27 21:40:29','2014-07-27 21:40:29','',0,'http://es.wordpressorg.dev/?p=35',4,'nav_menu_item','',0), (37,1,'2014-07-27 21:40:29','2014-07-27 21:40:29','','Contacto','','publish','open','open','','contacto','','','2014-07-27 21:40:29','2014-07-27 21:40:29','',0,'http://es.wordpressorg.dev/?p=37',5,'nav_menu_item','',0); /*!40000 ALTER TABLE `wporg_64_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_64_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_64_term_relationships`; CREATE TABLE `wporg_64_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_64_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_64_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_64_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0), (9,2,0), (9,3,0), (12,4,0), (12,5,0), (12,6,0), (12,7,0), (12,8,0), (12,9,0), (12,10,0), (17,2,0), (17,6,0), (17,7,0), (17,10,0), (17,11,0), (17,12,0), (32,13,0), (33,13,0), (34,13,0), (35,13,0), (37,13,0); /*!40000 ALTER TABLE `wporg_64_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_64_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_64_term_taxonomy`; CREATE TABLE `wporg_64_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_64_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_64_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_64_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1), (2,2,'category','',0,2), (3,3,'post_tag','',0,1), (4,4,'category','',0,1), (5,5,'post_tag','',0,1), (6,6,'post_tag','',0,2), (7,7,'post_tag','',0,2), (8,8,'post_tag','',0,1), (9,9,'post_tag','',0,1), (10,10,'post_tag','',0,2), (11,11,'post_tag','',0,1), (12,12,'post_tag','',0,1), (13,13,'nav_menu','',0,5); /*!40000 ALTER TABLE `wporg_64_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_64_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_64_termmeta`; CREATE TABLE `wporg_64_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_64_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_64_terms`; CREATE TABLE `wporg_64_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_64_terms` WRITE; /*!40000 ALTER TABLE `wporg_64_terms` DISABLE KEYS */; INSERT INTO `wporg_64_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0), (2,'Actualizaciones','actualizaciones',0), (3,'WordPress 3.7','wordpress-3-7',0), (4,'Traducciones','traducciones',0), (5,'3.8','3-8',0), (6,'español','espanol',0), (7,'es_ES','es_es',0), (8,'parker','parker',0), (9,'traducción','traduccion',0), (10,'wordpress','wordpress',0), (11,'3.9','3-9',0), (12,'smith','smith',0), (13,'Rosetta Menu','rosetta-menu',0); /*!40000 ALTER TABLE `wporg_64_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_7_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_7_commentmeta`; CREATE TABLE `wporg_7_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_7_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_7_comments`; CREATE TABLE `wporg_7_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_7_comments` WRITE; /*!40000 ALTER TABLE `wporg_7_comments` DISABLE KEYS */; INSERT INTO `wporg_7_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,'Mr WordPress','','http://wordpressorg.dev/','','2014-12-08 21:52:45','2014-12-08 21:52:45','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_7_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_7_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_7_links`; CREATE TABLE `wporg_7_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_7_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_7_options`; CREATE TABLE `wporg_7_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_7_options` WRITE; /*!40000 ALTER TABLE `wporg_7_options` DISABLE KEYS */; INSERT INTO `wporg_7_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://learn.wordpressorg.dev/','yes'), (2,'home','http://learn.wordpressorg.dev/','yes'), (3,'blogname','Learn WordPress','yes'), (4,'blogdescription','Just another WordPressorg.dev Sites site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','pub/wporg-learn','yes'), (42,'stylesheet','pub/wporg-learn','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_7_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:5:{i:1461914040;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1461923619;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1461923624;a:1:{s:21:\"update_network_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1461966824;a:1:{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:7:\"version\";i:2;}','yes'), (99,'_transient_random_seed','a1e5a8125ec05f1a772615fcc7a1fbec','yes'), (115,'allowedthemes','a:1:{s:15:\"pub/wporg-learn\";b:1;}','yes'), (116,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418082253;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (117,'template_root','/themes','yes'), (118,'stylesheet_root','/themes','yes'), (119,'current_theme','Learn-wporg','yes'), (120,'theme_mods_pub/wporg-learn','a:1:{i:0;b:0;}','yes'), (121,'theme_switched','','yes'), (123,'db_upgraded','','yes'), (136,'rewrite_rules','a:90:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=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:16:\".*wp-signup.php$\";s:21:\"index.php?signup=true\";s:18:\".*wp-activate.php$\";s:23:\"index.php?activate=true\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (137,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (138,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (139,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (140,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (142,'finished_splitting_shared_terms','1','yes'), (143,'site_icon','0','yes'), (144,'medium_large_size_w','768','yes'), (145,'medium_large_size_h','0','yes'); /*!40000 ALTER TABLE `wporg_7_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_7_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_7_postmeta`; CREATE TABLE `wporg_7_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_7_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_7_postmeta` DISABLE KEYS */; INSERT INTO `wporg_7_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_7_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_7_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_7_posts`; CREATE TABLE `wporg_7_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_7_posts` WRITE; /*!40000 ALTER TABLE `wporg_7_posts` DISABLE KEYS */; INSERT INTO `wporg_7_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,'2014-12-08 21:52:45','2014-12-08 21:52:45','Welcome to WordPressorg.dev Sites. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 21:52:45','2014-12-08 21:52:45','',0,'http://wordpressorg.dev/learn/?p=1',0,'post','',1), (2,1,'2014-12-08 21:52:45','2014-12-08 21:52:45','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:\n\n
    Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
    \n\n...or something like this:\n\n
    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.
    \n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 21:52:45','2014-12-08 21:52:45','',0,'http://wordpressorg.dev/learn/?page_id=2',0,'page','',0), (3,1,'2014-12-08 21:53:44','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 21:53:44','0000-00-00 00:00:00','',0,'http://learn.wordpressorg.dev/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_7_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_7_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_7_term_relationships`; CREATE TABLE `wporg_7_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_7_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_7_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_7_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_7_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_7_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_7_term_taxonomy`; CREATE TABLE `wporg_7_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_7_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_7_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_7_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_7_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_7_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_7_termmeta`; CREATE TABLE `wporg_7_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_7_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_7_terms`; CREATE TABLE `wporg_7_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_7_terms` WRITE; /*!40000 ALTER TABLE `wporg_7_terms` DISABLE KEYS */; INSERT INTO `wporg_7_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_7_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_8_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_8_commentmeta`; CREATE TABLE `wporg_8_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_8_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_8_comments`; CREATE TABLE `wporg_8_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_8_comments` WRITE; /*!40000 ALTER TABLE `wporg_8_comments` DISABLE KEYS */; INSERT INTO `wporg_8_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,'Mr WordPress','','http://wordpressorg.dev/','','2014-12-08 21:58:19','2014-12-08 21:58:19','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_8_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_8_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_8_links`; CREATE TABLE `wporg_8_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_8_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_8_options`; CREATE TABLE `wporg_8_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_8_options` WRITE; /*!40000 ALTER TABLE `wporg_8_options` DISABLE KEYS */; INSERT INTO `wporg_8_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://wordpressorg.dev/news','yes'), (2,'home','http://wordpressorg.dev/news','yes'), (3,'blogname','News','yes'), (4,'blogdescription','Just another WordPressorg.dev Sites site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','twentytwelve','yes'), (42,'stylesheet','twentytwelve','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','37965','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_8_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";N;s:9:\"sidebar-3\";N;s:13:\"array_version\";i:3;}','yes'), (95,'rewrite_rules','a:70:{s:52:\"blog/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:47:\"blog/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:40:\"blog/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:22:\"blog/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:49:\"blog/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:44:\"blog/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:37:\"blog/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:19:\"blog/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:50:\"blog/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:45:\"blog/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:38:\"blog/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:20:\"blog/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: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: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: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:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:2:{i:1480888703;a:1:{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:7:\"version\";i:2;}','yes'), (109,'allowedthemes','a:1:{s:12:\"twentytwelve\";b:1;}','yes'), (110,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418082340;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (111,'template_root','/srv/www/wordpress-meta-environment/wordpressorg.dev/public_html/wordpress/wp-content/themes','yes'), (112,'stylesheet_root','/srv/www/wordpress-meta-environment/wordpressorg.dev/public_html/wordpress/wp-content/themes','yes'), (113,'current_theme','Twenty Twelve','yes'), (114,'theme_mods_twentytwelve','a:1:{i:0;b:0;}','yes'), (115,'theme_switched','','yes'), (116,'_transient_is_multi_author','0','yes'), (118,'finished_splitting_shared_terms','1','yes'), (119,'db_upgraded','1','yes'), (120,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (121,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (122,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (123,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (126,'site_icon','0','yes'), (127,'medium_large_size_w','768','yes'), (128,'medium_large_size_h','0','yes'); /*!40000 ALTER TABLE `wporg_8_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_8_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_8_postmeta`; CREATE TABLE `wporg_8_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_8_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_8_postmeta` DISABLE KEYS */; INSERT INTO `wporg_8_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_8_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_8_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_8_posts`; CREATE TABLE `wporg_8_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_8_posts` WRITE; /*!40000 ALTER TABLE `wporg_8_posts` DISABLE KEYS */; INSERT INTO `wporg_8_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,'2014-12-08 21:58:19','2014-12-08 21:58:19','Welcome to WordPressorg.dev Sites. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 21:58:19','2014-12-08 21:58:19','',0,'http://wordpressorg.dev/news/?p=1',0,'post','',1), (2,1,'2014-12-08 21:58:19','2014-12-08 21:58:19','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:\n\n
    Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
    \n\n...or something like this:\n\n
    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.
    \n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 21:58:19','2014-12-08 21:58:19','',0,'http://wordpressorg.dev/news/?page_id=2',0,'page','',0), (3,1,'2014-12-08 21:58:23','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 21:58:23','0000-00-00 00:00:00','',0,'http://wordpressorg.dev/news/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_8_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_8_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_8_term_relationships`; CREATE TABLE `wporg_8_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_8_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_8_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_8_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_8_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_8_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_8_term_taxonomy`; CREATE TABLE `wporg_8_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_8_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_8_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_8_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_8_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_8_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_8_termmeta`; CREATE TABLE `wporg_8_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_8_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_8_terms`; CREATE TABLE `wporg_8_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_8_terms` WRITE; /*!40000 ALTER TABLE `wporg_8_terms` DISABLE KEYS */; INSERT INTO `wporg_8_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_8_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_9_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_9_commentmeta`; CREATE TABLE `wporg_9_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_9_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_9_comments`; CREATE TABLE `wporg_9_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_9_comments` WRITE; /*!40000 ALTER TABLE `wporg_9_comments` DISABLE KEYS */; INSERT INTO `wporg_9_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,'Mr WordPress','','http://make.wordpressorg.dev/','','2014-12-08 21:59:31','2014-12-08 21:59:31','Hi, this is a comment.\nTo delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.',0,'1','','',0,0); /*!40000 ALTER TABLE `wporg_9_comments` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_9_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_9_links`; CREATE TABLE `wporg_9_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_9_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_9_options`; CREATE TABLE `wporg_9_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_9_options` WRITE; /*!40000 ALTER TABLE `wporg_9_options` DISABLE KEYS */; INSERT INTO `wporg_9_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://make.wordpressorg.dev/themes','yes'), (2,'home','http://make.wordpressorg.dev/themes','yes'), (3,'blogname','Make Themes','yes'), (4,'blogdescription','Just another Make.wordpressorg.dev site','yes'), (5,'users_can_register','0','yes'), (6,'admin_email','foo@example.org','yes'), (7,'start_of_week','1','yes'), (8,'use_balanceTags','0','yes'), (9,'use_smilies','1','yes'), (10,'require_name_email','1','yes'), (11,'comments_notify','1','yes'), (12,'posts_per_rss','10','yes'), (13,'rss_use_excerpt','0','yes'), (14,'mailserver_url','mail.example.com','yes'), (15,'mailserver_login','login@example.com','yes'), (16,'mailserver_pass','password','yes'), (17,'mailserver_port','110','yes'), (18,'default_category','1','yes'), (19,'default_comment_status','open','yes'), (20,'default_ping_status','open','yes'), (21,'default_pingback_flag','1','yes'), (22,'posts_per_page','10','yes'), (23,'date_format','F j, Y','yes'), (24,'time_format','g:i a','yes'), (25,'links_updated_date_format','F j, Y g:i a','yes'), (26,'comment_moderation','0','yes'), (27,'moderation_notify','1','yes'), (28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'), (30,'hack_file','0','yes'), (31,'blog_charset','UTF-8','yes'), (32,'moderation_keys','','no'), (33,'active_plugins','a:0:{}','yes'), (34,'category_base','','yes'), (35,'ping_sites','http://rpc.pingomatic.com/','yes'), (37,'comment_max_links','2','yes'), (38,'gmt_offset','0','yes'), (39,'default_email_category','1','yes'), (40,'recently_edited','','no'), (41,'template','p2','yes'), (42,'stylesheet','pub/wporg-p2','yes'), (43,'comment_whitelist','1','yes'), (44,'blacklist_keys','','no'), (45,'comment_registration','0','yes'), (46,'html_type','text/html','yes'), (47,'use_trackback','0','yes'), (48,'default_role','subscriber','yes'), (49,'db_version','36686','yes'), (50,'uploads_use_yearmonth_folders','1','yes'), (51,'upload_path','wp-content/blogs.dir/9/files','yes'), (52,'blog_public','1','yes'), (53,'default_link_category','2','yes'), (54,'show_on_front','posts','yes'), (55,'tag_base','','yes'), (56,'show_avatars','1','yes'), (57,'avatar_rating','G','yes'), (58,'upload_url_path','','yes'), (59,'thumbnail_size_w','150','yes'), (60,'thumbnail_size_h','150','yes'), (61,'thumbnail_crop','1','yes'), (62,'medium_size_w','300','yes'), (63,'medium_size_h','300','yes'), (64,'avatar_default','mystery','yes'), (65,'large_size_w','1024','yes'), (66,'large_size_h','1024','yes'), (67,'image_default_link_type','file','yes'), (68,'image_default_size','','yes'), (69,'image_default_align','','yes'), (70,'close_comments_for_old_posts','0','yes'), (71,'close_comments_days_old','14','yes'), (72,'thread_comments','1','yes'), (73,'thread_comments_depth','5','yes'), (74,'page_comments','0','yes'), (75,'comments_per_page','50','yes'), (76,'default_comments_page','newest','yes'), (77,'comment_order','asc','yes'), (78,'sticky_posts','a:0:{}','yes'), (79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (80,'widget_text','a:0:{}','yes'), (81,'widget_rss','a:0:{}','yes'), (82,'uninstall_plugins','a:0:{}','no'), (83,'timezone_string','','yes'), (84,'page_for_posts','0','yes'), (85,'page_on_front','0','yes'), (86,'default_post_format','0','yes'), (87,'link_manager_enabled','0','yes'), (88,'wporg_9_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'), (89,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (90,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (91,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (92,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (94,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (96,'WPLANG','','yes'), (97,'cron','a:2:{i:1461971248;a:1:{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:7:\"version\";i:2;}','yes'), (112,'template_root','/themes','yes'), (113,'stylesheet_root','/themes','yes'), (114,'current_theme','P2 for make.wordpress.org','yes'), (115,'theme_mods_p2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418080209;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'), (116,'theme_switched','','yes'), (117,'prologue_show_titles','1','yes'), (119,'p2_manager','a:1:{s:10:\"db_version\";i:3;}','yes'), (121,'db_upgraded','1','yes'), (122,'_transient_random_seed','c9108991a523919e74af7db66e46588f','yes'), (123,'rewrite_rules','a:70:{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: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: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: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: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: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: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:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (136,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (137,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (138,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (139,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (141,'finished_splitting_shared_terms','1','yes'), (142,'site_icon','0','yes'), (143,'medium_large_size_w','768','yes'), (144,'medium_large_size_h','0','yes'); /*!40000 ALTER TABLE `wporg_9_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_9_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_9_postmeta`; CREATE TABLE `wporg_9_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_9_postmeta` WRITE; /*!40000 ALTER TABLE `wporg_9_postmeta` DISABLE KEYS */; INSERT INTO `wporg_9_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wporg_9_postmeta` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_9_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_9_posts`; CREATE TABLE `wporg_9_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_9_posts` WRITE; /*!40000 ALTER TABLE `wporg_9_posts` DISABLE KEYS */; INSERT INTO `wporg_9_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,'2014-12-08 21:59:31','2014-12-08 21:59:31','Welcome to Make.wordpressorg.dev. This is your first post. Edit or delete it, then start blogging!','Hello world!','','publish','open','open','','hello-world','','','2014-12-08 21:59:31','2014-12-08 21:59:31','',0,'http://make.wordpressorg.dev/themes/?p=1',0,'post','',1), (2,1,'2014-12-08 21:59:31','2014-12-08 21:59:31','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:\n\n
    Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)
    \n\n...or something like this:\n\n
    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.
    \n\nAs a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','open','open','','sample-page','','','2014-12-08 21:59:31','2014-12-08 21:59:31','',0,'http://make.wordpressorg.dev/themes/?page_id=2',0,'page','',0), (3,1,'2014-12-08 23:07:29','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 23:07:29','0000-00-00 00:00:00','',0,'http://make.wordpressorg.dev/themes/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_9_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_9_term_relationships # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_9_term_relationships`; CREATE TABLE `wporg_9_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_9_term_relationships` WRITE; /*!40000 ALTER TABLE `wporg_9_term_relationships` DISABLE KEYS */; INSERT INTO `wporg_9_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0); /*!40000 ALTER TABLE `wporg_9_term_relationships` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_9_term_taxonomy # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_9_term_taxonomy`; CREATE TABLE `wporg_9_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_9_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wporg_9_term_taxonomy` DISABLE KEYS */; INSERT INTO `wporg_9_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wporg_9_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_9_termmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_9_termmeta`; CREATE TABLE `wporg_9_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_9_terms # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_9_terms`; CREATE TABLE `wporg_9_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_9_terms` WRITE; /*!40000 ALTER TABLE `wporg_9_terms` DISABLE KEYS */; INSERT INTO `wporg_9_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wporg_9_terms` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_blog_versions # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_blog_versions`; CREATE TABLE `wporg_blog_versions` ( `blog_id` bigint(20) NOT NULL DEFAULT '0', `db_version` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `last_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`blog_id`), KEY `db_version` (`db_version`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_blog_versions` WRITE; /*!40000 ALTER TABLE `wporg_blog_versions` DISABLE KEYS */; INSERT INTO `wporg_blog_versions` (`blog_id`, `db_version`, `last_updated`) VALUES (1,'38590','2015-07-01 11:28:54'), (3,'37965','2015-09-28 17:54:35'), (4,'36686','2016-04-29 03:30:07'), (5,'36686','2016-04-29 03:31:22'), (6,'36686','2016-04-29 03:31:15'), (7,'36686','2015-07-01 11:55:48'), (8,'37965','2015-09-28 17:54:35'), (9,'36686','2015-07-01 11:49:43'), (10,'36686','2016-04-29 03:31:21'), (11,'36686','2016-04-29 03:31:20'), (14,'36686','2016-04-29 03:31:19'), (15,'36686','2016-04-29 03:31:19'), (16,'36686','2016-04-29 03:31:19'), (17,'36686','2016-04-29 03:31:18'), (18,'36686','2016-04-29 03:31:18'), (19,'36686','2016-04-29 03:31:17'), (20,'36686','2016-04-29 03:31:16'), (21,'36686','2016-04-29 03:31:16'), (23,'36686','2016-04-29 03:31:15'), (24,'36686','2016-04-29 03:31:14'), (25,'36686','2016-04-29 03:31:13'), (26,'36686','2016-04-29 03:31:13'), (27,'36686','2016-04-29 03:31:13'), (28,'36686','2016-04-29 03:31:12'), (29,'36686','2016-04-29 03:31:11'), (30,'36686','2016-04-29 03:31:11'), (32,'36686','2016-04-29 03:31:10'), (33,'36686','2014-12-09 01:07:31'), (34,'36686','2016-04-29 03:31:10'), (35,'37965','2015-09-28 17:54:34'), (36,'37965','2015-09-28 17:54:20'), (39,'36686','2015-07-01 11:29:15'), (42,'36686','2016-04-29 03:31:03'), (64,'36686','2015-07-01 11:00:40'), (115,'36686','2015-07-01 11:55:14'), (170,'36686','2016-04-29 03:31:10'), (222,'36686','2016-04-29 03:31:01'), (367,'37965','2016-12-04 19:07:39'); /*!40000 ALTER TABLE `wporg_blog_versions` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_blogs # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_blogs`; CREATE TABLE `wporg_blogs` ( `blog_id` bigint(20) NOT NULL AUTO_INCREMENT, `site_id` bigint(20) NOT NULL DEFAULT '0', `domain` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `path` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `public` tinyint(2) NOT NULL DEFAULT '1', `archived` tinyint(2) NOT NULL DEFAULT '0', `mature` tinyint(2) NOT NULL DEFAULT '0', `spam` tinyint(2) NOT NULL DEFAULT '0', `deleted` tinyint(2) NOT NULL DEFAULT '0', `lang_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`blog_id`), KEY `domain` (`domain`(50),`path`(5)), KEY `lang_id` (`lang_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_blogs` WRITE; /*!40000 ALTER TABLE `wporg_blogs` DISABLE KEYS */; INSERT INTO `wporg_blogs` (`blog_id`, `site_id`, `domain`, `path`, `registered`, `last_updated`, `public`, `archived`, `mature`, `spam`, `deleted`, `lang_id`) VALUES (1,1,'wordpressorg.dev','/','2014-12-08 21:32:00','0000-00-00 00:00:00',1,0,0,0,0,0), (3,1,'wordpressorg.dev','/showcase/','2014-12-08 21:42:28','2014-12-08 21:42:28',1,0,0,0,0,0), (4,2,'make.wordpressorg.dev','/','2014-12-08 21:47:03','2014-12-08 21:47:04',1,0,0,0,0,0), (5,2,'make.wordpressorg.dev','/design/','2014-12-08 21:52:08','2014-12-08 21:52:08',1,0,0,0,0,0), (6,2,'make.wordpressorg.dev','/core/','2014-12-08 21:52:16','2014-12-08 21:52:17',1,0,0,0,0,0), (7,3,'learn.wordpressorg.dev','/','2014-12-08 21:52:45','2014-12-08 21:52:45',1,0,0,0,0,0), (8,1,'wordpressorg.dev','/news/','2014-12-08 21:58:19','2014-12-08 21:58:19',1,0,0,0,0,0), (9,2,'make.wordpressorg.dev','/themes/','2014-12-08 21:59:30','2014-12-08 21:59:31',1,0,0,0,0,0), (10,2,'make.wordpressorg.dev','/systems/','2014-12-08 21:59:42','2016-04-29 03:39:23',1,0,0,0,0,0), (11,2,'make.wordpressorg.dev','/test/','2014-12-08 21:59:50','2014-12-08 21:59:50',1,0,0,0,0,0), (14,2,'make.wordpressorg.dev','/accessibility/','2014-12-08 22:00:04','2014-12-08 22:00:04',1,0,0,0,0,0), (15,2,'make.wordpressorg.dev','/docs/','2014-12-08 22:00:12','2014-12-08 22:00:12',1,0,0,0,0,0), (16,2,'make.wordpressorg.dev','/suggestions/','2014-12-08 22:00:20','2014-12-08 22:00:20',1,0,0,0,0,0), (17,2,'make.wordpressorg.dev','/plugins/','2014-12-08 22:00:28','2014-12-08 22:00:28',1,0,0,0,0,0), (18,2,'make.wordpressorg.dev','/architecture/','2014-12-08 22:03:20','2014-12-08 22:03:20',1,0,0,0,0,0), (19,2,'make.wordpressorg.dev','/polyglots/','2014-12-08 22:03:48','2014-12-08 22:03:48',1,0,0,0,0,0), (20,2,'make.wordpressorg.dev','/pluginrepo/','2014-12-08 22:03:59','2014-12-08 22:03:59',1,0,0,0,0,0), (21,2,'make.wordpressorg.dev','/support/','2014-12-08 22:04:07','2014-12-08 22:04:07',1,0,0,0,0,0), (22,2,'make.wordpressorg.dev','/core/handbook/','2014-12-08 22:04:51','2014-12-08 22:05:00',1,0,0,0,0,0), (23,2,'make.wordpressorg.dev','/events/','2014-12-08 22:05:18','2014-12-08 22:05:19',1,0,0,0,0,0), (24,2,'make.wordpressorg.dev','/mobile/','2014-12-08 22:05:26','2014-12-08 22:05:26',1,0,0,0,0,0), (25,2,'make.wordpressorg.dev','/summit/','2014-12-08 22:05:37','2014-12-08 22:05:37',1,0,0,0,0,0), (26,2,'make.wordpressorg.dev','/camptixtest/','2014-12-08 22:05:52','2014-12-08 22:05:52',1,0,0,0,0,0), (27,2,'make.wordpressorg.dev','/meta/','2014-12-08 22:06:03','2014-12-08 22:06:03',1,0,0,0,0,0), (28,2,'make.wordpressorg.dev','/training/','2014-12-08 22:06:14','2014-12-08 22:06:14',1,0,0,0,0,0), (29,2,'make.wordpressorg.dev','/updates/','2014-12-08 22:06:44','2014-12-08 22:06:44',1,0,0,0,0,0), (30,2,'make.wordpressorg.dev','/community/','2014-12-08 22:06:58','2014-12-08 22:06:58',1,0,0,0,0,0), (32,2,'make.wordpressorg.dev','/archive/','2014-12-08 22:07:43','2014-12-08 22:07:43',1,0,0,0,0,0), (33,5,'developer.wordpressorg.dev','/','2014-12-08 22:08:24','2016-04-29 03:59:42',1,0,0,0,0,0), (34,2,'make.wordpressorg.dev','/flow/','2014-12-08 22:11:11','2014-12-08 22:11:11',1,0,0,0,0,0), (35,1,'wordpressorg.dev','/themes/','2015-07-29 18:34:19','2015-07-29 18:35:27',1,0,0,0,0,0), (36,1,'apps.wordpressorg.dev','/','2014-12-08 22:12:06','2015-09-28 18:10:57',1,0,0,0,0,0), (39,6,'en.wordpressorg.dev','/','0000-00-00 00:00:00','0000-00-00 00:00:00',1,0,0,0,0,0), (42,6,'ja.wordpressorg.dev','/','0000-00-00 00:00:00','0000-00-00 00:00:00',1,0,0,0,0,0), (64,6,'es.wordpressorg.dev','/','0000-00-00 00:00:00','0000-00-00 00:00:00',1,0,0,0,0,0), (115,6,'global.wordpressorg.dev','/','2014-12-08 22:17:04','2014-12-08 22:17:04',1,0,0,0,0,0), (170,2,'make.wordpressorg.dev','/chat/','2014-12-08 22:17:13','2014-12-08 22:17:14',1,0,0,0,0,0), (222,6,'es.wordpressorg.dev','/themes/','2015-07-30 19:31:29','2015-07-30 19:33:40',1,0,0,0,0,0), (367,1,'wordpressorg.dev','/plugins/','2016-04-29 00:12:09','2016-12-04 19:08:43',1,0,0,0,0,0); /*!40000 ALTER TABLE `wporg_blogs` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_commentmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_commentmeta`; CREATE TABLE `wporg_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_comments # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_comments`; CREATE TABLE `wporg_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_links # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_links`; CREATE TABLE `wporg_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_options # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_options`; CREATE TABLE `wporg_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_options` WRITE; /*!40000 ALTER TABLE `wporg_options` DISABLE KEYS */; INSERT INTO `wporg_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (3,'siteurl','http://wordpressorg.dev','yes'), (4,'home','http://wordpressorg.dev','yes'), (5,'blogname','WordPress.dev','yes'), (6,'blogdescription','Just another WordPress site','yes'), (7,'users_can_register','0','yes'), (8,'admin_email','foo@example.org','yes'), (9,'start_of_week','1','yes'), (10,'use_balanceTags','0','yes'), (11,'use_smilies','1','yes'), (12,'require_name_email','1','yes'), (13,'comments_notify','1','yes'), (14,'posts_per_rss','10','yes'), (15,'rss_use_excerpt','0','yes'), (16,'mailserver_url','mail.example.com','yes'), (17,'mailserver_login','login@example.com','yes'), (18,'mailserver_pass','password','yes'), (19,'mailserver_port','110','yes'), (20,'default_category','1','yes'), (21,'default_comment_status','open','yes'), (22,'default_ping_status','open','yes'), (23,'default_pingback_flag','1','yes'), (24,'posts_per_page','10','yes'), (25,'date_format','F j, Y','yes'), (26,'time_format','g:i a','yes'), (27,'links_updated_date_format','F j, Y g:i a','yes'), (28,'comment_moderation','0','yes'), (29,'moderation_notify','1','yes'), (30,'permalink_structure','/blog/%year%/%monthnum%/%day%/%postname%/','yes'), (32,'hack_file','0','yes'), (33,'blog_charset','UTF-8','yes'), (34,'moderation_keys','','no'), (35,'active_plugins','a:0:{}','yes'), (36,'category_base','','yes'), (37,'ping_sites','http://rpc.pingomatic.com/','yes'), (39,'comment_max_links','2','yes'), (40,'gmt_offset','0','yes'), (41,'default_email_category','1','yes'), (42,'recently_edited','','no'), (43,'template','twentyfifteen','yes'), (44,'stylesheet','twentyfifteen','yes'), (45,'comment_whitelist','1','yes'), (46,'blacklist_keys','','no'), (47,'comment_registration','0','yes'), (48,'html_type','text/html','yes'), (49,'use_trackback','0','yes'), (50,'default_role','subscriber','yes'), (51,'db_version','38590','yes'), (52,'uploads_use_yearmonth_folders','1','yes'), (53,'upload_path','','yes'), (54,'blog_public','1','yes'), (55,'default_link_category','2','yes'), (56,'show_on_front','posts','yes'), (57,'tag_base','','yes'), (58,'show_avatars','1','yes'), (59,'avatar_rating','G','yes'), (60,'upload_url_path','','yes'), (61,'thumbnail_size_w','150','yes'), (62,'thumbnail_size_h','150','yes'), (63,'thumbnail_crop','1','yes'), (64,'medium_size_w','300','yes'), (65,'medium_size_h','300','yes'), (66,'avatar_default','mystery','yes'), (67,'large_size_w','1024','yes'), (68,'large_size_h','1024','yes'), (69,'image_default_link_type','file','yes'), (70,'image_default_size','','yes'), (71,'image_default_align','','yes'), (72,'close_comments_for_old_posts','0','yes'), (73,'close_comments_days_old','14','yes'), (74,'thread_comments','1','yes'), (75,'thread_comments_depth','5','yes'), (76,'page_comments','0','yes'), (77,'comments_per_page','50','yes'), (78,'default_comments_page','newest','yes'), (79,'comment_order','asc','yes'), (80,'sticky_posts','a:0:{}','yes'), (81,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (82,'widget_text','a:0:{}','yes'), (83,'widget_rss','a:0:{}','yes'), (84,'uninstall_plugins','a:0:{}','no'), (85,'timezone_string','','yes'), (86,'page_for_posts','0','yes'), (87,'page_on_front','0','yes'), (88,'default_post_format','0','yes'), (89,'link_manager_enabled','0','yes'), (90,'initial_db_version','30133','yes'), (91,'wporg_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'), (92,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (93,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (94,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'), (95,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'), (96,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'), (97,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'), (98,'cron','a:5:{i:1492457580;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1492464058;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1492464087;a:1:{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;}}}i:1492464817;a:1:{s:21:\"update_network_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}s:7:\"version\";i:2;}','yes'), (105,'auth_key','/~uTKo53/Ar^(yTaBjWgL;]q5y1^?QYC`7s4KPPJl@GiH46>FGbNs@-W,+3|ahfhA%+7dT(xvzHz!b%+','yes'), (107,'logged_in_key','JDU<_xa0RQC>|wj&wE>L4^w.{&M(*f&sNF.w4k8,>v`^k@Hv)Wc1wx]On!1xRLg$','yes'), (108,'logged_in_salt','`.SI<`um,x=RF&T.yGe>KV$N*Ut>[|-QjZ|pb}`H/2R+>2exp&yKln88*zhI54~_','yes'), (109,'nonce_key','gHG}uaJ4xe]<0Hk840R~atN.eVv@.;C2$SV|hY#Yx9 I5G%7O`HG2pGE] J(8,;<','yes'), (110,'nonce_salt',')A6KYJQ*-RnQdC;U,ByVj@UpM`VS<05$HlFv@<2gT3AV7`w)Iowe0)LA^','yes'), (150,'db_upgraded','','yes'), (177,'finished_splitting_shared_terms','1','yes'), (178,'rewrite_rules','a:92:{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:52:\"blog/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:47:\"blog/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:28:\"blog/category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:40:\"blog/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:22:\"blog/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:49:\"blog/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:44:\"blog/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:25:\"blog/tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:37:\"blog/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:19:\"blog/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:50:\"blog/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:45:\"blog/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:26:\"blog/type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:38:\"blog/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:20:\"blog/type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=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:16:\".*wp-signup.php$\";s:21:\"index.php?signup=true\";s:18:\".*wp-activate.php$\";s:23:\"index.php?activate=true\";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:52:\"blog/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:47:\"blog/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:28:\"blog/author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:40:\"blog/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:22:\"blog/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:74:\"blog/([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:69:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:50:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:62:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:44:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:61:\"blog/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:56:\"blog/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:37:\"blog/([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:49:\"blog/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:31:\"blog/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:48:\"blog/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:43:\"blog/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:24:\"blog/([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:36:\"blog/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:18:\"blog/([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:63:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:73:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:93:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:88:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:88:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:69:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:58:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:62:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:82:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:77:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:70:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:77:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:66:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:52:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:62:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:82:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:77:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:77:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:58:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:69:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:56:\"blog/([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:43:\"blog/([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'), (179,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (180,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (181,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (182,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'), (185,'site_icon','0','yes'), (186,'medium_large_size_w','768','yes'), (187,'medium_large_size_h','0','yes'), (192,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1492483918','no'), (193,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','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:49:\"\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:14:\"WordPress 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: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:14:\"WordPress 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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Mar 2017 18:14:55 +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=4.8-alpha-40434\";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:10:{i:0;a:6:{s:4:\"data\";s:39:\"\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:48:\"WordPress 4.7.3 Security and Maintenance Release\";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:84:\"https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-maintenance-release/\";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:\"Mon, 06 Mar 2017 17:53:30 +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:3:{i:0;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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";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:2;a:5:{s:4:\"data\";s:3:\"4.7\";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:34:\"https://wordpress.org/news/?p=4696\";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:396:\"WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.2 and earlier are affected by six security issues: Cross-site scripting (XSS) via media file metadata.  Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs. Control characters can trick redirect […]\";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:11:\"James Nylen\";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:6191:\"

    WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately.

    \n

    WordPress versions 4.7.2 and earlier are affected by six security issues:

    \n
      \n
    1. Cross-site scripting (XSS) via media file metadata.  Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs.
    2. \n
    3. Control characters can trick redirect URL validation.  Reported by Daniel Chatfield.
    4. \n
    5. Unintended files can be deleted by administrators using the plugin deletion functionality.  Reported by TrigInc and xuliang.
    6. \n
    7. Cross-site scripting (XSS) via video URL in YouTube embeds.  Reported by Marc Montpas.
    8. \n
    9. Cross-site scripting (XSS) via taxonomy term names.  Reported by Delta.
    10. \n
    11. Cross-site request forgery (CSRF) in Press This leading to excessive use of server resources.  Reported by Sipke Mellema.
    12. \n
    \n

    Thank you to the reporters for practicing responsible disclosure.

    \n

    In addition to the security issues above, WordPress 4.7.3 contains 39 maintenance fixes to the 4.7 release series. For more information, see the release notes or consult the list of changes.

    \n

    Download WordPress 4.7.3 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.3.

    \n

    Thanks to everyone who contributed to 4.7.3: Aaron D. Campbell, Adam Silverstein, Alex Concha, Andrea Fercia, Andrew Ozz, asalce, blobfolio, bonger, Boone Gorges, Boro Sitnikovski, Brady Vercher, Brandon Lavigne, Bunty, ccprog, chetansatasiya, David A. Kennedy, David Herrera, Dhanendran, Dion Hulse, Dominik Schilling (ocean90), Drivingralle, Ella Van Dorpe, Gary Pendergast, Ian Dunn, Ipstenu (Mika Epstein), James Nylen, jazbek, Jeremy Felt, Jeremy Pry, Joe Hoyle, Joe McGill, John Blackbourn, John James Jacoby, Jonathan Desrosiers, Kelly Dwan, Marko Heijnen, MatheusGimenez, Mike Nelson, Mike Schroder, Muhammet Arslan, Nick Halsey, Pascal Birchler, Paul Bearne, pavelevap, Peter Wilson, Rachel Baker, reldev, Robert O’Rourke, Ryan Welcher, Sanket Parmar, Sean Hayes, Sergey Biryukov, Stephen Edgar, triplejumper12, Weston Ruter, and wpfo.

    \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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4696\";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:6:{s:4:\"data\";s:39:\"\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:32:\"WordPress 4.7.2 Security Release\";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:68:\"https://wordpress.org/news/2017/01/wordpress-4-7-2-security-release/\";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:\"Thu, 26 Jan 2017 19:34:02 +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:3:{i:0;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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";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:2;a:5:{s:4:\"data\";s:3:\"4.7\";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:34:\"https://wordpress.org/news/?p=4676\";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:357:\"WordPress 4.7.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.1 and earlier are affected by three security issues: The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. […]\";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:17:\"Aaron D. Campbell\";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:2142:\"

    WordPress 4.7.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately.

    \n

    WordPress versions 4.7.1 and earlier are affected by three security issues:

    \n
      \n
    1. The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. Reported by David Herrera of Alley Interactive.
    2. \n
    3. WP_Query is vulnerable to a SQL injection (SQLi) when passing unsafe data. WordPress core is not directly vulnerable to this issue, but we’ve added hardening to prevent plugins and themes from accidentally causing a vulnerability. Reported by Mo Jangda (batmoo).
    4. \n
    5. A cross-site scripting (XSS) vulnerability was discovered in the posts list table. Reported by Ian Dunn of the WordPress Security Team.
    6. \n
    7. An unauthenticated privilege escalation vulnerability was discovered in a REST API endpoint. Reported by Marc-Alexandre Montpas of Sucuri Security. *
    8. \n
    \n

    Thank you to the reporters of these issues for practicing responsible disclosure.

    \n

    Download WordPress 4.7.2 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.2.

    \n

    Thanks to everyone who contributed to 4.7.2.

    \n

    * Update: An additional serious vulnerability was fixed in this release and public disclosure was delayed. For more information on this vulnerability, additional mitigation steps taken, and an explanation for why disclosure was delayed, please read Disclosure of Additional Security Fix in WordPress 4.7.2.

    \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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4676\";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:2;a:6:{s:4:\"data\";s:39:\"\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:48:\"WordPress 4.7.1 Security and Maintenance Release\";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:84:\"https://wordpress.org/news/2017/01/wordpress-4-7-1-security-and-maintenance-release/\";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:\"Wed, 11 Jan 2017 03:53:57 +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:3:{i:0;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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";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:2;a:5:{s:4:\"data\";s:3:\"4.7\";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:34:\"https://wordpress.org/news/?p=4650\";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:375:\"WordPress 4.7 has been downloaded over 10 million times since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7 and earlier are affected by eight security issues: […]\";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:17:\"Aaron D. Campbell\";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:6520:\"

    WordPress 4.7 has been downloaded over 10 million times since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a security release for all previous versions and we strongly encourage you to update your sites immediately.

    \n

    WordPress versions 4.7 and earlier are affected by eight security issues:

    \n
      \n
    1. Remote code execution (RCE) in PHPMailer – No specific issue appears to affect WordPress or any of the major plugins we investigated but, out of an abundance of caution, we updated PHPMailer in this release. This issue was fixed in PHPMailer thanks to Dawid Golunski and Paul Buonopane.
    2. \n
    3. The REST API exposed user data for all users who had authored a post of a public post type. WordPress 4.7.1 limits this to only post types which have specified that they should be shown within the REST API. Reported by Krogsgard and Chris Jean.
    4. \n
    5. Cross-site scripting (XSS) via the plugin name or version header on update-core.php. Reported by Dominik Schilling of the WordPress Security Team.
    6. \n
    7. Cross-site request forgery (CSRF) bypass via uploading a Flash file. Reported by Abdullah Hussam.
    8. \n
    9. Cross-site scripting (XSS) via theme name fallback. Reported by Mehmet Ince.
    10. \n
    11. Post via email checks mail.example.com if default settings aren’t changed. Reported by John Blackbourn of the WordPress Security Team.
    12. \n
    13. A cross-site request forgery (CSRF) was discovered in the accessibility mode of widget editing. Reported by Ronnie Skansing.
    14. \n
    15. Weak cryptographic security for multisite activation key. Reported by Jack.
    16. \n
    \n

    Thank you to the reporters for practicing responsible disclosure.

    \n

    In addition to the security issues above, WordPress 4.7.1 fixes 62 bugs from 4.7. For more information, see the release notes or consult the list of changes.

    \n

    Download WordPress 4.7.1 or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.1.

    \n

    Thanks to everyone who contributed to 4.7.1: Aaron D. Campbell, Aaron Jorbin, Adam Silverstein, Andrea Fercia, Andrew Ozz, bonger, Boone Gorges, Chandra Patel, Christian Chung, David Herrera, David Shanske, Dion Hulse, Dominik Schilling (ocean90), DreamOn11, Edwin Cromley, Ella van Dorpe, Gary Pendergast, Hristo Pandjarov, James Nylen, Jeff Bowen, Jeremy Felt, Jeremy Pry, Joe Hoyle, Joe McGill, John Blackbourn, Keanan Koppenhaver, Konstantin Obenland, laurelfulford, Marin Atanasov, mattyrob, monikarao, Nate Reist, Nick Halsey, Nikhil Chavan, nullvariable, Payton Swick, Peter Wilson, Presskopp, Rachel Baker, Ryan McCue, Sanket Parmar, Sebastian Pisula, sfpt, shazahm1, Stanimir Stoyanov, Steven Word, szaqal21, timph, voldemortensen, vortfu, and Weston Ruter.

    \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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4650\";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:3;a:6:{s:4:\"data\";s:36:\"\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:\"WordPress 4.7 “Vaughan”\";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:43:\"https://wordpress.org/news/2016/12/vaughan/\";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, 06 Dec 2016 19:27:41 +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:1:{i:0;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:34:\"https://wordpress.org/news/?p=4596\";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:240:\"Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah \"Sassy\" Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.\";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:\"enclosure\";a:3:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2016/12/starter-content.mp4\";s:6:\"length\";s:7:\"3736020\";s:4:\"type\";s:9:\"video/mp4\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4\";s:6:\"length\";s:7:\"1127483\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:58:\"https://wordpress.org/news/files/2016/12/video-headers.mp4\";s:6:\"length\";s:7:\"1549803\";s:4:\"type\";s:9:\"video/mp4\";}}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:\"Helen Hou-Sandi\";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:45506:\"

    Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah “Sassy” Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.

    \n
    \n
    \n

    Presenting Twenty Seventeen

    \n

    A brand new default theme brings your site to life with immersive featured images and video headers.

    \n

    \n

    Twenty Seventeen focuses on business sites and features a customizable front page with multiple sections. Personalize it with widgets, navigation, social menus, a logo, custom colors, and more. Our default theme for 2017 works great in many languages, on any device, and for a wide range of users.

    \n
    \n

    Your Site, Your Way

    \n

    WordPress 4.7 adds new features to the customizer to help take you through the initial setup of a theme, with non-destructive live previews of all your changes in one uninterrupted workflow.

    \n

    Theme Starter Content

    \n\n

    To help give you a solid base to build from, individual themes can provide starter content that appears when you go to customize your brand new site. This can range from placing a business information widget in the best location to providing a sample menu with social icon links to a static front page complete with beautiful images. Don’t worry – nothing new will appear on the live site until you’re ready to save and publish your initial theme setup.

    \n
    \n

    Edit Shortcuts

    \n\n

    Visible icons appear to show you which parts of your site can be customized while live previewing. Click on a shortcut and get straight to editing. Paired with starter content, getting started with customizing your site is faster than ever.

    \n
    \n
    \n

    Video Headers

    \n\n

    Sometimes a big atmospheric video as a moving header image is just what you need to showcase your wares; go ahead and try it out with Twenty Seventeen. Need some video inspiration? Try searching for sites with video headers available for download and use.

    \n
    \n
    \n
    \n

    Smoother Menu Building

    \n

    \n

    Many menus for sites contain links to the pages of your site, but what happens when you don’t have any pages yet? Now you can add new pages while building menus instead of leaving the customizer and abandoning your changes. Once you’ve published your customizations, you’ll have new pages ready for you to fill with content.

    \n
    \n
    \n

    Custom CSS

    \n

    \n

    Sometimes you just need a few visual tweaks to make your site perfect. WordPress 4.7 allows you to add custom CSS and instantly see how your changes affect your site. The live preview allows you to work quickly without page refreshes slowing you down.

    \n
    \n
    \n
    \n
    \n

    PDF Thumbnail Previews

    \n

    \n

    Managing your document collection is easier with WordPress 4.7. Uploading PDFs will generate thumbnail images so you can more easily distinguish between all your documents.

    \n
    \n
    \n

    Dashboard in your language

    \n

    \n

    Just because your site is in one language doesn’t mean that everybody helping manage it prefers that language for their admin. Add more languages to your site and a user language option will show up in your user’s profiles.

    \n
    \n
    \n
    \n

    Introducing REST API Content Endpoints

    \n

    WordPress 4.7 comes with REST API endpoints for posts, comments, terms, users, meta, and settings.

    \n

    \"\"

    \n

    Content endpoints provide machine-readable external access to your WordPress site with a clear, standards-driven interface, paving the way for new and innovative methods of interacting with sites through plugins, themes, apps, and beyond. Ready to get started with development? Check out the REST API reference.

    \n
    \n

    Even More Developer Happiness \"?\"

    \n

    Post Type Templates

    \n

    By opening up the page template functionality to all post types, theme developers have even more flexibility with the WordPress template hierarchy.

    \n

    More Theme API Goodies

    \n

    WordPress 4.7 includes new functions, hooks, and behavior for theme developers.

    \n

    Custom Bulk Actions

    \n

    List tables, now with more than bulk edit and delete.

    \n

    WP_Hook

    \n

    The code that lies beneath actions and filters has been overhauled and modernized, fixing bugs along the way.

    \n

    Settings Registration API

    \n

    register_setting() has been enhanced to include type, description, and REST API visibility.

    \n

    Customize Changesets

    \n

    Customize changesets make changes in the customizer persistent, like autosave drafts. They also make exciting new features like starter content possible.

    \n
    \n

    The Squad

    \n

    This release was led by Helen Hou-Sandí, backed up by Jeff Paul and Aaron Jorbin as Release Deputies, and with the help of these fine individuals. There are 482 contributors with props in this release—the most ever—with 205 of them contributing for the first time. Pull up some sassy Sarah Vaughan on your music service of choice, and check out some of their profiles:

    \n[Inactive], Aaron D. Campbell, abrightclearweb, Achal Jain, achbed, Acme Themes, Adam Silverstein, adammacias, Ahmad Awais, ahmadawais, airesvsg, ajoah, Aki Björklund, akshayvinchurkar, Alain Schlesser, Alex Concha, Alex Dimitrov, Alex Hon, alex27, allancole, Amanda Rush, Andrea Fercia, Andreas Panag, Andrew Nacin, Andrew Ozz, Andrey \"Rarst\" Savchenko, Andy Meerwaldt, Andy Mercer, Andy Skelton, Aniket Pant, Anil Basnet, Ankit K Gupta, Anthony Hortin, antisilent, Anton Timmermans, Antti Kuosmanen, apokalyptik, artoliukkonen, Arunas Liuiza, attitude, backermann, Bappi, Ben Cole, Bernhard Kau, binarymoon, Birgir Erlendsson (birgire), BjornW, bobbingwide, boblinthorst, boboudreau, bonger, Boone B. Gorges, Brady Vercher, Brainstorm Force, Brandon Kraft, Brian Hogg, Brian Krogsgard, Bronson Quick, Caroline Moore, Casey Driscoll, Caspie, Chandra Patel, Chaos Engine, cheeserolls, chesio, chetansatasiya, choong, Chouby, chredd, Chris Jean, Chris Marslender, Chris Smith, Chris Van Patten, Chris Wiegman, chriscct7, chriseverson, Christian Chung, Christian Nolen, Christian Wach, Christoph Herr, Clarion Technologies, Claudio Sanches, Claudio Sanches, ClaudioLaBarbera, codemovement.pk, coderkevin, codfish, coreymcollins, Curdin Krummenacher, Curtiss Grymala, Cătălin Dogaru, danhgilmore, Daniel Bachhuber , Daniel Kanchev, Daniel Pietrasik, Daniele Scasciafratte, Daryl L. L. Houston (dllh), Dave Pullig, Dave Romsey (goto10), David A. Kennedy, David Chandra Purnama, David Herrera, David Lingren, David Mosterd, David Shanske, davidbhayes, Davide \'Folletto\' Casali, deeptiboddapati, delphinus, deltafactory, Denis de Bernardy, Derek Herman, Derrick Hammer, Derrick Koo, dimchik, Dinesh Chouhan, Dion Hulse, dipeshkakadiya, dmsnell, Dominik Schilling, Dotan Cohen, Doug Wollison, doughamlin, DreamOn11, Drew Jaynes, duncanjbrown, dungengronovius, DylanAuty, Eddie Hurtig, Eduardo Reveles, Edwin Cromley, ElectricFeet, Elio Rivero, Ella Iseulde Van Dorpe, elyobo, enodekciw, enshrined, Eric Andrew Lewis, Eric Lanehart, Evan Herman, Felix Arntz, Fencer04, Florian Brinkmann, Florian TIAR, FolioVision, fomenkoandrey, Frank Klein, Frankie Jarrett, frankiet, Fred, Fredrik Forsmo, fuscata, Gabriel Maldonado, Garth Mortensen, Gary Jones, Gary Pendergast, Geeky Software, George Stephanis, Goran Šerić, Graham Armfield, Grant Derepas, Gregory Karpinsky (@tivnet), Hardeep Asrani, Henry Wright, hiddenpearls, Hinaloe, Hristo Pandjarov, Hugo Baeta, Iain Poulson, Ian Dunn, Ian Edington, idealien, Ignacio Cruz Moreno, imath, Imnok, implenton, Ionut Stanciu, Ipstenu (Mika Epstein), ivdimova, J.D. Grimes, Jacob Peattie, Jake Spurlock, James Nylen, jamesacero, Japh, Jared Cobb, jayarjo, jdolan, jdoubleu, Jeff Bowen, Jeffrey de Wit, Jeremy Felt, Jeremy Pry, jimt, Jip Moors, jmusal, Joe Dolson, Joe Hoyle, Joe McGill, Joel James, johanmynhardt, John Blackbourn, John Dittmar, John James Jacoby, John P. Bloch, John Regan, johnpgreen, Jon (Kenshino), Jonathan Bardo, Jonathan Brinley, Jonathan Daggerhart, Jonathan Desrosiers, Jonny Harris, jonnyauk, jordesign, JorritSchippers, Joseph Fusco, Josh Eaton, Josh Pollock, joshcummingsdesign, joshkadis, Joy, jrf, JRGould, Juanfra Aldasoro, Juhi Saxena, Junko Nukaga, Justin Busa, Justin Sainton, Justin Shreve, Justin Sternberg, K.Adam White, kacperszurek, Kailey (trepmal), KalenJohnson, Kat Hagan, Keanan Koppenhaver, keesiemeijer, kellbot, Kelly Dwan, Kevin Hagerty, Kirk Wight, kitchin, Kite, kjbenk, Knut Sparhell, koenschipper, kokarn, Konstantin Kovshenin, Konstantin Obenland, Konstantinos Kouratoras, kuchenundkakao, kuldipem, Laurel Fulford, Lee Willis, Leo Baiano, LittleBigThings (Csaba), Lucas Stark, Luke Cavanagh, Luke Gedeon, lukepettway, lyubomir_popov, Mário Valney, mageshp, Mahesh Waghmare, Mangesh Parte, Manish Songirkar, mantismamita, Marcel Bootsman, Marin Atanasov, Marius L. J., Mark Jaquith, Mark Root-Wiley, Mark Uraine, Marko Heijnen, markshep, matrixik, Matt Banks, Matt Jaworski, Matt King, Matt Mullenweg, Matt van Andel, Matt Wiebe, Matthew Haines-Young, mattyrob, Max Cutler, Maxime Culea, Mayo Moriyama, mbelchev, mckernanin, Mel Choyce, mhowell, Michael Arestad, Michael Arestad, michalzuber, Mike Auteri, Mike Crantea, Mike Glendinning, Mike Hansen, Mike Little, Mike Schroder, Mike Viele, Milan Dinić, modemlooper, Mohammad Jangda, Mohan Dere, monikarao, morettigeorgiev, Morgan Estes, Morten Rand-Hendriksen, moto hachi ( mt8.biz ), mrbobbybryant, Naim Naimov, Nate Reist, NateWr, nathanrice, Nazgul, Ned Zimmerman, net, Nick Halsey , Nicolas GUILLAUME, Nikhil Chavan, Nikhil Vimal, Nikolay Bachiyski, Nilambar Sharma, noplanman, nullvariable, odie2, odyssey, Okamoto Hidetaka, orvils, oskosk, Otto Kekäläinen, ovann86, Pascal Birchler, patilvikasj, Paul Bearne, Paul Wilde, Payton Swick, pdufour, Perdaan, Peter Wilson, phh, php, Piotr Delawski, pippinsplugins, pjgalbraith, pkevan, Pratik, Pressionate, Presskopp, procodewp, quasel, Rachel Baker, Rahul Prajapati, Ramanan, Rami Yushuvaev, ramiabraham, ranh, Red Sand Media Group, Riad Benguella, Rian Rietveld, Richard Tape, Robert D Payne, Robert Jolly, Robert Noakes, Rocco Aliberti, Rodrigo Primo, Rommel Castro, Ronald Araújo, Ross Wintle, Roy Sivan, Ryan Kienstra, Ryan McCue, Ryan Plas, Ryan Welcher, Sal Ferrarello, Sami Keijonen, Samir Shah, Samuel Sidler, Sandesh, Sang-Min Yoon, Sanket Parmar, Sarah Gooding, Sayed Taqui, schrapel, Scott Reilly, Scott Taylor, scrappy@hub.org, scribu, seancjones, Sebastian Pisula, Sergey Biryukov, Sergio De Falco, sfpt, shayanys, shazahm1, shprink, simonlampen, skippy, smerriman, snacking, Soeren Wrede, solal, Stanimir Stoyanov, Stanko Metodiev, Steph, Steph Wells, Stephanie Leary, Stephen Edgar, Stephen Harris, Steven Word, stevenlinx, stubgo, Sudar Muthu, Swapnil V. Patil, swapnild, szaqal21, Takahashi Fumiki, Takayuki Miyauchi, Tammie Lister, tapsboy, Taylor Lovett, team, tg29359, tharsheblows, the, themeshaper, thenbrent, thomaswm, Thorsten Frommen, tierra, Tim Nash, Timmy Crawford, Timothy Jacobs, timph, Tkama, tnegri, Tom Auger, Tom J Nowell, tomdxw, Toro_Unit (Hiroshi Urabe), Torsten Landsiedel, transl8or, traversal, Travis Smith, Triet Minh, Trisha Salas, tristangemus, Truong Giang, tsl143, Ty Carlson, Ulrich, Utkarsh, Valeriu Tihai, Vishal Kakadiya, vortfu, Vrunda Kansara, webbgaraget, WebMan Design | Oliver Juhas, websupporter, Weston Ruter, William Earnhardt, williampatton, Wolly aka Paolo Valenti, yale01, Yoav Farhi, Yoga Sukma, Zach Wills, Zack Tollman, Ze Fontainhas, zhildzik, and zsusag.\n

     
    \nSpecial thanks go to Rami Abraham for producing the release video and the many fine haiku we saw in the beta and RC announcement posts.

    \n

    Finally, thanks to all the community translators who worked on WordPress 4.7. Their efforts bring WordPress 4.7 fully translated to 52 languages at release time with more on the way. Additionally, the WordPress 4.7 release video has been captioned into 44 languages.

    \n

    If you want to follow along or help out, check out Make WordPress and our core development blog. Thanks for choosing WordPress – we hope you enjoy!

    \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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4596\";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:4;a:6:{s:4:\"data\";s:33:\"\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:\"Moving Toward SSL\";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/2016/12/moving-toward-ssl/\";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:\"Thu, 01 Dec 2016 17:20:29 +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:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4588\";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:327:\"We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle […]\";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:14:\"Matt Mullenweg\";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:1627:\"

    We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle our users are going to face.

    \n

    SSL basically means the link between your browser and the server is encrypted. SSL used to be difficult to implement, and often expensive or slow. Modern browsers, and the incredible success of projects like Let’s Encrypt have made getting a certificate to secure your site fast, free, and something we think every host should support by default, especially in a post-Snowden era. Google also weighs SSL as a search engine ranking factor and will begin flagging unencrypted sites in Chrome.

    \n

    First, early in 2017, we will only promote hosting partners that provide a SSL certificate by default in their accounts. Later we will begin to assess which features, such as API authentication, would benefit the most from SSL and make them only enabled when SSL is there.

    \n

    Separately, I also think the performance improvements in PHP7 are particularly impressive, and major kudos to everyone who worked on that. We will consider whether hosts use PHP7 by default for new accounts next year as well.

    \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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4588\";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:5;a:6:{s:4:\"data\";s:33:\"\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:31:\"WordPress 4.7 Release Candidate\";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:67:\"https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/\";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:\"Thu, 24 Nov 2016 04:26:23 +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:1:{i:0;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:34:\"https://wordpress.org/news/?p=4579\";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:328:\"The release candidate for WordPress 4.7 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on Tuesday, December 6, but we need your help to get there. If you haven’t tested 4.7 yet, […]\";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:\"Helen Hou-Sandi\";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:4331:\"

    The release candidate for WordPress 4.7 is now available.

    \n

    RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on Tuesday, December 6, but we need your help to get there. If you haven’t tested 4.7 yet, now is the time! To test WordPress 4.7, you can use the WordPress Beta Tester plugin or you can download the release candidate here (zip).

    \n

    WordPress 4.7 is a jam-packed release, with a number of features focused on getting a theme set up for the first time. Highlights include a new default theme, video headers, custom CSS, customizer edit shortcuts, PDF thumbnail previews, user admin languages, REST API content endpoints, post type templates, and more.

    \n

    We’ve made quite a few refinements since releasing Beta 4 a week ago, including usability and accessibility enhancements for video headers, media and page template support in starter content, and polishing of how custom CSS can be migrated to and extended by plugins and themes. The REST API endpoints saw a number of bugfixes and notably now have anonymous comment off by default.

    \n

    Not sure where to start with testing? Try setting up a fresh site on a new installation with Twenty Seventeen (hint: head into customizing your site before touching any pages or widgets) and taking notes on what you enjoyed and what got you stuck. For more details about what’s new in version 4.7, check out the Beta 1Beta 2, Beta 3, and Beta 4 blog posts.

    \n

    Think you’ve found a bug? Please post to the Alpha/Beta support forum. If any known issues come up, you’ll be able to find them here.

    \n

    Developers, please test your plugins and themes against WordPress 4.7 and update your plugin’s Tested up to version in the readme to 4.7. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the core development blog.

    \n

    Do you speak a language other than English? Help us translate WordPress into more than 100 languages! And if you haven’t yet done so, now is a great time to take the Annual WordPress Survey and send it on to your friends.

    \n

    Happy testing! And now for another Rami Abraham haiku break.

    \n

    Select your language
    \nThen let your users choose theirs
    \nget_user_locale()

    \n

    Theme authors rejoice
    \nAny option may employ
    \nSelective refresh

    \n

    Custom header video
    \nMake sure to add_theme_support
    \nBling above the fold

    \n

    A new template dawns
    \nA hierarchy member
    \nPost-type templates live

    \n

    PDF updates
    \nPack a parade of polish
    \nPrettier previews

    \n

    Template Post Type: New
    \nTemplate Post Type: And Useful
    \nTemplate Post Type: Thing

    \n

    Let lists live lively
    \nLaud wp_list_sort()
    \nLess laconic lists

    \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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4579\";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:6;a:6:{s:4:\"data\";s:33:\"\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:20:\"WordPress 4.7 Beta 4\";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:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-4/\";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:\"Wed, 16 Nov 2016 01:51:52 +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:1:{i:0;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:34:\"https://wordpress.org/news/?p=4576\";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:329:\"WordPress 4.7 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";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:\"Helen Hou-Sandi\";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:2019:\"

    WordPress 4.7 Beta 4 is now available!

    \n

    This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

    \n

    For more information on what’s new in 4.7, check out the Beta 1, Beta 2, and Beta 3 blog posts, along with in-depth developer guides on make/core. We’ve made about 60 changes in the last few days for beta 4, including tweaks to Twenty Seventeen, custom CSS, and the REST API content endpoints.

    \n

    Do you speak a language other than English? Help us translate WordPress into more than 100 languages!

    \n

    If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on WordPress Trac, where you can also find a list of known bugs.

    \n

    We are almost there
    \nPlease test your plugins and themes
    \nRC coming soon
    \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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4576\";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:7;a:6:{s:4:\"data\";s:33:\"\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:34:\"WordCamp US 2017-2018 in Nashville\";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:70:\"https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/\";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, 15 Nov 2016 23:24:17 +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:1:{i:0;a:5:{s:4:\"data\";s:8:\"WordCamp\";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:34:\"https://wordpress.org/news/?p=4571\";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:330:\"The title says it all. We had some great applications for cities to host WordCamp US after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is Nashville, Tennessee. Based on the other great applications we got I’m also excited about the pipeline of communities that could host it in future […]\";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:14:\"Matt Mullenweg\";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:1022:\"

    \n

    The title says it all. We had some great applications for cities to host WordCamp US after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is Nashville, Tennessee.

    \n

    Based on the other great applications we got I’m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia.

    \n

    By the way, if you haven’t yet, now is a great time to take the Annual WordPress Survey and ask your friends to as well.

    \n

    Photo Credit.

    \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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4571\";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:8;a:6:{s:4:\"data\";s:39:\"\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:20:\"WordPress 4.7 Beta 3\";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:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\";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:\"Fri, 11 Nov 2016 03:30:52 +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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";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:34:\"https://wordpress.org/news/?p=4566\";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:329:\"WordPress 4.7 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";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:\"Helen Hou-Sandi\";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:3120:\"

    WordPress 4.7 Beta 3 is now available!

    \n

    This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

    \n

    For more information on what’s new in 4.7, check out the Beta 1 and Beta 2 blog posts, along with in-depth field guides on make/core. Some of the changes in Beta 3 include:

    \n
      \n
    • REST API: The unfiltered_html capability is now respected and rest_base has been added to response objects of wp/v2/taxonomies and wp/v2/types, while get_allowed_query_vars() and the rest_get_post filter have been removed.
    • \n
    • Roles/Capabilities: Added meta-caps for comment, term, and user meta, which are currently only used in the REST API.
    • \n
    • I18N: Added the ability to change user’s locale back to site’s locale. (#38632)
    • \n
    • Custom CSS: Renamed the unfiltered_css meta capability to edit_css and added revisions support to the custom_css post type.
    • \n
    • Edit shortcuts: Theme authors should take a look at the developer guide to the customizer preview’s visible edit shortcuts and update their themes to take advantage of them if not already implementing selective refresh.
    • \n
    • Various bug fixes: We’ve made over 50 changes in the last week.
    • \n
    \n

    Do you speak a language other than English? Help us translate WordPress into more than 100 languages!

    \n

    If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on WordPress Trac, where you can also find a list of known bugs.

    \n

    Building the future
    \nA global community
    \nStronger together

    \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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4566\";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:9;a:6:{s:4:\"data\";s:39:\"\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:20:\"WordPress 4.7 Beta 2\";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:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\";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:\"Fri, 04 Nov 2016 17:39:07 +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:3:{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:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";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:34:\"https://wordpress.org/news/?p=4552\";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:329:\"WordPress 4.7 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can […]\";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:\"Helen Hou-Sandi\";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:4240:\"

    WordPress 4.7 Beta 2 is now available!

    \n

    This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can download the beta here (zip).

    \n

    Notable changes since WordPress 4.7 Beta 1:

    \n\n

    For more of what’s new in version 4.7, check out the Beta 1 blog post.

    \n

    If you want a more in-depth view of what major changes have made it into 4.7, check out posts tagged with 4.7 on the main development blog, or look at a list of everything that’s changed. There will be more developer notes to come, so keep an eye out for those as well.

    \n

    Do you speak a language other than English? Help us translate WordPress into more than 100 languages!

    \n

    If you think you’ve found a bug, you can post to the Alpha/Beta area in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, file one on WordPress Trac, where you can also find a list of known bugs.

    \n

    Happy testing!

    \n

    Ya es la hora
    \n Time for another beta
    \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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4552\";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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";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:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";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:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";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:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 17 Apr 2017 14:51:57 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Fri, 10 Mar 2017 18:14:55 GMT\";s:4:\"link\";s:63:\"; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}}s:5:\"build\";s:14:\"20130911080210\";}','no'), (194,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1492483918','no'), (195,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1492440718','no'), (196,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1492483918','no'), (197,'_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:65:\"WPTavern: Yoast Office Hosts “Bring Your Parents to Work Day”\";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:29:\"https://wptavern.com/?p=68784\";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:70:\"https://wptavern.com/yoast-office-hosts-bring-your-parents-to-work-day\";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:3475:\"

    \n

    If you’ve ever heard your parents say something like,”My son works for the internet,” or “My daughter owns some kind of computer company,” then you know the struggle. Many parents have a difficult time understanding the professions of their grown children, especially when they are in the tech industry. This can also be compounded by the novelty of remote work, which sometimes prompts questions like, “Just what is it that you do all day?” or “When are you going to get a real job?”

    \n

    The team at Yoast decided to be proactive about the problem of families not understanding their work by hosting an event called “Bring Your Parents to Work Day.” Yoast employs a team of nearly 50 people, with 40 employees working in a central office located in Wijchen, Netherlands, and 10 working remotely. The family event brought 42 parents to the office.

    \n

    “It’s just awesome to have everyone’s ‘home’ team understand what we do and relate to it,” CEO Joost de Valk said.

    \n

    Yoast Community Manager Taco Verdonschot brought his father to work today. His photo below shows all of the parents attending a presentation from Joost and Marieke de Valk about WordPress, open source, and Yoast’s products.

    \n
    \n

    Today is \'Bring your parents to work day\' at @yoast.
    Intended result: our parents finally understand what we really do! #byptwd pic.twitter.com/WuhHlGhyeX

    \n

    — Taco Verdo (@TacoVerdo) April 14, 2017

    \n

    \n

    “Most parents didn’t know too much about WordPress and/or open source,” Verdonschot said. “They told the parents about our mission to make the web a better place for everyone and to make SEO available for everyone.”

    \n

    After the presentation Verdonschot said employees showed their parents around the office and Joost took them in small groups across the street to a second office the company will be opening soon.

    \n

    “We ended the Bring Your Parents to Work Day with drinks and snacks (home-made by my colleague Chris),” Verdonschot said. “Personally, I really liked meeting my colleagues’ parents. Some of them just look so much like their mom/dad! I really think that the presentation gave our parents a better understanding of what we do at Yoast, and how much we’re loving what we do.”

    \n

    The “Bring Your Parents to Work” event has been gaining popularity in the past two years. Many large companies participated in 2016, including LinkedIn, Dogfish Head Brewery, HubSpot, ASOS, and British Airways. Verdonschot hasn’t confirmed with the directors yet, but based on the success of today’s event, he expects Yoast will make this an annual event.

    \n

    “For me personally, I really like that my parents have visited the office and met my colleagues, because the world I work in now feels less strange for them,” Verdonschot said.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Apr 2017 21:13:58 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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: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:64:\"WPTavern: Free React Fundamentals Course Updated for React v15.5\";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:29:\"https://wptavern.com/?p=68772\";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:75:\"https://wptavern.com/free-react-fundamentals-course-updated-for-react-v15-5\";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:2976:\"

    \n

    If you’re looking for ways to expand your ReactJS knowledge, the free React Fundamentals course from ReactTraining.com has been updated for the latest React v15.5 release. The 48-lesson course takes approximately 287 minutes to complete. It was designed for a wide range of professionals, including backend engineers new to JavaScript, Bootcamp graduates and front-end developers who want to expand their skill sets, and JavaScript developers coming from other frameworks.

    \n

    In the React Fundamentals course students will get an introduction to the React ecosystem and will learn how to set up a React component with NPM, Babel, and Webpack. The course covers topics like dataflow with Props, building UIs with Pure Functions, nesting React components, Stateless Functional Components, React Router V4, and more. Complete beginners may struggle, so the course author recommends students enter with a basic understanding of HTML, CSS, and JavaScript. More than 57,000 students have taken React Fundamentals.

    \n

    Last year’s State of JavaScript survey results showed React as the clear winner among front-end frameworks in terms of developer interest and satisfaction. Automattic is banking on the framework’s success and has used it to build Calypso and Jetpack’s admin interface. Matt Mullenweg said he believes “the future of a great wp-admin experience is JavaScript – probably React, talking to APIs, super fast, and maybe even working offline.”

    \n

    React may end up being an important part of WordPress’ codebase in the future. If you want to explore the framework without making a major investment, a free online course is a good way to do that. In addition to React Training’s fundamentals course, Codeacademy has two free courses for learning React.js and Wes Bos has a free course to help students get started with React.js, Redux, and React Router.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Apr 2017 15:48:55 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:2;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:65:\"WPTavern: Customizer Team Proposes Image Widget for WordPress 4.8\";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:29:\"https://wptavern.com/?p=68725\";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:76:\"https://wptavern.com/customizer-team-proposes-image-widget-for-wordpress-4-8\";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:3750:\"

    WordPress contributors to the customizer have published a merge proposal for a new JavaScript and REST API-powered core image widget. The new widget interfaces with the WordPress media library to provide a simpler, more intuitive experience for adding images. No new widgets have been added to core since the Custom Menu widget was included in 3.0 nearly seven years ago.

    \n

    \"Image

    \n

    The current method of inserting images into widgets is a multi-step process that many plugins have attempted to simplify. Hundreds of thousands of WordPress users have installed a plugin with this feature. The Image Widget plugin, created by Modern Tribe, is one of the most popular with more than 500,000 active installs.

    \n

    Widget architecture in WordPress currently relies on PHP and AJAX, but the new image widget will follow the recent trend towards JavaScript interfaces.

    \n

    “In the time since WP_Widget was introduced in 2.8, WordPress has made dramatic shifts toward developing interfaces in JavaScript, including with the Customizer in 3.4 and the Media Library in 3.5, and more recently with the focus on the REST API,” contributors said in the proposal. “Given that the media widgets are naturally interfacing with the media library JS, it is necessary that the media widgets make use of JavaScript to construct their UI instead of relying on PHP.”

    \n

    Customizer component co-maintainer Weston Ruter noted in the comments that the new proposed image widget also allows for external images to be embedded by URL. This is a feature that Jetpack offers in its image widget. The new core widget will support both use cases that WordPress users are already familiar with from popular plugins.

    \n

    The image widget is the first of several planned JS-powered media widgets, including video, audio, galleries, and slideshows. Ruter said progress on the video widget is coming along well and he anticipates it will likely land next. Contributors have begun work on the audio widget, but Ruter said galleries and slideshows are a higher priority.

    \n

    Matt Mullenweg, who is leading core development this year, confirmed in his quarterly update today that the image widget will be considered for 4.8.

    \n

    “The plan is for the larger block-driven customization work to kick off in June,” Mullenweg said. “Prior to that, we’re focusing on widgets and other low-hanging fruit. Lack of developers slowed us down the last few months, now doing better but could still use more help there. Media widgets + WYSIWYG on text widget seem simple but will have a big user impact.”

    \n

    Contributors on the Customizer team are asking for developers and users to test the new image widget. The latest version of the plugin is available on GitHub. The Core Media Widgets plugin is also available on WordPress.org.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Apr 2017 21:32:26 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:3;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:82:\"WPTavern: Hacked Home Routers are Launching Brute Force Attacks on WordPress Sites\";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:29:\"https://wptavern.com/?p=68715\";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:93:\"https://wptavern.com/hacked-home-routers-are-launching-brute-force-attacks-on-wordpress-sites\";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:5930:\"photo credit: Eduardo Mueses The Oracle(license)\n

    Security researchers at Wordfence are reporting that thousands of hacked home routers are attacking WordPress sites. Wordfence firewall and malware scanner products are in use on more than 2 million WordPress sites and the company estimates that 6.7% of all attacks on these sites are coming from hacked home routers.

    \n

    “In the past month alone we have seen over 57,000 unique home routers being used to attack WordPress sites,” Wordfence CEO Mark Maunder said. “Those home networks are now being explored by hackers who have full access to them via the hacked home router. They can access workstations, mobile devices, wifi cameras, wifi climate control and any other devices that use the home WiFi network.”

    \n

    Maunder said his team has mostly seen brute force attacks targeting both wp-login.php (the traditional login endpoint for WordPress) and also XMLRPC login. They have also seen a small percentage of complex attacks. Wordfence has detected a total of 67 million individual attacks from the routers the company identified in March.

    \n

    While Wordfence researchers were creating their monthly attack report, they noticed that Algeria had jumped in rankings from position 60 to 24 in thier “Top Attacking Countries” list. Their review of attack data in Algeria revealed a ‘long tail’ of more than 10,000 attacking IPs originating from an Algerian state owned ISP.

    \n

    A vulnerability known as “misfortune cookie” is being used in these attacks. It hijacks a service that ISP’s use to remotely manage home routers by listening on port number 7547. ISP’s should close general internet access to this port, but many have not.

    \n

    “It appears that attackers have exploited home routers on Algeria’s state owned telecommunications network and are using the exploited routers to attack WordPress websites globally,” Maunder said.

    \n

    Wordfence researchers scanned the devices to find out what services they are running and found that they are Zyxel routers usually used in a home internet setting. They found that many of them have a severe and well-known vulnerability in RomPager, the embedded web server from AllegroSoft.

    \n

    “We then dug deeper and discovered that many ISPs around the world have this same issue and those routers are attacking WordPress sites via brute force attacks,” Maunder said.

    \n

    I spoke with Tony Perez, CEO of Sucuri to see if his team has detected anything similar. Sucuri also tracks WordPress brute force attempts, but Perez said current numbers are not remarkable when compared historically to mid-2016.

    \n

    “I think the reason Sucuri and other companies are not seeing this is because it is a weak ranking signal for malicious behavior,” Maunder said. “As we point out in the report, each of these IPs is only doing between 50 and 1000 attacks per month on sites. They also only attack for a few hours each. These combined are a very weak ranking signal for malicious behavior. That low frequency also makes the attacks more effective because they are less likely to be blocked.”

    \n

    This particular security issue is unusual in that the vulnerability is with the routers, not with WordPress itself. The attackers bulk hack thousands of devices, upload a WordPress attack script and a list of targets, and then they have thousands of routers under their control to attack WordPress sites.

    \n

    This type of botnet isn’t terribly uncommon, as security researchers from from ESET recently uncovered a new malware called Sathurbot that uses torrent files as a method of distributing coordinated brute-force attacks on WordPress sites. The vulnerability in this instance is not in the software but rather in weak WordPress administrator accounts.

    \n

    Protecting against brute force attacks starts with a strong administrator password. There are also many popular plugins, such as Shield Security, the Jetpack Protect module, iThemes Security, and Wordfence, which offer protection from brute force attacks.

    \n

    If you want to make sure your router is not vulnerable to being recruited for these attacks, Wordfence has created a tool that makes it easy to check. It detects whether your home router has port 7547 open or if it’s running a vulnerable version of RomPager. If you find that your router is vulnerable or port 7547 is open, Wordfence has published instructions for how to secure your device.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Apr 2017 02:46:54 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:4;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:28:\"Matt: New Top 50 Restaurants\";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:22:\"https://ma.tt/?p=47210\";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:45:\"https://ma.tt/2017/04/new-top-50-restaurants/\";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:1012:\"

    There’s a new “World’s 50 Best Restaurants” list out! I follow the list and try to check out restaurants on it when I’m in the area, and as of last month had made it to 28 out of 50 of last year’s list. It’s a goal but in a rolling, gentle fashion: as the list changes every year I’ll probably never make it to 100%, but I enjoy exploring the highlighted folks and I’ve never had a bad meal at one. I was able to make it to Eleven Madison last month and predicted they might take the top spot, which they did in a well-deserved win. As with any award, there are lots of detractors, but Scott Vogel at Houstonia has a great essay on Why the World’s 50 Best Restaurants List Matters, which encapsulates nicely what the list represents to me.

    \";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:\"Wed, 12 Apr 2017 17:44:09 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";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:5;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:46:\"HeroPress: A Bottomless World of Possibilities\";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:56:\"https://heropress.com/?post_type=heropress-essays&p=1692\";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:60:\"https://heropress.com/essays/bottomless-world-possibilities/\";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:6470:\"\"Pull

    I started playing with websites back in 2003. I was in secondary school and Internet was relatively new to Somalia. It arrived in 1998-99 but only very few people had internet in their homes. Luckily there were internet cafes and I was introduced to this guy who owned an internet cafe. He had a large collection of Somali music and wanted to upload to somewhere so he could share with other people. I put together a GeoCities website using Microsoft FrontPage.

    \n

    The site I built was literally a blank canvas with marquee at the top and links to the mp3 files.

    \n

    The rest of the page was filled with animated gifs of waving flag, rotating globe and glittering stars.

    \n

    I kept fiddling with FrontPage’s WYSIWYG tab. Every time I add new element to the visual tab I would immediately switch to the HTML tab and see how the generated code would look like. I have managed to teach myself some HTML this way, but I was still very uncomfortable with coding.

    \n

    Buckling Down

    \n

    After a while, I moved to Addis Ababa, Ethiopia and suddenly I had plenty of time so I decided to buy a web design book. It was basically an HTML tutorial and it helped me code table-based layouts without using a visual builder. This led me to discover CSS, PHP and, among other things, WordPress.

    \n

    I would install and test almost every PHP-based CMS out there: Mambo, Joomla, Drupal and few others but I settled with WordPress.

    \n

    WordPress was always user friendly and anyone with half-decent knowledge in HTML and CSS could open Kubrick (default theme until 2010) files in text editor and whip out something unique.

    \n

    Leveling Up

    \n

    It was around this time that I started to take freelance projects. My first WordPress project helped me buy a decent laptop, and suddenly other projects started to come. Most of my clients were people in Europe and United States.

    \n

    Getting paid was initially difficult. Most of international payment systems didn’t work in Somalia until very recently.

    \n

    PayPal’s strict policy meant payment was one-way street: you can make payments but can’t receive or withdraw anything.

    \n

    I managed to team up with someone in another country and we opened a shared account where we could receive the payments. My business partner would then transfer my slice to my local bank account. Things changed recently and although PayPal is still not an option, freelancers can get paid via international bank transfer or Payoneer.

    \n

    My experience with open source in general and WordPress in particular had positive impact in my life. I am quite lucky to wake up every morning and work, all on my own, in a country where 54% of the population are unemployed and over 70% are youth. This has prompted me to seek ways help other people to get into open source, creating hobbies and jobs for many young people who have a lot of time in their hands to learn, contribute and work with open source software.

    \n

    Branching Out

    \n

    Although the Internet keeps crushing physical borders and bureaucracy policies it doesn’t mean opportunities will magically come knocking on people’s doors. However, the advantage of investing in skills that allow the individual to go remote and tap a global market of design, development, copywriting or blogging, is that the individual is not dependent on the demand of the local market. Another advantage is that it helps the person connect to thousands of like-minded people from worldwide, whom you learn from and contribute to. It’s a bottomless world of possibilities.

    \n

    I have recently talked to few WordPress developers from different parts of Somalia and we were trying to figure out how we can organize a WordPress related event, preferably WordCamp Somalia. We didn’t set out time yet but it’s in our plans. Hopefully in 2018.

    \n

    The post A Bottomless World of Possibilities appeared first on HeroPress.

    \";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:\"Wed, 12 Apr 2017 12:00:38 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jamaal Jaamac\";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:6;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:103:\"WPTavern: Advanced WordPress Facebook Group Moves to Curb Low Quality Content with Admin-Approved Posts\";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:29:\"https://wptavern.com/?p=68507\";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:114:\"https://wptavern.com/advanced-wordpress-facebook-group-moves-to-curb-low-quality-content-with-admin-approved-posts\";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:5222:\"

    \n

    The Advanced WordPress Facebook group (AWP) is making a radical change. After three years of allowing members to post freely, the group’s administrators voted to restrict posting to admin-approved content only.

    \n

    The popular WordPress watering hole has amassed more than 28,000 members and plays host to many lively conversations. Over the years some have suggested the group switch to using a WordPress-powered site or forum, but Facebook’s infrastructure has proven to be a vital part of the community’s success. Most members are already tied into Facebook’s notification system for their personal accounts and posts receive much more exposure than if they were on a separate website.

    \n

    In more recent years, the group has struggled with a constant stream of low quality content, prompting admins to re-examine the group’s approach to posting.

    \n

    “Our current mode of moderation is reactive,” AWP admin Matt Cromwell said. “Every time a low-quality post gets posted to the group it adds to the noise, and sometimes it might be hours and hours or even a day until an admin removes it — which means thousands of people have experienced the group with more ‘noise’ than it should have. Our only tools in the current setup of the group is for that noise to be added automatically, and the admins having to clean it up after the fact.”

    \n

    Cromwell said the group reached “a crisis moment” and several admins with experience in other large groups said content quality is much higher with admin-approved posts. The majority of the group’s 28 admins voted over the weekend to make the switch to admin-approved content only. Cromwell said the vote breakdown included one abstention and six hesitant no votes.

    \n

    “Some might think that is a lot more work for admins, but the truth is that we’ll actually be able to focus less on moderating in a reactive way, moderating profiles and negativity, and instead admin in a proactive way, moderating content,” Cromwell said.

    \n

    AJ Zane is one of the six admins who voted against the new rule. He said he sees AWP as an extension of the physical San Diego AWP group where he and other members enjoy open-table discussions.

    \n

    “I’m voting ‘no’ because I think this group is about self moderation, open discussion, and letting the posts with good content bubble to the top,” Zane said. “If the physical AWP meetup was not a round table group of people sharing wins/bugs/discoveries/questions, but had curated presenters, I know I would not have been as excited to attend the sessions. You want curated content? Go to Torque, listen to WP Weekly. You want to share that you just realized a method you’ve been using for years has a parameter you never noticed, come to AWP.”

    \n

    Zane said he realizes that it is idealistic to say that “good content bubbles to the top,” since AWP wouldn’t have this problem if all the top posts were high quality.

    \n

    “Our group has grown to the size that we apparently need some guidance from the admins that care about a high caliber of content and a vibrant community, as opposed to the people trying to get quick fixes and actively malicious parties,” Zane said. He proposed that the group build a forum website where they could use Facebook’s authentication and set up curated and free-post rooms, but said he sees it as “a nice pipe dream,” since few people would have time to build it.

    \n

    Members responded positively to the news that posting is changing, with a few exceptions who are worried about moderators having conflicts of interest. Others expressed concerns about not receiving timely posts and replies if someone is in need of assistance. Admins reminded members that the purpose of the group is not for receiving personalized support on projects.

    \n

    Several members commented on the announcement, saying they were considering quitting the group because the negative posts and noise level had gotten so high. Many are hopeful that fewer posts will generate more engagement on the content.

    \n

    “We also would like to starting hosting new kinds of content,” Cromwell said. “With admin-approved posts we can better facilitate an AMA, or a Facebook Live, or any other type of content.”

    \n

    Cromwell said he expects there will be more work for admins in the first 4-8 weeks until members start to understand more intuitively what makes for a good post in the group. Members who are not sure if their content is appropriate can run it through the AWP Contribution Wizard.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Apr 2017 21:58:16 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:7;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:68:\"WPTavern: WordCamp for Publishers to be Held in Denver, August 17-19\";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:29:\"https://wptavern.com/?p=68564\";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:78:\"https://wptavern.com/wordcamp-for-publishers-to-be-held-in-denver-august-17-19\";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:4385:\"Coffee Cup on Table — Image by © Michael Prince/CORBIS\n

    The first ever WordCamp for Publishers will be held August 17-19 in Denver, Colorado. The niche WordCamp will be open to anyone who uses WordPress to manage a publication, no matter what size. Organizers submitted an application last November and received approval from WordCamp Central in February.

    \n
    \n

    A huge thanks to @wordcamp for letting us try this out. It\'s the first national WordCamp focused on a specific topic/industry.

    \n

    — Adam Schweigert (@aschweig) April 6, 2017

    \n

    \n

    In previous planning stages, the event was going to be called “WordCamp for Journalists,” but WordCamp for Publishers is more inclusive of the different types of professionals who are involved in managing publications. Organizers are planning to have tracks with content for engineering, product, and editorial teams. Attendees will work together to collaborate on open source tools for publishers and best practices.

    \n

    Steph Yiu and Adam Schweigert are the lead organizers of the event. Schweigert used to run engineering at the Institute of Nonprofit News and also led a working group assembled by MIT and the Knight Foundation on CMS-related projects. Yiu was a part of that working group and most of the other 12 organizers came out of it. Others were found through a call for volunteers.

    \n

    “As a part of the working group we decided we wanted to pull together an event that was focused on WordPress, specifically helping improve the open source tools around publishing, and build a community around publishers that use WordPress,” Yiu said. “One thing that was very important to us was being able to reach smaller publishers, which is why, as part of the event, we are hoping to offer travel scholarships for folks who otherwise would not be able to attend.”

    \n

    After discussing a few different event types, Yiu said the team eventually settled on setting it up as a WordCamp because of the community and structure that WordCamp Central provides. However, unlike most WordCamps, the event will offer a mix of presentations and hands-on workshops. Organizers will soon open a call for both speakers and workshop facilitators.

    \n

    “It’s still early days for us since this is a first-time event,” Yiu said. “Our current goal is to have a mix of workshops aimed at people who contribute to the multiple areas of the publishing process (for example: developers, designers, product owners, and editorial staff) and multiple skill levels. We also hope to bring together people who maintain open source projects important to publishing to run workshops on both using and contributing with the goal of helping build up those projects for the long run.”

    \n

    WordCamp for Publishers will be held at The Denver Post, a publication that runs on WordPress as a WordPress.com VIP customer.

    \n

    “Mateo Leyba, who works at Digital First Media, was a part of the original working group and suggested they could sponsor with a venue donation,” Yiu said. “That was very welcome as venues are usually the most expensive part of any event! Also, it’s a cool spot with a beautiful view.”

    \n

    The call for speakers and workshop leaders will open soon and will close in early May. Tickets for the event will be $40 and will go on sale in May. As it’s the first event of its kind, the organizers are keeping it small and are limiting it to 230 attendees. If you’re thinking about sponsoring or attending, sign up for email updates on the WordCamp for Publishers website.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Apr 2017 03:12:50 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:8;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:111:\"WPTavern: WordPress Editor Experience Survey Shows 75% of Respondents Don’t Use Distraction-Free Writing Mode\";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:29:\"https://wptavern.com/?p=68566\";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:118:\"https://wptavern.com/wordpress-editor-experience-survey-shows-75-of-respondents-dont-use-distraction-free-writing-mode\";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:3353:\"

    The WordPress Editor Experience survey results have been published with data from 2,563 participants, a significantly larger sampling than the 50 who responded to the recent customizer survey. Both the editor and the customizer are included in Matt Mullenweg’s three main focus areas for core development in 2017. The purpose of the surveys is to find out how WordPress users are using or not using the current features.

    \n

    More than half of the survey respondents (66%) identified themselves as developers (in addition to other roles). Since this category of users dominated the survey results, Mark Uraine decided to break it down further to display other categories developers selected.

    \n

    \n

    Based on these results, it isn’t surprising that more than 85% of respondents use the markup text editor and 35% of those use it exclusively. Support for syntax highlighting is also a popular request.

    \n

    The distraction-free writing mode received quite a bit of feedback on the survey. More than 75% of respondents said they do not use it.

    \n

    \n

    The current implementation of the distraction-free writing mode was introduced in WordPress 4.1 at the end of 2014. The idea was to minimize distractions without having to go through a clunky transition to access the admin menu or meta boxes. Moving the cursor to the right or left of the editor brings them back into view, but many people find the admin interface sliding in and out of view to be distracting. Several who commented suggested that the feature could use some major improvements.

    \n

    The survey also revealed that the majority of respondents (72%) install plugins that add features to the editor. These most commonly include shortcodes, Advanced TinyMCE, Tables, and Visual Composer. The results indicate that users often extend the editor to get more basic advanced layout capabilities for presenting their content.

    \n

    \n

    The Editor Experience survey was a good first start, but it doesn’t accurately represent WordPress’ global user base. The results are heavily skewed towards developers’ needs and experiences. Developers are users, too, but there has to be a way to get these surveys into the hands of a more diverse sampling of users. Reopening the survey and circulating it beyond the WordPress developer community might help to paint a more accurate picture of users’ experiences with the editor.

    \n

    A more diverse sampling would reveal whether or not the vast majority of users have no use for the current implementation of the distraction-free writing mode, as developer feedback seems to suggest. It could also provide more feedback on the visual editor features that 35% of respondents to this survey never use.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Apr 2017 21:10:28 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:9;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:94:\"WPTavern: New Twitter Bot Automatically Tweets Links to Trac Tickets Tagged as Good-First-Bugs\";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:29:\"https://wptavern.com/?p=68613\";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:105:\"https://wptavern.com/new-twitter-bot-automatically-tweets-links-to-trac-tickets-tagged-as-good-first-bugs\";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:2991:\"

    In 2014, WordPress Trac received a facelift and one of the improvements was the “good-first-bug” tag. The goal of good-first-bug tickets is to get newcomers familiar with WordPress code, processes, and contributing patches.

    \n

    If you’d like to be notified of new tickets created on trac tagged good-first-bug on Twitter, check out the @GoodFirstBugs account created by Ryan Welcher. In three days since its creation, the account has accumulated nearly 100 followers.

    \n
    \n

    I wrote a bot to tweet #goodfirstbugs for #WordPress core. Follow @GoodFirstBugs for great ways to start contributing!

    \n

    — Ryan Welcher (@ryanwelcher) April 7, 2017

    \n

    \n

    The bot uses predetermined phrases to describe tickets. However, the phrases don’t do much to explain what the ticket is about. For example, the ticket linked in the Tweet below has nothing to do with the Capital P Dangit filter. I’d like to see the first few words of the ticket’s title be used instead.

    \n
    \n

    Capital P Dangit! https://t.co/KgoJiiN72C #GoodFirstBug

    \n

    — GoodFirstBugs (@GoodFirstBugs) April 9, 2017

    \n

    \n

    Many of the tickets linked have the has-patch keyword assigned as well. This means that a contributor has already submitted a patch and it needs to be reviewed and or tested before it can be committed to core. Scott Buscemi suggests that the bot should ignore these tickets, an idea that Welcher may implement in future iterations.

    \n

    As I’ve highlighted in the past, the tickets tagged good-first-bug help remove some of the fear and anxiety that comes with navigating Trac to contribute to WordPress. Using Twitter to publish links to these tickets will give them more exposure and may lead to quicker adoption from new contributors.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Apr 2017 16:30:42 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:10;a:6:{s:4:\"data\";s:11:\"\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:39:\"HeroPress: HeroPress Geography: Oceania\";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:29:\"https://heropress.com/?p=1689\";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:49:\"https://heropress.com/heropress-geography-oceana/\";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:3364:\"\"Google

    This week’s HeroPress geography is from Oceania.  I’d love more people from that area, so if you know anyone who would be good for HeroPress, please encourage them to fill out the contributor form.

    \n

    Actually, WordPress didn’t change my life.

    \n

    \n

    It All Begins With a Thought

    \n

    \n

    When Life Throws You a Curveball, WordPress is There

    \n

    \n

    WordPress Set Me Free

    \n

    \n

    Love your work

    \n

    \n

    The post HeroPress Geography: Oceania appeared first on HeroPress.

    \";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:\"Sun, 09 Apr 2017 02:47:36 +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:\"\";}}}}}i:11;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:103:\"WPTavern: Yoast SEO’s PHP Upgrade Nag is Producing a Significant Increase in Sites Upgrading to PHP 7\";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:29:\"https://wptavern.com/?p=68581\";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:111:\"https://wptavern.com/yoast-seos-php-upgrade-nag-is-producing-a-significant-increase-in-sites-upgrading-to-php-7\";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:2889:\"

    Less than three weeks ago Yoast SEO version 4.5 was released with an ugly, non-dismissible notice for sites on PHP 5.2. The notice encourages the user to upgrade to PHP 7, explaining that it is faster and more secure. It includes links for getting started and example emails that users can send to their hosting companies.

    \n

    \n

    In the 18 days since shipping the plugin with the upgrade nag, Yoast SEO creator Joost de Valk has seen a dramatic uptick in sites moving from old, unsupported versions to PHP 7. From December to March, PHP 5.2 usage among Yoast SEO users decreased from 1.9% to 1.7%, a modest drop over three months. After adding the nag on March 21, PHP 5.2 usage dropped from 1.7% to 1.3% for those using Yoast SEO version 4.5. PHP 5.3 usage is also steadily decreasing since de Valk began the campaign to educate his plugin’s users about the benefits of upgrading.

    \n

    \n

    According to de Valk’s stats, 22.2% of Yoast SEO users are on version 4.5 of the plugin. He estimates 1,443,000 sites on 4.5 out of 6.5 million users.

    \n

    “Assuming 0.5% updated their PHP versions, that’s 7K sites,” de Valk said. “And another 14-20k that updated from 5.3 to something more decent.”

    \n

    Many developers are hesitant to implement a nag in their plugins, but Yoast SEO is one of the largest plugins to prove that an ugly, non-dismissible notice can be an effective tool for getting users to take action.

    \n

    “One of the reasons I’m sharing is because I’d love others to join us,” de Valk said. “People don’t like nags, but we’ve had some truly great feedback from users who went from PHP 5.2 to 7 and were astonished by how fast their sites suddenly were. Negative feedback has been absolutely minimal.”

    \n

    The Yoast SEO team created a project called WHIP that makes it easy for plugin and theme developers to add notices that will nudge their users to upgrade their software versions, starting with PHP. The project also includes a filter for linking to the WordPress.org recommended hosting page, as an alternative to the Yoast.com hosting overview.

    \n

    De Valk said his team intends to push the notice to users on other PHP versions in the near future, starting with 5.3.

    \n

    “We’ve got a release coming next week (4.6), in which we won’t do it yet,” de Valk said. “If all goes well and continues to be mellow, 5.3 will be ‘nagged’ as of 4.7, probably three weeks later.”

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 08 Apr 2017 03:56:44 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:12;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:84:\"WPTavern: Recommended Reading: Resilient Web Design, a Free e-Book from Jeremy Keith\";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:29:\"https://wptavern.com/?p=68253\";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:93:\"https://wptavern.com/recommended-reading-resilient-web-design-a-free-e-book-from-jeremy-keith\";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:5538:\"photo credit: Sergey Zolkin\n

    UK-based web developer Jeremy Keith published Resilient Web Design as a free e-book in December 2016. Over the past few months, industry leaders have been raving about the book, so I decided to take an evening to find out what all the fuss is about. Keith has been blogging for more than 15 years at adactio.com. He is an active contributor to the web standards movement, a popular conference speaker, and the author of DOM Scripting, Bulletproof Ajax, and HTML5 For Web Designers.

    \n

    After just a few pages in, I could see why so many have read Resilient Web Design all in one go. It lives up to all the excellent reviews. The book is divided into seven chapters and can be read in a couple hours. It is not a book on best practices, as one might expect, but rather a historical perspective on web standards and the evolution of responsive design. It provides a foundation for understanding technological progress and is essentially a primer on how breakthrough ideas happen and how resilient ideas endure.

    \n

    “The World Wide Web has been around for long enough now that we can begin to evaluate the twists and turns of its evolution,” Keith said. “I wrote this book to highlight some of the approaches to web design that have proven to be resilient. I didn’t do this purely out of historical interest (although I am fascinated by the already rich history of our young industry). In learning from the past, I believe we can better prepare for the future.”

    \n

    Keith’s brief history of web design recaptures some of the magic we felt at the dawn of the web. He said much of the subject matter has been included in his conference talks over the past couple of years but the book ended up taking some twists and turns that surprised him.

    \n

    “You won’t find any code in here to help you build better websites,” Keith said. “But you will find ideas and approaches. Ideas are more resilient than code. I’ve tried to combine the most resilient ideas from the history of web design into an approach for building the websites of the future.”

    \n

    Keith shares some thought-provoking ideas on design in chapter 3 that are particularly applicable to WordPress’ new structure for releases where design and user testing will lead the way in building a new editing and customization experience. The closest thing you can have to predicting the future is an understanding of what has endured in the past and an idea for building on it. Keith’s book examines principles that have proven to be resilient over time.

    \n

    “Design adds clarity,” Keith said. “Using colour, typography, hierarchy, contrast, and all the other tools at their disposal, designers can take an unordered jumble of information and turn it into something that’s easy to use and pleasurable to behold. Like life itself, design can win a small victory against the entropy of the universe, creating pockets of order from the raw materials of chaos.”

    \n

    Keith said he wrote Resilient Web Design for people who create websites in any capacity. He released it under a Creative Commons attribution share-alike license and there are many ways to access the content:

    \n\n

    Despite his experience of nearly two decades in the industry, Keith is still acutely aware of all the unknowns that cannot be predicted. We don’t know what the web will become, but Keith’s perspective on its history brings a few resilient ideas to light. If you have some spare time over the weekend and want to be inspired about the future of the web, I highly recommend reading Resilient Web Design.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Apr 2017 20:29:55 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:13;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:72:\"WPTavern: New Userscript Restores Tabs to the WordPress Plugin Directory\";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:29:\"https://wptavern.com/?p=68488\";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:83:\"https://wptavern.com/new-userscript-restores-tabs-to-the-wordpress-plugin-directory\";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:2745:\"

    One of the most common complaints about the WordPress plugin directory’s redesign is the use of read more links instead of tabs. Plugin authors and users contend that tabs make information more accessible. The redesign requires visitors to scroll a one-page design and click on various read more links to discover more information.

    \n

    There is a ticket on Trac that suggests a jump section be included so that visitors can jump to specific sections of a plugin’s readme file. It’s unclear if this feature will be added but if you’d like to restore the tabbed layout to the plugin directory, check out this Userscript created by Nicolas Jonas.

    \n

    According to OpenUserJS, userscripts are open source add-ons for browsers that can modify webpages as they’re loaded. Using userscripts is roughly the same as installing WordPress plugins to restore lost functionality. Jonas’ userscript source code contains a mix of CSS and jQuery to generate the tabs.

    \n

    To install the WordPress.org Plugin Directory Tabs userscript in Firefox, you’ll first need to install the free Greasemonkey extension. Greasemonkey is a Mozilla Add-on for Firefox that allows userscripts to run in the browser.

    \nGreasemonkey Firefox Add-on\n

    Jonas developed the userscript in about 30 minutes and used CSS from a CSS button generator. The tabs have a blue background with white text on top. Jonas is open to suggestions and encourages those who want better designed buttons to create an issue with the proper CSS code on his OpenUserJS page.

    \nTabbed Layout\n

    I tested the userscript on Firefox 52.0.2 and didn’t encounter any issues. After navigating the plugin directory with tabs, I can easily say I prefer it versus clicking read more links. I rarely have to scroll and the information I want to see is displayed front and center. Simply put, browsing a plugin’s page with tabs is a better user experience.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Apr 2017 02:25:02 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:14;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:90:\"WPTavern: WordPress Plugin Directory Restores Stats and Links to Older Versions of Plugins\";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:29:\"https://wptavern.com/?p=68486\";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:101:\"https://wptavern.com/wordpress-plugin-directory-restores-stats-and-links-to-older-versions-of-plugins\";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:1899:\"

    Since the launch of the newly redesigned WordPress plugin directory, the Meta team has been hard at work fixing bugs and updating the design. The directory has undergone a series of visual updates that address some of the concerns readers expressed last week.

    \n

    Plugin stats are available to the public again and can be viewed by clicking the Advanced View link. 
    \nAdvanced View Link

    \n

    Stats For PluginsLinks to previous versions can also be found on the stats page along with a disclaimer that says older versions may not be stable or secure.

    \n

    Drop-down Menu to Download Older VersionsThe installation instructions have also returned as a drop-down section.

    \n

    Installation InstructionsThese changes bring the directory closer to the usefulness its predecessor provided. Some of the issues that remain include, read more links, distorted plugin banner images, and screenshots linking to a page instead of opening in a lightbox. Although some plugin banners are distorted, the Meta team does not recommend developers update them as the new dimensions have not been finalized.

    \n

    The plugin directory is a work in progress. To report a bug or enhancement, you can create a ticket on Trac. If you have any questions concerning the directory or would like to get more involved, visit #meta on Slack.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Apr 2017 02:18:27 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:15;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:71:\"WPTavern: WPWeekly Episode 270 – Going Camp Press With Mendel Kurland\";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:58:\"https://wptavern.com?p=68536&preview=true&preview_id=68536\";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:78:\"https://wptavern.com/wpweekly-episode-270-going-camp-press-with-mendel-kurland\";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:5914:\"

    In this episode, Marcus Couch and I are joined by Mendel Kurland, GoDaddy Evangelist, to discuss the news making headlines. We cover what’s new in WooCommerce 3.0, why WordCamp Netherlands may not happen this year, and the WordPress plugin directory redesign.

    \n

    Marcus announced that he is the new head WordPress editor for Smashing Mag. Last but not least, Kurland provides insight into Camp Press, a social experiment focused on disconnecting from technology to strengthen one-on-one relationships.

    \n

    Stories Discussed:

    \n

    WooCommerce 3.0 Brings Major Improvements to Product Gallery, Introduces CRUD Classes and a New CLI
    \nWordPress Community Support Shuts Down WordCamp Netherlands in Favor of City-Based WordCamps
    \nWordPress Plugin Directory Redesign: Why So Many People Feel Their Feedback Was Ignored
    \nDisconnect From Technology at Camp Press September 23-24 in Seminole, OK

    \n

    What’s On WordPress.tv

    \n

    WordPress Community Interview with Bridget WillardBridget Willard is the Marketing Manager at WordImpress. She started her career with office work, earned a teaching degree, but returned to the office where she carved out a career in social media and marketing.

    \n

    She is the co-host of WPblab and co-organizer of Women Who WP meetup. In this interview, Willard talks about her role as a member of the WordPress Marketing Team the Four Horseman of WordPress Marketing.

    \n

    Adam Silver and Kyle Maurer: WPBattles – Entrepreneurship vs. Employment WordCamp Northeast Ohio 2016 – In this session, the duo takes a detailed look at working for yourself or for someone else.

    \n

    They share the pros and cons for each and break down the fundamental differences between starting a WordPress company and working for one. If you ever find yourself questioning whether you’re really doing what’s best for you, this session will help you understand which path to choose.

    \n

    Manuela van Prooijen: Long live the customer – how to get more out of your WordPress business – From WordCamp Geneva (Switzerland) – Many companies do not use the full potential of their existing customers. Too often those clients are considered a piece of furniture. The clients are there, but often overlooked and not being paid attention to.

    \n

    The constant struggle to acquire new customers however is 5 to 10 times more expensive than selling services and goods to existing clients. Manuela shares ten strategies to create a crowd of happy and loyal customers and as a result: more return (recurring) business.

    \n

    Plugins Picked By Marcus:

    \n

    WC Documents Tab adds a new tab into the product detail page with downloadable documents. You can use this for documentation, product brochures or anything else that you would need to provide a document for.

    \n

    Rock The Slackbot can help you manage your websites, and stay on top of changes, by sending notifications (following numerous WordPress events) to your Slackbot who will pass them along to a channel or direct message in your Slack account. This triggers when posts are published, unpublished, deleted or updated. It’s also triggered for user roles, activity, theme, plugin modifications, and more.

    \n

    PDF Forms Filler for Contact Form 7 gives WordPress Admin Panel users the ability to add PDF attachments to email messages of Contact Form 7. If the PDF attachment has a PDF form, the plugin allows users to add fields onto the CF7 form that are mapped to fields in the PDF form. When a website visitor submits the CF7 form, the form in the PDF file is filled with CF7 form information and the resulting PDF file is attached to the CF7 email message.

    \n

    WPWeekly Meta:

    \n

    Next Episode: Wednesday, April 12th 3:00 P.M. Eastern

    \n

    Subscribe To WPWeekly Via Itunes: Click here to subscribe

    \n

    Subscribe To WPWeekly Via RSS: Click here to subscribe

    \n

    Subscribe To WPWeekly Via Stitcher Radio: Click here to subscribe

    \n

    Listen To Episode #270:
    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Apr 2017 18:21:48 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:16;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:83:\"WPTavern: Blog Helper: An Alexa Skill for Managing a WordPress Blog with Your Voice\";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:29:\"https://wptavern.com/?p=68008\";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:93:\"https://wptavern.com/blog-helper-an-alexa-skill-for-managing-a-wordpress-blog-with-your-voice\";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:3293:\"photo credit: MjZ Photography IMG_8538-Edit.jpg(license)\n

    “Alexa, tell Blog Helper to create a new post called ‘Granny’s banana bread recipe.\'” Imagine logging a new draft on your WordPress site using only your voice while working in the kitchen. That’s what Blog Helper, an Alexa skill, enables for WordPress.com and self-hosted Jetpack users. It is available for free in Amazon’s catalog of Alexa skills.

    \n

    Automattic developer Christopher Finke created the Alexa integration for WordPress after purchasing an Echo and some Dots for his house and experimenting with different ways for making them useful. He programmed Blog Helper to allow users to check WordPress.com notifications, moderate pending comments, and save blog post ideas as drafts.

    \n

    \n

    Blog Helper relies on WordPress.com’s OAuth support, which Finke said self-hosted sites can get via Jetpack. After asking Alexa to enable Blog Helper, you will need to link your WordPress.com account and select the blog you want to access. Once you’re hooked up, you can say, “Alexa, ask Blog Helper for my notifications.” Alexa will read off new notifications one-by-one and mark them as read.

    \n

    Blog Helper also enables comment moderation with your voice, so you can take care of that while folding the laundry or doing dishes. If you ask, “Do I have any comments to moderate?”, Alexa will read them to you and you can approve, delete, or mark them as spam. Check out the quick demo video Finke created to hear it in action:

    \n
    \n

    Scientific studies have proven that some of your best ideas come to you when your mind is relaxed and your body is distracted by routine tasks. If you have an Alexa-enabled device, Blog Helper is a fun way to help you capture your creative ideas in WordPress before they get away. It allows you to create new drafts without having to pick up your phone or sit down to your desktop.

    \n

    Although Finke works for Automattic, he wrote Blog Helper in his free time and it doesn’t have any official affiliation with WordPress.com. His said his roadmap is to try and make as much of the core WordPress experience accessible by voice as possible. Blog Helper can be a big time-saver for those who want to manage their blogs without being tied down to a screen, but the voice interface can also be useful for those who have vision impairments. Blog Helper is GPL-licensed and available on GitHub if you want to contribute or follow for updates.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Apr 2017 02:04:01 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:17;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:85:\"WPTavern: Jetpack 4.8 Introduces Settings Redesign, Adds Global WordPress.com Toolbar\";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:29:\"https://wptavern.com/?p=68255\";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:95:\"https://wptavern.com/jetpack-4-8-introduces-settings-redesign-adds-global-wordpress-com-toolbar\";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:3338:\"

    Jetpack 4.8 was released this week with a settings redesign that is a continuation of the React.js-powered admin interface introduced last September. The new settings screen has been completely rearranged under a more simplified menu.

    \n

    “We went through every setting on WordPress.com and Jetpack to make sure it was necessary to keep around, and to find a good, logical home for each one,” Jetpack designer Michael Arestad said. “We ended up mirroring the WordPress core settings groups for now — they are familiar to people, and things fit well there.”

    \n

    Arestad said he was inspired by the way mobile devices handle settings, especially how they rarely include a “Save” button unless it’s an option that isn’t a simple toggle. The Jetpack design team applied this to the settings screens so that most of them are now autosaved.

    \n

    \n

    This release also introduces the ability to enable the WordPress.com Toolbar, a new feature that replaces the wp-admin toolbar with the My Sites menu, a link to the WordPress.com reader, a Write button that takes you to WordPress.com, and a notifications dropdown. It is essentially the same toolbar you see when working with a WordPress.com site.

    \n

    \n

    Jetpack 4.8 includes several dozen improvements and bug fixes. A few of the highlights include the following:

    \n
      \n
    • New MailChimp Subscribe Popup widget
    • \n
    • Sitemaps are faster and now support sites with a very large number of posts (1,000+)
    • \n
    • Contact Form now has a plain-text alternative and better avoids spam filters
    • \n
    • Debug form includes extra information to better prioritize support requests
    • \n
    • Photon can now be used within the dashboard and supports bbPress topics and replies
    • \n
    \n

    Jetpack 4.8.1 Fixes PHP Incompatibility Issue

    \n

    Many users reported fatal errors and blank pages after updating to Jetpack 4.8. A temporary fix was to load an older version of Jetpack. In a convenient turn of events, the WordPress plugin directory restored the ability to download older versions of plugins today (found under the new Advanced View link).

    \n

    Jetpack 4.8 included PHP code that is incompatible with PHP versions lower than 5.4, which caused the fatal errors. The Sitemaps module also included an incompatibility with the WP Rocket plugin. Additionally, the release included many new translation files, which caused updates not to complete on sites that have limited resources for processing large files on updates.

    \n

    Jetpack 4.8.1 was released a few hours ago to correct these issues. The Jetpack development team recommends manually installing the plugin via FTP/SFTP if your site crashed and you are unable to update through the admin.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Apr 2017 21:07:37 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:18;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:32:\"HeroPress: WordPress Flexibility\";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:56:\"https://heropress.com/?post_type=heropress-essays&p=1680\";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:51:\"https://heropress.com/essays/wordpress-flexibility/\";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:5214:\"\"Pull

    When I was asked to describe myself and my interests for a bio at work I floundered. I felt the same way when sitting down to write this. Where do I even begin? For my bio, I decided instead of narrowing it down I’d go with “jill-of-all-trades.” I really like to do everything and if I don’t like something I only know that because I tried it first. I’ve been this way since I can remember. At school I got good grades in everything (except Chemistry), I liked everything (except Chemistry) and I wanted to do everything. Figuring out my career path was therefore a long process (I actually started out pre-med in college, but you know… Chemistry).

    \n

    After graduating college I started working in marketing and absolutely hated it – I did the same exact thing almost every day. It was miserable. I missed the old web content job I had during college, where I did SEO, product photography, email campaigns, basically anything website related. Right now I can’t believe there was a point in my life that I missed HTML emails, but I did. I missed the flexibility, doing something different every day, and most importantly, I missed the creative problem solving it entailed.

    \n

    So I quit my stupid marketing job and attended a coding bootcamp.

    \n

    It was a Front End Development track where I honed my HTML and CSS skills, learned JavaScript in a few forms (vanilla, jQuery, AngularJS), and learned other tools of the trade (git, task runners, bash, etc.). When I landed my first web development job I was excited – the company did all sorts of different projects: web apps, web sites, intranets, you name it. I knew that there was enough variety to keep me constantly moving and constantly learning. My first project was something I was familiar with, an AngularJS application, but my second project was something I’d never seen before – a WordPress site. Knowing zero PHP, I dove right in.

    \n

    I can’t say that I loved WordPress right off the bat. When I was still mostly developing pretty simple sites with it, I was afraid it was going to become monotonous. Today I know how wrong I was. Although the majority of the projects I work with involve WordPress, I can do something new and different with every site.

    \n

    Just this year I’ve worked on a WordPress theme with a headless React front end, a WordPress site with part of the admin area written in React, and a WordPress plugin with a front end built in Angular 2. Even traditional WordPress themes can be exciting. Each client has their own needs and with the flexibility of templates, post types, and widgets every site I build is a new challenge.

    \n

    I’ve come a long way since drowning in monotony early in my career.

    \n

    At home you might find me doing yard work, refinishing furniture, knitting, wood burning, or attempting to play the banjo. But at work, using WordPress gives me all the flexibility I need to be constantly learning and improving.

    \n

    The post WordPress Flexibility appeared first on HeroPress.

    \";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:\"Wed, 05 Apr 2017 12:00:37 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Natalie Miller\";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:19;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:109:\"WPTavern: WooCommerce 3.0 Brings Major Improvements to Product Gallery, Introduces CRUD Classes and a New CLI\";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:29:\"https://wptavern.com/?p=68232\";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:119:\"https://wptavern.com/woocommerce-3-0-brings-major-improvements-to-product-gallery-introduces-crud-classes-and-a-new-cli\";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:4330:\"

    \n

    WooCommerce 3.0 “Bionic Butterfly” was released today with significant improvements to the product gallery and developer tools. This version, which was previously going to be 2.7, is the first major release since the plugin switched to semantic versioning. It was released after more than three months in beta and an extended RC testing period that allowed extension and theme developers enough time to get up to speed.

    \n

    The new product gallery has subtle improvements for galleries with multiple images. Clicking on a thumbnail updates the image without forcing it to open in a popup window. Galleries in 3.0 are also more intuitive on mobile with support for touch gestures, including swipe to scroll through the gallery, pinch to zoom, and swipe up to close the current image. These and several bug fixes and improvements deliver a much smoother experience of viewing product images.

    \n
    \n

    This release includes significant performance improvements, thanks to the switch from post meta to taxonomies for features like product visibility, featured products, and out of stock products. WooCommerce contributors have also reduced the number of queries required to display related products and upsells.

    \n

    Version 3.0 introduces CRUD (Create, Read, Update, Delete) classes for developers, making it easier to write and retrieve data from the database with less code.

    \n

    “High order volume is one of the best problems a store can have, but it can really slow down your site’s performance,” WooCommerce lead developer Mike Jolley said. “That’s why our team’s main focus this year is performance and scalability.” Scalability improvements are planned for the next several releases.

    \n

    Version 3.0 also introduces a new command line interface (CLI) powered by the REST API. The previous CLI didn’t fully support the same functionality and was powered by its own separate code. The new CLI forks Restful to make REST API endpoints available as WP-CLI commands. It reduces the amount of code that WooCommerce has to maintain and ensures that the commands are always current as the project’s REST API is updated in the future.

    \n

    The WooCommerce support forums on WordPress.org have been lighting up with requests after 3.0 was released. One particular issue pinned to the top of the forums is an incompatibility with Select2 v3. The latest version of WooCommerce uses Select2 V4 and this may cause an issue with AJAX search inputs in plugins and themes loading an older version of Select2.

    \n

    Another issue users are having after upgrade is frontend pages reloading endlessly, which WooCommerce developers have identified as a problem with the geolocation setting. They are working on a fix for 3.0.1.

    \n

    Many users who are reporting issues after updating to 3.0 have discovered incompatibilities with themes or plugins. This release received more than 3,000 commits from 115 contributors. With this many changes packed into a major release, WooCommerce developers recommend testing on a staging site and making a backup before updating the plugin. This will give you the opportunity to make sure your theme and plugins are compatible with the update.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Apr 2017 01:56:15 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:20;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:82:\"WPTavern: Disconnect From Technology at Camp Press September 23-24 in Seminole, OK\";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:29:\"https://wptavern.com/?p=68248\";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:92:\"https://wptavern.com/disconnect-from-technology-at-camp-press-september-23-24-in-seminole-ok\";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:4477:\"

    Readers may remember in 2015, we highlighted Camp Press, a conference devoted to disconnecting from technology to focus on strengthening bonds that encourage collaboration within the community.

    \n

    Mendel Kurland, who has spent the better part of two years organizing the event, announced that Camp Press will take place September 23-24, at Fry Lake in Seminole, OK. The event is a collaboration between Kurland, Aaron D. Campbell, and Christen Campbell

    \n

    Accommodations include tents, cabins, and RV hookups. Camp Press will take place on Camp Campbell, a plot of land owned by Campbell and his wife. Available activities include hiking, Geo-Caching, swimming, canoeing, fishing, sports, and more.

    \nA Lake Where Attendees Can Chill Out\n

    “Many of us spend a lot of time online, but it’s the time we spend offline and disconnected one-on-one that’s often most important,” Kurland said.

    \n

    “Those one-on-one connections create lifelong bonds that lead to building better businesses, partnerships, and strategy. Camp Press is about fortifying those in-person bonds.”

    \n

    Kurland chose to host the event at Camp Campbell based on its size, number of available activities, and its remoteness.

    \n

    “It’s centrally located in the US, and remote enough to achieve the goal of disconnection. Additionally, Aaron’s family is pretty great too as it’s their land.”

    \n

    The nearest major airport is an hour away in Oklahoma City so renting a vehicle is recommended. Alternatively, attendees can coordinate rides through the #camp-press-rides channel on the Geek Adventures Slack team. Invitations to join the Slack group are emailed after registering for the event.

    \n

    There is internet connectivity on the property, but it’s for emergencies and can only be used by staff. There are places in and around the Camp Press area for those who need to check-in with family.

    \n

    General admission tickets to attend the event are $100 each but if you purchase them before April 14th, they’re $85. There are also tickets available for reserved cabins for 10 people, a shared cabin, and RV hookups.

    \n

    \n

    General admission tickets include the following amenities:

    \n
      \n
    • Free tent camping
    • \n
    • Other camping options with add-on (if available)
    • \n
    • Full Camp Press event + service day (starting Thursday)
    • \n
    • Event t-shirt
    • \n
    • Cooking utensils
    • \n
    • Fire starting supplies
    • \n
    • Field and water activities
    • \n
    • Arts and crafts supplies
    • \n
    • Daily ice service
    • \n
    \n

    Kurland wants the event to maintain a brand-free feeling and is asking for sponsors to adhere to a set of atypical guidelines. The guidelines state that sponsors may not wear branded gear and that advertising must be hand-made on-site.

    \n

    “We realize these guidelines aren’t for everyone, but we’re looking for creativity rather than corporate branding for these sponsorships,” Kurland said.

    \n

    Sponsorship levels range from $1,500 to $3,000 and offer various perks.

    \n

    Those interested in attending are encouraged to review the event’s Code of Conduct, which is unique compared to an event held in a physical building. For example, it has a guideline for leaving no trace:

    \n

    Our community respects the environment. We are committed to leaving no physical trace of our activities wherever we gather. We clean up after ourselves and endeavor, whenever possible, to leave such places in a better state than when we found them.

    \n

    You don’t have to be involved with WordPress to attend the event. For more information and to purchase tickets, visit the official Camp Press site.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Apr 2017 20:32:37 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:21;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:56:\"WPTavern: WP-CLI Names Alain Schlesser New Co-Maintainer\";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:29:\"https://wptavern.com/?p=68228\";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:67:\"https://wptavern.com/wp-cli-names-alain-schlesser-new-co-maintainer\";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:5640:\"

    \n

    WP-CLI has hired Alain Schlesser as a new part-time co-maintainer. The position was made possible by sponsorships from Automattic, Bluehost, DreamHost, SiteGround, WP Engine, and more than 60 individuals who contributed to the project.

    \n

    “With Alain joining the project as a co-maintainer, the WP-CLI project is restoring capacity to meet current demands (e.g. support), and ramping up on new feature development and evangelization,” WP-CLI co-maintainer Daniel Bachhuber said. “We’ve already improved the build time by 33%!”

    \n

    Schlesser first became involved in the project after Bachhuber contacted him last March for input on solving some outstanding issues with Composer, which WP-CLI uses for external package management. Schlesser said he couldn’t afford the time to actively work on the issue at that time but tried to offer meaningful input for the right angle for solving the remaining issues.

    \n

    “This short collaboration changed my perception about WP-CLI and helped me realize that there is a push to use modern and modular code to improve the tool and prepare it for future requirements,” Schlesser said. “So, already at that point, I wanted to contribute to the project. However, I was already involved in a different part of WordPress contribution (which is now the Nextgen Bootstrap/Load Feature Project), and I had to prioritize my volunteer work and keep a few hours left for paid client work as well.”

    \n

    Schlesser said taking on the role of a maintainer became an option once it was a paid position made possible by the project’s 2017 sponsors. Prior to that he would not have been able to financially afford the additional time investment that WP-CLI requires. The new role enables him to work for 5-10 hours per week on general user support, development of new and improved features, writing documentation, managing the issue backlog, reviewing pull requests and working on the project’s infrastructure.

    \n

    In joining WP-CLI as a co-maintainer, Schlesser brings a fresh perspective from developing for other platforms and years experience managing and contributing to dozens of open source projects.

    \n

    “WP-CLI is in a unique place in terms of what it tries to achieve and how it does it (out of necessity),” Schlesser said. “For most other web platforms, the command line interface is a regular part of the core of the system itself, often building what is known as a Hexagonal Architecture. WP-CLI, on the other hand, achieves most of the same benefits even though it has no direct control over the Core source code, and that source code is not meant to support such an architecture. Given the obstacles, the current results are quite an achievement!”

    \n

    After its 1.0.0 release, WP-CLI shifted to focus on its package ecosystem. New features are now built as standalone packages instead of rolling everything into WP-CLI core. The eventual goal is to better distribute the project’s maintenance burden among package maintainers.

    \n

    “I think the most important change in the upcoming release is that all the bundled commands have been extracted into separate packages, and we’re currently in the process of getting rid of all the issues that this move has uncovered,” Schlesser said. “So, when it comes to making WP-CLI easily extensible and improving the tools and interfaces, we’re now eating our own dog food. In the longer term, I expect this change to have a significant impact on the onboarding experience for developers who want to create their own commands.”

    \n

    During his years contributing to open source projects, Schlesser said he has become well-acquainted with the unique challenges and emotional toll of maintainership, a topic that Bachhuber has spoken about in the past.

    \n

    “Maintenance of a popular open source project is at the intersection of the hard logic of technology and deeply human group dynamics,” Schlesser said. “I’ve become more aware of all the difficulties that come with such a role, but I wouldn’t necessarily state that I know anything more now on how to navigate around them. What I know for sure is that it is a burden that should be shared amongst several people when at all possible. It comes with constant pressure and churn, and doing this work as a single person puts both the project and the person at risk.”

    \n

    Schlesser plans to keep an eye out for any avoidable friction points in hopes of making the experience of maintainership as smooth as possible for all involved.

    \n

    “Daniel has already done a great job with this, and I can’t wait to see where the project will take us as a team,” Schlesser said.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Apr 2017 17:19:50 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:22;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:42:\"BuddyPress: 2016 BuddyPress Survey Results\";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:32:\"https://buddypress.org/?p=265117\";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:62:\"https://buddypress.org/2017/04/2016-buddypress-survey-results/\";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:18896:\"

    \"61

    \n

     

    \n

    Thank you!

    \n

    This report presents the results from the 2016 BuddyPress Survey held from November 1 through December 31, 2016. Three hundred and two (302) respondents from 61 countries completed the survey and provided valuable and interesting feedback. Many thanks!

    \n

     

    \n

    Survey Design/Method

    \n

    The survey contained 36 questions geared towards Site Builders and WordPress Developers. Adjusting to this more focused target audience compared to previous years’, I selected some questions from our BuddyPress 2013, 2014 and 2015 Surveys, combined/split/modified some of the questions, and added 15 new questions. The survey was designed to maximize responses and get snapshots of:
    \n– basic demographic information
    \n– versions of WordPress, BuddyPress, bbPress, and PHP used
    \n– the types, languages, number of members in BP sites
    \n– comfort levels with BuddyPress, BP theme compatibility, and BP Hooks
    \n– development practices and tools
    \n– respondents willing to share their BP use cases
    \n– BuddyPress participation and contributions
    \n– comments about BuddyPress, BP theme/plugin development, and the survey.

    \n

    The questionnaire was finalized after incorporating the feedback on the draft from the BP Lead/Core Developers last year. The survey was then promoted via Twitter, BP support forums, bpdevel.wordpress.com, and survey banners added by @johnjamesjacoby at https://buddypress.org and https://codex.buddypress.org which helped a lot.

    \n

     

    \n

    Key Findings

    \n

    This section shows some of the highlights from the survey with short comments about each. All supporting graphs, tables, and user comments from this survey are available in the accessible and mobile-friendly webpage.
    \n 

    \n

    A. What’s New

    \n

    1. PHP Versions Used

    \n

    \"99%
    \nBuddyPress 2.8 requires at least PHP 5.3. It’s encouraging to learn that 99% of respondents’ sites are on PHP version 5.3.x or better. Kudos to the 88% of respondents who are already using PHP 5.6.x or better for their sites.
    \n 

    \n

    2. Years Using BuddyPress

    \n

    \"45%
    \nProviding additional context for the results of this survey, a whopping 45% of respondents have been using BuddyPress for a year or less. Welcome!
    \n 

    \n

    3. Testing BuddyPress

    \n

    \"58%
    \nThe majority of builders/developers (58%) prefer to test their sites, themes, and plugins against BuddyPress stable releases while 27% do so a month after Stable release and 13% test sites at RC 1. Eleven percent (11%) do not test BuddyPress.
    \n 

    \n

    4. Keep Updated with BuddyPress Development

    \n

    \"66%
    \nFollowing the top-ranked preference of reading changelogs to keep updated with BuddyPress development, users ranked these preferences almost evenly: follow BP Twitter account/s (32%), subscribe to bpdevel.wordpress.com (32%), and checking buddypress.trac.wordpress.org regularly (29%).
    \n 

    \n

    5. BuddyPress Knowledge

    \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
    KnowledgeBuddyPressBP ThemesBP Hooks
    Beginner31%34%39%
    Intermediate42%32%26%
    Advanced19%13%11%
    Expert8%7%8%
    What _*_?n/a14%16%
    \n

    The table above is a compilation of the answers to three questions which sought to gauge the users’ confidence or comfort levels with BuddyPress in general, BP Theme Compatibility, and BP Plugin development.
    \n 

    \n

    6. BuddyPress Theme Dev

    \n

    \"51%
    \nOn the other side of the equation: 27% sometimes customize style sheets while the remaining 22% never customize BP style sheets.
    \n 

    \n

    7. BuddyPress Plugin Dev

    \n

    \"46%
    \nAround a third of BP users extend the following components every time: Members, Extended Profiles, User Groups, and Activity.
    \n 

    \n

    8. Number of Members

    \n

    \"58%
    \nMost of the respondents who had up to 500 members are those using BP for 2 years or less, have BP installed in WP domain root, have sites on Shared hosting plans, on PHP 5.6 or better, test against BP Stable release, and on the latest versions of WordPress, BuddyPress, and bbPress.
    \n 

    \n

    9. Local Development

    \n

    \"23%
    \nOut of the 70% who develop locally, the preferred local development environments after LAMP are: XAMPP (19%), MAMP (18%), WAMP (13%), and VVV (13%), among others.
    \n 

    \n

    10. Sharing BuddyPress Use Cases

    \n

    \"63
    \nExpect posts about how site builders or developers are using BuddyPress. Thank you to everyone who signed up!
    \n 

    \n

    B. Trends

    \n

    1. Using BuddyPress

    \n

    \"62%
    \nFor the fourth year in a row, “I use BuddyPress in My Own Site” ranks number one (62% in this survey), followed by “I build BuddyPress sites for others” at 37%. One participant commented “Also have a family BuddyPress site on a raspberry pi (in dev).”
    \n 

    \n

    2. Languages of BuddyPress Sites

    \n

    \"Languages
    \nFor the third year (2013, 2015, 2016), the English language is used in most of the sites (69%). This is followed by Spanish (11%), German (10%), and French (9%), among many others.
    \n 

    \n

    3. Types of BuddyPress Sites

    \n

    \"Types
    \nFor the third year (2013, 2015, 2016), Generic (33%), Academic (29%), Sports (16%), Artistic (15%), and Gaming (12%) are the most common types of BuddyPress sites built. Generic and Academic types are consistently in the top two spots.
    \n 

    \n

    4. BuddyPress Versions Used

    \n

    \"86%
    \nEighty six percent (86%) are on BuddyPress 2.7+, followed by BP 2.6+ (23%), BP 2.5+ (6%), BP 2.4+ (4%), and BP 2.3+ (4%). Note: BP 2.7.x was the current release version during the survey period.
    \n 

    \n

    5. WordPress Versions Used

    \n

    \"92%
    \nNinety two percent (92%) have WordPress 4.6+ installed, followed by WP 4.5+ (13%), WP 4.4+ (5%), WP 4.3+ (3%), and WP 4.2+ (3%). Note: WordPress 4.6 was the current major release version when the survey was launched.
    \n 

    \n

    6. BuddyPress Setups

    \n

    \"72%
    \nBuddyPress activated in a single WordPress installation continues to be popular with 72% of the respondents in 2016 as it was in the 2013 survey with 75%.
    \n 

    \n

    7. BuddyPress Hosting

    \n

    \"48%
    \nFor sites hosted on Shared Hosting plans: half have 500 members or less, 40% of the sites are on single WP in domain root, 47% on PHP 5.6 or better, almost half of the respondents have been using BuddyPress for a year or less, and a little more than a third use BuddyPress for their own sites.
    \n 

    \n

    8. Other Software Evaluated

    \n

    \"54%
    \nFor the third year in a row, most of the users (54% for 2016) shared that they did not evaluate any other networking/membership plugin/software before selecting BuddyPress.
    \n 

    \n

    9. Contributions to BuddyPress development

    \n

    \"58%
    \nNote: 26% of the 58% who indicated that they have not participated nor contributed to BuddyPress development have also checked that they: helped out in the BP forums, reported bugs at BP Trac, submitted patches at BP Trac, among others.
    \n 

    \n

    10. bbPress Versions Used

    \n

    \"89%
    \nConsistent with the vast majority using the latest versions of WordPress and BuddyPress at the time of this survey, 89% of respondents are using the latest version of bbPress which provides a tight integration with BuddyPress.
    \n 

    \n

    11. bbPress Setups in BuddyPress

    \n

    \"66%
    \nFor the third year in a row, the Sitewide and Group Forums setup is the most popular bbPress configuration at 60%, a big bump from its 49% first place ranking in 2015.
    \n 

    \n

    C. Shifts

    \n

    1. Female Participation in Survey

    \n

    \"13%
    \nThe number of female respondents increased from 8% (17) in 2015 to 13% (37) in this survey. Levels of BuddyPress knowledge range from Beginner through Expert.
    \n 

    \n

    2. BuddyPress Sites Per Respondent

    \n

    \"36%
    \nIn 2015, 41% of respondents (87) built or were responsible for one site followed by 38% (80) with 2 to 5 sites. For 2016, there were more developers who built or were responsible for 2 to 5 sites (99) than for only one site (95).
    \n 

    \n

    3. Number of Survey Participants

    \n

    \"302

    \n

    The number of respondents increased from 211 from 42 countries in the 2015 survey up to 302 respondents from 61 countries for the 2016 survey. We are grateful to everyone who took the time to take the survey.
    \n 

    \n

    Acknowledgements

    \n

    Survey Participants: Net total of 302 who completed the survey
    \nOnline Survey Solution: Polldaddy.com and Automattic.com for the corporate account
    \nSurvey Preparation: @mercime, @johnjamesjacoby, @boonebgorges, @djpaul, @r-a-y, @imath, @dcavins, @hnla, and @tw2113
    \nSurvey Report: Github.com (gh-pages), Microsoft Excel, Google Documents & Spreadsheets, and tagxedo.com.
    \n 

    \n

    Moving Forward

    \n

    BuddyPress will be celebrating the 8th anniversary of the first stable release on April 30, 2017. Thanks to @apeatling and the many contributors who brought that milestone to fruition. Looking at all the major and minor releases through the years led by @johnjamesjacoby, @boonebgorges, and @djpaul, it’s amazing how much has been accomplished by the all-volunteer lead/core developers and contributors.

    \n

    The lead developers have set the priorities for this year and we look forward to the bp-nouveau template pack and the BP REST API, among many other new features based on some of your comments/requests from this survey.

    \n

    All are welcome to participate and contribute to the development of BuddyPress. Keep abreast of the latest BuddyPress news at bpdevel.wordpress.com/, buddypress.trac.wordpress.org, Twitter @buddypress @buddypressdev @bptrac, and/or weekly BuddyPress Dev Chats at the #buddypress channel (WP Slack account required).

    \n

    Finally, all supporting graphs, tables, and comments from this survey are available on the accessible and mobile-friendly BuddyPress 2016 Survey Results webpage. Where possible, data from the 2013, 2014 and 2015 surveys have been added to the charts for comparison. Some data from the older surveys have been recalculated when needed to fit in the format of the question in this survey and noted as such.

    \n

    Thank you.
    \n 
    \n\"BuddyPress

    \";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, 04 Apr 2017 01:30:18 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"@mercime\";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:23;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:70:\"WPTavern: Blog in a Box Project Integrates WordPress with Raspberry Pi\";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:29:\"https://wptavern.com/?p=66891\";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:81:\"https://wptavern.com/blog-in-a-box-project-integrates-wordpress-with-raspberry-pi\";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:6437:\"

    \n

    The original Raspberry Pi was released five years ago and the micro computer product line is still going strong. The Raspberry Pi Foundation sold its ten millionth Pi last year and just released the Pi Zero W in February 2017 with built-in WiFi and Bluetooth.

    \n

    If you are among the millions of Raspberry Pi owners who like to tinker with software, check out Automattic’s new Blog in a Box project. It currently offers the easiest way of installing WordPress onto a Raspberry Pi.

    \n

    Although RaspberryPi.org has documentation for how to run WordPress as a local website on your Raspberry Pi, its recommended method requires you to install and configure Apache, PHP, and MySQL to create a LAMP web server.

    \n

    Blog in a Box makes it simpler with a GUI installer that puts everything you need for installing WordPress onto an SD card. It comes bundled with PHP7, Nginx, and the latest version of WordPress. It automatically installs the Blog In A Box WordPress plugin, which provides an interface for the Blog In A Box CLI tool and widgets for SenseHAT readings. It also includes a full Node development environment. The project’s creators call it “a complete system for interfacing Pi hardware with WordPress.”

    \n

    Blog in a Box enables users to publish data captured by the Raspberry Pi camera and SenseHAT, like photos or temperature readings, to a WordPress site that can be accessed on your local network at bloginabox.local. It is not yet capable of publishing to the web, but John Godley, an Automattic developer who worked on the project, said the team is open to adding this.

    \n

    “Part of the fun of a Pi is having this device in front of you that you can play and experiment with, and we wanted to have WordPress running right there inside the Pi too – it really is a blog in a box!” Godley said.

    \n

    “We hope that having it local will encourage people to tinker with WordPress and use it to learn programming, or to run experiments in classrooms.”

    \n

    There are currently no live examples of blogs on the web that are receiving posts from a Raspberry Pi. However, fellow Automattic developer and Pi enthusiast Nick Momrik has created a device called Blog in a Box Paparazzi that extends the project with additional sensors to take a photo when anyone walks past it. His circuit diagram and a full list of sensors and other electronic components are available on GitHub. It’s one example of how Blog in a Box can be used as a base for other fun use cases.

    \nimage credit: Nick Momrik – Blog in a Box Paparazzi GitHub repo\n

    Although the project doesn’t come packaged with functionality that would allow it to work as a livecam, Godley said it’s certainly a possibility.

    \n

    “We created a system to make it easy to interface the Pi hardware with WordPress – there’s a plugin and a set of server tools that are all extensible,” Godley said. “With a bit of work a livecam system could be added. If you add the sensor mentioned above you could livestream your cat whenever it’s nearby. Add some different sensors and you can see what affects a plant’s growth in a biology experiment and have the data ready to be viewed through WordPress, add a touchscreen and you have an interactive WordPress-powered display.”

    \n

    Since the system uses the REST API internally, Godley it wouldn’t be difficult to configure it to send data to a remote WordPress site. The team has looked at the possibility of doing this and may revisit it in the future if there’s enough interest.

    \n

    “Making it really easy to set up was a primary aim – we didn’t want people to have to setup MySQL and web servers and all the complexities involved in connecting this to Pi sensors. Just a few clicks and a fully working system is copied to an SD card,” Godley said. “Once you boot your Pi it appears on your local network and can be used immediately.”

    \n

    The site runs on the local network but the box ensures that WordPress and its plugins stay updated. The ability to run the box without an internet connection is one of the main advantages of Blog in a Box.

    \n

    “The fact you can run it without an internet connection means it can be used in situations where a remote WordPress may not be appropriate — in your home, in schools, etc,” Godley said. “If someone sends WordPress into space on a rocket, then we’d love to hear about it!”

    \n

    The project is an exciting example of how WordPress can be deeply integrated with various hardware components to automatically capture and publish environmental data in a way that’s easy to view. Godley and his team at Automattic hope that Blog in a Box will put WordPress into the hands of more like-minded tinkerers. The entire project, including the installer, the companion WordPress theme, and the plugin, are all open source.

    \n

    “As well as people connecting the real world to their Pi, we hope that just having a full web development environment ready to go will encourage people to tinker with WordPress and try out programming or theming,” Godley said.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Apr 2017 21:34:57 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:24;a:6:{s:4:\"data\";s:11:\"\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:47:\"HeroPress: HeroPress Geography: The Middle East\";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:29:\"https://heropress.com/?p=1675\";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:54:\"https://heropress.com/heropress-geography-middle-east/\";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:3588:\"\"HeroPress

    For a while now I’ve been thinking about how to best leverage older content on HeroPress. People who’ve been a fan of HeroPress for a year now have missed an entire year of essays. Also, older content gets very little traffic, and there’s some really great stuff in there.

    \n

    One idea I came up with is doing a blog post like this on the weekend, showcasing several essays from a particular geographic area. This week I chose the Middle East.

    \n

    Please enjoy!

    \n

    How to Become a Reputable WordPress Developer, on Your Own!

    \n

    \n

    Growing Through WordPress

    \n

    \n

    Ambition, Persistence, and Self-Motivation

    \n

    \n

    Blogging, Solopreneurship, & Terrorism

    \n

    \n

    The post HeroPress Geography: The Middle East appeared first on HeroPress.

    \";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:\"Sat, 01 Apr 2017 13:42:30 +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:\"\";}}}}}i:25;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:102:\"WPTavern: WordPress Community Support Shuts Down WordCamp Netherlands in Favor of City-Based WordCamps\";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:29:\"https://wptavern.com/?p=68144\";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:113:\"https://wptavern.com/wordpress-community-support-shuts-down-wordcamp-netherlands-in-favor-of-city-based-wordcamps\";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:10904:\"

    \n

    The application for WordCamp Netherlands 2017 has been denied. The camp, which held its sixth edition in Utrecht last year with more than 425 attendees, was one of the most well-established WordPress events in Europe. Yesterday lead organizer Marcel Bootsman published a post on the Dutch WordPress community site to explain why the camp has been cancelled.

    \n

    Bootsman’s post is written in Dutch but includes correspondence in English between the WCNL team and WordPress Community Support (WCS), formerly WordCamp Central. WCS is now pushing for all WordCamps to be city-based with the exception of regional camps, such as WordCamp US and WordCamp Europe, where the cities already have their own camps and do not prevent or detract from local communities launching their own camps.

    \n

    “WordCamp Netherlands has been held 6 times to date and…It has not inspired any local WordCamps (in fact, I think it’s probably fair to say that local camps have not been happening because people don’t see a need for them with the country-wide camp happening each year) and, with the exception of Nijmegen, which is still in the pre-planning phase, no cities in the Netherlands have their own WordCamps,” a WCS representative said. “With that in mind, we feel that the time has come for your community to move from the country-wide camp to running local camps. This has started happening with Nijmegen already and can easily start happening more with WordCamps in Utrecht, Rotterdam, Amsterdam and other cities.”

    \n

    The Netherlands is roughly the size of Maryland, or twice the size of New Jersey, in terms of land space. One can drive across the country in two hours or less. The WCNL team contends that a country-wide WordCamp makes sense for geographical reasons and because of the locations of the organizers. The country already has an active meetup culture with 13 different meetups hosting an average of 100 attendees per event. Organizers do not see the need to have multiple smaller WordCamps fill the role that the local meetups are already doing.

    \n

    In response to the reasons WCNL organizers’ outlined for not shutting down their event, the WCS representative replied, “I don’t think there’s really any benefit to responding to all of your points in the last email individually.” WCS reiterated its decision regarding the camp:

    \n

    We will not be approving WordCamp The Netherlands 2017. We would like to see city-based WordCamps happening around the Netherlands – Nijmegen being a great start to that process.

    \n

    We’re confident that with the space that WCNL filled being vacated, we will see some of the meetup organizers around the country stepping up to fill that space for their local communities. The local city camps may be smaller, but in many ways that can be a much better than a single large camp.

    \n

    As I said before, we would be happy to look at doing WCNL again in a couple of years time once there are a few city-based camps around the country happening regularly. In that case, however, WCNL would be there to complement, and not replace, the city-based camps.

    \n

    WordCamp Netherlands was the last remaining exception to this new rule that drops country-wide WordCamps in favor of city-based camps. The Dutch community and many of its supporters are now in an uproar over the decision and organizers are at a crossroads. They can choose to rebrand the event as WordCamp Utrecht, with significant drawbacks, or move forward with an independent country-wide event without the use of WordCamp tools, branding and trademarks, or funding from the Global Community Sponsorship Program.

    \n

    WordCamp Netherlands Conflict Highlights Cultural Differences Between the U.S. and Europe

    \n

    Marcel Bootsman, who heads up the 13-person WordCamp Netherlands organization team, said they have been working since late December 2016 on the upcoming event. The team had added eight new members after the event grew 68% from 2015 to 2016.

    \n

    “Everybody was thrilled to start, and the news that we could not continue hit us hard,” Bootsman said. “We have officially stopped and I have thanked everyone for their enthusiasm and support, which was difficult because I wanted to let these people feel what it is to organize an event and see happy faces all over the place.”

    \n

    WordPress developer and Dutch community member Juliette Reinders Folmer said she doesn’t believe that more than one or perhaps two city-based WordCamps will get started in the Netherlands. Organizing a WordCamp is not an easy endeavor with a small pool of local organizers and volunteers. Folmer notes that since the WordPress Foundation doesn’t allow for compensating speakers for their out-of-pocket costs, the speaker pool is further limited.

    \n

    “A trend I’ve spotted over the last few years is that ‘local’ WCs will have a mix of local, national and international speakers,” Folmer said. “While national speakers might still be prepared to go out of pocket, the only international speakers who can afford to do this are the ones who are sponsored by big companies which pay their travel and time to speak at those WCs.

    \n

    “Instead of creating a larger speaker group with new and interesting voices, we’re ending up with a corporate uniform message where the more innovative and sometimes dissident voices are few and far between. By forcing WCNL to break up into smaller more local groups, this trend will become even more persistent and insidious as the demands on the limited group of national speakers will increase unless they have corporate sponsoring. Even they will not able to afford the time and costs to attend and speak at the various local WCs.”

    \n

    Remkus de Vries, WordCamp Netherlands lead-organizer from 2009 to 2015, said the team has worked for years to see the local communities come together, and have seen people get involved with translations, forum moderation, and local meetups after attending the WordCamps.

    \n

    “Our idea from the get go for WordCamp Netherlands was to be as inclusive as possible, to unite the scattered Dutch WordPress community,” de Vries said. “The Dutch community consisted of little islands that didn’t really connect at all. We’ve been working very hard to unite our Dutch Community via WordCamp Netherlands and it was working perfectly.

    \n

    “Because of our inclusive approach we started getting international visitors and speakers from the early start as well, but more importantly, the event, as a national event, pulled everyone in from all corners of the Netherlands. Our community started and flourished because we started as a central entity.”

    \n

    Bootsman is not optimistic about the future of the Dutch WordPress community after receiving the decision from WCS. The conflict has highlighted a key difference between U.S. and European cultures when it comes to traveling. Whereas Americans might think a 4-5 hour drive to another city is a short road trip, Europe’s population is much more dense than the U.S. and traveling several hours to another city is not common.

    \n

    “When there is no WordCamp Netherlands, my personal belief is that this will break up the community,” Bootsman said. “Of course we will have central tools like Slack, nl.w.org and other ways to communicate, but that is nothing compared to an event where all these people can meet. People are busy and can’t find time to visit multiple WordCamps in the Netherlands. Distances are not that large in NL, that is not an issue, but time is. When you have a central WordCamp The Netherlands once a year you plan, so you are available to go. In the new situation, when there is a WordCamp Rotterdam, why visit a WordCamp in another town? This maybe hard to understand, but this is how it works for Dutch people. We’re too practical sometimes, and in this situation, it will not help the community.”

    \n

    WordCamp Netherlands Organizers are Considering Hosting an Independent Event

    \n

    Both de Vries and Bootsman are said they do not believe rules that make sense for the U.S. should be applied universally. They would prefer them to be guidelines that communities can follow or depart from if they express their preference for a country-wide WordCamp. WordPress communities in other countries like Denmark, Croatia, and Switzerland have expressed similar frustrations with the U.S.-centric rules.

    \n

    “WordCamp Netherlands was what started the local WordPress meetups and ended up being the glue between the WordPress Meetups,” de Vries said. “Forcing us to stop using WordCamp Netherlands is going to impact that as you could see by the outpouring of reactions yesterday on Twitter and Facebook. Renaming WordCamp Netherlands to WordCamp Utrecht, as suggested by many, could be a solution, but nobody of the organizing team lives in the city which means, per the WCS rules, we can’t do that. But more importantly, we would be losing ‘our glue.’ We feel that our efforts of the last years have just been flushed down the toilet with this ‘one-size-fits-all’ rule.”

    \n

    Although WCNL organizers were told in no uncertain terms that their camp is cancelled, a recent post on the Community team blog indicates that representatives are considering feedback on the decision.

    \n

    The first two WordCamp Netherlands were not under the umbrella of WordCamp Central, and de Vries said they will find a way to have the camp if it comes to that. Organizers are currently examining their options.

    \n

    “It is too soon to announce things about this but let me say that we feel the Netherlands needs to have a countrywide WordPress event based on the experiences of the last years,” Bootsman said. “We are not going to let the Netherlands WordPress community down.”

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 31 Mar 2017 23:39:14 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:26;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:97:\"WPTavern: WordPress Plugin Directory Redesign: Why So Many People Feel Their Feedback Was Ignored\";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:29:\"https://wptavern.com/?p=68135\";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:107:\"https://wptavern.com/wordpress-plugin-directory-redesign-why-so-many-people-feel-their-feedback-was-ignored\";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:15523:\"

    Earlier this week, the WordPress plugin directory relaunched with a new design and an improved search algorithm. Feedback has been rolling in from Tavern readers and members of the Advanced WordPress Facebook group.

    \n

    The improvements to search has received a number of positive comments in addition to people requesting the ability to sort results. The responsive design and aesthetics of the page have also received praise.

    \n

    There are a number of items that plugin developers and users have reported as downsides to the new design. Some of the most notable include:

    \n
      \n
    • Plugin stats are only available to the plugin author by logging into the admin.
    • \n
    • Tabbed layout was replaced with a series of Read more links.
    • \n
    • Plugin banner images are distorted.
    • \n
    • The Installation tab which provided instructions on how to install the plugin is gone.
    • \n
    • Screenshots do not open in a lightbox, but open on a new page instead.
    • \n
    • Links to download older versions of plugins is missing.
    • \n
    \n

    Many of the issues reported above are known and have been known for months. While it may seem like a lot of people are suddenly complaining and didn’t participate in the feedback loop, it’s important to look back to see how the plugin directory redesign reached this point.

    \n

    From Prototypes to Open Beta

    \n

    In May 2016, the WordPress Meta team published prototypes of a new design for the WordPress plugin directory. The announcement generated abundant feedback with a strong push towards adding data instead of removing it.

    \n

    Many users reported that moving the plugin author, last updated, and active install information from the plugin’s listing page to the plugin’s details page was a downside. Samuel Sidler, Apollo Team Lead at Automattic, responded to the feedback explaining why he didn’t think showing the information to users was useful.

    \n

    Author, as you said, is only really useful for insiders. The latter two, meanwhile, are already taken into account in the search results. If a plugin doesn’t have a recent compatible version, it will move down the list. If it’s too old, it won’t get shown at all (which is the case today).

    \n

    Active installs is more interesting, but we account for it weighting search results as-is. I actually find it refreshing to not show the active installs as it allows for less-popular plugins to get more downloads. Users will be less likely to click the popular plugins (outside of familiar names) and more likely to find the plugin they actually need.

    \n

    There was also a lot of discussion on how to improve and display search results.

    \n

    In June 2016, at WordCamp Europe, Konstantin Obenland, WordPress core contributor, announced that the WordPress plugin directory redesign was in open beta. The team received feedback from Matt Mullenweg, co-creator of the WordPress project, on changing the direction and design of the page. “We’re really just at the beginning of design iterations,” Obenland said. “He thinks we can do better, which he’s right about. We can and we should.”

    \n

    Kevan commented on the open beta and pointed out many of the same issues that were reported with the prototypes. In July 2016, Obenland announced version three of the open beta. The use of Read more links in favor of the tabbed interface was again brought up in the comments by John Blackbourn.

    \n

    “I’m really concerned about the liberal use of ‘Read more’ links on individual plugin pages,” Blackbourn said. “They’re being used in order to fix the information overload problem caused by placing all the information onto one page, instead of using the tabbed interface of the current directory.”

    \n

    In response to Blackbourn, Joy stated that the issue of Read more links had already been discussed and that the feedback was ignored. The feeling of being ignored was also shared by Jon Brown.

    \n

    “It’s hard to see feedback has been heard and in this case a lot of it doesn’t seem to have been taken into account (bring back tabs, no read more…).” Brown said. “I don’t see everything, or even much, so I could have certainly missed it.”

    \n

    Mika Epstein responded that the feedback was not ignored and that Obenland was in the process of collecting and collating information.

    \n

    Four months ago, Kenshino created a ticket on WordPress Meta that outlined usability concerns with using Read more links instead of tabs.

    \n

    “Clicking on Read more – say on the change log requires me to scroll to the bottom before I’m able to reach the next section,” he said. “Essentially for me to go through all the sections, provided that they are long enough, I’d have to click, scroll a few pages, click, scroll a few pages etc until I get through all the sections.”

    \n

    The ticket was closed as a duplicate of Greg Ross’ ticket. In it, he suggests a Jump section be added so users can navigate to specific sections of the Read Me without having to scroll through the entire page. The ticket has received minor support and recently had its milestone changed from version three to a future version.

    \n

    WordPress Contributors Feel Ignored

    \n

    In a meeting held earlier this week in the WordPress Meta Slack channel, Matt Cromwell, Head of Support and Community Outreach at WordImpress, suggested that the Meta team describe the process of collecting and acting on feedback in as much detail as possible in the announcement post.

    \n

    “I’ve chatted with a lot of developers and many feel like they provided actionable feedback about the direction of the plugin directory and all advice was ignored,” Cromwell said. “Whether or not that’s an accurate assessment, it’s a real feeling that is shared by many. I’ve been here most weeks and know well that feedback was received and acted on, but there’s still a strong perception.”

    \n

    Despite the concerns of using Read more links brought up during every phase of the project, they don’t appear to have been addressed. Other gripes expressed by members of the community at the outset of the redesign have largely remained. It’s no wonder that so many people feel like they’ve been ignored.

    \n

    Mullenweg commented in the meeting saying he, too, felt ignored, “For what it’s worth, I feel like my feedback was ignored as well,” he said. “I hope we can do another major iteration on the directory, because I’m not really a fan of the new one.

    \n

    “Perhaps the WordPress backend will make it easier to make incremental improvements in the future, as being on bbPress before was often cited as the reason things were slow to iterate previously.”

    \n

    Although Mullenweg’s feedback in June 2016, was not public, his recent comments indicate not much has changed between then and now.

    \n

    Alex Shiels, a member of Team Apollo at Automattic, says user feedback wasn’t ignored. “It’s not that anyone’s feedback has been ignored; just that we’ve had limited resources and a big back-end component to the project, and a lot of conflicting requests” he said. “I’ll make sure to give a clear invitation to provide feedback in the announcement post, and include something about future iteration.

    \n

    The Inability to Measure the Impacts of the Redesign

    \n

    Kevin Hoffman, who participated in discussions on trac about how to display screenshots, asked if there was any user data and feedback that the Meta team could share that led to some of the decisions and changes that were made. For example, changes to the UI or how often the Read more links are clicked. Shiels responded that the team does not have that data because they don’t have the tools to do it.

    \n

    “There is Google Analytics tracking, but access is very limited and from what I’ve seen of it (I don’t have direct access) it’s messy and hard to draw objective conclusions from,” Shiels said. “I absolutely agree that analytics and A/B testing would be great, but we just don’t have the tools for it right now. I think that needs to be considered a next step, but a separate project by itself really.”

    \n

    Hoffman stepped back from contributing to the redesign after receiving this response seven months ago from Sidler on Trac where he says much of the feedback received was from plugin developers and not representative of users.

    \n

    First, we’re building the site for users, not developers. Certainly some of our users are developers, but not the vast majority. One of the WordPress core philosophies is building first for the 80%, not the 20%, and that applies in this case as well.

    \n

    Second, almost all of the ‘overwhelming community feedback’ we’ve received so far is from plugin authors who are (typically) developers. It’s all great feedback and we’re obviously listening closely. But it’s not necessarily representative of the users who visit the plugin directory regularly. We’ll certainly run user tests before launching, and we can probably run a more obvious beta, with a link from the current directory to the new one. But the directory isn’t yet ready for that.

    \n

    Third, this ‘self-imposted limitation’ as you call it is not arbitrary. Rather, it’s the result of research and in-person discussion with a number of designers. Will it be the final design? I dunno. But since we haven’t tested it with real users (see the paragraph above), it’s hard to say right now. I think pursuing this direction is worthy for a number of reasons, which aren’t really worth rehashing here. First and foremost though, until we build out a product that can run through user tests, we won’t know if it’s the right direction.

    \n

    How can the team know that the redesign is working or is the right direction if WordPress.org doesn’t have the tools necessary to measure its impacts? There’s also the question of what data was obtained or user testing done that supports the decisions that were made? Who are these users and how does the team know what the best user experience is for them?

    \n

    Iteration Is the WordPress Way

    \n

    Now that the new directory is publicly available, the Meta team is reviewing feedback, gathering bug reports, and organizing tickets on Trac.

    \n

    “If there are tickets that were closed or postponed during the project that you think need revisiting, then this would be a great time to start reviewing and re-opening them,” Shiels said. “We already have a bunch of tickets against the future milestone.

    \n

    “The new directory has been built with future maintainability and iterative enhancement in mind. We’re looking forward to hearing feedback from the whole WordPress community, and making regular improvements and additions.”

    \n

    To report a bug or enhancement with the plugin directory, you’re encouraged to create a ticket on Trac. If you have any questions concerning the directory or would like to get more involved, visit #meta on Slack.

    \n

    The Vocal Minority

    \n

    There are a lot of people voicing their complaints about the WordPress Plugin Directory redesign and to summarize them as a vocal minority is unfair.

    \n

    “Let’s also not forget that one of WordPress’s philosophies is The Vocal Minority,” Aaron Jorbin, WordPress core contributor, said in a conversation on the Meta Slack channel concerning feedback. “Many people being loud on the internet isn’t a reason to do anything.”

    \n

    As I’ve documented above, the issues people are complaining about today are roughly the same as those reported during the prototype stage more than seven months ago.

    \n

    If months have passed and the issues brought up by members of the community who are part of the so-called vocal minority were not addressed before shipping to the public, can we blame them for complaining and feeling ignored? What about those who think that getting involved to be part of the solution was a waste of time? While the plugin directory design will undoubtedly improve with time, the complaints and concerns expressed by people this week are justified.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 31 Mar 2017 23:04:51 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:27;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:81:\"WPTavern: WordPress App for Android Adds Better Support for Jetpack-Enabled Sites\";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:29:\"https://wptavern.com/?p=68068\";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:92:\"https://wptavern.com/wordpress-app-for-android-adds-better-support-for-jetpack-enabled-sites\";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:1764:\"

    \n

    Automattic’s mobile engineers released a major update to WordPress for Android this week. Last year the app’s users saw a growing disparity between the features available to self-hosted sites and those available to WordPress.com users. Not having the WP REST API in core was holding the app back from providing the same site management features that WordPress.com site owners already enjoy. The upcoming release narrows that gap with better support for Jetpack-enabled sites.

    \n

    Self-hosted WordPress sites owners will now have access to People Management, Site Settings, and Site Icons in the app. A complete re-write of the app’s network layer brings more performance improvements to Stats and other features.

    \n

    The Jetpack blog announced the release but doesn’t mention that these features are not yet available to all users. If you manage a self-hosted site on your mobile device, you’ll need to wait until version 7.0 hits the Google Play Store. According to Automattic mobile engineer Maxime Bias, version 7.0 is currently in staged rollout and not all users can update to get it yet. He said 7.0 should be fully rolled out soon but could not give an ETA.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Mar 2017 19:53:48 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:28;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:78:\"WPTavern: Community Team Releases Plugin That Displays WordPress Events Nearby\";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:29:\"https://wptavern.com/?p=67925\";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:89:\"https://wptavern.com/community-team-releases-plugin-that-displays-wordpress-events-nearby\";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:3309:\"

    Two weeks ago, I highlighted a WordPress plugin that displays upcoming WordCamps in the Dashboard. I’ve recently discovered that the WordPress Community team is working on an official plugin that does something similar called Nearby WordPress Events.

    \n

    The plugin attempts to detect a user’s location and displays upcoming events within the WordPress News dashboard widget. Events include WordCamps and Meetups from Meetup.com. If the location detected is incorrect, users can click the pencil icon and change it to their city and state.

    \nNearby WordPress Events Dashboard Widget\n

    The bottom of the widget includes links to the WordPress Meetups landing page, WordCamp schedule, and the official WordPress news blog. If your site has multiple users, each one can configure the widget to display events near their locations.

    \n

    According to Ian Dunn, the API includes any meetups that are within a 100 kilometer radius. For WordCamps, the radius is 350 kilometers.

    \n

    Here is what the radius looks like for WordPress Meetups.

    \nUS WordPress Meetup Radius\n

    Here is what the radius looks like for WordCamps.

    \nUS WordCamp Radius\n

    The distances can not be modified but, depending on feedback, they can be increased to be more accommodating.

    \n

    WordCamp data is gathered using an API endpoint on WordPress.org. The initial HTTP request is performed asynchronously so it doesn’t affect page loading times. The response is cached for 12 hours to avoid making unnecessary requests.

    \n

    The WordPress Community team created the plugin to generate more awareness of WordPress events.

    \n

    “The community that has been created around WordPress is one of its best features, and one of the primary reasons for its success, but many users are still unaware that it exists, and aren’t taking advantage of all of the resources that it makes available to them,” Dunn said.

    \n

    “Inviting more people to join the community will help to increase its overall health, diversity, and effectiveness, which in turn helps to ensure that WordPress will continue to thrive in the years to come.

    \n

    “We think that wp-admin is the perfect place to display these events, because that’s the place where almost all WordPress users are visiting already. Instead of expecting them to come to us, we can bring the relevant information directly to them.”

    \n

    I tested the plugin on WordPress 4.8 Alpha and didn’t encounter any issues. Users can report bugs on the plugin’s support forums or create an issue on the project’s GitHub page. If you test the plugin, let us know what you think in the comments.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Mar 2017 19:50:14 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:29;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:74:\"WPTavern: New WPstats.me Site Displays WordPress.org Plugin Download Stats\";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:29:\"https://wptavern.com/?p=68109\";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:85:\"https://wptavern.com/new-wpstats-me-site-displays-wordpress-org-plugin-download-stats\";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:3202:\"

    WordPress.org relaunched the plugin directory this week with a new design and improvements to the search algorithm. The redesign spent more than six months in beta for feedback and testing, but many contributors on the project said they felt their feedback was not taken into account. The result is that the new design shipped but has not been well received by the community. Most users and developers welcome the changes to the search algorithm, but the new UI for the plugin pages has received quite a bit of negative feedback.

    \n

    One of the unpopular changes made during this refresh was the removal of individual plugin stats, which can now only be viewed by plugin admins. The decision may be temporary but depends on feedback from users.

    \n

    In the meantime, if you’re missing plugin stats after the redesign, check out the new wpstats.me site. WordPress plugin developer Edward Dakin created it in just a few hours using the WordPress.org API’s. Visitors can enter a plugin’s slug and see recent and all-time download stats.

    \n

    \n

    “I like checking out plugin stats, seeing which are popular, how others are doing, etc, so I put together a quick something to do that and thought others might find it useful,” Dakin said. WPstats.me is essentially a one-page app so Dakin opted to host it on GitHub pages.

    \n

    “The CSS is done with Tachyons (I’m super into function CSS at the moment), the JS is Backbone for the routing, jQuery for the ajax stuff, and Underscore for the templating,” Dakin said. He said the hardest part of putting the site together was finding the WordPress.org APIs, as the documentation is sparse and out of date.

    \n

    If the Meta team decides to bring stats back into the plugin page design, Dakin said he will consider leaving WPstats.me up anyway if people are finding it useful. Some users like to see how stats have changed over time and developers appreciate being able to check up on their competition.

    \n

    As a WordPress.org plugin developer, Dakin is directly affected by the changes to the directory. He is considering changing how he markets his plugins and is hoping for improvements to the UI that was shipped this week.

    \n

    “I like the improvements to the search a lot,” Dakin said. “In terms of the page redesign I like that they’re trying, but I don’t think it’s quite there yet. Like many others, I feel that the collapsing sections is a bit of a poor use of space. And yes, I haven’t done anything yet but I will be experimenting with restructuring plugin readme’s so the important points are immediately visible and not hidden on page load.”

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Mar 2017 19:12:39 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:30;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:96:\"WPTavern: WordPress Polyglots Team Calls for Volunteers to Organize Global Translation Day Three\";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:29:\"https://wptavern.com/?p=68066\";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:107:\"https://wptavern.com/wordpress-polyglots-team-calls-for-volunteers-to-organize-global-translation-day-three\";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:2111:\"

    The WordPress Polyglots team is asking for volunteers to help organize WordPress Global Translation Day Three. The event may take place on September 30th, the same day as International Translation Day, but the date is dependent on when organizing teams form.

    \n

    Global Translation Day is a 24-hour event that includes live streaming, local, and remote activities. The first Global Translation Day was held in April, 2016 where 448 translators from 105 countries translated 40,350 new strings across 597 projects. These numbers increased to 780 translators with a total of 60,426 strings translated across 590 projects at the conclusion of Global Translation Day Two.

    \n

    Activities during Translation Day include, on boarding new contributors, sharing knowledge, and discussing topics related to translating. There are a variety of roles available for organizers to fill, including:

    \n
      \n
    • Communication
    • \n
    • Design
    • \n
    • Outreach
    • \n
    • Website/admin volunteers
    • \n
    • Live Streaming
    • \n
    • Local events mentors
    • \n
    \n

    These roles are open to anyone who is able to dedicate the time and effort needed to run a smooth event. “If you have a couple of hours a week to spare, the Polyglots team would really appreciate your help,” organizer Petya Raykovska said. “WordPress Translation Day has been essential for many local communities around the globe and each edition helps more people to understand us better.”

    \n

    For more information on what each role entails and to volunteer, check out the official call for organizers and leave a comment.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Mar 2017 23:38:59 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:31;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:89:\"WPTavern: WPWeekly Episode 269 – Interview With Daniel Ha, CEO and Co-founder of Disqus\";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:58:\"https://wptavern.com?p=68064&preview=true&preview_id=68064\";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:95:\"https://wptavern.com/wpweekly-episode-269-interview-with-daniel-ha-ceo-and-co-founder-of-disqus\";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:2039:\"

    In this episode, Marcus Couch and I are joined by Daniel Ha, CEO and co-founder of Disqus. Ha explains why he created the service, what his thoughts are on large sites disabling comments, and the state of comments on the web.

    \n

    We also discuss the company’s monetization strategies and what opportunities exist to generate revenue around comments. Ha shares what the company learned from its Sponsored Comments experiment and what it’s doing to improve communication with customers.

    \n

    Plugins Picked By Marcus:

    \n

    Woo Cashback provides each user with their own personal wallet with a way to purchase items from your store while using their wallet money or credit.

    \n

    Export Comment Emails allows you to export the emails from comments to a CSV or XML file allowing you to import to MailChimp or ConvertKit.

    \n

    WP Monitor adds a dashboard to the WordPress backend that displays updates, site, and server information in one convenient place. You can monitor one or multiple websites on the go.

    \n

    WPWeekly Meta:

    \n

    Next Episode: Wednesday, April 5th 3:00 P.M. Eastern

    \n

    Subscribe To WPWeekly Via Itunes: Click here to subscribe

    \n

    Subscribe To WPWeekly Via RSS: Click here to subscribe

    \n

    Subscribe To WPWeekly Via Stitcher Radio: Click here to subscribe

    \n

    Listen To Episode #269:
    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Mar 2017 23:24:56 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:32;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:76:\"WPTavern: Poopy.life Lets You Create Free, Unlimited WordPress Test Installs\";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:29:\"https://wptavern.com/?p=68070\";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:86:\"https://wptavern.com/poopy-life-lets-you-create-free-unlimited-wordpress-test-installs\";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:5773:\"

    \n

    Just when you think all the best domain names have been gobbled up by bots and squatters, Poopy.life emerges as the fastest new way to spin up a WordPress test install. Joe Guilmette, team lead at WP All Import, opened up Poopy.life to the public today, offering free unlimited WordPress installs for anyone who needs a temporary site.

    \n

    After verifying that you’re not a robot, Poopy.life creates a test install and sends you to the admin where you can see credentials for logging in and sharing the site. The install expires after a week, unless manually extended with the button in the admin. It also allows you to create a sandbox template that can be shared via a URL so that others can quickly create a duplicate install.

    \n

    \n

    The platform also has a secret menu, like In-N-Out Burger, that allows you to add URL parameters to spin up sites even faster with certain actions already taken:

    \n

    No URL Parameters
    \nhttp://poopy.life/create/

    \n

    Copy an existing install
    \n?src=[Sandbox ID]&key=[auth key]
    \nhttp://poopy.life/create?src=panicky-pheasant&key;=EuT9WPIm8122WCcq

    \n

    Redirect URL
    \n?url=[redirect URL]
    \nhttp://poopy.life/create?url=/wp-admin/admin.php?page=sandbox

    \n

    Send a welcome email
    \n?email=[email address]
    \nhttp://poopy.life/create?email=user@example.com

    \n

    Activate Plugins
    \n?activate_plugins=[plugin_slug_1],[plugin_slug_2],[etc]
    \nhttp://poopy.life/create?activate_plugins=akismet,wordpress-importer

    \n

    Poopy.life Platform Will Add a Commercial Tier at WPSandbox.io in the Near Future

    \n

    Although Poopy.life is both memorable and amusing, the team chose the domain to prevent people from using it in their own product demos and support channels.

    \n

    “We chose poopy.life specifically because it is ridiculous and no one will be able to use it in a professional context,” Guilmette said. “Also it was shorter than the previous domain we were going to use – oxygen-is-really-amazing-and-everyone-loves-it.com.”

    \n

    Poopy.life runs on CloudLinux and Guilmette said it is hosted on “a handful of very powerful dedicated servers and ~10 smaller helper instances/load balancers, and duct tape.”

    \n

    WP All Import plans to introduce a commercial tier on wpsandbox.io to allow users to have installs on a custom domain, as well as control of the welcome notice and email. The poopy.life domain and landing page will live on, but Guilmette expects that it will soon be blacklisted by Google.

    \n

    “The WordPress installs are real WordPress installs and you can install any plugin on them,” Guilmette said. “You can install a PHP shell and dig around the server and run whatever weird spammy malware you want. There really isn’t any way to prevent it.”

    \n

    Guilmette estimates that Poopy.life is powering approximately 2,000 test installs right now. He doesn’t know how many their infrastructure can handle, but said they can easily scale it up.

    \n

    “We don’t really monitor or throttle usage so much as try to make sure that one user isn’t able to negatively impact another,” Guilmette said. “If the service grows in popularity, there will probably be some pain points that we’ll need to address. But we’ve been doing this for a long time and have worked out many of the kinks.”

    \n

    The team has been using a version of the Poopy.life platform on wpallimport.com/try/ and oxygenapp.com/try/ for several years. In addition to being a fun, free tool they could offer to the public, the platform has also been critical to the success of the company. It allows users to test WP All Import and Oxygen products before purchasing.

    \n

    “Poopy.life is basically magical golden dogfood we’ve been eating for years,” Guilmette said. “This platform is huge for us. Back before we got serious about this we were hosting it on a VPS at MediaTemple, just kind of hacking it together. It would go down all the time, and whenever it did it would throw our support channel into disarray and sales would drop by 50%.”

    \n

    Guilmette said the most important thing WP All Import customers want to know is if the product will be able to import their files. The testing platform drives sales for the company and reduces refunds and buyer’s remorse, because customers know exactly what they are getting. It also has proven to reduce support requests.

    \n

    “We get way fewer simple questions about the UI, because people can just try it,” Guilmette said. “So that clears support up for people who have real problems. It also makes those support requests easier, because the user can reproduce the problem on a debug install, and we can poke at it without worrying about breaking their site.”

    \n

    Guilmette said the team is working on launching the commercial tier and may have something ready within a couple of weeks or sooner with the help of testers.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Mar 2017 19:36:21 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:33;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:40:\"HeroPress: WordPress: A Tool for Success\";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:56:\"https://heropress.com/?post_type=heropress-essays&p=1672\";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:52:\"https://heropress.com/essays/wordpress-tool-success/\";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:12379:\"\"Pull

    I was a college teacher for most of my life. When my fourth baby arrived, I gave up a travel-heavy university job and took a “mommy job” as a bookstore manager. I chose books, held teacher workshops, and read stories to children for 15 years. As the internet became important, we put up a website and I became the manager of that site. 18 months later, the bookstore’s owners went bankrupt and closed the store.

    \n

    My initial reaction was, “They can’t do that – we’re #2 on Google!” We’d also gone from zero ecommerce sales to $5,000 a month. We had visitors to our blog from 192 different countries. Online, we were a success. But it was 2008, and lots of small businesses were going under. Lots of people were unemployed. I was unemployed for the first time in my life.

    \n

    Being #2 or even #1 on Google had a different meaning in those days, before customized search results. For me, it meant that I had become skilled with SEO and content marketing, but I figured I’d have to return to the classroom when my job ended.

    \n

    “We couldn’t have done this without you,” the owner of the bookstore said. “There are other businesses that would benefit from your skills. Why don’t you go into business helping them?”

    \n

    I scoffed bitterly. I had kids in college and two more getting ready to finish high school. I clearly needed a higher level of security than self-employment could offer.

    \n

    What’s more, I had already discovered that people who found out what I did with computers invariably looked at me oddly and said, “You don’t look like a computer guy.” They were right, although we now have a much more open minded idea of what computer guys can look like. Back then, though, I looked like someone’s mom. I was someone’s mom. This caused a high level of cognitive dissonance for some people, I knew.

    \n

    But I was bold enough to do a little bit of helping other businesses while I looked for work. I wrote an essay at the site that was then SEOMoz and got a job offer in the comments. I picked up a couple of local clients, and then through an online marketplace found some international clients. I went to job interviews, of course, and was offered jobs managing various things. But nothing I was offered was as fun as the work I was doing online. I turned down all the offers I received.

    \n

    The Web People

    \n

    I clearly remember my last job interview. It was Halloween 2008. I was talking with the vice chancellor at a medical school about his online needs. This was my first IRL tech job interview and the vice chancellor had told me I was his favorite candidate. The secretary came to the door and said, “We need to take Rebecca down to the basement to meet the Web People.”

    \n

    She was dressed as a witch. The hallways were full of cotton spider webs and spooky decorations. She was taking me down to the basement to meet the Web People. I was the only one who laughed.

    \n

    You see the humor, right? They did not. I realized that I didn’t really want to go back to academia, I didn’t want to manage things, and I didn’t want to sit in a cubicle proofreading. I wanted to have fun with websites.

    \n

    I talked with my family about the possibility of going into business for myself, and the possibility that I could fail and limit their college choices. My youngest son said, “You’ve always done what’s best for us. You should do what’s best for you.”
    \nI have great kids.

    \n

    At that point, I reviewed my income figures, saw that I was earning twice as much as I had earned as a bookstore manager, and decided that I would carry on as an independent Web Person.

    \n

    As a freelance web writer and SEO, I never met a CMS I couldn’t make friends with. If there wasn’t a CMS at a website, I used Dreamweaver. Drupal, Joomla, Mango, sticks and clay tablets, I didn’t care. I used WordPress along with all the other options my clients wanted. In 2009, after being featured in the Wall Street Journal, my freelance business boomed. I teamed up with designers and built websites in addition to writing for web designers and agencies and businesses on four continents.

    \n

    My eldest daughter, Rosie, saw that I needed some help and came to work with me. “Saw that I needed some help” may be too kind a way to put it. I have some useful skills, but my main goal for my business was not to starve in the gutter and my main goal for accounting was to keep out of jail. We met with the local Small Business Association rep a couple of months after Rosie joined me and he said to me, kindly but firmly, “You’d be in trouble without her.”

    \n

    But with Rosie as my partner, I was able to build a thriving business. In 2010 we built a WordPress site for K-12 teachers just in time for our first WordCamp. We needed a lab site, and I had just finished writing a bunch of lesson plans with the Kennedy Center for the Performing Arts. In the course of that project I had discovered how limited online STEM (science, tech, engineering, and math) options for K-12 teachers were. We built a website called FreshPlans to help fill that need and had a functioning WordPress site for WordCamp.

    \n

    0 to 8,000 in six months

    \n

    Six months later, Rosie and I were looking at the stats for FreshPlans – 8,000 visits a month – and she said, “Why aren’t we doing this for our own website? Why aren’t we doing this for all our clients?”

    \n

    I didn’t have a good answer for why we weren’t doing it, but we went ahead and switched our business site to WordPress. We convinced our designer to give WordPress a chance and built WordPress websites for clients who needed new sites. We saw how much more sense the websites made to our clients. We saw how much more quickly we could build the sites and how much more value we could provide for our clients without the cost of bringing in a developer. We found that we were able to streamline our process for the clients whose blogging and social media we look after. We saw impressive results for our clients, too; not every website can go from 0 to 8,000 visits in six months, but we definitely see better results with WordPress than without it.

    \n

    Within a year, we went from platform agnostic to a dedicated WordPress shop. It worked better for us. It worked better for the people whose sites we built and managed. We were also beginning to see the value of open source and to appreciate the WordPress community.

    \n

    After that first WordCamp, I spoke at a couple of camps every year and our company sponsors and helps organize a couple of WordCamps nearly every year. Last year I spoke at three and I hope to continue expanding that service. WordPress has been good to us and we want to give back to the awesome WordPress community.

    \n

    WordPress Success

    \n

    Our business has grown. My eldest son graduated from college and joined the family business. My second daughter left us to work for Automattic. We’ve had some rough times, as every business does, but we can be proud of the work we do.

    \n

    We have the privilege of working with awesome clients, both locally and around the world. They can share their brands and their bigger messages in ways that would have been difficult and costly just a decade ago. We’re able to get great results for them – with hard work and WordPress.

    \n

    WordPress is not a magic pixie dust you can sprinkle on your website for instant success.

    \n

    But there are some things about WordPress that set you up for success:

    \n
      \n
    • It may not be true (okay, it isn’t true) that you can master WordPress with no tech skills, training, or effort. But you don’t have to be a programmer to get the results you want and need in WordPress. If you have something to say, you can get it published more easily in WordPress than with other platforms.
    • \n
    • There’s no quality tradeoff. We usually build custom websites with talented and trained designers, but I’ve built dozens myself with pre-made themes and my own HTML and CSS skills (and great photos – the secret weapon for non-artists who want to create beautiful WordPress websites). Either way, you’re not limited by WordPress as you are by drag-and-drop sitebuilding tools.
    • \n
    • Because updating and adding content is so easy with WordPress, you can accomplish the essentials of content marketing more easily. You can focus on your message with less worry about the medium. You and your Web People can shape the web experience you want for your visitors efficiently.
    • \n
    • WordPress has the most supportive community you can find. We’re friends with local companies that we could also call competitors, because we spend time together in Meetups and WordCamp organizing meetings. We also have a large network of WordPress folks we respect and admire. It’s great to see them in person at WordCamps, but we also have the opportunity to get to know them better virtually. We help them and they help us.
    • \n
    \n

    I can say from experience that WordPress has made a big difference in my life. I’m still a mom – in fact, I’m now a grandmother. But I’m also the owner of a successful web firm and a successful educational website. I write for and care for a number of websites I can be proud of.

    \n

    Last year at WordCamp Kansas City a man came up to show me his new website. I had spoken the year before about how to get started with a WordPress website, and he had been able to build a site for his fantasy hockey league. He was excited to show it to me, and I was excited to see it. That capacity to help other people achieve their goals with WordPress means a lot to me.

    \n

    If you’re just starting with WordPress, let my story encourage you. I was not an obvious choice for a successful Web Person, but WordPress helped me reach my goals. If you’re already a success with WordPress, find opportunities to help others reach their success, too.

    \n

    It’s the WordPress way.

    \n

    The post WordPress: A Tool for Success appeared first on HeroPress.

    \";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:\"Wed, 29 Mar 2017 11:30:02 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Rebecca Haden\";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:34;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:93:\"WPTavern: Poedit 2 Introduces Direct Connection to WordPress, Adds Support for Twig Templates\";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:29:\"https://wptavern.com/?p=68041\";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:103:\"https://wptavern.com/poedit-2-introduces-direct-connection-to-wordpress-adds-support-for-twig-templates\";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:2392:\"

    \n

    Poedit 2 was released today after two years in development. The app has a refreshed interface for translating .PO files, which Poedit creator Václav Slavík said was created by a professional designer. It is also the first paid upgrade for Pro users since the app added support for WordPress theme and plugin translations in 2013.

    \n

    Poedit 2 introduces direct connectivity support for WordPress, allowing developers to connect directly to the server instead of working with unpackaged plugins/themes locally.

    \n


    \n“Putting translation files on the server was the most common source of problems in Poedit (too many things can go wrong if you’re not yet very familiar with WP) and this feature should help a lot with that,” Slavík said.

    \n

    This release adds support for Twig templates and Timber. In the past, users had difficulty extracting strings from Twig templates, requiring some fragile workarounds. Slavík said some users resorted to setting up Poedit to treat them as Python files. Poedit 2 has a new built-in extractor for Twig.

    \n

    Poedit 2 also introduces a new pre-translation feature that allows for batch pre-translation of the entire PO file at once using Poedit’s online database and machine translation. After this has processed, users can then read through and correct any errors. Slavík said this feature saves a lot of time for many WordPress-related translations, such as themes, where a lot of strings are often repeated.

    \n

    Poedit used to be available from the Mac App Store but is now distributed exclusively from the Poedit.net website. The latest release drops support for older operating systems and requires users to be on Windows 7 or newer, macOS 10.10 Yosemite, or a modern Linux distribution.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Mar 2017 01:02:04 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:35;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:105:\"WPTavern: Data From Theme Reviews Shows Authors Need More Education on Developing Secure WordPress Themes\";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:29:\"https://wptavern.com/?p=67987\";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:116:\"https://wptavern.com/data-from-theme-reviews-shows-authors-need-more-education-on-developing-secure-wordpress-themes\";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:4489:\"

    Last week, we highlighted the progress being made by the Theme Review Team in clearing out a 1K+ review backlog. In an effort to determine common problems with themes discovered by reviewers, Carolina Nymark, a member of the Theme Review Team, reviewed 100 tickets from 531 themes that were closed and marked not approved between December and February. Nymark cautions that the data does not assure statistical accuracy and is not representative of the entire directory.

    \n

    Her assessment shows that the most common problems discovered by reviewers were:

    \n
      \n
    • Missing escaping or using the wrong functions: 23 themes
    • \n
    • Text that is not translation ready: 21 themes
    • \n
    • Missing prefix: 20 themes
    • \n
    • Scripts or styles are not enqueued: 18 themes
    • \n
    • PHP notices, errors or warnings: 12 themes
    • \n
    • Style tags does not correspond with theme functionality, or are deprecated: 10 themes
    • \n
    \n

    Nymark also reviewed 100 out of 177 new themes that went live between December and February. Out of these themes, the most common problems were:

    \n
      \n
    • Missing escaping or using the wrong functions: 51 Themes
    • \n
    • Text that is not translation ready: 44 Themes
    • \n
    • Missing prefix: 39 Themes
    • \n
    • Missing license or copyright information for included assets: 34 Themes
    • \n
    • Unused code or files: 25 Themes
    • \n
    • PHP notices, errors or warnings: 20 Themes
    • \n
    • Missing sanitization, or using the wrong functions: 18 Themes
    • \n
    • Options in the customizer that are not working: 18 Themes
    • \n
    \n

    Last Friday, Jose Castaneda, Ulrich Pogson, and Nymark participated in a voice chat with Matt Mullenweg, co-creator of the WordPress project, to discuss the future of the theme directory. The team discussed ideas around automation, improving the theme preview experience, and content portability. One of the experiments Mullenweg proposed is to remove the manual review process and rely more on user feedback. Feedback could include, tags, reviews, and other meta data.

    \n

    “As we are not sure if the process will function without manual reviews, we will start working on getting better user feedback on themes,” Pogson said. “Once we have a good infrastructure in place we can experiment with how the repository reacts with no manual reviews.

    \n

    “We discussed the process we would go about making decisions on changes to the theme repository and came to the consensus that a direct democracy is too fragile and representative democracy would be a better solution.”

    \n

    Security, code errors, and prefixing, were also mentioned in the conversation as the most common issues encountered with themes. The team was given a series of tasks to complete and will report the results to Mullenweg at a later date.

    \n

    New Theme Check Plugin Will Detect Common Security Issues

    \n

    The Theme Handbook doesn’t have a chapter on security but it does link to a series of articles on writing secure themes in the resources section. Justin Tadlock, Key Reviewer, says work is underway on a new Theme Check plugin that will automatically detect security issues commonly seen during the manual review process. These include escaping and data sanitization.

    \n

    “If we could get the greater theme developer community to pitch in and help get this finished, it would be awesome,” Tadlock said. “Even outside of WordPress.org, ThemeForest and commercial theme shops could really use this.”

    \n

    Members of the TRT are testing the plugin behind the scenes and are working to eliminate false-positives. The best way to get involved in the project is to view the Issue tracker and submit pull requests. Once the new theme check plugin is live, it will give authors another tool at their disposal for developing more secure WordPress themes.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Mar 2017 22:52:21 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:36;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:93:\"WPTavern: WordPress Relaunches Plugin Directory with New Design and Improved Search Algorithm\";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:29:\"https://wptavern.com/?p=68018\";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:104:\"https://wptavern.com/wordpress-relaunches-plugin-directory-with-new-design-and-improved-search-algorithm\";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:5396:\"

    The new WordPress Plugin Directory went live today. Contributors have been working for the past year on rebuilding the directory with a new design and better capabilities for searching through the 45K+ available plugins.

    \n

    The new landing page displays a search bar prominently at the top, followed by sections for featured plugins, popular plugins, and beta plugins.

    \n

    \n

    The design changes to the individual plugin pages have received mixed feedback from members of Advanced WordPress Facebook. The screenshots slider and FAQ accordion UI are welcome improvements, but many are not fond of how the new single plugin display ditches the previous tabbed interface in favor of truncated sections with numerous “read more” links. This requires the visitor to click and scroll repeatedly through a massive wall of text. The experience of doing this to find information is much less efficient than the previous tabbed UI.

    \n

    Many of the plugin header images appear to be stretched now with the new wider content area, but this may encourage developers to update their listings. Several users have commented that they are disappointed with the removal of stats, which are now viewable for admins only. Plugin team member Mika Epstein said they are waiting for more feedback from end users (not plugin developers) on whether to make them publicly viewable again.

    \n

    The new design matches WordPress.org’s homepage redesign, which went from sketches to prototype to live during the last few weeks of December 2016. The most exciting improvements, however, are found under the hood.

    \n

    The plugin directory is now powered by WordPress, instead of bbPress, making it easier for plugin developers and reviewers to manage plugins, tags/categories, and committers. The submission and review process has also been streamlined so the plugin team will no longer reject plugins after 7 days. They also have to ability to rename plugin slugs prior to approval for easier handling of typos.

    \n

    New Plugin Search Algorithm Delivers More Relevant Results

    \n

    The most significant user-facing improvement in the redesign is better search relevance. Analysis of plugin search logs in August 2016 showed the directory handles 100,000 searches per day and receives more than 500k unique search queries per month.

    \n

    Greg Ichneumon Brown, a Data Wrangler at Automattic, published an in-depth article on how he and contributors improved search fidelity for the new plugin directory. The eye-opening account explains just how opinionated search algorithms need to be in order to give users the best experience at this scale.

    \n

    “In improving the fidelity of search results, it’s not just a question of how we satisfy a single user’s search query, but how we satisfy thousands of users for each unique search term: which plugins will support that volume of users and their requests for support?” Brown said. “Which are most likely to give all of these users a great WordPress experience?”

    \n

    The new search algorithm delivers results based on this premise. Brown added a calculation for the lowest/highest ratio of active_installs to the number of times the search was performed. However, this isn’t the only factor that influences whether or not a users will have a good experience with the top results. The algorithm also includes signals that Brown said plugin authors have a lot more control over:

    \n
      \n
    • Resolving support threads
    • \n
    • Keeping the plugin update to date
    • \n
    • Testing the plugin on the latest versions of WordPress
    • \n
    \n

    Brown’s post breaks down the Elasticsearch query he developed for the directory and explains how text matching works to find relevant results for author searches, queries that include operators, and partial-word boosting.

    \n

    The plugin directory relaunch has several known issues that the plugin team noted in the announcement today. Users are noticing many broken links, problems with SVN, and other bugs when navigating around the new directory. The team has a list of tickets on Meta Trac that they are working through and feedback is welcome. Plugin submissions are temporarily disabled while the transition is completed.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Mar 2017 21:59:33 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:37;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:85:\"WPTavern: UK Home Secretary Amber Rudd Links WordPress.com to the Spread of Terrorism\";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:29:\"https://wptavern.com/?p=67968\";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:96:\"https://wptavern.com/uk-home-secretary-amber-rudd-links-wordpress-com-to-the-spread-of-terrorism\";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:7298:\"

    \n

    UK government officials are targeting online service providers after terrorist Khalid Masood killed four people and injured more than two dozen in an attack in Westminster last week. In an article published on the Telegraph Sunday morning, British Home Secretary Amber Rudd called on Google, Twitter, and Facebook to take action on extremist content. She also identified Telegram, Justpaste.it, and WordPress.com as smaller platforms through which terrorist activity is spreading.

    \n

    “There should be no place for terrorists to hide,” Rudd told Andrew Marr in an interview over the weekend. “We need to make sure organizations like WhatsApp, and there are plenty of others like that, don’t provide a secret place for terrorists to communicate with each other.”

    \n

    Last week’s attack in London also seems to have reignited the UK government’s war on encryption, as Rudd said that the security agencies’ inability to crack encrypted messages during an investigation is “completely unacceptable.” Masood allegedly used WhatsApp to communicate shortly before the attack.

    \n

    The Home Secretary has summoned representatives from a list of online service providers, including Google, Twitter, Facebook, and smaller companies, to a meeting this week to discuss combatting terrorist abuse of these platforms. Automattic would not confirm whether the company has been summoned but it seems likely given that WordPress.com was one of the platforms Rudd highlighted over the weekend.

    \n

    The Telegraph article strongly linked WordPress.com to terrorism, citing several claims from the Counter Extremism Project that the Washington Post published earlier this month:

    \n

    But most such sites are publicly available and used to spread content. According to US think tank the Counter Extremism Project, WordPress.com sites have played host to beheading videos, firing squads, and a video of a man being shot in the head, emblazoned with the words ‘This In the Enemy Of Allah.’

    \n

    Historically, WordPress.com has been a strong supporter of free speech but posting terrorist propaganda is a violation of its terms of service. The site has a dedicated page outlining the platform’s stance on terrorist activity:

    \n

    While our service is designed to enable users to freely express their ideas and opinions, however controversial, safety is important to us. As such, we don’t allow websites of known terrorist groups or genuine calls for violence against individuals or groups on WordPress.com.

    \n

    WordPress.com users can report sites they find to be suspicious but the page also emphasizes the platform’s commitment to free speech:

    \n

    Please note that the team behind WordPress.com strongly believes in freedom of speech. WordPress.com has a vast audience spread across many cultures, countries and backgrounds with varying values and our service is designed to let internet users freely express any ideas and opinions without us censoring or endorsing them.

    \n

    We take all reports seriously, but we won’t remove sites just because they are offensive.

    \n

    WordPress.com also denies use to individuals, groups, or entities on the Specially Designated Nationals list, maintained by the U.S. Department of the Treasury’s Office of Foreign Assets Control.

    \n

    It’s not yet clear what Home Secretary Rudd is calling for in summoning global tech company representatives to a meeting, but her comments on the Andrew Marr show indicate the government may request closer monitoring.

    \n

    “What I’m saying is the best people – who understand the technology, who understand the necessary hashtags to stop this stuff even being put up, not just taking it down, but stopping it being put up in the first place – are going to be them,” Rudd said. She also said she is in conversations with the U.S. government to help get all of these companies around the table to agree to stop this kind of content from being published in the first place.

    \n

    Automattic would not provide a comment at this time regarding its position on the UK government attempting to curb online extremism by targeting online services. However, the company has a long history of actively pushing back against requests that violate users’ freedom of speech. In 2010, Automattic demonstrated its support for freedom of speech by raising awareness about the First Amendment. Automattic’s General Counsel Paul Sieminski wrote about the company’s commitment to strike back against censorship in 2013 after taking to the courts to stand with users against DMCA abuse. In 2014, when tech companies all over the world joined forces to protest NSA surveillance, Automattic was among them.

    \n

    If Rudd’s call for tech companies to take “a more proactive role” in tackling terrorist abuse ultimately means introducing monitoring that violates users’ privacy and gives government more access, she will be hard-pressed to get cooperation. American companies like Automattic and Apple have already demonstrated they are willing to go to court to protect users’ freedoms and privacy.

    \n
    \n

    To help keep our streets safe, we need to rise up against companies like #Apple and #Whattsapp who provide space and comfort to terrorists

    \n

    — Nadine Dorries (@NadineDorriesMP) March 27, 2017

    \n

    \n

    The anti-encryption rhetoric surrounding this issue seems manufactured to allow UK government officials to capitalize on a public tragedy in order to push a political agenda. Rudd is unlikely to find many companies in the tech industry that are eager to hand over users’ freedoms and private communications, but hopefully the summit will serve to educate government officials on why it’s dangerous to legislate backdoors into consumer products.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Mar 2017 22:30:41 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:38;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:71:\"WPTavern: WordCamp Miami 2017 Will Livestream All Sessions this Weekend\";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:29:\"https://wptavern.com/?p=67929\";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:82:\"https://wptavern.com/wordcamp-miami-2017-will-livestream-all-sessions-this-weekend\";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:1577:\"

    \n

    WordCamp Miami kicked off today with its ancillary workshops for beginners, freelancers, and BuddyPress enthusiasts. The WordCamp is entering its 9th year and organizers are expecting more than 800 attendees. Tickets are once again sold out, but latecomers hoping to attend can sign up for the wait list.

    \n

    WordCamp Miami is one of the most well-established WordPress events and is known for having high quality sessions. This year’s schedule includes 60+ local and international speakers, a JavaScript learning track, and new AMA spots, featuring prominent people in the community. If you are unable to attend but want to join in remotely, the camp will be live streaming all sessions on Saturday and Sunday for free. There is no registration for the live stream and organizer David Bisset said it doesn’t have a limit on the number of people who can watch simultaneously. Participants can join in on Twitter with the #wcmia hashtag.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Mar 2017 21:52:30 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:39;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:80:\"WPTavern: Medium Aims to Fix ‘Broken’ Media with New $5 Subscription Program\";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:29:\"https://wptavern.com/?p=67900\";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:84:\"https://wptavern.com/medium-aims-to-fix-broken-media-with-new-5-subscription-program\";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:6399:\"

    \n

    Nearly three months after laying off a third of its staff and publicly admitting that its previous ad-based revenue model was broken, Medium has introduced a new $5 per month subscription program. The internet speculated freely about Medium’s next move after CEO Ev Williams said the company would be taking “a different, bolder approach” to the problem of driving payment for quality content.

    \n

    It turns out the “bolder approach” he referenced is a subscription-based model, one that skeptics are already eager to tear apart as many media organizations have struggled to find success with paywalls. Early subscribers will receive access to curated content, a new reading experience, ad-free browsing, and an offline reading list. Medium will be using the subscription revenue to pay writers for content, some of which will be restricted to members only.

    \n

    “We will be routing 100% of the revenue from founding members (those who sign up in the first few months) to writers and independent publishers who have important work to do,” Williams said. “Those who have hard-won expertise, do exhaustive research, and think deeply. Those who make us all smarter. Those who maximize our understanding of the world but don’t necessarily maximize clicks — and, therefore, are at a disadvantage amongst the highly optimized algorithm chum being slung by the truckload by low-cost content purveyors.”

    \n

    Medium’s new curated content stream will surface the most worthwhile articles from its network, which grew from 1.9 million posts in 2015 to 7.5 million in 2016 posts. Williams identified the types of content members can expect with their subscriptions in a followup post viewable only to subscribers:

    \n
      \n
    • Politics. What’s happening behind the headlines. How to think about it. What to do about it.
    • \n
    • Work. Lessons in business, startups, leadership, management, and money.
    • \n
    • Self. Smart takes on how to be your best you — happier, healthier, more productive.
    • \n
    • Future. Where the world is going — technology, trends, what it all means.
    • \n
    \n

    For those who have long regarded Medium as the home of hot takes, open letters, and scintillating rants, the new curated content will feature pieces from those who Williams describes as “doing important work.” The list above indicates the platform will be promoting a hefty does of spoon-fed thought and self-improvement topics. In order to make money from the people who have it to spend, the blogging silo must focus on helping those with too much information and not enough time to figure out “how to think about” important issues.

    \n

    Medium is currently soliciting writers via email, according to one recipient, Adam Hodgkin. This move marks a change in the company where it is essentially becoming a publisher in addition to an aggregator, commissioning content that will deliver that trademark Medium flavor.

    \n

    Authors should be aware that articles published behind Medium’s paywall will lose their potential to go viral. In addition to trading site and content ownership for convenience, those who agree to write for Medium’s members will be limiting the potential reach their content may have had if it was published in the open.

    \n

    “Media is broken,” Williams said. “And we need to fix it. I’m super passionate about this. Though we’ve changed our approach recently, this has been Medium’s mission from day one. We saw the feedback loops for publishing content to be a major problem, and we set out to build a new model. We’ve come a long way since — establishing ourselves as the platform for thoughtfulness, depth, and insight from independent thinkers. But the greater challenge — changing the incentives that drive our consumption of media online — has become even more pressing. It’s time to double-down.”

    \n

    If there’s something new about this economic model, we have yet to see it. Spotify, Netflix, the Financial Times, the Wall Street Journal, and many other businesses have successfully implemented the subscription model. Using it to fund the type of content that Medium aims to highlight may not be feasible, however, as consumers tend to gravitate towards free content and news that is read and shared in the open.

    \n

    If Medium’s only option for exiting the attention economy is to further lock down users’ content inside its proprietary silo, the remedy is worse than the disease. Instead of seeing ads on articles available to everyone, subscribers now pay to read content that is selected by and owned by Medium, a company that still needs to find a way to keep the lights on once all the VC money is gone.

    \n

    Medium tried the ad-driven publishing model without success and then declared that it was a broken system. Was the model broken because it didn’t bring Medium enough money to keep paddling on? Or is it fundamentally broken because it “incentivizes the wrong behaviors,” as Williams put it? His newfound idealism behind the push to leave the domain of “ad buyers and social media echo chambers” appears to be a mask for the lack of a concrete monetization strategy.

    \n

    Williams’ closing appeal says everything: “Join us early, and help us figure it out.” Medium is still experimenting on publishers to find a way to stay afloat.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Mar 2017 21:24:49 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:40;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:82:\"WPTavern: How to Find the Age of a Plugin Hosted in the WordPress Plugin Directory\";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:29:\"https://wptavern.com/?p=67923\";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:93:\"https://wptavern.com/how-to-find-the-age-of-a-plugin-hosted-in-the-wordpress-plugin-directory\";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:1554:\"

    The WordPress plugin directory provides information such as version requirements, compatibility, last updated, and active installs for plugins. What it doesn’t tell you is how old a plugin is. A new site called Age WP Plugin created by Ahmad Awais and Maedah Batool makes finding this information easy. Simply type in a plugin’s slug into the search box and hit enter.

    \nHello Dolly is 8 Years Old\n

    Awais created the site after Batool inquired about the age of a plugin for an article she was writing. Using the WordPress.org API, Awais discovered that one of the data points was a plugin’s submission date. In addition to displaying a plugin’s age, the site also shows the number of downloads it has. In early 2015, the plugin directory was redesigned and replaced the download count with the number of active installs.

    \n

    The site has received positive feedback from plugin authors in the Advanced WordPress Facebook group. Something I’d like to see added is a list of 10 or 25 of the oldest plugins in the directory. Awais plans to redesign the site using a different color scheme and fix styling issues reported by testers.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Mar 2017 19:12:11 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:41;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:57:\"WPTavern: PHP 5.6 Is Now the Most Widely Used PHP Version\";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:29:\"https://wptavern.com/?p=67851\";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:68:\"https://wptavern.com/php-5-6-is-now-the-most-widely-used-php-version\";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:2510:\"

    PHP 5.6 usage has steadily increased over the past year and has now overtaken versions 5.3 and 5.4 to be the most widely used version, according to W3Techs’ stats. PHP is used by 82.6% of all the websites for which W3Techs can detect a server-side programming language. PHP 7 accounts for 3.1% of these websites and PHP 5.x makes up 95.3%, with version 5.6 usage at the top end.

    \n

    \n

    PHP.net’s usage stats page hasn’t been updated sine 2013 but the project recommends W3Techs’ stats for viewing PHP market share by version. W3Techs’ methodology takes the top 10 million websites, according to Alexa rankings, to offer a representative sample of established sites without including domain spammers.

    \n

    PHP 5.6 overtaking older versions is a significant milestone for the PHP community, since it still receives support for critical security issues until December 31, 2018. The older versions that previously dominated usage reached End of Life in 2015 and 2016 and are no longer receiving security updates.

    \n

    Adoption of supported PHP versions is somewhat slower in the WordPress community. According to the project’s stats, more than half of all WordPress sites (55.6%) are using unsupported versions of PHP (versions 5.2 – 5.5).

    \n

    In early December 2016, WordPress updated its hosting recommendation to PHP 7+, which should help new users who are approaching hosts to request their sites be put on newer versions of PHP. In addition to these recommendations, WordPress’ strategy in the past has been to cultivate relationships with hosts to help improve host configurations for users. The project recently launched the Make WordPress Hosting community to facilitate collaboration among those with hosting experience. Participants are currently working on documenting best practices, including recommendations for PHP versions offered, and providing tools for the community.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Mar 2017 19:15:29 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:42;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:32:\"Matt: On the James Altucher Show\";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:22:\"https://ma.tt/?p=47188\";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:49:\"https://ma.tt/2017/03/on-the-james-altucher-show/\";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:450:\"

    I joined in for the James Altucher podcast in an episode that covered a lot of ground. One clarification was the point of the story about my Dad not making much at his old job was that companies should be thoughtful about compensation especially for the people who stay with them the longest, not that loyalty is a myth or something to be avoided. It just needs to be two-way.

    \";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:\"Thu, 23 Mar 2017 16:29:13 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";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:43;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:115:\"WPTavern: WPWeekly Episode 268 – Behind the Scenes of WordPress Development Course, Up and Running Second Edition\";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:58:\"https://wptavern.com?p=67846&preview=true&preview_id=67846\";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:121:\"https://wptavern.com/wpweekly-episode-268-behind-the-scenes-of-wordpress-development-course-up-and-running-second-edition\";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:2416:\"

    On this episode, Marcus Couch and I are joined by Alex Denning, Fred Meyer, and David Hayes of WPShout to discuss their WordPress Development course, Up and Running Second Edition. We learn why the trio created the course and who it’s geared towards.

    \n

    Later in the show, we have a great conversation surrounding the REST API and its potential impacts on WordPress. Near the end of the interview, we get their thoughts on the state of WordPress education.

    \n

    Stories Discussed:

    \n

    GoDaddy Acquires Sucuri

    \n

    Plugins Picked By Marcus:

    \n

    WP Multisite User Sync lets you Sync/unsync users from one site (blog) to other sites (blogs) in a WordPress Multisite network.

    \n

    WooCommerce Live Checkout Field Capture plugin saves all activity in the WooCommerce checkout form before it is submitted. This enables you to see who has abandoned their shopping carts with the ability to contact them and remind about the abandoned cart.

    \n

    After Comment Redirector lets you redirect to a custom page after commenting for all or new commentators. This is a handy way to say thank you to your most engaging readers. You can also give out a coupon, special e-book, or secret content when someone leaves a comment.

    \n

    WPWeekly Meta:

    \n

    Next Episode: Wednesday, March 29th 3:00 P.M. Eastern

    \n

    Subscribe To WPWeekly Via Itunes: Click here to subscribe

    \n

    Subscribe To WPWeekly Via RSS: Click here to subscribe

    \n

    Subscribe To WPWeekly Via Stitcher Radio: Click here to subscribe

    \n

    Listen To Episode #268:
    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Mar 2017 01:39:19 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:44;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:33:\"WPTavern: GoDaddy Acquires Sucuri\";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:29:\"https://wptavern.com/?p=67826\";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:44:\"https://wptavern.com/godaddy-acquires-sucuri\";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:5541:\"

    GoDaddy has announced that it has entered into an agreement to acquire Sucuri Security. Sucuri, founded by Daniel Cid and co-founded by Tony Perez in 2010, is a website security platform that helps clean and protect websites. Details of the deal were not disclosed.

    \n

    Like ManageWP, Sucuri will operate as a separate entity under the GoDaddy umbrella. Sucuri employees will transfer to GoDaddy while remaining under the leadership of Perez and Cid.

    \n

    Out of all the companies that Sucuri could have chosen to be acquired by, why GoDaddy?

    \n

    “Over the years we’ve seen them live up to their words to be a customer and product centric company,” Perez said. “As a product company it give us an opportunity to scale our product from a few hundred thousand domains, to millions. It’s something that we only ever dreamed of.”

    \n

    The acquisition comes a few weeks after SiteGround announced its partnership with Sucuri and renamed its site scanner SG Site Scanner. It’s too soon to determine how this acquisition will affect Sucuri’s partnerships with hosting companies.

    \n

    “I can’t speak for our partners, but I truly hope they will trust in us, Sucuri, and in me personally,” Perez said. “If we can work to deploy our technology for GoDaddy, at their scale, then I have nothing but confidence we can do this for every other partner out there.

    \n

    “GoDaddy made this investment because they believe in what we have built as a team at Sucuri, the product solves problems, that doesn’t go away and I hope all our customers and partners will give us time to prove this in our actions.”

    \n

    Both companies acknowledged that nothing changes for existing Sucuri customers and that they can expect to see numerous improvements in the near future. Perez and Cid see the acquisition as version 2.0 of the company.

    \n

    Aaron Campbell, WordPress Security Team Lead who is sponsored by GoDaddy to work on WordPress full-time, says the move should help make more sites secure.

    \n

    “GoDaddy is committed to offering great services to its clients,” Campbell said. “You know as well as I do that Sucuri is exactly that; we’ve seen them be quite an asset to the WordPress community over the years.

    \n

    “They’re going to remain a standalone product, but I’m excited to see them become part of the GoDaddy team to make some great stuff together. Keeping as many WordPress users secure as possible is obviously my goal and I really think this will help accomplish that.”

    \n

    Reactions to the news on Twitter have mostly been positive with many congratulating Sucuri and its founders.

    \n

    On the Advanced WordPress Facebook group, reactions to the news are a mix between congratulatory and fears of Sucuri’s service declining. These are among the same grievances and fears expressed by ManageWP customers when GoDaddy acquired it.

    \n

    ManageWP Customers Report No Noticeable Decline in Service

    \n

    Since being acquired, ManageWP has maintained and improved service levels while continuing to add features. Its most recent feature gives customers the opportunity to create backups, restore, and clone multisite websites.

    \n

    Bob Dunn, of BobWP, says the service has been stellar before and after the transition.

    \n

    “To be honest, their services were great before and still are,” Dunn said. “I don’t manage a ton of sites, but for my needs, it has been rock solid since I first became a customer.”

    \n

    Scott Buscemi, co-founder of Lumen Foundry, has had a similar experience.

    \n

    “In all honesty, I haven’t noticed much of anything since they were acquired – and that’s a ‘win’ in my opinion,” Buscemi said.

    \n

    “I’ve seen them push out a pleasant list of bug fixes and features that don’t affect me, so it’s great to still see active development on the primary system. GoDaddy has been working hard to get on the good side of developers and agency owners like me, so I can’t imagine they would go through the effort of the acquisition only to spoil the experience and turn things negative.”

    \n

    Even those skeptical with the acquisition have reported no noticeable decline in the quality of service.

    \n
    \n

    @jeffr0 Me, I haven’t really noticed any change in the quality of the service (and I was skeptical)

    \n

    — \"so called\" Jim Cook (@jm_cook) March 22, 2017

    \n

    \n

    GoDaddy has not announced how it plans to integrate Sucuri into its products and services.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Mar 2017 00:53:46 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:45;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:62:\"BuddyPress: BuddyPress at WordCamp London 2017 Contributor Day\";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:32:\"https://buddypress.org/?p=264902\";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:82:\"https://buddypress.org/2017/03/buddypress-at-wordcamp-london-2017-contributor-day/\";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:1688:\"

    Contributor Day is a big part of WordCamp London. This year it was held on Friday 17th March at London Metropolitan University. 100 contributors descended on the venue each aiming to make WordPress better in some wonderful way.

    \n\"AContributors at WordCamp London 2017. Photo by Pradeep Singh.\n

    Attendees were asked to choose an area of interest. The options were Accessibility, BuddyPress, Community, Core, Design & Flow, Documentation, Polyglots, Support and Themes. 5 of the 100 contributors chose BuddyPress. 2 of the 5 were new to contributing in general but all had used, or had at least heard of, BuddyPress at some point.

    \n

    After a quick refill of coffee the team convened and began discussing how to get the most from the next 8 hours. Due to a diverse range of skills available within the group, we were able to focus on documentation, coding and localisation.

    \n\"PeopleBuddyPress contributors. Photo by Pradeep Singh.\n

    As a team we managed to identify an issue related to colour contrast in the Twenty Seventeen theme. #7471 was opened and a patch was submitted. We were also able to translate all remaining strings into Italian.

    \n

    The day was a huge success and all team members indicated they will contribute again going forward.

    \";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:\"Wed, 22 Mar 2017 21:26:31 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Henry Wright\";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:46;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:71:\"WPTavern: Foxhound Is the First REST API Powered Theme on 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=65646\";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:82:\"https://wptavern.com/foxhound-is-the-first-rest-api-powered-theme-on-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3281:\"

    Foxhound made its debut on WordPress.org yesterday. The React-based theme is the first in the directory to use the REST API endpoints included in WordPress 4.7. Foxhound sports a tasteful blog design with single-page app functionality that loads posts instantly. Check out the live demo to see how fast the content loads.

    \n

    \n

    The theme was designed and developed by Kelly Dwan and Mel Choyce, who have collaborated on several free themes hosted on WordPress.org. They recommend installing the WP-API Menus plugin, as the REST API does not yet support menus. After installing Foxhound, there are only two things required to make it look like the demo: Set the front page to display the latest posts and set up a menu. There are no additional customization settings.

    \n

    Kelly Dwan notes on Foxhound’s GitHub repository that the theme should be considered “experimental” and users can expect a few restrictions:

    \n
      \n
    • The theme does not display anything if javascript is disabled. (Should not affect SEO or accessibility)
    • \n
    • The API cannot be blocked by a security plugin. Some plugins recommend blocking the users endpoint, but that is required to show the author archive. If you need to block the user endpoint, the rest of the theme should work but might be unstable if anyone tries to visit an author archive.
    • \n
    • Permalinks for pages and archives are changed by this theme. They will be reset if/when you deactivate the theme. You might want to set up redirects using something like Safe Redirect Manager.
    • \n
    • This theme does not support hierarchical category archives – only parent category archive pages can be displayed. This may be fixed in a later version of the theme.\n
    • Plugins may not work as expected, especially if they add content to the front end of the site. Most Jetpack features do still work.
    • \n
    \n

    Because Foxhound is so different from traditional WordPress themes, it could not go through the usual theme review process. Themes that require the WP REST API are currently reviewed outside of WordPress.org when a theme author pings the Theme Review team. They apply a “Special Case” tag that allows the theme to bypass Theme Check. (The tag is also used for other themes that break the rules in innovative ways.)

    \n

    “We don’t have a lot to go on yet with those types of themes,” Key Reviewer Justin Tadlock said. “Foxhound was the first. We’re supposed to be looking over another soon. As more of these types of themes come in, we’ll be able to figure out ways of making it easier to submit them.”

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Mar 2017 19:21:50 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";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:47;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:35:\"HeroPress: A Blissful Driving Force\";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:56:\"https://heropress.com/?post_type=heropress-essays&p=1658\";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:52:\"https://heropress.com/essays/blissful-driving-force/\";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:9085:\"\"Pull

    As a college guy, I believed in being different and outperforming the best of my lot. Coming from a modest family background, the realization of achievement dawned over me. I never favored being a 9 to 5 corporate professional and a having a ‘boss’ was simply not my cup of coffee. I was never interested in the classes held in the college because I was being more productive at the ‘reality’ front of the life. I envisioned getting involved in tasks that were strongest at the core.

    \n

    Where It All Started

    \n

    Computer technology was in its nascent state in India the time I started my tryst with web pages. I began with designing my own college’s alumni website while pursuing MCA at Banaras Hindu University, Varanasi. Eventually, I was assigned the task of the event websites too. I was happy because all this brought about a sense of power to me. Though not initially refine, my work still appealed to many and it also made me realize the power technology had.

    \n

    The Seed of Seriousness

    \n

    The very first seed of the idea of taking this up as a serious profession was sown by a friend who told me about how creating web pages and blogging could be a source of monetization. Google pages was my first shot as a techie, wherein I started with contributing content through blogs to several clients.

    \n

    Saw and Attempted

    \n

    I can still recollect the time I received my first pay cheque. Initially, I had tested all Content management systems and had started with Joomla and Drupal. With absolutely no knowledge about coding, I went forward to scale the web designing mountain. WordPress came and was well recognized as a blogging platform; suitable to what I worked on. I bumped into WordPress in 2009 and like many other users, utilized it for my blogging endeavors. Little did I know that someday it would be the answer to my ‘coding gap’. I remember working on a 6-month project for my MCA final where I took up WordPress as the core subject and in there I talked about custom plugins and themes. The teacher was happy to receive the unique project and awarded me good grades for my sense of initiation with new approach.

    \n

    That Leap of Faith

    \n

    Now, I knew how I had to take this WordPress awesomeness forward. With a little exposure to learning new technology, I was baffled for a while but had the will to scale this one too. 6 months, and I thoroughly decoded the WordPress codex for me. This was a giant step forward where my future lay in my own hands.

    \n

    Personally, I feel that WordPress does not constrict you to a certain limit or a line of functionalities. If you have a core foundation, you can toy with it and make awesome end results. WordPress was now my pillar of strength. WordPress successfully justified my choice of not joining the job placement drive at the college.

    \n

    The Break-Out

    \n

    Now was the time to materialize my skills and have a material turnaround for the work I was capable of doing. After a 4-month hunt for some serious web designing projects with not a single task at hand, disappointment gripped me. The lack of proper work infrastructure due to poor Internet connectivity and local electricity supply were some of the other reasons I had to plan withdrawing my resources from Varanasi. I could have fallen or would have made a leap; it was about to be my choice for the rest of my life.

    \n

    Hello to New Beginnings

    \n

    It was frustrating because Varanasi had been my abode for 7 good years and leaving the place was a huge decision to make. I mustered up my wits to start afresh by withdrawing my base from Varanasi and shifted to Lucknow, India in order to try out seeking new opportunities yet again.

    \n

    The work stars favored me and with the help of elance-oDesk (now, Upwork) and other freelancing platforms, I received many life-changing projects of my life. Things moved forward and with many clients in a row, another year went by. I collaborated with more people who were willing to join me on the platform – people who wanted to leave a mark; never to look back. What remained constant throughout these years was my capability to work hard each day.

    \n

    A Better Picture/ Wbcom Designs

    \n

    I upfront admire WordPress because it has been a driving force for my existence. Time has moved slowly and with 6+ years of experience and self-discovery, I now run a fully-fledged WordPress based company Wbcom Designs that has many developers and freelancers onboard with me.

    \n

    While additionally serving BuddyBoss as a Product and Support Manager, now I plan to infuse new changes in the pattern we operate at base as well as the firm through strategic planning. It’s time to give back to the WordPress community through the development of free plugins, theme customization and spreading the WordPress fandom at local level.

    \n

    I recently took the opportunity to sponsor ‘Nashik WordCamp’ 2016, WordCamp Pune 2017, WordCamp Udaipur 2017, and WordCamp Kochi 2017. I am glad I was able to take a step forward in my plans to pay back to the WordPress community. To set the ball rolling at local level, I have recently come up with a local MeetUp group at Lucknow, India so that locally organized, face to face events can be organized that will accelerate the understanding of the WordPress CMS among the masses. I also plan to bring about WordPress awareness at the school and college level in my zone so that more and more young people know why this CMS is so amazing.

    \n

    To this day, my first love is my work desk. Whenever in an emotional or professional fix, I seek recluse through this amazing platform. Unlike others, working destresses me. There is a long way to go with this ideal because I want people to know how powerfully stable the WordPress is.

    \n

    Like they say,

    \n

    “Coming together is a beginning; keeping together is progress; working together is success.”

    \n

    I want to see the developer community going for heights that have never been achieved before and I want to be a part of this huge step-up.

    \n

    I am all open up for this WordPress community for contribution and assistance. For WordPress enthusiasts, I want to tell them that sky is not the limit. WordPress has accepted me as its own and it’s time for me and others to give back in the best possible manner.

    \n

    The post A Blissful Driving Force appeared first on HeroPress.

    \";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:\"Wed, 22 Mar 2017 12:00:33 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Varun Dubey\";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:48;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:82:\"WPTavern: Help Jesse Petersen and His Family by Donating to His Medical Leave Fund\";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:29:\"https://wptavern.com/?p=67746\";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:93:\"https://wptavern.com/help-jesse-petersen-and-his-family-by-donating-to-his-medical-leave-fund\";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:2774:\"

    Jesse Petersen, a longtime member of the WordPress community and founder of Genesis The.me, needs our help. Petersen is battling Cystic Fibrosis and earlier this year after visiting a clinic, discovered that his lung function was at 22%.

    \n

    Due to decrease lung function, Petersen missed five weeks of work, required home IVs, and visited many doctors. He is currently on a double-lung transplant list with a lung allocation score of 38.859.

    \n

    According to the United Network for Organ Sharing, the LAS is a score used to prioritize waiting list candidates based on a combination of wait list urgency and post-transplant survival.

    \n

    In order to maintain his health for a transplant, doctors have recommended that he work a maximum of two hours per day with quality rest.

    \n

    His family has a small emergency fund available that they thought would allow Petersen to work up until his transplant surgery. However, there’s no estimated time frame for when a transplant will be available.

    \n

    Outside of his product based business, Petersen is a work-from-home freelancer with contract work that needs to be completed. He and his wife have two adopted children. His wife volunteered to get another job to supplement their income but relatives rejected the idea as she is his primary support person.

    \n

    Petersen has two products for sale on GenesisThe.me with two more ready for launch by the end of March.

    \n

    His family is asking for $20K to help pay for expenses and allow Petersen to take an extended medical leave to focus on his health. So far, the campaign has raised $5,075 or about a quarter of the amount needed.

    \n

    You can donate as much as you’re able to or choose from one of five predetermined amounts ranging from $25 to $1K. You can also choose to donate monthly in six month increments.

    \n

    Petersen is no stranger to the WordPress community’s generosity. In 2016, it helped him raise nearly $20K to help pay for costs associated with adopting his second son. If you are able, please consider donating to Petersen’s medical leave fund.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Mar 2017 10:35:52 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:49;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:74:\"WPTavern: Adding Images to WordPress Sidebars Is About to Get a Lot Easier\";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:29:\"https://wptavern.com/?p=67667\";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:85:\"https://wptavern.com/adding-images-to-wordpress-sidebars-is-about-to-get-a-lot-easier\";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:4041:\"

    Adding images to sidebars in WordPress is a cumbersome task that requires users to upload an image to the Media Library, find the URL, copy it, and paste it into a Text widget along with additional HTML. Nearly two years ago, Mel Choyce opened a ticket on WordPress Trac proposing that a media widget be added to core. This widget would allow users to easily add images to sidebars.

    \n

    Throughout the discussion, the idea of creating a catch-all media widget was brought up that would allow users to add images, audio, or video to a sidebar. After developers spoke to Matt Mullenweg about the direction of the project, the team decided to create three separate widgets to handle each media type. Choyce outlined the benefits this approach provides:

    \n
      \n
    • We can focus on creating more tailored experiences for each widget.
    • \n
    • We’ll be able to launch new widgets without having to worry about constantly updating one central widget, or potentially breaking anything.
    • \n
    • It’ll be easier for people to discover new media types since they won’t be buried within one widget.
    • \n
    • This will more closely mimic the approach we’re taking to content blocks in the future, which should provide an easier transition.
    • \n
    \n

    Out of the three core widgets in development, the Image one is nearly complete ready for user testing. To test, first download and activate the Core Media Widgets plugin. Once activated, navigate to Appearance > Widgets in the WordPress backend and in the available widgets section, locate the Image widget.

    \nCore Image Widget UI\n

    Clicking the Select Image button displays the media library modal where you can either select or upload an image. Once an image is selected, click the Add to Widget button in the bottom-right corner. This is what the widget looks like after an image is added.

    \nCore Image Widget With an Image\n

    Here is what the widget looks like on a page using the Twenty Seventeen default theme.

    \nCore Image Widget in Action\n

    The core image widget is incredibly easy to set up and is a significant improvement over the Text widget approach. The user interface is much simpler compared to the image widget supplied by Jetpack. Jetpack’s image widget UI doesn’t take advantage of the media library modal and instead, requires the user to know the image’s URL.

    \nJetpack Image Widget UI\n

    Many of the fields are the same as what’s provided by the media library modal. Not surprisingly, WordPress.com uses the same interface and requires the user to know the image URL.

    \n

    Core Image Widget May Be Ready in Time for WordPress 4.7.4

    \n

    The team is specifically seeking feedback from those who use image widgets provided by plugins on WordPress.org. Once the image widget is merged into core, the video and audio widgets will be added to the Core Media Widgets plugin. Users can leave the plugin enabled until all three widgets are added to core.

    \n

    “Once a widget has been thoroughly tested by users, we can then copy it into core for a release while then also disabling the widget in the plugin,” Ruter said.

    \n

    If you encounter a bug or discover an incompatibility with a plugin or theme, please create an issue on the project’s GitHub page. According to Ruter, the team is working hard to get the widget to a point where it can be merged into core. Depending on how testing goes, it could be merged into core as early as WordPress 4.7.4.

    \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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Mar 2017 01:18:28 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 17 Apr 2017 14:51:58 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 17 Apr 2017 14:30:10 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911080210\";}','no'); INSERT INTO `wporg_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (198,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1492483918','no'), (199,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1492440718','no'), (200,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1492483918','no'), (201,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','
    • WordPress 4.7.3 Security and Maintenance Release March 6, 2017
      WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.2 and earlier are affected by six security issues: Cross-site scripting (XSS) via media file metadata.  Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs. Control characters can trick redirect […]
    ','no'); /*!40000 ALTER TABLE `wporg_options` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_postmeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_postmeta`; CREATE TABLE `wporg_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; # Dump of table wporg_posts # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_posts`; CREATE TABLE `wporg_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `post_name` (`post_name`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_posts` WRITE; /*!40000 ALTER TABLE `wporg_posts` DISABLE KEYS */; INSERT INTO `wporg_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 (3,1,'2014-12-08 21:21:01','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2014-12-08 21:21:01','0000-00-00 00:00:00','',0,'http://wordpressorg.dev/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wporg_posts` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_registration_log # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_registration_log`; CREATE TABLE `wporg_registration_log` ( `ID` bigint(20) NOT NULL AUTO_INCREMENT, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `IP` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `blog_id` bigint(20) NOT NULL DEFAULT '0', `date_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`ID`), KEY `IP` (`IP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_registration_log` WRITE; /*!40000 ALTER TABLE `wporg_registration_log` DISABLE KEYS */; INSERT INTO `wporg_registration_log` (`ID`, `email`, `IP`, `blog_id`, `date_registered`) VALUES (1,'foo@example.org','192.168.50.1',2,'2014-12-08 21:42:28'), (2,'foo@example.org','192.168.50.1',4,'2014-12-08 21:47:04'), (3,'foo@example.org','192.168.50.1',5,'2014-12-08 21:52:08'), (4,'foo@example.org','192.168.50.1',6,'2014-12-08 21:52:17'), (5,'foo@example.org','192.168.50.1',7,'2014-12-08 21:52:45'), (6,'foo@example.org','192.168.50.1',8,'2014-12-08 21:58:19'), (7,'foo@example.org','192.168.50.1',9,'2014-12-08 21:59:31'), (8,'foo@example.org','192.168.50.1',10,'2014-12-08 21:59:43'), (9,'foo@example.org','192.168.50.1',11,'2014-12-08 21:59:50'), (10,'foo@example.org','192.168.50.1',12,'2014-12-08 22:00:04'), (11,'foo@example.org','192.168.50.1',13,'2014-12-08 22:00:12'), (12,'foo@example.org','192.168.50.1',14,'2014-12-08 22:00:20'), (13,'foo@example.org','192.168.50.1',15,'2014-12-08 22:00:28'), (14,'foo@example.org','192.168.50.1',16,'2014-12-08 22:02:45'), (15,'foo@example.org','192.168.50.1',17,'2014-12-08 22:02:51'), (16,'foo@example.org','192.168.50.1',18,'2014-12-08 22:03:20'), (17,'foo@example.org','192.168.50.1',19,'2014-12-08 22:03:48'), (18,'foo@example.org','192.168.50.1',20,'2014-12-08 22:03:59'), (19,'foo@example.org','192.168.50.1',21,'2014-12-08 22:04:07'), (20,'foo@example.org','192.168.50.1',22,'2014-12-08 22:04:51'), (21,'foo@example.org','192.168.50.1',23,'2014-12-08 22:05:19'), (22,'foo@example.org','192.168.50.1',24,'2014-12-08 22:05:26'), (23,'foo@example.org','192.168.50.1',25,'2014-12-08 22:05:37'), (24,'foo@example.org','192.168.50.1',26,'2014-12-08 22:05:52'), (25,'foo@example.org','192.168.50.1',27,'2014-12-08 22:06:03'), (26,'foo@example.org','192.168.50.1',28,'2014-12-08 22:06:14'), (27,'foo@example.org','192.168.50.1',29,'2014-12-08 22:06:44'), (28,'foo@example.org','192.168.50.1',30,'2014-12-08 22:06:58'), (29,'foo@example.org','192.168.50.1',31,'2014-12-08 22:07:11'), (30,'foo@example.org','192.168.50.1',32,'2014-12-08 22:07:43'), (31,'foo@example.org','192.168.50.1',33,'2014-12-08 22:08:24'), (32,'foo@example.org','192.168.50.1',34,'2014-12-08 22:11:11'), (33,'foo@example.org','192.168.50.1',35,'2014-12-08 22:11:43'), (34,'foo@example.org','192.168.50.1',36,'2014-12-08 22:12:06'), (35,'foo@example.org','192.168.50.1',37,'2014-12-08 22:17:04'), (36,'foo@example.org','192.168.50.1',38,'2014-12-08 22:17:14'), (37,'foo@example.org','192.168.50.1',171,'2015-07-29 18:34:20'), (38,'foo@example.org','192.168.50.1',171,'2015-07-30 19:31:29'); /*!40000 ALTER TABLE `wporg_registration_log` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_signups # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_signups`; CREATE TABLE `wporg_signups` ( `signup_id` bigint(20) NOT NULL AUTO_INCREMENT, `domain` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `path` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `title` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `activated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `active` tinyint(1) NOT NULL DEFAULT '0', `activation_key` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `meta` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`signup_id`), KEY `activation_key` (`activation_key`), KEY `user_email` (`user_email`), KEY `user_login_email` (`user_login`,`user_email`), KEY `domain_path` (`domain`(140),`path`(51)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_signups` WRITE; /*!40000 ALTER TABLE `wporg_signups` DISABLE KEYS */; INSERT INTO `wporg_signups` (`signup_id`, `domain`, `path`, `title`, `user_login`, `user_email`, `registered`, `activated`, `active`, `activation_key`, `meta`) VALUES (1,'','','','brianhogg','brian@brianhogg.com','2017-04-17 14:52:18','0000-00-00 00:00:00',0,'2dec229463a283c9','a:2:{s:11:\"add_to_blog\";i:1;s:8:\"new_role\";s:10:\"subscriber\";}'), (2,'','','','brianhogg2','brian@brianhogg.ca','2017-04-17 14:53:19','2017-04-17 14:53:19',1,'e86847e3d2389921','a:2:{s:11:\"add_to_blog\";i:1;s:8:\"new_role\";s:10:\"subscriber\";}'), (3,'','','','brianhogg3','brian@bhconsulting.ca','2017-04-17 14:53:35','2017-04-17 14:53:36',1,'7828c6e3c0f24192','a:2:{s:11:\"add_to_blog\";i:1;s:8:\"new_role\";s:10:\"subscriber\";}'); /*!40000 ALTER TABLE `wporg_signups` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_site # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_site`; CREATE TABLE `wporg_site` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `domain` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `path` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `domain` (`domain`(140),`path`(51)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_site` WRITE; /*!40000 ALTER TABLE `wporg_site` DISABLE KEYS */; INSERT INTO `wporg_site` (`id`, `domain`, `path`) VALUES (1,'wordpressorg.dev','/'), (2,'make.wordpressorg.dev','/'), (3,'learn.wordpressorg.dev','/'), (5,'developer.wordpressorg.dev','/'), (6,'global.wordpressorg.dev','/'); /*!40000 ALTER TABLE `wporg_site` ENABLE KEYS */; UNLOCK TABLES; # Dump of table wporg_sitemeta # ------------------------------------------------------------ DROP TABLE IF EXISTS `wporg_sitemeta`; CREATE TABLE `wporg_sitemeta` ( `meta_id` bigint(20) NOT NULL AUTO_INCREMENT, `site_id` bigint(20) NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`meta_id`), KEY `site_id` (`site_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; LOCK TABLES `wporg_sitemeta` WRITE; /*!40000 ALTER TABLE `wporg_sitemeta` DISABLE KEYS */; INSERT INTO `wporg_sitemeta` (`meta_id`, `site_id`, `meta_key`, `meta_value`) VALUES (1,1,'site_name','WordPress.dev Sites'), (2,1,'admin_email','foo@example.org'), (3,1,'admin_user_id','1'), (4,1,'registration','none'), (5,1,'upload_filetypes','jpg jpeg png gif mov avi mpg 3gp 3g2 midi mid pdf doc ppt odt pptx docx pps ppsx xls xlsx key mp3 ogg wma m4a wav mp4 m4v webm ogv wmv flv'), (6,1,'blog_upload_space','100'), (7,1,'fileupload_maxk','1500'), (8,1,'site_admins','a:1:{i:0;s:5:\"admin\";}'), (9,1,'allowedthemes','a:2:{s:13:\"twentyfifteen\";b:1;s:16:\"pub/wporg-themes\";b:1;}'), (10,1,'illegal_names','a:9:{i:0;s:3:\"www\";i:1;s:3:\"web\";i:2;s:4:\"root\";i:3;s:5:\"admin\";i:4;s:4:\"main\";i:5;s:6:\"invite\";i:6;s:13:\"administrator\";i:7;s:5:\"files\";i:8;s:4:\"blog\";}'), (11,1,'wpmu_upgrade_site','37965'), (12,1,'welcome_email','Dear User,\n\nYour new SITE_NAME site has been successfully set up at:\nBLOG_URL\n\nYou can log in to the administrator account with the following information:\n\nUsername: USERNAME\nPassword: PASSWORD\nLog in here: BLOG_URLwp-login.php\n\nWe hope you enjoy your new site. Thanks!\n\n--The Team @ SITE_NAME'), (13,1,'first_post','Welcome to SITE_NAME. This is your first post. Edit or delete it, then start blogging!'), (14,1,'siteurl','http://wordpressorg.dev/'), (15,1,'add_new_users','0'), (16,1,'upload_space_check_disabled','1'), (17,1,'subdomain_install','0'), (18,1,'global_terms_enabled','0'), (19,1,'ms_files_rewriting','0'), (20,1,'initial_db_version','30133'), (21,1,'active_sitewide_plugins','a:0:{}'), (22,1,'WPLANG','en_US'), (25,1,'auth_key','*khL#Zz}:+hG1vk&}Hj^;.DykWpJn!]hd#RYSlP2%$}t-U/cx-vA#fPE>Qlihbw+'), (26,1,'auth_salt','<9OPzwFpu$Ina|fyL*8 c/sf5)e/`F}2P)H2#Y+*rA/A)[|bhaeOBR;bios6EQn-'), (27,1,'logged_in_key','Ry3Tsb0{{5HG`Y@%/Wnh_YK}4k->MQTJ9mstlXwu}g)84L3WLj|R~dhA4>T4:90z#uH[`)7yM/iVKXO'), (30,1,'nonce_salt','7CGZE5zo:Ymy=+ |N0:1Cx;;nGIY:yn+bh[Rt-)IL-ofMqj9O(S&uqQ5cwL8tMM7'), (36,1,'user_count','3'), (37,1,'blog_count','6'), (38,1,'can_compress_scripts','1'), (41,1,'registrationnotification','yes'), (42,1,'welcome_user_email','Dear User,\n\nYour new account is set up.\n\nYou can log in with the following information:\nUsername: USERNAME\nPassword: PASSWORD\nLOGINLINK\n\nThanks!\n\n--The Team @ SITE_NAME'), (48,2,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1461900607;s:8:\"response\";a:1:{s:49:\"p2-new-post-categories/p2-new-post-categories.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:5:\"43866\";s:4:\"slug\";s:22:\"p2-new-post-categories\";s:6:\"plugin\";s:49:\"p2-new-post-categories/p2-new-post-categories.php\";s:11:\"new_version\";s:3:\"0.3\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/p2-new-post-categories/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/p2-new-post-categories.0.3.zip\";s:14:\"upgrade_notice\";s:138:\"The tag field is no longer used to store the category, which makes for a cleaner and less confusing experience. Requires p2 version 1.5.2.\";s:6:\"tested\";s:7:\"3.8-RC1\";s:13:\"compatibility\";O:8:\"stdClass\":1:{s:6:\"scalar\";O:8:\"stdClass\":1:{s:6:\"scalar\";b:0;}}}}s:12:\"translations\";a:10:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"akismet\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:6:\"3.1.10\";s:7:\"updated\";s:19:\"2016-04-13 07:57:46\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/translation/plugin/akismet/3.1.10/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"akismet\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:6:\"3.1.10\";s:7:\"updated\";s:19:\"2016-04-14 02:59:10\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/translation/plugin/akismet/3.1.10/ja.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"bbpress\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.5.8\";s:7:\"updated\";s:19:\"2015-08-24 19:31:38\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/translation/plugin/bbpress/2.5.8/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:3;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"bbpress\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.5.8\";s:7:\"updated\";s:19:\"2015-08-21 19:17:49\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/plugin/bbpress/2.5.8/ja.zip\";s:10:\"autoupdate\";b:1;}i:4;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"jetpack\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.0.2\";s:7:\"updated\";s:19:\"2016-04-25 14:20:42\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/translation/plugin/jetpack/4.0.2/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:5;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:7:\"jetpack\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.0.2\";s:7:\"updated\";s:19:\"2016-04-23 13:51:34\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/plugin/jetpack/4.0.2/ja.zip\";s:10:\"autoupdate\";b:1;}i:6;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:17:\"syntaxhighlighter\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.2.1\";s:7:\"updated\";s:19:\"2015-09-30 20:42:13\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/translation/plugin/syntaxhighlighter/3.2.1/ja.zip\";s:10:\"autoupdate\";b:1;}i:7;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:18:\"wordpress-importer\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"0.6.1\";s:7:\"updated\";s:19:\"2015-09-23 23:53:27\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/translation/plugin/wordpress-importer/0.6.1/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:8;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:18:\"wordpress-importer\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"0.6.1\";s:7:\"updated\";s:19:\"2015-08-15 11:53:09\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/translation/plugin/wordpress-importer/0.6.1/ja.zip\";s:10:\"autoupdate\";b:1;}i:9;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:18:\"wp-multibyte-patch\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.6\";s:7:\"updated\";s:19:\"2015-12-28 04:18:25\";s:7:\"package\";s:80:\"https://downloads.wordpress.org/translation/plugin/wp-multibyte-patch/2.6/ja.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:12:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:6:\"3.1.10\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/akismet.3.1.10.zip\";}s:19:\"bbpress/bbpress.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"11780\";s:4:\"slug\";s:7:\"bbpress\";s:6:\"plugin\";s:19:\"bbpress/bbpress.php\";s:11:\"new_version\";s:5:\"2.5.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/bbpress/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.8.zip\";}s:23:\"debug-bar/debug-bar.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"18561\";s:4:\"slug\";s:9:\"debug-bar\";s:6:\"plugin\";s:23:\"debug-bar/debug-bar.php\";s:11:\"new_version\";s:5:\"0.8.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/debug-bar/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/debug-bar.0.8.4.zip\";s:14:\"upgrade_notice\";s:56:\"Updated to avoid incompatibilities with some extensions.\";}s:33:\"debug-bar-cron/debug-bar-cron.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"30401\";s:4:\"slug\";s:14:\"debug-bar-cron\";s:6:\"plugin\";s:33:\"debug-bar-cron/debug-bar-cron.php\";s:11:\"new_version\";s:5:\"0.1.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/debug-bar-cron/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/debug-bar-cron.0.1.3.zip\";s:14:\"upgrade_notice\";s:33:\"Adds indicators for missed events\";}s:41:\"email-post-changes/email-post-changes.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"11832\";s:4:\"slug\";s:18:\"email-post-changes\";s:6:\"plugin\";s:41:\"email-post-changes/email-post-changes.php\";s:11:\"new_version\";s:5:\"1.7.1\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/email-post-changes/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/email-post-changes.1.7.1.zip\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"20101\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:5:\"4.0.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.4.0.2.zip\";}s:39:\"speakerdeck-embed/speakerdeck-embed.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"25916\";s:4:\"slug\";s:17:\"speakerdeck-embed\";s:6:\"plugin\";s:39:\"speakerdeck-embed/speakerdeck-embed.php\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/speakerdeck-embed/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/speakerdeck-embed.1.2.zip\";}s:27:\"supportflow/supportflow.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"35893\";s:4:\"slug\";s:11:\"supportflow\";s:6:\"plugin\";s:27:\"supportflow/supportflow.php\";s:11:\"new_version\";s:3:\"0.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/supportflow/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/supportflow.0.6.zip\";}s:39:\"syntaxhighlighter/syntaxhighlighter.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"933\";s:4:\"slug\";s:17:\"syntaxhighlighter\";s:6:\"plugin\";s:39:\"syntaxhighlighter/syntaxhighlighter.php\";s:11:\"new_version\";s:5:\"3.2.1\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/syntaxhighlighter/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/syntaxhighlighter.zip\";}s:45:\"tinymce-code-element/tinymce-code-element.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"41834\";s:4:\"slug\";s:20:\"tinymce-code-element\";s:6:\"plugin\";s:45:\"tinymce-code-element/tinymce-code-element.php\";s:11:\"new_version\";s:5:\"0.5.0\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/tinymce-code-element/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/tinymce-code-element.0.5.0.zip\";}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"14975\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.6.1\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.6.1.zip\";}s:41:\"wp-multibyte-patch/wp-multibyte-patch.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"24017\";s:4:\"slug\";s:18:\"wp-multibyte-patch\";s:6:\"plugin\";s:41:\"wp-multibyte-patch/wp-multibyte-patch.php\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wp-multibyte-patch/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-multibyte-patch.2.6.zip\";}}}'), (49,2,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1461900608;s:7:\"checked\";a:16:{s:14:\"pub/wporg-apps\";s:3:\"1.0\";s:19:\"pub/wporg-developer\";s:3:\"1.0\";s:16:\"pub/wporg-forums\";s:3:\"1.0\";s:15:\"pub/wporg-learn\";s:3:\"1.0\";s:15:\"pub/wporg-login\";s:3:\"0.9\";s:18:\"pub/wporg-makehome\";s:3:\"1.0\";s:17:\"pub/wporg-plugins\";s:9:\"0.1-alpha\";s:18:\"pub/wporg-showcase\";s:0:\"\";s:16:\"pub/wporg-themes\";s:3:\"1.0\";s:7:\"rosetta\";s:3:\"1.0\";s:12:\"twentyeleven\";s:3:\"2.4\";s:13:\"twentyfifteen\";s:3:\"1.5\";s:14:\"twentyfourteen\";s:3:\"1.7\";s:9:\"twentyten\";s:3:\"2.1\";s:14:\"twentythirteen\";s:3:\"1.9\";s:12:\"twentytwelve\";s:3:\"2.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:12:{i:0;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:12:\"twentyeleven\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.4\";s:7:\"updated\";s:19:\"2015-10-21 19:35:27\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/translation/theme/twentyeleven/2.4/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:12:\"twentyeleven\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.4\";s:7:\"updated\";s:19:\"2015-09-30 10:21:39\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/theme/twentyeleven/2.4/ja.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:13:\"twentyfifteen\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:19:\"2015-07-23 08:26:50\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/translation/theme/twentyfifteen/1.5/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:3;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:13:\"twentyfifteen\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:19:\"2015-08-29 04:33:53\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/translation/theme/twentyfifteen/1.5/ja.zip\";s:10:\"autoupdate\";b:1;}i:4;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:14:\"twentyfourteen\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:19:\"2015-04-25 17:18:04\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/theme/twentyfourteen/1.7/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:5;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:14:\"twentyfourteen\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:19:\"2015-07-29 18:20:21\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/translation/theme/twentyfourteen/1.7/ja.zip\";s:10:\"autoupdate\";b:1;}i:6;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:9:\"twentyten\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:19:\"2015-10-21 19:35:55\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/theme/twentyten/2.1/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:7;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:9:\"twentyten\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:19:\"2015-03-31 03:41:52\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/translation/theme/twentyten/2.1/ja.zip\";s:10:\"autoupdate\";b:1;}i:8;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:14:\"twentythirteen\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:19:\"2015-04-25 17:18:29\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/theme/twentythirteen/1.9/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:9;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:14:\"twentythirteen\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.9\";s:7:\"updated\";s:19:\"2015-07-29 18:20:26\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/translation/theme/twentythirteen/1.9/ja.zip\";s:10:\"autoupdate\";b:1;}i:10;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:12:\"twentytwelve\";s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:19:\"2015-10-21 19:36:21\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/translation/theme/twentytwelve/2.0/es_ES.zip\";s:10:\"autoupdate\";b:1;}i:11;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:12:\"twentytwelve\";s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.0\";s:7:\"updated\";s:19:\"2015-11-08 14:15:13\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/theme/twentytwelve/2.0/ja.zip\";s:10:\"autoupdate\";b:1;}}}'), (50,2,'auth_key','X $>zF+EE5{9!fQ?eiAR G`es9$hw7K~aN;+8o>dk#3Y<~ 5PzplN)?DK7^0JES%'), (51,2,'auth_salt','eK0_FiE(+>6D!R-Eu+CrW[+Q4RaU_#7N=`BW[|p];;75Uy_P!0p_XR:_v:e@ pZl'), (52,2,'logged_in_key','HPl/KX]MJRNrF}fx>[J`k[4tLgl~wQ;G:h`Nxxw;xE]+H2N*Gw@.-HziQhg%1|X?Uw!R~/)?;[WGq.Ev,na&P'), (54,2,'nonce_key','Q7=O.#Su/CT=eguqpW8Aw;!5d!`vgs@-u(Iri:Y>@}yh)_%Gj%a3*3jhp/$]L:@?'), (55,2,'nonce_salt','6IJ%HCq/}7QM 56^H@k +l}=$}uF|rom!Ye8uIf4;oYujRS,Kyxg/m0uSk!Q Z#PQGcjfwOwBBW@b>%dpJ$I'), (69,3,'auth_salt','(M#6L/Oc;B,~~lT@Bj$X?/<8O$dizk0{-P98MMU@7?ON7/8H4KrkBJo W>cD[1I+'), (70,3,'logged_in_key','z?n+U16`hC*o)zhh7+t!c0nO#[HN yRh#wH1AoNjabTj%'), (72,3,'nonce_key','-L]pbJ>wlh[p$5QGVp;=Wq?ktD9p@@(9M-?=BxG-@X_bYfI!U!02ZeI1JYIjs1gH'), (73,3,'nonce_salt','2aVJyEjRP5Kv8EG~iym1c;-pH3%&g3YId[FGrwRKwHOQu3RwO6wlk'), (109,5,'auth_salt','Z43xJ#%ONH1Ndu~_DKj-X(`SNAXC!js3xT@8aW-=IRG-eOZy6q1R?tY,z0De#BEV'), (110,5,'logged_in_key','i@}Ar/@M#rW[a`H#,qkhd:XQ/t@]V^99#a*W_$8|kD{y1)anTHi?m02>XJ?jw$PI'), (111,5,'logged_in_salt','X}XAVV9kM#~Yos?Z9V].2BHV|,5[]&*r]yYLCdFO09o)wk_#q0+f|+alp|Or?L9g'), (112,5,'nonce_key','M#}>A;^7~EY38Mv+yy1E?gP*!9(C]JT@)xP@6I7M^8jY]~|B|WAb;}NQrRy%MC8J-W9Xh1lNBG{FA5d'), (141,6,'auth_salt','y!{O%f`ds5VDxh@yN*Sl6]v;+Q@Smy|#:RI.,Bs82]]h?aawb?jf9]4nx[m1!eUx'), (142,6,'logged_in_key','B2;NG~dOr{BT[:.d(-5UIL9M*6&ZMZ fHN X:uB6w#6[%yc?J'), (144,6,'nonce_key','@jI7q`VIt~8qGFPNqif?p7yEZLmDK/YPw